ETH Price: $1,784.34 (+9.56%)

Contract

0x6131B5fae19EA4f9D964eAc0408E4408b66337b5
Transaction Hash
Method
Block
From
To
Swap146449782025-04-23 7:28:572 hrs ago1745393337IN
0x6131B5fa...8b66337b5
1.36387273 ETH00.00000128
Swap145446882025-04-22 3:37:2730 hrs ago1745293047IN
0x6131B5fa...8b66337b5
0.0001 ETH0.000000220.0010004
Swap145404982025-04-22 2:27:3731 hrs ago1745288857IN
0x6131B5fa...8b66337b5
0.00001 ETH0.000000340.0010004
Swap144827962025-04-21 10:25:5547 hrs ago1745231155IN
0x6131B5fa...8b66337b5
0 ETH0.000000420.00100025
Swap144715792025-04-21 7:18:582 days ago1745219938IN
0x6131B5fa...8b66337b5
0 ETH0.000000290.0010004
Swap Simple Mode144691872025-04-21 6:39:062 days ago1745217546IN
0x6131B5fa...8b66337b5
0 ETH0.000000520.0010004
Swap144688832025-04-21 6:34:022 days ago1745217242IN
0x6131B5fa...8b66337b5
0 ETH0.00000040.0010004
Swap144688072025-04-21 6:32:462 days ago1745217166IN
0x6131B5fa...8b66337b5
0.001 ETH0.000000250.0010004
Swap142328932025-04-18 13:00:524 days ago1744981252IN
0x6131B5fa...8b66337b5
0.00317414 ETH00.00000025

Latest 7 internal transactions

Parent Transaction Hash Block From To
146449782025-04-23 7:28:572 hrs ago1745393337
0x6131B5fa...8b66337b5
0 ETH
146449782025-04-23 7:28:572 hrs ago1745393337
0x6131B5fa...8b66337b5
1.36387273 ETH
145446882025-04-22 3:37:2730 hrs ago1745293047
0x6131B5fa...8b66337b5
0.0001 ETH
145404982025-04-22 2:27:3731 hrs ago1745288857
0x6131B5fa...8b66337b5
0.00001 ETH
144691872025-04-21 6:39:062 days ago1745217546
0x6131B5fa...8b66337b5
0 ETH
144688072025-04-21 6:32:462 days ago1745217166
0x6131B5fa...8b66337b5
0.001 ETH
142328932025-04-18 13:00:524 days ago1744981252
0x6131B5fa...8b66337b5
0.00317414 ETH

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MetaAggregationRouterV2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at uniscan.xyz on 2025-04-16
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev 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.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/utils/Context.sol

//  MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

//  MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol

//  MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/utils/Address.sol

//  MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol

//  MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 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.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol

//  MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

// EIP-2612 is Final as of 2022-11-01. This file is deprecated.

// File: src/contracts/libraries/RevertReasonParser.sol

//  GPL-3.0-or-later

pragma solidity >=0.7.6;

/*
“Copyright (c) 2019-2021 1inch 
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions: 
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software. 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE”.
*/

library RevertReasonParser {
  function parse(bytes memory data, string memory prefix) internal pure returns (string memory) {
    // https://solidity.readthedocs.io/en/latest/control-structures.html#revert
    // We assume that revert reason is abi-encoded as Error(string)

    // 68 = 4-byte selector 0x08c379a0 + 32 bytes offset + 32 bytes length
    if (data.length >= 68 && data[0] == '\x08' && data[1] == '\xc3' && data[2] == '\x79' && data[3] == '\xa0') {
      string memory reason;
      // solhint-disable no-inline-assembly
      assembly {
        // 68 = 32 bytes data length + 4-byte selector + 32 bytes offset
        reason := add(data, 68)
      }
      /*
                revert reason is padded up to 32 bytes with ABI encoder: Error(string)
                also sometimes there is extra 32 bytes of zeros padded in the end:
                https://github.com/ethereum/solidity/issues/10170
                because of that we can't check for equality and instead check
                that string length + extra 68 bytes is less than overall data length
            */
      require(data.length >= 68 + bytes(reason).length, 'Invalid revert reason');
      return string(abi.encodePacked(prefix, 'Error(', reason, ')'));
    }
    // 36 = 4-byte selector 0x4e487b71 + 32 bytes integer
    else if (data.length == 36 && data[0] == '\x4e' && data[1] == '\x48' && data[2] == '\x7b' && data[3] == '\x71') {
      uint256 code;
      // solhint-disable no-inline-assembly
      assembly {
        // 36 = 32 bytes data length + 4-byte selector
        code := mload(add(data, 36))
      }
      return string(abi.encodePacked(prefix, 'Panic(', _toHex(code), ')'));
    }

    return string(abi.encodePacked(prefix, 'Unknown(', _toHex(data), ')'));
  }

  function _toHex(uint256 value) private pure returns (string memory) {
    return _toHex(abi.encodePacked(value));
  }

  function _toHex(bytes memory data) private pure returns (string memory) {
    bytes16 alphabet = 0x30313233343536373839616263646566;
    bytes memory str = new bytes(2 + data.length * 2);
    str[0] = '0';
    str[1] = 'x';
    for (uint256 i = 0; i < data.length; i++) {
      str[2 * i + 2] = alphabet[uint8(data[i] >> 4)];
      str[2 * i + 3] = alphabet[uint8(data[i] & 0x0f)];
    }
    return string(str);
  }
}

// File: src/contracts/dependency/Permitable.sol

//  MIT

pragma solidity ^0.8.0;


/*
“Copyright (c) 2019-2021 1inch 
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions: 
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software. 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE”.
*/

contract Permitable {
  event Error(string reason);

  function _permit(
    IERC20 token,
    uint256 amount,
    bytes memory permit
  ) internal {
    if (permit.length == 32 * 7) {
      // solhint-disable-next-line avoid-low-level-calls
      (bool success, bytes memory result) = address(token).call(
        abi.encodePacked(IERC20Permit.permit.selector, permit)
      );
      if (!success) {
        string memory reason = RevertReasonParser.parse(result, 'Permit call failed: ');
        if (token.allowance(msg.sender, address(this)) < amount) {
          revert(reason);
        } else {
          emit Error(reason);
        }
      }
    }
  }
}

// File: src/contracts/interfaces/IMetaAggregationRouterV2.sol

//  MIT
pragma solidity 0.8.17;

interface IMetaAggregationRouterV2 {
  struct SwapDescriptionV2 {
    IERC20 srcToken;
    IERC20 dstToken;
    address[] srcReceivers; // transfer src token to these addresses, default
    uint256[] srcAmounts;
    address[] feeReceivers;
    uint256[] feeAmounts;
    address dstReceiver;
    uint256 amount;
    uint256 minReturnAmount;
    uint256 flags;
    bytes permit;
  }

  /// @dev  use for swapGeneric and swap to avoid stack too deep
  struct SwapExecutionParams {
    address callTarget; // call this address
    address approveTarget; // approve this address if _APPROVE_FUND set
    bytes targetData;
    SwapDescriptionV2 desc;
    bytes clientData;
  }

  struct SimpleSwapData {
    address[] firstPools;
    uint256[] firstSwapAmounts;
    bytes[] swapDatas;
    uint256 deadline;
    bytes positiveSlippageData;
  }

  event Swapped(
    address sender,
    IERC20 srcToken,
    IERC20 dstToken,
    address dstReceiver,
    uint256 spentAmount,
    uint256 returnAmount
  );

  event ClientData(bytes clientData);

  event Exchange(address pair, uint256 amountOut, address output);

  event Fee(address token, uint256 totalAmount, uint256 totalFee, address[] recipients, uint256[] amounts, bool isBps);
}

// File: src/contracts/interfaces/IAggregationExecutor.sol

//  MIT

pragma solidity 0.8.17;

interface IAggregationExecutor {
  event Exchange(address pair, uint256 amountOut, address output);

  struct Swap {
    bytes data;
    bytes32 selectorAndFlags; // [selector (32 bits) + flags (224 bits)]; selector is 4 most significant bytes; flags are stored in 4 least significant bytes.
  }

  struct SwapCallbackData {
    bytes path;
    address payer;
  }

  struct SwapCallbackDataPath {
    address pool;
    address tokenIn;
    address tokenOut;
  }

  struct PositiveSlippageFeeData {
    uint256 partnerPSInfor; // [partnerReceiver (160 bit) + partnerPercent(80bits) + partnerFeeMode(16 bits)]
    uint256 amounts; // [minimumPSAmount (128 bits) + expectedReturnAmount (128 bits)]
    address feeSharingAddress;
  }

  struct SwapExecutorDescription {
    IAggregationExecutor.Swap[][] swapSequences;
    address tokenIn;
    address tokenOut;
    address to;
    uint256 deadline;
    bytes positiveSlippageData;
  }

  function rescueFunds(address token, uint256 amount) external;

  function callBytes(bytes calldata data) external payable;

  function swapSingleSequence(bytes calldata data) external;

  function multihopBatchSwapExactIn(
    IAggregationExecutor.Swap[][] memory swapSequences,
    address tokenIn,
    address tokenOut,
    address to,
    uint256 deadline,
    bytes memory destTokenFeeData
  ) external payable;

  function finalTransactionProcessing(
    address tokenIn,
    address tokenOut,
    address to,
    bytes calldata destTokenFeeData
  ) external;

  function updateWhitelist(address[] memory addr, bool[] memory value) external;

  function updateExecutor(bytes4 funcSelector, address executor) external;

  function updateBatchExecutors(bytes4[] memory funcSelectors, address[] memory executors) external;

  function updateBatchCallbacks(bytes4[] memory funcSelectors, address[] memory callbacks) external;
}

// File: src/contracts/libraries/TransferHelper.sol

//  GPL-3.0-or-later

pragma solidity >=0.5.16;

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
library TransferHelper {
  function safeApprove(
    address token,
    address to,
    uint256 value
  ) internal {
    // bytes4(keccak256(bytes('approve(address,uint256)')));
    (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
    require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED');
  }

  function safeTransfer(
    address token,
    address to,
    uint256 value
  ) internal {
    // bytes4(keccak256(bytes('transfer(address,uint256)')));
    if (value == 0) return;
    (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
    require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED');
  }

  function safeTransferFrom(
    address token,
    address from,
    address to,
    uint256 value
  ) internal {
    // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
    if (value == 0) return;
    (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
    require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED');
  }

  function safeTransferETH(address to, uint256 value) internal {
    if (value == 0) return;
    (bool success, ) = to.call{value: value}(new bytes(0));
    require(success, 'TransferHelper: ETH_TRANSFER_FAILED');
  }
}

// File: src/contracts/MetaAggregationRouterV2.sol

//  MIT
pragma solidity 0.8.17;








contract MetaAggregationRouterV2 is IMetaAggregationRouterV2, Permitable, Ownable {
  using SafeERC20 for IERC20;

  address public immutable WETH;
  address private constant ETH_ADDRESS = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);

  uint256 private constant _REQUIRES_EXTRA_ETH = 0x02;
  uint256 private constant _BURN_FROM_MSG_SENDER = 0x08;
  uint256 private constant _BURN_FROM_TX_ORIGIN = 0x10;
  uint256 private constant _SIMPLE_SWAP = 0x20;
  uint256 private constant _FEE_ON_DST = 0x40;
  uint256 private constant _FEE_IN_BPS = 0x80;

  uint256 private constant BPS = 10000;

  constructor(address _WETH) {
    WETH = _WETH;
  }

  receive() external payable {}

  function rescueFunds(address token, uint256 amount) external onlyOwner {
    if (_isETH(IERC20(token))) {
      TransferHelper.safeTransferETH(msg.sender, amount);
    } else {
      TransferHelper.safeTransfer(token, msg.sender, amount);
    }
  }

  function swap(SwapExecutionParams calldata execution)
    external
    payable
    returns (uint256 returnAmount, uint256 gasUsed)
  {
    uint256 gasBefore = gasleft();
    SwapDescriptionV2 memory desc = execution.desc;

    require(desc.minReturnAmount > 0, 'Min return should not be 0');
    require(execution.targetData.length > 0, 'executorData should be not zero');

    // simple mode swap
    if (_flagsChecked(desc.flags, _SIMPLE_SWAP)) {
      return
        swapSimpleMode(IAggregationExecutor(execution.callTarget), desc, execution.targetData, execution.clientData);
    }

    _collectExtraETHIfNeeded(desc);
    _permit(desc.srcToken, desc.amount, desc.permit);

    bool feeInBps = _flagsChecked(desc.flags, _FEE_IN_BPS);
    uint256 spentAmount;
    address dstReceiver = desc.dstReceiver == address(0) ? msg.sender : desc.dstReceiver;
    if (!_flagsChecked(desc.flags, _FEE_ON_DST)) {
      // fee on src token
      {
        // take fee on srcToken
        // deduct total swap amount
        desc.amount = _takeFee(
          desc.srcToken,
          msg.sender,
          desc.feeReceivers,
          desc.feeAmounts,
          _isETH(desc.srcToken) ? msg.value : desc.amount,
          feeInBps
        );

        // transfer fund from msg.sender to our executor
        _transferFromToTarget(msg.sender, desc);

        // execute swap
        (spentAmount, returnAmount) = _executeSwap(
          execution.callTarget,
          abi.encodeWithSelector(IAggregationExecutor.callBytes.selector, execution.targetData),
          desc,
          _isETH(desc.srcToken) ? desc.amount : 0,
          dstReceiver
        );
      }
    } else {
      // fee on dst token
      // router get dst token first
      uint256 initialDstReceiverBalance = _getBalance(desc.dstToken, dstReceiver);

      // transfer fund from msg.sender to our executor
      _transferFromToTarget(msg.sender, desc);

      // swap to receive dstToken on this router
      (spentAmount, returnAmount) = _executeSwap(
        execution.callTarget,
        abi.encodeWithSelector(IAggregationExecutor.callBytes.selector, execution.targetData),
        desc,
        _isETH(desc.srcToken) ? msg.value : 0,
        address(this)
      );

      {
        // then take fee on dst token
        uint256 leftAmount = _takeFee(
          desc.dstToken,
          address(this),
          desc.feeReceivers,
          desc.feeAmounts,
          returnAmount,
          feeInBps
        );
        _doTransferERC20(desc.dstToken, address(this), dstReceiver, leftAmount);
      }

      returnAmount = _getBalance(desc.dstToken, dstReceiver) - initialDstReceiverBalance;
    }
    require(returnAmount >= desc.minReturnAmount, 'Return amount is not enough');

    emit Swapped(msg.sender, desc.srcToken, desc.dstToken, dstReceiver, spentAmount, returnAmount);
    emit Exchange(execution.callTarget, returnAmount, _isETH(desc.dstToken) ? WETH : address(desc.dstToken));
    emit ClientData(execution.clientData);

    unchecked {
      gasUsed = gasBefore - gasleft();
    }
  }

  function swapSimpleMode(
    IAggregationExecutor caller,
    SwapDescriptionV2 memory desc,
    bytes calldata executorData,
    bytes calldata clientData
  ) public returns (uint256 returnAmount, uint256 gasUsed) {
    uint256 gasBefore = gasleft();

    require(!_isETH(desc.srcToken), 'src is eth, should use normal swap');

    _permit(desc.srcToken, desc.amount, desc.permit);

    address dstReceiver = (desc.dstReceiver == address(0)) ? msg.sender : desc.dstReceiver;
    {
      bool isBps = _flagsChecked(desc.flags, _FEE_IN_BPS);
      if (!_flagsChecked(desc.flags, _FEE_ON_DST)) {
        // take fee and deduct total swap amount
        desc.amount = _takeFee(desc.srcToken, msg.sender, desc.feeReceivers, desc.feeAmounts, desc.amount, isBps);
      } else {
        dstReceiver = address(this);
      }
    }

    uint256 initialDstBalance = _getBalance(desc.dstToken, dstReceiver);
    uint256 initialSrcBalance = _getBalance(desc.srcToken, msg.sender);
    _swapMultiSequencesWithSimpleMode(
      caller,
      address(desc.srcToken),
      desc.amount,
      address(desc.dstToken),
      dstReceiver,
      executorData
    );

    // amount returned to this router
    returnAmount = _getBalance(desc.dstToken, dstReceiver) - initialDstBalance;
    {
      // take fee
      if (_flagsChecked(desc.flags, _FEE_ON_DST)) {
        {
          bool isBps = _flagsChecked(desc.flags, _FEE_IN_BPS);
          returnAmount = _takeFee(
            desc.dstToken,
            address(this),
            desc.feeReceivers,
            desc.feeAmounts,
            returnAmount,
            isBps
          );
        }

        IERC20 dstToken = desc.dstToken;
        dstReceiver = desc.dstReceiver == address(0) ? msg.sender : desc.dstReceiver;
        // dst receiver initial balance
        initialDstBalance = _getBalance(dstToken, dstReceiver);

        // transfer remainning token to dst receiver
        _doTransferERC20(dstToken, address(this), dstReceiver, returnAmount);

        // amount returned to dst receiver
        returnAmount = _getBalance(dstToken, dstReceiver) - initialDstBalance;
      }
    }
    uint256 spentAmount = initialSrcBalance - _getBalance(desc.srcToken, msg.sender);
    require(returnAmount >= desc.minReturnAmount, 'Return amount is not enough');

    emit Swapped(msg.sender, desc.srcToken, desc.dstToken, dstReceiver, spentAmount, returnAmount);
    emit Exchange(address(caller), returnAmount, _isETH(desc.dstToken) ? WETH : address(desc.dstToken));
    emit ClientData(clientData);

    unchecked {
      gasUsed = gasBefore - gasleft();
    }
  }

  function _doTransferERC20(
    IERC20 token,
    address from,
    address to,
    uint256 amount
  ) internal {
    require(from != to, 'sender != recipient');
    if (amount > 0) {
      if (_isETH(token)) {
        if (from == address(this)) TransferHelper.safeTransferETH(to, amount);
      } else {
        if (from == address(this)) {
          TransferHelper.safeTransfer(address(token), to, amount);
        } else {
          TransferHelper.safeTransferFrom(address(token), from, to, amount);
        }
      }
    }
  }

  // Only use this mode if the first pool of each sequence can receive tokenIn directly into the pool
  function _swapMultiSequencesWithSimpleMode(
    IAggregationExecutor caller,
    address tokenIn,
    uint256 totalSwapAmount,
    address tokenOut,
    address dstReceiver,
    bytes calldata data
  ) internal {
    SimpleSwapData memory swapData = abi.decode(data, (SimpleSwapData));
    require(swapData.deadline >= block.timestamp, 'ROUTER: Expired');
    require(
      swapData.firstPools.length == swapData.firstSwapAmounts.length &&
        swapData.firstPools.length == swapData.swapDatas.length,
      'invalid swap data length'
    );
    uint256 numberSeq = swapData.firstPools.length;
    for (uint256 i = 0; i < numberSeq; i++) {
      // collect amount to the first pool
      {
        uint256 balanceBefore = _getBalance(IERC20(tokenIn), msg.sender);
        _doTransferERC20(IERC20(tokenIn), msg.sender, swapData.firstPools[i], swapData.firstSwapAmounts[i]);
        require(swapData.firstSwapAmounts[i] <= totalSwapAmount, 'invalid swap amount');
        uint256 spentAmount = balanceBefore - _getBalance(IERC20(tokenIn), msg.sender);
        totalSwapAmount -= spentAmount;
      }
      {
        // solhint-disable-next-line avoid-low-level-calls
        // may take some native tokens for commission fee
        (bool success, bytes memory result) = address(caller).call(
          abi.encodeWithSelector(caller.swapSingleSequence.selector, swapData.swapDatas[i])
        );
        if (!success) {
          revert(RevertReasonParser.parse(result, 'swapSingleSequence failed: '));
        }
      }
    }
    {
      // solhint-disable-next-line avoid-low-level-calls
      // may take some native tokens for commission fee
      (bool success, bytes memory result) = address(caller).call(
        abi.encodeWithSelector(
          caller.finalTransactionProcessing.selector,
          tokenIn,
          tokenOut,
          dstReceiver,
          swapData.positiveSlippageData
        )
      );
      if (!success) {
        revert(RevertReasonParser.parse(result, 'finalTransactionProcessing failed: '));
      }
    }
  }

  function _getBalance(IERC20 token, address account) internal view returns (uint256) {
    if (_isETH(token)) {
      return account.balance;
    } else {
      return token.balanceOf(account);
    }
  }

  function _isETH(IERC20 token) internal pure returns (bool) {
    return (address(token) == ETH_ADDRESS);
  }

  /// @dev this function calls to external contract to execute swap and also validate the returned amounts
  function _executeSwap(
    address callTarget,
    bytes memory targetData,
    SwapDescriptionV2 memory desc,
    uint256 value,
    address dstReceiver
  ) internal returns (uint256 spentAmount, uint256 returnAmount) {
    uint256 initialDstBalance = _getBalance(desc.dstToken, dstReceiver);
    {
      // call to external contract
      (bool success, ) = callTarget.call{value: value}(targetData);
      require(success, 'Call failed');
    }

    // safe check here
    returnAmount = _getBalance(desc.dstToken, dstReceiver) - initialDstBalance;
    spentAmount = desc.amount;
  }

  function _collectExtraETHIfNeeded(SwapDescriptionV2 memory desc) internal {
    bool srcETH = _isETH(desc.srcToken);
    if (_flagsChecked(desc.flags, _REQUIRES_EXTRA_ETH)) {
      require(msg.value > (srcETH ? desc.amount : 0), 'Invalid msg.value');
    } else {
      require(msg.value == (srcETH ? desc.amount : 0), 'Invalid msg.value');
    }
  }

  /// @dev transfer `desc.srcAmounts` from `from` to `desc.srcReceivers`
  /// @dev Check total transfer not exceed desc.amount
  function _transferFromToTarget(address from, SwapDescriptionV2 memory desc) internal {
    require(desc.srcReceivers.length == desc.srcAmounts.length, 'invalid srcReceivers length');

    uint256 total;
    for (uint256 i; i < desc.srcReceivers.length; ++i) {
      total += desc.srcAmounts[i];
      _doTransferERC20(desc.srcToken, from, desc.srcReceivers[i], desc.srcAmounts[i]);
    }
    require(total <= desc.amount, 'Exceeded desc.amount');
  }

  /// @dev token transferred from `from` to `feeData.recipients`
  function _takeFee(
    IERC20 token,
    address from,
    address[] memory recipients,
    uint256[] memory amounts,
    uint256 totalAmount,
    bool inBps
  ) internal returns (uint256 leftAmount) {
    leftAmount = totalAmount;
    uint256 recipientsLen = recipients.length;
    if (recipientsLen > 0) {
      bool isETH = _isETH(token);
      uint256 balanceBefore = _getBalance(token, isETH ? address(this) : from);
      require(amounts.length == recipientsLen, 'Invalid length');
      for (uint256 i; i < recipientsLen; ++i) {
        uint256 amount = inBps ? (totalAmount * amounts[i]) / BPS : amounts[i];
        _doTransferERC20(token, isETH ? address(this) : from, recipients[i], amount);
      }
      uint256 totalFee = balanceBefore - _getBalance(token, isETH ? address(this) : from);
      leftAmount = totalAmount - totalFee;
      emit Fee(address(token), totalAmount, totalFee, recipients, amounts, inBps);
    }
  }

  function _flagsChecked(uint256 number, uint256 flag) internal pure returns (bool) {
    return number & flag != 0;
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_WETH","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"clientData","type":"bytes"}],"name":"ClientData","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"Error","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"},{"indexed":false,"internalType":"address","name":"output","type":"address"}],"name":"Exchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalFee","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"indexed":false,"internalType":"bool","name":"isBps","type":"bool"}],"name":"Fee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"contract IERC20","name":"srcToken","type":"address"},{"indexed":false,"internalType":"contract IERC20","name":"dstToken","type":"address"},{"indexed":false,"internalType":"address","name":"dstReceiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"spentAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"returnAmount","type":"uint256"}],"name":"Swapped","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"callTarget","type":"address"},{"internalType":"address","name":"approveTarget","type":"address"},{"internalType":"bytes","name":"targetData","type":"bytes"},{"components":[{"internalType":"contract IERC20","name":"srcToken","type":"address"},{"internalType":"contract IERC20","name":"dstToken","type":"address"},{"internalType":"address[]","name":"srcReceivers","type":"address[]"},{"internalType":"uint256[]","name":"srcAmounts","type":"uint256[]"},{"internalType":"address[]","name":"feeReceivers","type":"address[]"},{"internalType":"uint256[]","name":"feeAmounts","type":"uint256[]"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"flags","type":"uint256"},{"internalType":"bytes","name":"permit","type":"bytes"}],"internalType":"struct IMetaAggregationRouterV2.SwapDescriptionV2","name":"desc","type":"tuple"},{"internalType":"bytes","name":"clientData","type":"bytes"}],"internalType":"struct IMetaAggregationRouterV2.SwapExecutionParams","name":"execution","type":"tuple"}],"name":"swap","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256","name":"gasUsed","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IAggregationExecutor","name":"caller","type":"address"},{"components":[{"internalType":"contract IERC20","name":"srcToken","type":"address"},{"internalType":"contract IERC20","name":"dstToken","type":"address"},{"internalType":"address[]","name":"srcReceivers","type":"address[]"},{"internalType":"uint256[]","name":"srcAmounts","type":"uint256[]"},{"internalType":"address[]","name":"feeReceivers","type":"address[]"},{"internalType":"uint256[]","name":"feeAmounts","type":"uint256[]"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"flags","type":"uint256"},{"internalType":"bytes","name":"permit","type":"bytes"}],"internalType":"struct IMetaAggregationRouterV2.SwapDescriptionV2","name":"desc","type":"tuple"},{"internalType":"bytes","name":"executorData","type":"bytes"},{"internalType":"bytes","name":"clientData","type":"bytes"}],"name":"swapSimpleMode","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256","name":"gasUsed","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162003699380380620036998339810160408190526200003491620000a1565b6200003f3362000051565b6001600160a01b0316608052620000d3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000b457600080fd5b81516001600160a01b0381168114620000cc57600080fd5b9392505050565b60805161359c620000fd6000396000818161014f015281816105ec0152610ce2015261359c6000f3fe6080604052600436106100745760003560e01c80638da5cb5b1161004e5780638da5cb5b146100f1578063ad5c46481461013d578063e21fd0e914610171578063f2fde38b1461018457600080fd5b8063715018a61461008057806378e3214f146100975780638af033fb146100b757600080fd5b3661007b57005b600080fd5b34801561008c57600080fd5b506100956101a4565b005b3480156100a357600080fd5b506100956100b236600461297e565b6101b8565b3480156100c357600080fd5b506100d76100d2366004612d68565b61020a565b604080519283526020830191909152015b60405180910390f35b3480156100fd57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e8565b34801561014957600080fd5b506101187f000000000000000000000000000000000000000000000000000000000000000081565b6100d761017f366004612e0f565b610691565b34801561019057600080fd5b5061009561019f366004612e51565b610d8c565b6101ac610e43565b6101b66000610ec4565b565b6101c0610e43565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff8316036101ff576101fb3382610f39565b5050565b6101fb823383611054565b60008060005a9050610249886000015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b156102db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f737263206973206574682c2073686f756c6420757365206e6f726d616c20737760448201527f617000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102f388600001518960e001518a61014001516111d1565b60c088015160009073ffffffffffffffffffffffffffffffffffffffff1615610320578860c00151610322565b335b905060006103368a610120015160806113e6565b90506103488a610120015160406113e6565b6103745761036a8a60000151338c608001518d60a001518e60e00151866113f2565b60e08b0152610378565b3091505b5060006103898a60200151836115cd565b9050600061039b8b60000151336115cd565b90506103b88c8c600001518d60e001518e60200151878f8f6116b5565b816103c78c60200151856115cd565b6103d19190612e9d565b95506103e38b610120015160406113e6565b1561047f5760006103fa8c610120015160806113e6565b90506104168c60200151308e608001518f60a001518b866113f2565b60208d015160c08e0151919850915073ffffffffffffffffffffffffffffffffffffffff161561044a578b60c0015161044c565b335b935061045881856115cd565b92506104668130868a611bb2565b8261047182866115cd565b61047b9190612e9d565b9650505b600061048f8c60000151336115cd565b6104999083612e9d565b90508b610100015187101561050a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f52657475726e20616d6f756e74206973206e6f7420656e6f756768000000000060448201526064016102d2565b8b516020808e01516040805133815273ffffffffffffffffffffffffffffffffffffffff948516938101939093529083169082015290851660608201526080810182905260a081018890527fd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f89060c00160405180910390a17fddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c488d886105dc8f6020015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b6105ea578e6020015161060c565b7f00000000000000000000000000000000000000000000000000000000000000005b6040805173ffffffffffffffffffffffffffffffffffffffff9485168152602081019390935292168183015290519081900360600190a17f095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff97798989604051610674929190612eb0565b60405180910390a15a850395505050505050965096945050505050565b60008060005a905060006106a86060860186612efd565b6106b190612f3b565b9050600081610100015111610722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d696e2072657475726e2073686f756c64206e6f74206265203000000000000060448201526064016102d2565b60006107316040870187612f47565b90501161079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6578656375746f72446174612073686f756c64206265206e6f74207a65726f0060448201526064016102d2565b6107aa81610120015160206113e6565b156107e5576107da6107bf6020870187612e51565b826107cd6040890189612f47565b6100d260808b018b612f47565b935093505050915091565b6107ee81611ce4565b61080681600001518260e001518361014001516111d1565b600061081882610120015160806113e6565b9050600080600073ffffffffffffffffffffffffffffffffffffffff168460c0015173ffffffffffffffffffffffffffffffffffffffff161461085f578360c00151610861565b335b905061087384610120015160406113e6565b6109ff578351608085015160a08601516108cd9291339173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff8516146108c5578860e001516108c7565b345b886113f2565b60e08501526108dc3385611e28565b6109f66108ec60208a018a612e51565b7fd9c453570000000000000000000000000000000000000000000000000000000061091a60408c018c612f47565b60405160240161092b929190612eb0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152865187906109df9073ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b6109ea5760006109f0565b8760e001515b85611f93565b97509150610b85565b6000610a0f8560200151836115cd565b9050610a1b3386611e28565b610b31610a2b60208b018b612e51565b7fd9c4535700000000000000000000000000000000000000000000000000000000610a5960408d018d612f47565b604051602401610a6a929190612eb0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915287518890610b1e9073ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b610b29576000610b2b565b345b30611f93565b80995081945050506000610b5586602001513088608001518960a001518d8a6113f2565b9050610b678660200151308584611bb2565b5080610b778660200151846115cd565b610b819190612e9d565b9750505b836101000151871015610bf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f52657475726e20616d6f756e74206973206e6f7420656e6f756768000000000060448201526064016102d2565b83516020808601516040805133815273ffffffffffffffffffffffffffffffffffffffff948516938101939093529083169082015290821660608201526080810183905260a081018890527fd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f89060c00160405180910390a17fddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c48610c9a60208a018a612e51565b88610cd2876020015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b610ce0578660200151610d02565b7f00000000000000000000000000000000000000000000000000000000000000005b6040805173ffffffffffffffffffffffffffffffffffffffff9485168152602081019390935292168183015290519081900360600190a17f095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff9779610d6760808a018a612f47565b604051610d75929190612eb0565b60405180910390a15a850395505050505050915091565b610d94610e43565b73ffffffffffffffffffffffffffffffffffffffff8116610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102d2565b610e4081610ec4565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80600003610f45575050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051610f7c9190612fd0565b60006040518083038185875af1925050503d8060008114610fb9576040519150601f19603f3d011682016040523d82523d6000602084013e610fbe565b606091505b505090508061104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201527f4c4544000000000000000000000000000000000000000000000000000000000060648201526084016102d2565b505050565b8060000361106157505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392908716916110f89190612fd0565b6000604051808303816000865af19150503d8060008114611135576040519150601f19603f3d011682016040523d82523d6000602084013e61113a565b606091505b50915091508180156111645750805115806111645750808060200190518101906111649190612fe2565b6111ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016102d2565b5050505050565b805160e00361104f576000808473ffffffffffffffffffffffffffffffffffffffff1663d505accf60e01b8460405160200161120e929190613004565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261124691612fd0565b6000604051808303816000865af19150503d8060008114611283576040519150601f19603f3d011682016040523d82523d6000602084013e611288565b606091505b5091509150816111ca5760006112d3826040518060400160405280601481526020017f5065726d69742063616c6c206661696c65643a200000000000000000000000008152506120ab565b6040517fdd62ed3e000000000000000000000000000000000000000000000000000000008152336004820152306024820152909150859073ffffffffffffffffffffffffffffffffffffffff88169063dd62ed3e90604401602060405180830381865afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c919061304c565b10156113a657806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d291906130af565b7f08c379a0afcc32b1a39302f7cb8073359698411ab5fd6e3edb2c02c0b5fba8aa816040516113d591906130af565b60405180910390a15b505050505050565b81811615155b92915050565b8351829080156115c25773ffffffffffffffffffffffffffffffffffffffff881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1460006114408a8361143a578a6115cd565b306115cd565b9050828751146114ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c6964206c656e67746800000000000000000000000000000000000060448201526064016102d2565b60005b83811015611553576000866114dd578882815181106114d0576114d06130c2565b602002602001015161150f565b6127108983815181106114f2576114f26130c2565b60200260200101518961150591906130f1565b61150f9190613108565b90506115428c85611520578c611522565b305b8c8581518110611534576115346130c2565b602002602001015184611bb2565b5061154c81613143565b90506114af565b5060006115658b8461143a578b6115cd565b61156f9083612e9d565b905061157b8188612e9d565b94507f4c39b7ce5f4f514f45cb6f82b171b8b0b7f2cbf488ad28e4eff451588e2f014b8b88838c8c8b6040516115b69695949392919061317b565b60405180910390a15050505b509695505050505050565b600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff84160361161e575073ffffffffffffffffffffffffffffffffffffffff8116316113ec565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa15801561168a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ae919061304c565b90506113ec565b60006116c3828401846132b2565b90504281606001511015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f524f555445523a2045787069726564000000000000000000000000000000000060448201526064016102d2565b60208101515181515114801561174f5750604081015151815151145b6117b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f696e76616c696420737761702064617461206c656e677468000000000000000060448201526064016102d2565b80515160005b81811015611a705760006117cf8a336115cd565b90506118178a33866000015185815181106117ec576117ec6130c2565b60200260200101518760200151868151811061180a5761180a6130c2565b6020026020010151611bb2565b888460200151838151811061182e5761182e6130c2565b6020026020010151111561189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f696e76616c6964207377617020616d6f756e740000000000000000000000000060448201526064016102d2565b60006118aa8b336115cd565b6118b49083612e9d565b90506118c0818b612e9d565b995050506000808b73ffffffffffffffffffffffffffffffffffffffff16638b674f5d60e01b866040015185815181106118fc576118fc6130c2565b602002602001015160405160240161191491906130af565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090941693909317909252905161199d9190612fd0565b6000604051808303816000865af19150503d80600081146119da576040519150601f19603f3d011682016040523d82523d6000602084013e6119df565b606091505b509150915081611a5b57611a28816040518060400160405280601b81526020017f7377617053696e676c6553657175656e6365206661696c65643a2000000000008152506120ab565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d291906130af565b50508080611a6890613143565b9150506117bb565b506000808a73ffffffffffffffffffffffffffffffffffffffff1663774b6b7e60e01b8b8a8a8860800151604051602401611aae9493929190613395565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051611b379190612fd0565b6000604051808303816000865af19150503d8060008114611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b509150915081611ba557611a2881604051806060016040528060238152602001613544602391396120ab565b5050505050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f73656e64657220213d20726563697069656e740000000000000000000000000060448201526064016102d2565b8015611cde5773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff851603611caa573073ffffffffffffffffffffffffffffffffffffffff841603611ca557611ca58282610f39565b611cde565b3073ffffffffffffffffffffffffffffffffffffffff841603611cd257611ca5848383611054565b611cde848484846124e3565b50505050565b6000611d1d826000015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b9050611d2f82610120015160026113e6565b15611dae5780611d40576000611d46565b8160e001515b34116101fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964206d73672e76616c756500000000000000000000000000000060448201526064016102d2565b80611dba576000611dc0565b8160e001515b34146101fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964206d73672e76616c756500000000000000000000000000000060448201526064016102d2565b80606001515181604001515114611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f696e76616c696420737263526563656976657273206c656e677468000000000060448201526064016102d2565b6000805b826040015151811015611f245782606001518181518110611ec257611ec26130c2565b602002602001015182611ed591906133e0565b9150611f1483600001518585604001518481518110611ef657611ef66130c2565b60200260200101518660600151858151811061180a5761180a6130c2565b611f1d81613143565b9050611e9f565b508160e0015181111561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f457863656564656420646573632e616d6f756e7400000000000000000000000060448201526064016102d2565b6000806000611fa68660200151856115cd565b905060008873ffffffffffffffffffffffffffffffffffffffff168689604051611fd09190612fd0565b60006040518083038185875af1925050503d806000811461200d576040519150601f19603f3d011682016040523d82523d6000602084013e612012565b606091505b505090508061207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f43616c6c206661696c656400000000000000000000000000000000000000000060448201526064016102d2565b508061208d8760200151866115cd565b6120979190612e9d565b91508560e001519250509550959350505050565b606060448351101580156121185750826000815181106120cd576120cd6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f0800000000000000000000000000000000000000000000000000000000000000145b801561217d575082600181518110612132576121326130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167fc300000000000000000000000000000000000000000000000000000000000000145b80156121e2575082600281518110612197576121976130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7900000000000000000000000000000000000000000000000000000000000000145b80156122475750826003815181106121fc576121fc6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167fa000000000000000000000000000000000000000000000000000000000000000145b156122f35760448381018051909161225f91906133e0565b845110156122c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e76616c69642072657665727420726561736f6e000000000000000000000060448201526064016102d2565b82816040516020016122dc9291906133f3565b6040516020818303038152906040529150506113ec565b8251602414801561235d575082600081518110612312576123126130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f4e00000000000000000000000000000000000000000000000000000000000000145b80156123c2575082600181518110612377576123776130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f4800000000000000000000000000000000000000000000000000000000000000145b80156124275750826002815181106123dc576123dc6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7b00000000000000000000000000000000000000000000000000000000000000145b801561248c575082600381518110612441576124416130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7100000000000000000000000000000000000000000000000000000000000000145b156124b1576024830151826124a08261267f565b6040516020016122dc929190613475565b816124bb846126a7565b6040516020016124cc9291906134c1565b604051602081830303815290604052905092915050565b8015611cde576040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017905291516000928392908816916125889190612fd0565b6000604051808303816000865af19150503d80600081146125c5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ca565b606091505b50915091508180156125f45750805115806125f45750808060200190518101906125f49190612fe2565b6113de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f464160448201527f494c45440000000000000000000000000000000000000000000000000000000060648201526084016102d2565b60606113ec8260405160200161269791815260200190565b6040516020818303038152906040525b80516060907f3031323334353637383961626364656600000000000000000000000000000000906000906126dc9060026130f1565b6126e79060026133e0565b67ffffffffffffffff8111156126ff576126ff6129aa565b6040519080825280601f01601f191660200182016040528015612729576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612760576127606130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127c3576127c36130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b845181101561294457826004868381518110612813576128136130c2565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016901c60f81c6010811061284f5761284f6130c2565b1a60f81b8261285f8360026130f1565b61286a9060026133e0565b8151811061287a5761287a6130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350828582815181106128bc576128bc6130c2565b60209101015160f81c600f16601081106128d8576128d86130c2565b1a60f81b826128e88360026130f1565b6128f39060036133e0565b81518110612903576129036130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061293c81613143565b9150506127f5565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e4057600080fd5b80356129798161294c565b919050565b6000806040838503121561299157600080fd5b823561299c8161294c565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051610160810167ffffffffffffffff811182821017156129fd576129fd6129aa565b60405290565b60405160a0810167ffffffffffffffff811182821017156129fd576129fd6129aa565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612a6d57612a6d6129aa565b604052919050565b600067ffffffffffffffff821115612a8f57612a8f6129aa565b5060051b60200190565b600082601f830112612aaa57600080fd5b81356020612abf612aba83612a75565b612a26565b82815260059290921b84018101918181019086841115612ade57600080fd5b8286015b848110156115c2578035612af58161294c565b8352918301918301612ae2565b600082601f830112612b1357600080fd5b81356020612b23612aba83612a75565b82815260059290921b84018101918181019086841115612b4257600080fd5b8286015b848110156115c25780358352918301918301612b46565b600082601f830112612b6e57600080fd5b813567ffffffffffffffff811115612b8857612b886129aa565b612bb960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a26565b818152846020838601011115612bce57600080fd5b816020850160208301376000918101602001919091529392505050565b60006101608284031215612bfe57600080fd5b612c066129d9565b9050612c118261296e565b8152612c1f6020830161296e565b6020820152604082013567ffffffffffffffff80821115612c3f57600080fd5b612c4b85838601612a99565b60408401526060840135915080821115612c6457600080fd5b612c7085838601612b02565b60608401526080840135915080821115612c8957600080fd5b612c9585838601612a99565b608084015260a0840135915080821115612cae57600080fd5b612cba85838601612b02565b60a0840152612ccb60c0850161296e565b60c084015260e084810135908401526101008085013590840152610120808501359084015261014091508184013581811115612d0657600080fd5b612d1286828701612b5d565b8385015250505092915050565b60008083601f840112612d3157600080fd5b50813567ffffffffffffffff811115612d4957600080fd5b602083019150836020828501011115612d6157600080fd5b9250929050565b60008060008060008060808789031215612d8157600080fd5b8635612d8c8161294c565b9550602087013567ffffffffffffffff80821115612da957600080fd5b612db58a838b01612beb565b96506040890135915080821115612dcb57600080fd5b612dd78a838b01612d1f565b90965094506060890135915080821115612df057600080fd5b50612dfd89828a01612d1f565b979a9699509497509295939492505050565b600060208284031215612e2157600080fd5b813567ffffffffffffffff811115612e3857600080fd5b820160a08185031215612e4a57600080fd5b9392505050565b600060208284031215612e6357600080fd5b8135612e4a8161294c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156113ec576113ec612e6e565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffea1833603018112612f3157600080fd5b9190910192915050565b60006113ec3683612beb565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112612f7c57600080fd5b83018035915067ffffffffffffffff821115612f9757600080fd5b602001915036819003821315612d6157600080fd5b60005b83811015612fc7578181015183820152602001612faf565b50506000910152565b60008251612f31818460208701612fac565b600060208284031215612ff457600080fd5b81518015158114612e4a57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000831681526000825161303e816004850160208701612fac565b919091016004019392505050565b60006020828403121561305e57600080fd5b5051919050565b6000815180845261307d816020860160208601612fac565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612e4a6020830184613065565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80820281158282048414176113ec576113ec612e6e565b60008261313e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317457613174612e6e565b5060010190565b600060c0820173ffffffffffffffffffffffffffffffffffffffff808a1684526020898186015288604086015260c0606086015282885180855260e087019150828a01945060005b818110156131e15785518516835294830194918301916001016131c3565b5050858103608087015287518082529082019350915080870160005b83811015613219578151855293820193908201906001016131fd565b5050505083151560a08401529050979650505050505050565b600082601f83011261324357600080fd5b81356020613253612aba83612a75565b82815260059290921b8401810191818101908684111561327257600080fd5b8286015b848110156115c257803567ffffffffffffffff8111156132965760008081fd5b6132a48986838b0101612b5d565b845250918301918301613276565b6000602082840312156132c457600080fd5b813567ffffffffffffffff808211156132dc57600080fd5b9083019060a082860312156132f057600080fd5b6132f8612a03565b82358281111561330757600080fd5b61331387828601612a99565b82525060208301358281111561332857600080fd5b61333487828601612b02565b60208301525060408301358281111561334c57600080fd5b61335887828601613232565b6040830152506060830135606082015260808301358281111561337a57600080fd5b61338687828601612b5d565b60808301525095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152808516604084015250608060608301526133d66080830184613065565b9695505050505050565b808201808211156113ec576113ec612e6e565b60008351613405818460208801612fac565b7f4572726f72280000000000000000000000000000000000000000000000000000908301908152835161343f816006840160208801612fac565b7f290000000000000000000000000000000000000000000000000000000000000060069290910191820152600701949350505050565b60008351613487818460208801612fac565b7f50616e6963280000000000000000000000000000000000000000000000000000908301908152835161343f816006840160208801612fac565b600083516134d3818460208801612fac565b7f556e6b6e6f776e28000000000000000000000000000000000000000000000000908301908152835161350d816008840160208801612fac565b7f29000000000000000000000000000000000000000000000000000000000000006008929091019182015260090194935050505056fe66696e616c5472616e73616374696f6e50726f63657373696e67206661696c65643a20a2646970667358221220e48ff7c54a88dc38b5a9da6fa8afe392d858ee0246b094def80ab0d6ce6dcbff64736f6c634300081100330000000000000000000000004200000000000000000000000000000000000006

Deployed Bytecode

0x6080604052600436106100745760003560e01c80638da5cb5b1161004e5780638da5cb5b146100f1578063ad5c46481461013d578063e21fd0e914610171578063f2fde38b1461018457600080fd5b8063715018a61461008057806378e3214f146100975780638af033fb146100b757600080fd5b3661007b57005b600080fd5b34801561008c57600080fd5b506100956101a4565b005b3480156100a357600080fd5b506100956100b236600461297e565b6101b8565b3480156100c357600080fd5b506100d76100d2366004612d68565b61020a565b604080519283526020830191909152015b60405180910390f35b3480156100fd57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e8565b34801561014957600080fd5b506101187f000000000000000000000000420000000000000000000000000000000000000681565b6100d761017f366004612e0f565b610691565b34801561019057600080fd5b5061009561019f366004612e51565b610d8c565b6101ac610e43565b6101b66000610ec4565b565b6101c0610e43565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff8316036101ff576101fb3382610f39565b5050565b6101fb823383611054565b60008060005a9050610249886000015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b156102db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f737263206973206574682c2073686f756c6420757365206e6f726d616c20737760448201527f617000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102f388600001518960e001518a61014001516111d1565b60c088015160009073ffffffffffffffffffffffffffffffffffffffff1615610320578860c00151610322565b335b905060006103368a610120015160806113e6565b90506103488a610120015160406113e6565b6103745761036a8a60000151338c608001518d60a001518e60e00151866113f2565b60e08b0152610378565b3091505b5060006103898a60200151836115cd565b9050600061039b8b60000151336115cd565b90506103b88c8c600001518d60e001518e60200151878f8f6116b5565b816103c78c60200151856115cd565b6103d19190612e9d565b95506103e38b610120015160406113e6565b1561047f5760006103fa8c610120015160806113e6565b90506104168c60200151308e608001518f60a001518b866113f2565b60208d015160c08e0151919850915073ffffffffffffffffffffffffffffffffffffffff161561044a578b60c0015161044c565b335b935061045881856115cd565b92506104668130868a611bb2565b8261047182866115cd565b61047b9190612e9d565b9650505b600061048f8c60000151336115cd565b6104999083612e9d565b90508b610100015187101561050a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f52657475726e20616d6f756e74206973206e6f7420656e6f756768000000000060448201526064016102d2565b8b516020808e01516040805133815273ffffffffffffffffffffffffffffffffffffffff948516938101939093529083169082015290851660608201526080810182905260a081018890527fd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f89060c00160405180910390a17fddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c488d886105dc8f6020015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b6105ea578e6020015161060c565b7f00000000000000000000000042000000000000000000000000000000000000065b6040805173ffffffffffffffffffffffffffffffffffffffff9485168152602081019390935292168183015290519081900360600190a17f095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff97798989604051610674929190612eb0565b60405180910390a15a850395505050505050965096945050505050565b60008060005a905060006106a86060860186612efd565b6106b190612f3b565b9050600081610100015111610722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d696e2072657475726e2073686f756c64206e6f74206265203000000000000060448201526064016102d2565b60006107316040870187612f47565b90501161079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6578656375746f72446174612073686f756c64206265206e6f74207a65726f0060448201526064016102d2565b6107aa81610120015160206113e6565b156107e5576107da6107bf6020870187612e51565b826107cd6040890189612f47565b6100d260808b018b612f47565b935093505050915091565b6107ee81611ce4565b61080681600001518260e001518361014001516111d1565b600061081882610120015160806113e6565b9050600080600073ffffffffffffffffffffffffffffffffffffffff168460c0015173ffffffffffffffffffffffffffffffffffffffff161461085f578360c00151610861565b335b905061087384610120015160406113e6565b6109ff578351608085015160a08601516108cd9291339173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff8516146108c5578860e001516108c7565b345b886113f2565b60e08501526108dc3385611e28565b6109f66108ec60208a018a612e51565b7fd9c453570000000000000000000000000000000000000000000000000000000061091a60408c018c612f47565b60405160240161092b929190612eb0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152865187906109df9073ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b6109ea5760006109f0565b8760e001515b85611f93565b97509150610b85565b6000610a0f8560200151836115cd565b9050610a1b3386611e28565b610b31610a2b60208b018b612e51565b7fd9c4535700000000000000000000000000000000000000000000000000000000610a5960408d018d612f47565b604051602401610a6a929190612eb0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915287518890610b1e9073ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b610b29576000610b2b565b345b30611f93565b80995081945050506000610b5586602001513088608001518960a001518d8a6113f2565b9050610b678660200151308584611bb2565b5080610b778660200151846115cd565b610b819190612e9d565b9750505b836101000151871015610bf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f52657475726e20616d6f756e74206973206e6f7420656e6f756768000000000060448201526064016102d2565b83516020808601516040805133815273ffffffffffffffffffffffffffffffffffffffff948516938101939093529083169082015290821660608201526080810183905260a081018890527fd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f89060c00160405180910390a17fddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c48610c9a60208a018a612e51565b88610cd2876020015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b610ce0578660200151610d02565b7f00000000000000000000000042000000000000000000000000000000000000065b6040805173ffffffffffffffffffffffffffffffffffffffff9485168152602081019390935292168183015290519081900360600190a17f095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff9779610d6760808a018a612f47565b604051610d75929190612eb0565b60405180910390a15a850395505050505050915091565b610d94610e43565b73ffffffffffffffffffffffffffffffffffffffff8116610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102d2565b610e4081610ec4565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80600003610f45575050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051610f7c9190612fd0565b60006040518083038185875af1925050503d8060008114610fb9576040519150601f19603f3d011682016040523d82523d6000602084013e610fbe565b606091505b505090508061104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f5472616e7366657248656c7065723a204554485f5452414e534645525f46414960448201527f4c4544000000000000000000000000000000000000000000000000000000000060648201526084016102d2565b505050565b8060000361106157505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392908716916110f89190612fd0565b6000604051808303816000865af19150503d8060008114611135576040519150601f19603f3d011682016040523d82523d6000602084013e61113a565b606091505b50915091508180156111645750805115806111645750808060200190518101906111649190612fe2565b6111ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016102d2565b5050505050565b805160e00361104f576000808473ffffffffffffffffffffffffffffffffffffffff1663d505accf60e01b8460405160200161120e929190613004565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261124691612fd0565b6000604051808303816000865af19150503d8060008114611283576040519150601f19603f3d011682016040523d82523d6000602084013e611288565b606091505b5091509150816111ca5760006112d3826040518060400160405280601481526020017f5065726d69742063616c6c206661696c65643a200000000000000000000000008152506120ab565b6040517fdd62ed3e000000000000000000000000000000000000000000000000000000008152336004820152306024820152909150859073ffffffffffffffffffffffffffffffffffffffff88169063dd62ed3e90604401602060405180830381865afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c919061304c565b10156113a657806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d291906130af565b7f08c379a0afcc32b1a39302f7cb8073359698411ab5fd6e3edb2c02c0b5fba8aa816040516113d591906130af565b60405180910390a15b505050505050565b81811615155b92915050565b8351829080156115c25773ffffffffffffffffffffffffffffffffffffffff881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1460006114408a8361143a578a6115cd565b306115cd565b9050828751146114ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c6964206c656e67746800000000000000000000000000000000000060448201526064016102d2565b60005b83811015611553576000866114dd578882815181106114d0576114d06130c2565b602002602001015161150f565b6127108983815181106114f2576114f26130c2565b60200260200101518961150591906130f1565b61150f9190613108565b90506115428c85611520578c611522565b305b8c8581518110611534576115346130c2565b602002602001015184611bb2565b5061154c81613143565b90506114af565b5060006115658b8461143a578b6115cd565b61156f9083612e9d565b905061157b8188612e9d565b94507f4c39b7ce5f4f514f45cb6f82b171b8b0b7f2cbf488ad28e4eff451588e2f014b8b88838c8c8b6040516115b69695949392919061317b565b60405180910390a15050505b509695505050505050565b600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff84160361161e575073ffffffffffffffffffffffffffffffffffffffff8116316113ec565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa15801561168a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ae919061304c565b90506113ec565b60006116c3828401846132b2565b90504281606001511015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f524f555445523a2045787069726564000000000000000000000000000000000060448201526064016102d2565b60208101515181515114801561174f5750604081015151815151145b6117b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f696e76616c696420737761702064617461206c656e677468000000000000000060448201526064016102d2565b80515160005b81811015611a705760006117cf8a336115cd565b90506118178a33866000015185815181106117ec576117ec6130c2565b60200260200101518760200151868151811061180a5761180a6130c2565b6020026020010151611bb2565b888460200151838151811061182e5761182e6130c2565b6020026020010151111561189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f696e76616c6964207377617020616d6f756e740000000000000000000000000060448201526064016102d2565b60006118aa8b336115cd565b6118b49083612e9d565b90506118c0818b612e9d565b995050506000808b73ffffffffffffffffffffffffffffffffffffffff16638b674f5d60e01b866040015185815181106118fc576118fc6130c2565b602002602001015160405160240161191491906130af565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090941693909317909252905161199d9190612fd0565b6000604051808303816000865af19150503d80600081146119da576040519150601f19603f3d011682016040523d82523d6000602084013e6119df565b606091505b509150915081611a5b57611a28816040518060400160405280601b81526020017f7377617053696e676c6553657175656e6365206661696c65643a2000000000008152506120ab565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d291906130af565b50508080611a6890613143565b9150506117bb565b506000808a73ffffffffffffffffffffffffffffffffffffffff1663774b6b7e60e01b8b8a8a8860800151604051602401611aae9493929190613395565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051611b379190612fd0565b6000604051808303816000865af19150503d8060008114611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b509150915081611ba557611a2881604051806060016040528060238152602001613544602391396120ab565b5050505050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f73656e64657220213d20726563697069656e740000000000000000000000000060448201526064016102d2565b8015611cde5773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff851603611caa573073ffffffffffffffffffffffffffffffffffffffff841603611ca557611ca58282610f39565b611cde565b3073ffffffffffffffffffffffffffffffffffffffff841603611cd257611ca5848383611054565b611cde848484846124e3565b50505050565b6000611d1d826000015173ffffffffffffffffffffffffffffffffffffffff1673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1490565b9050611d2f82610120015160026113e6565b15611dae5780611d40576000611d46565b8160e001515b34116101fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964206d73672e76616c756500000000000000000000000000000060448201526064016102d2565b80611dba576000611dc0565b8160e001515b34146101fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964206d73672e76616c756500000000000000000000000000000060448201526064016102d2565b80606001515181604001515114611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f696e76616c696420737263526563656976657273206c656e677468000000000060448201526064016102d2565b6000805b826040015151811015611f245782606001518181518110611ec257611ec26130c2565b602002602001015182611ed591906133e0565b9150611f1483600001518585604001518481518110611ef657611ef66130c2565b60200260200101518660600151858151811061180a5761180a6130c2565b611f1d81613143565b9050611e9f565b508160e0015181111561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f457863656564656420646573632e616d6f756e7400000000000000000000000060448201526064016102d2565b6000806000611fa68660200151856115cd565b905060008873ffffffffffffffffffffffffffffffffffffffff168689604051611fd09190612fd0565b60006040518083038185875af1925050503d806000811461200d576040519150601f19603f3d011682016040523d82523d6000602084013e612012565b606091505b505090508061207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f43616c6c206661696c656400000000000000000000000000000000000000000060448201526064016102d2565b508061208d8760200151866115cd565b6120979190612e9d565b91508560e001519250509550959350505050565b606060448351101580156121185750826000815181106120cd576120cd6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f0800000000000000000000000000000000000000000000000000000000000000145b801561217d575082600181518110612132576121326130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167fc300000000000000000000000000000000000000000000000000000000000000145b80156121e2575082600281518110612197576121976130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7900000000000000000000000000000000000000000000000000000000000000145b80156122475750826003815181106121fc576121fc6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167fa000000000000000000000000000000000000000000000000000000000000000145b156122f35760448381018051909161225f91906133e0565b845110156122c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e76616c69642072657665727420726561736f6e000000000000000000000060448201526064016102d2565b82816040516020016122dc9291906133f3565b6040516020818303038152906040529150506113ec565b8251602414801561235d575082600081518110612312576123126130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f4e00000000000000000000000000000000000000000000000000000000000000145b80156123c2575082600181518110612377576123776130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f4800000000000000000000000000000000000000000000000000000000000000145b80156124275750826002815181106123dc576123dc6130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7b00000000000000000000000000000000000000000000000000000000000000145b801561248c575082600381518110612441576124416130c2565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f7100000000000000000000000000000000000000000000000000000000000000145b156124b1576024830151826124a08261267f565b6040516020016122dc929190613475565b816124bb846126a7565b6040516020016124cc9291906134c1565b604051602081830303815290604052905092915050565b8015611cde576040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017905291516000928392908816916125889190612fd0565b6000604051808303816000865af19150503d80600081146125c5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ca565b606091505b50915091508180156125f45750805115806125f45750808060200190518101906125f49190612fe2565b6113de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f464160448201527f494c45440000000000000000000000000000000000000000000000000000000060648201526084016102d2565b60606113ec8260405160200161269791815260200190565b6040516020818303038152906040525b80516060907f3031323334353637383961626364656600000000000000000000000000000000906000906126dc9060026130f1565b6126e79060026133e0565b67ffffffffffffffff8111156126ff576126ff6129aa565b6040519080825280601f01601f191660200182016040528015612729576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612760576127606130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127c3576127c36130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b845181101561294457826004868381518110612813576128136130c2565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016901c60f81c6010811061284f5761284f6130c2565b1a60f81b8261285f8360026130f1565b61286a9060026133e0565b8151811061287a5761287a6130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350828582815181106128bc576128bc6130c2565b60209101015160f81c600f16601081106128d8576128d86130c2565b1a60f81b826128e88360026130f1565b6128f39060036133e0565b81518110612903576129036130c2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061293c81613143565b9150506127f5565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e4057600080fd5b80356129798161294c565b919050565b6000806040838503121561299157600080fd5b823561299c8161294c565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051610160810167ffffffffffffffff811182821017156129fd576129fd6129aa565b60405290565b60405160a0810167ffffffffffffffff811182821017156129fd576129fd6129aa565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612a6d57612a6d6129aa565b604052919050565b600067ffffffffffffffff821115612a8f57612a8f6129aa565b5060051b60200190565b600082601f830112612aaa57600080fd5b81356020612abf612aba83612a75565b612a26565b82815260059290921b84018101918181019086841115612ade57600080fd5b8286015b848110156115c2578035612af58161294c565b8352918301918301612ae2565b600082601f830112612b1357600080fd5b81356020612b23612aba83612a75565b82815260059290921b84018101918181019086841115612b4257600080fd5b8286015b848110156115c25780358352918301918301612b46565b600082601f830112612b6e57600080fd5b813567ffffffffffffffff811115612b8857612b886129aa565b612bb960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a26565b818152846020838601011115612bce57600080fd5b816020850160208301376000918101602001919091529392505050565b60006101608284031215612bfe57600080fd5b612c066129d9565b9050612c118261296e565b8152612c1f6020830161296e565b6020820152604082013567ffffffffffffffff80821115612c3f57600080fd5b612c4b85838601612a99565b60408401526060840135915080821115612c6457600080fd5b612c7085838601612b02565b60608401526080840135915080821115612c8957600080fd5b612c9585838601612a99565b608084015260a0840135915080821115612cae57600080fd5b612cba85838601612b02565b60a0840152612ccb60c0850161296e565b60c084015260e084810135908401526101008085013590840152610120808501359084015261014091508184013581811115612d0657600080fd5b612d1286828701612b5d565b8385015250505092915050565b60008083601f840112612d3157600080fd5b50813567ffffffffffffffff811115612d4957600080fd5b602083019150836020828501011115612d6157600080fd5b9250929050565b60008060008060008060808789031215612d8157600080fd5b8635612d8c8161294c565b9550602087013567ffffffffffffffff80821115612da957600080fd5b612db58a838b01612beb565b96506040890135915080821115612dcb57600080fd5b612dd78a838b01612d1f565b90965094506060890135915080821115612df057600080fd5b50612dfd89828a01612d1f565b979a9699509497509295939492505050565b600060208284031215612e2157600080fd5b813567ffffffffffffffff811115612e3857600080fd5b820160a08185031215612e4a57600080fd5b9392505050565b600060208284031215612e6357600080fd5b8135612e4a8161294c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156113ec576113ec612e6e565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffea1833603018112612f3157600080fd5b9190910192915050565b60006113ec3683612beb565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112612f7c57600080fd5b83018035915067ffffffffffffffff821115612f9757600080fd5b602001915036819003821315612d6157600080fd5b60005b83811015612fc7578181015183820152602001612faf565b50506000910152565b60008251612f31818460208701612fac565b600060208284031215612ff457600080fd5b81518015158114612e4a57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000831681526000825161303e816004850160208701612fac565b919091016004019392505050565b60006020828403121561305e57600080fd5b5051919050565b6000815180845261307d816020860160208601612fac565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612e4a6020830184613065565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80820281158282048414176113ec576113ec612e6e565b60008261313e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317457613174612e6e565b5060010190565b600060c0820173ffffffffffffffffffffffffffffffffffffffff808a1684526020898186015288604086015260c0606086015282885180855260e087019150828a01945060005b818110156131e15785518516835294830194918301916001016131c3565b5050858103608087015287518082529082019350915080870160005b83811015613219578151855293820193908201906001016131fd565b5050505083151560a08401529050979650505050505050565b600082601f83011261324357600080fd5b81356020613253612aba83612a75565b82815260059290921b8401810191818101908684111561327257600080fd5b8286015b848110156115c257803567ffffffffffffffff8111156132965760008081fd5b6132a48986838b0101612b5d565b845250918301918301613276565b6000602082840312156132c457600080fd5b813567ffffffffffffffff808211156132dc57600080fd5b9083019060a082860312156132f057600080fd5b6132f8612a03565b82358281111561330757600080fd5b61331387828601612a99565b82525060208301358281111561332857600080fd5b61333487828601612b02565b60208301525060408301358281111561334c57600080fd5b61335887828601613232565b6040830152506060830135606082015260808301358281111561337a57600080fd5b61338687828601612b5d565b60808301525095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152808516604084015250608060608301526133d66080830184613065565b9695505050505050565b808201808211156113ec576113ec612e6e565b60008351613405818460208801612fac565b7f4572726f72280000000000000000000000000000000000000000000000000000908301908152835161343f816006840160208801612fac565b7f290000000000000000000000000000000000000000000000000000000000000060069290910191820152600701949350505050565b60008351613487818460208801612fac565b7f50616e6963280000000000000000000000000000000000000000000000000000908301908152835161343f816006840160208801612fac565b600083516134d3818460208801612fac565b7f556e6b6e6f776e28000000000000000000000000000000000000000000000000908301908152835161350d816008840160208801612fac565b7f29000000000000000000000000000000000000000000000000000000000000006008929091019182015260090194935050505056fe66696e616c5472616e73616374696f6e50726f63657373696e67206661696c65643a20a2646970667358221220e48ff7c54a88dc38b5a9da6fa8afe392d858ee0246b094def80ab0d6ce6dcbff64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004200000000000000000000000000000000000006

-----Decoded View---------------
Arg [0] : _WETH (address): 0x4200000000000000000000000000000000000006

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004200000000000000000000000000000000000006


Deployed Bytecode Sourcemap

36429:12727:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5657:103;;;;;;;;;;;;;:::i;:::-;;37134:254;;;;;;;;;;-1:-1:-1;37134:254:0;;;;;:::i;:::-;;:::i;40552:2677::-;;;;;;;;;;-1:-1:-1;40552:2677:0;;;;;:::i;:::-;;:::i;:::-;;;;7165:25:1;;;7221:2;7206:18;;7199:34;;;;7138:18;40552:2677:0;;;;;;;;5016:87;;;;;;;;;;-1:-1:-1;5062:7:0;5089:6;;;5016:87;;;7420:42:1;7408:55;;;7390:74;;7378:2;7363:18;5016:87:0;7244:226:1;36549:29:0;;;;;;;;;;;;;;;37394:3152;;;;;;:::i;:::-;;:::i;5915:201::-;;;;;;;;;;-1:-1:-1;5915:201:0;;;;;:::i;:::-;;:::i;5657:103::-;4902:13;:11;:13::i;:::-;5722:30:::1;5749:1;5722:18;:30::i;:::-;5657:103::o:0;37134:254::-;4902:13;:11;:13::i;:::-;36630:42;46286:29;;;;37212:171:::1;;37248:50;37279:10;37291:6;37248:30;:50::i;:::-;37134:254:::0;;:::o;37212:171::-:1;37321:54;37349:5;37356:10;37368:6;37321:27;:54::i;40552:2677::-:0;40733:20;40755:15;40779:17;40799:9;40779:29;;40826:21;40833:4;:13;;;46286:29;;36630:42;46286:29;;46212:110;40826:21;40825:22;40817:69;;;;;;;8333:2:1;40817:69:0;;;8315:21:1;8372:2;8352:18;;;8345:30;8411:34;8391:18;;;8384:62;8482:4;8462:18;;;8455:32;8504:19;;40817:69:0;;;;;;;;;40895:48;40903:4;:13;;;40918:4;:11;;;40931:4;:11;;;40895:7;:48::i;:::-;40975:16;;;;40952:19;;40975:30;;;40974:64;;41022:4;:16;;;40974:64;;;41009:10;40974:64;40952:86;;41054:10;41067:38;41081:4;:10;;;36987:4;41067:13;:38::i;:::-;41054:51;;41119:38;41133:4;:10;;;36939:4;41119:13;:38::i;:::-;41114:275;;41234:91;41243:4;:13;;;41258:10;41270:4;:17;;;41289:4;:15;;;41306:4;:11;;;41319:5;41234:8;:91::i;:::-;41220:11;;;:105;41114:275;;;41374:4;41352:27;;41114:275;41045:351;41404:25;41432:39;41444:4;:13;;;41459:11;41432;:39::i;:::-;41404:67;;41478:25;41506:38;41518:4;:13;;;41533:10;41506:11;:38::i;:::-;41478:66;;41551:178;41593:6;41616:4;:13;;;41639:4;:11;;;41667:4;:13;;;41690:11;41710:12;;41551:33;:178::i;:::-;41834:17;41792:39;41804:4;:13;;;41819:11;41792;:39::i;:::-;:59;;;;:::i;:::-;41777:74;;41890:38;41904:4;:10;;;36939:4;41890:13;:38::i;:::-;41886:852;;;41954:10;41967:38;41981:4;:10;;;36987:4;41967:13;:38::i;:::-;41954:51;;42033:186;42056:4;:13;;;42092:4;42112;:17;;;42144:4;:15;;;42174:12;42201:5;42033:8;:186::i;:::-;42261:13;;;;42299:16;;;;42018:201;;-1:-1:-1;42261:13:0;-1:-1:-1;42299:30:0;;;:62;;42345:4;:16;;;42299:62;;;42332:10;42299:62;42285:76;;42433:34;42445:8;42455:11;42433;:34::i;:::-;42413:54;;42534:68;42551:8;42569:4;42576:11;42589:12;42534:16;:68::i;:::-;42711:17;42674:34;42686:8;42696:11;42674;:34::i;:::-;:54;;;;:::i;:::-;42659:69;;41930:808;41886:852;42751:19;42793:38;42805:4;:13;;;42820:10;42793:11;:38::i;:::-;42773:58;;:17;:58;:::i;:::-;42751:80;;42862:4;:20;;;42846:12;:36;;42838:76;;;;;;;9058:2:1;42838:76:0;;;9040:21:1;9097:2;9077:18;;;9070:30;9136:29;9116:18;;;9109:57;9183:18;;42838:76:0;8856:351:1;42838:76:0;42948:13;;42963;;;;;42928:89;;;42936:10;9586:34:1;;9535:42;9656:15;;;9636:18;;;9629:43;;;;9708:15;;;9688:18;;;9681:43;9760:15;;;9755:2;9740:18;;9733:43;9807:3;9792:19;;9785:35;;;9851:3;9836:19;;9829:35;;;42928:89:0;;9512:3:1;9497:19;42928:89:0;;;;;;;43029:94;43046:6;43055:12;43069:21;43076:4;:13;;;46286:29;;36630:42;46286:29;;46212:110;43069:21;:53;;43108:4;:13;;;43069:53;;;43093:4;43069:53;43029:94;;;10087:42:1;10156:15;;;10138:34;;10203:2;10188:18;;10181:34;;;;10251:15;;10231:18;;;10224:43;43029:94:0;;;;;;10065:2:1;43029:94:0;;;43135:22;43146:10;;43135:22;;;;;;;:::i;:::-;;;;;;;;43207:9;43195;:21;43185:31;;40772:2457;;;;;40552:2677;;;;;;;;;:::o;37394:3152::-;37489:20;37511:15;37538:17;37558:9;37538:29;-1:-1:-1;37574:29:0;37606:14;;;;:9;:14;:::i;:::-;37574:46;;;:::i;:::-;;;37660:1;37637:4;:20;;;:24;37629:63;;;;;;;11558:2:1;37629:63:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:28;11616:18;;;11609:56;11682:18;;37629:63:0;11356:350:1;37629:63:0;37737:1;37707:20;;;;:9;:20;:::i;:::-;:27;;:31;37699:75;;;;;;;12498:2:1;37699:75:0;;;12480:21:1;12537:2;12517:18;;;12510:30;12576:33;12556:18;;;12549:61;12627:18;;37699:75:0;12296:355:1;37699:75:0;37812:39;37826:4;:10;;;36891:4;37812:13;:39::i;:::-;37808:186;;;37878:108;37914:20;;;;:9;:20;:::i;:::-;37937:4;37943:20;;;;:9;:20;:::i;:::-;37965;;;;:9;:20;:::i;37878:108::-;37862:124;;;;;;37394:3152;;;:::o;37808:186::-;38002:30;38027:4;38002:24;:30::i;:::-;38039:48;38047:4;:13;;;38062:4;:11;;;38075:4;:11;;;38039:7;:48::i;:::-;38096:13;38112:38;38126:4;:10;;;36987:4;38112:13;:38::i;:::-;38096:54;;38157:19;38183;38233:1;38205:30;;:4;:16;;;:30;;;:62;;38251:4;:16;;;38205:62;;;38238:10;38205:62;38183:84;;38279:38;38293:4;:10;;;36939:4;38279:13;:38::i;:::-;38274:1860;;38471:13;;38520:17;;;;38550:15;;;;38450:207;;38471:13;38497:10;;36630:42;46286:29;;;;38578:47;;38614:4;:11;;;38578:47;;;38602:9;38578:47;38638:8;38450;:207::i;:::-;38436:11;;;:221;38728:39;38750:10;38436:4;38728:21;:39::i;:::-;38835:247;38860:20;;;;:9;:20;:::i;:::-;38916:39;38957:20;;;;:9;:20;:::i;:::-;38893:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39015:13;;38991:4;;39008:21;;46286:29;;36630:42;46286:29;;46212:110;39008:21;:39;;39046:1;39008:39;;;39032:4;:11;;;39008:39;39060:11;38835:12;:247::i;:::-;38805:277;-1:-1:-1;38805:277:0;-1:-1:-1;38274:1860:0;;;39178:33;39214:39;39226:4;:13;;;39241:11;39214;:39::i;:::-;39178:75;;39320:39;39342:10;39354:4;39320:21;:39::i;:::-;39450:235;39473:20;;;;:9;:20;:::i;:::-;39527:39;39568:20;;;;:9;:20;:::i;:::-;39504:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39622:13;;39600:4;;39615:21;;46286:29;;36630:42;46286:29;;46212:110;39615:21;:37;;39651:1;39615:37;;;39639:9;39615:37;39671:4;39450:12;:235::i;:::-;39420:265;;;;;;;;39746:18;39767:175;39788:4;:13;;;39822:4;39840;:17;;;39870:4;:15;;;39898:12;39923:8;39767;:175::i;:::-;39746:196;;39953:71;39970:4;:13;;;39993:4;40000:11;40013:10;39953:16;:71::i;:::-;39696:338;40101:25;40059:39;40071:4;:13;;;40086:11;40059;:39::i;:::-;:67;;;;:::i;:::-;40044:82;;39105:1029;38274:1860;40164:4;:20;;;40148:12;:36;;40140:76;;;;;;;9058:2:1;40140:76:0;;;9040:21:1;9097:2;9077:18;;;9070:30;9136:29;9116:18;;;9109:57;9183:18;;40140:76:0;8856:351:1;40140:76:0;40250:13;;40265;;;;;40230:89;;;40238:10;9586:34:1;;9535:42;9656:15;;;9636:18;;;9629:43;;;;9708:15;;;9688:18;;;9681:43;9760:15;;;9755:2;9740:18;;9733:43;9807:3;9792:19;;9785:35;;;9851:3;9836:19;;9829:35;;;40230:89:0;;9512:3:1;9497:19;40230:89:0;;;;;;;40331:99;40340:20;;;;:9;:20;:::i;:::-;40362:12;40376:21;40383:4;:13;;;46286:29;;36630:42;46286:29;;46212:110;40376:21;:53;;40415:4;:13;;;40376:53;;;40400:4;40376:53;40331:99;;;10087:42:1;10156:15;;;10138:34;;10203:2;10188:18;;10181:34;;;;10251:15;;10231:18;;;10224:43;40331:99:0;;;;;;10065:2:1;40331:99:0;;;40442:32;40453:20;;;;:9;:20;:::i;:::-;40442:32;;;;;;;:::i;:::-;;;;;;;;40524:9;40512;:21;40502:31;;37531:3015;;;;;37394:3152;;;:::o;5915:201::-;4902:13;:11;:13::i;:::-;6004:22:::1;::::0;::::1;5996:73;;;::::0;::::1;::::0;;12858:2:1;5996:73:0::1;::::0;::::1;12840:21:1::0;12897:2;12877:18;;;12870:30;12936:34;12916:18;;;12909:62;13007:8;12987:18;;;12980:36;13033:19;;5996:73:0::1;12656:402:1::0;5996:73:0::1;6080:28;6099:8;6080:18;:28::i;:::-;5915:201:::0;:::o;5181:132::-;5062:7;5089:6;5245:23;5089:6;3642:10;5245:23;5237:68;;;;;;;13265:2:1;5237:68:0;;;13247:21:1;;;13284:18;;;13277:30;13343:34;13323:18;;;13316:62;13395:18;;5237:68:0;13063:356:1;6276:191:0;6350:16;6369:6;;;6386:17;;;;;;;;;;6419:40;;6369:6;;;;;;;6419:40;;6350:16;6419:40;6339:128;6276:191;:::o;36099:219::-;36171:5;36180:1;36171:10;36167:23;;36099:219;;:::o;36167:23::-;36237:12;;;36197;36237;;;;;;;;;36215:7;;;;36230:5;;36215:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36196:54;;;36265:7;36257:55;;;;;;;14173:2:1;36257:55:0;;;14155:21:1;14212:2;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;14322:5;14302:18;;;14295:33;14345:19;;36257:55:0;13971:399:1;36257:55:0;36160:158;36099:219;;:::o;35243:399::-;35410:5;35419:1;35410:10;35406:23;;35243:399;;;:::o;35406:23::-;35482:45;;;35471:10;14567:55:1;;;35482:45:0;;;14549:74:1;14639:18;;;;14632:34;;;35482:45:0;;;;;;;;;;14522:18:1;;;;35482:45:0;;;;;;;;;;;;;35471:57;;-1:-1:-1;;;;35471:10:0;;;;:57;;35482:45;35471:57;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35435:93;;;;35543:7;:57;;;;-1:-1:-1;35555:11:0;;:16;;:44;;;35586:4;35575:24;;;;;;;;;;;;:::i;:::-;35535:101;;;;;;;15161:2:1;35535:101:0;;;15143:21:1;15200:2;15180:18;;;15173:30;15239:33;15219:18;;;15212:61;15290:18;;35535:101:0;14959:355:1;35535:101:0;35336:306;;35243:399;;;:::o;30586:621::-;30694:6;:13;30711:6;30694:23;30690:512;;30787:12;30801:19;30832:5;30824:19;;30871:28;;;30901:6;30854:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;30824:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30786:131;;;;30931:7;30926:269;;30951:20;30974:56;30999:6;30974:56;;;;;;;;;;;;;;;;;:24;:56::i;:::-;31045:42;;;;;31061:10;31045:42;;;15989:34:1;31081:4:0;16039:18:1;;;16032:43;30951:79:0;;-1:-1:-1;31090:6:0;;31045:15;;;;;;15901:18:1;;31045:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;31041:145;;;31118:6;31111:14;;;;;;;;;;;:::i;31041:145::-;31161:13;31167:6;31161:13;;;;;;:::i;:::-;;;;;;;;31041:145;30940:255;30719:483;;30586:621;;;:::o;49033:120::-;49129:13;;;:18;;49033:120;;;;;:::o;48069:958::-;48338:17;;48296:11;;48366:17;;48362:660;;46286:29;;;36630:42;46286:29;48394:10;48453:48;46286:29;;48472:28;;48496:4;48453:11;:48::i;48472:28::-;48488:4;48453:11;:48::i;:::-;48429:72;;48536:13;48518:7;:14;:31;48510:58;;;;;;;17037:2:1;48510:58:0;;;17019:21:1;17076:2;17056:18;;;17049:30;17115:16;17095:18;;;17088:44;17149:18;;48510:58:0;16835:338:1;48510:58:0;48582:9;48577:218;48597:13;48593:1;:17;48577:218;;;48628:14;48645:5;:53;;48688:7;48696:1;48688:10;;;;;;;;:::i;:::-;;;;;;;48645:53;;;37029:5;48668:7;48676:1;48668:10;;;;;;;;:::i;:::-;;;;;;;48654:11;:24;;;;:::i;:::-;48653:32;;;;:::i;:::-;48628:70;;48709:76;48726:5;48733;:28;;48757:4;48733:28;;;48749:4;48733:28;48763:10;48774:1;48763:13;;;;;;;;:::i;:::-;;;;;;;48778:6;48709:16;:76::i;:::-;-1:-1:-1;48612:3:0;;;:::i;:::-;;;48577:218;;;;48803:16;48838:48;48850:5;48857;:28;;48881:4;48453:11;:48::i;48838:::-;48822:64;;:13;:64;:::i;:::-;48803:83;-1:-1:-1;48908:22:0;48803:83;48908:11;:22;:::i;:::-;48895:35;;48944:70;48956:5;48964:11;48977:8;48987:10;48999:7;49008:5;48944:70;;;;;;;;;;;:::i;:::-;;;;;;;;48385:637;;;48362:660;48276:751;48069:958;;;;;;;;:::o;45998:208::-;46073:7;36630:42;46286:29;;;;46089:112;;-1:-1:-1;46124:15:0;;;;46117:22;;46089:112;46169:24;;;;;:15;7408:55:1;;;46169:24:0;;;7390:74:1;46169:15:0;;;;;7363:18:1;;46169:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46162:31;;;;43891:2101;44116:30;44149:34;;;;44160:4;44149:34;:::i;:::-;44116:67;;44219:15;44198:8;:17;;;:36;;44190:64;;;;;;;21964:2:1;44190:64:0;;;21946:21:1;22003:2;21983:18;;;21976:30;22042:17;22022:18;;;22015:45;22077:18;;44190:64:0;21762:339:1;44190:64:0;44307:25;;;;:32;44277:19;;:26;:62;:130;;;;-1:-1:-1;44382:18:0;;;;:25;44352:19;;:26;:55;44277:130;44261:188;;;;;;;22308:2:1;44261:188:0;;;22290:21:1;22347:2;22327:18;;;22320:30;22386:26;22366:18;;;22359:54;22430:18;;44261:188:0;22106:348:1;44261:188:0;44476:19;;:26;44456:17;44509:945;44533:9;44529:1;:13;44509:945;;;44612:21;44636:40;44655:7;44665:10;44636:11;:40::i;:::-;44612:64;;44687:99;44711:7;44721:10;44733:8;:19;;;44753:1;44733:22;;;;;;;;:::i;:::-;;;;;;;44757:8;:25;;;44783:1;44757:28;;;;;;;;:::i;:::-;;;;;;;44687:16;:99::i;:::-;44837:15;44805:8;:25;;;44831:1;44805:28;;;;;;;;:::i;:::-;;;;;;;:47;;44797:79;;;;;;;22661:2:1;44797:79:0;;;22643:21:1;22700:2;22680:18;;;22673:30;22739:21;22719:18;;;22712:49;22778:18;;44797:79:0;22459:343:1;44797:79:0;44887:19;44925:40;44944:7;44954:10;44925:11;:40::i;:::-;44909:56;;:13;:56;:::i;:::-;44887:78;-1:-1:-1;44976:30:0;44887:78;44976:30;;:::i;:::-;;;44601:415;;45155:12;45169:19;45200:6;45192:20;;45248:34;;;45284:8;:18;;;45303:1;45284:21;;;;;;;;:::i;:::-;;;;;;;45225:81;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45192:125;;;;45225:81;45192:125;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45154:163;;;;45333:7;45328:110;;45362:63;45387:6;45362:63;;;;;;;;;;;;;;;;;:24;:63::i;:::-;45355:71;;;;;;;;;;;:::i;45328:110::-;45024:423;;44544:3;;;;;:::i;:::-;;;;44509:945;;;;45585:12;45599:19;45630:6;45622:20;;45688:42;;;45743:7;45763:8;45784:11;45808:8;:29;;;45653:195;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45622:235;;;;45653:195;45622:235;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45584:273;;;;45871:7;45866:114;;45898:71;45923:6;45898:71;;;;;;;;;;;;;;;;;:24;:71::i;45866:114::-;45460:527;;44109:1883;;43891:2101;;;;;;;:::o;43235:547::-;43374:2;43366:10;;:4;:10;;;43358:42;;;;;;;23758:2:1;43358:42:0;;;23740:21:1;23797:2;23777:18;;;23770:30;23836:21;23816:18;;;23809:49;23875:18;;43358:42:0;23556:343:1;43358:42:0;43411:10;;43407:370;;36630:42;46286:29;;;;43432:338;;43482:4;43466:21;;;;43462:69;;43489:42;43520:2;43524:6;43489:30;:42::i;:::-;43432:338;;;43578:4;43562:21;;;;43558:203;;43598:55;43634:5;43642:2;43646:6;43598:27;:55::i;43558:203::-;43684:65;43724:5;43732:4;43738:2;43742:6;43684:31;:65::i;:::-;43235:547;;;;:::o;47045:357::-;47126:11;47140:21;47147:4;:13;;;46286:29;;36630:42;46286:29;;46212:110;47140:21;47126:35;;47172:46;47186:4;:10;;;36727:4;47172:13;:46::i;:::-;47168:229;;;47250:6;:24;;47273:1;47250:24;;;47259:4;:11;;;47250:24;47237:9;:38;47229:68;;;;;;;24106:2:1;47229:68:0;;;24088:21:1;24145:2;24125:18;;;24118:30;24184:19;24164:18;;;24157:47;24221:18;;47229:68:0;23904:341:1;47168:229:0;47342:6;:24;;47365:1;47342:24;;;47351:4;:11;;;47342:24;47328:9;:39;47320:69;;;;;;;24106:2:1;47320:69:0;;;24088:21:1;24145:2;24125:18;;;24118:30;24184:19;24164:18;;;24157:47;24221:18;;47320:69:0;23904:341:1;47538:459:0;47666:4;:15;;;:22;47638:4;:17;;;:24;:50;47630:90;;;;;;;24452:2:1;47630:90:0;;;24434:21:1;24491:2;24471:18;;;24464:30;24530:29;24510:18;;;24503:57;24577:18;;47630:90:0;24250:351:1;47630:90:0;47729:13;47754:9;47749:183;47769:4;:17;;;:24;47765:1;:28;47749:183;;;47818:4;:15;;;47834:1;47818:18;;;;;;;;:::i;:::-;;;;;;;47809:27;;;;;:::i;:::-;;;47845:79;47862:4;:13;;;47877:4;47883;:17;;;47901:1;47883:20;;;;;;;;:::i;:::-;;;;;;;47905:4;:15;;;47921:1;47905:18;;;;;;;;:::i;47845:79::-;47795:3;;;:::i;:::-;;;47749:183;;;;47955:4;:11;;;47946:5;:20;;47938:53;;;;;;;24938:2:1;47938:53:0;;;24920:21:1;24977:2;24957:18;;;24950:30;25016:22;24996:18;;;24989:50;25056:18;;47938:53:0;24736:344:1;46436:603:0;46618:19;46639:20;46668:25;46696:39;46708:4;:13;;;46723:11;46696;:39::i;:::-;46668:67;;46788:12;46806:10;:15;;46829:5;46836:10;46806:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46787:60;;;46864:7;46856:31;;;;;;;25287:2:1;46856:31:0;;;25269:21:1;25326:2;25306:18;;;25299:30;25365:13;25345:18;;;25338:41;25396:18;;46856:31:0;25085:335:1;46856:31:0;46742:153;46984:17;46942:39;46954:4;:13;;;46969:11;46942;:39::i;:::-;:59;;;;:::i;:::-;46927:74;;47022:4;:11;;;47008:25;;46661:378;46436:603;;;;;;;;:::o;27021:1769::-;27100:13;27369:2;27354:4;:11;:17;;:38;;;;;27375:4;27380:1;27375:7;;;;;;;;:::i;:::-;;;;;;;;:17;;27354:38;:59;;;;;27396:4;27401:1;27396:7;;;;;;;;:::i;:::-;;;;;;;;:17;;27354:59;:80;;;;;27417:4;27422:1;27417:7;;;;;;;;:::i;:::-;;;;;;;;:17;;27354:80;:101;;;;;27438:4;27443:1;27438:7;;;;;;;;:::i;:::-;;;;;;;;:17;;27354:101;27350:1356;;;27654:2;27644:13;;;28132:20;;27644:13;;28127:25;;28132:20;28127:25;:::i;:::-;28112:4;:11;:40;;28104:74;;;;;;;25627:2:1;28104:74:0;;;25609:21:1;25666:2;25646:18;;;25639:30;25705:23;25685:18;;;25678:51;25746:18;;28104:74:0;25425:345:1;28104:74:0;28218:6;28236;28201:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28187:62;;;;;27350:1356;28331:4;:11;28346:2;28331:17;:38;;;;;28352:4;28357:1;28352:7;;;;;;;;:::i;:::-;;;;;;;;:17;;28331:38;:59;;;;;28373:4;28378:1;28373:7;;;;;;;;:::i;:::-;;;;;;;;:17;;28331:59;:80;;;;;28394:4;28399:1;28394:7;;;;;;;;:::i;:::-;;;;;;;;:17;;28331:80;:101;;;;;28415:4;28420:1;28415:7;;;;;;;;:::i;:::-;;;;;;;;:17;;28331:101;28327:379;;;28609:2;28599:13;;28593:20;28661:6;28679:12;28593:20;28679:6;:12::i;:::-;28644:53;;;;;;;;;:::i;28327:379::-;28745:6;28765:12;28772:4;28765:6;:12::i;:::-;28728:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28714:70;;27021:1769;;;;:::o;35648:445::-;35846:23;;35862:7;35846:23;35922:51;;;35911:10;28470:15:1;;;35922:51:0;;;28452:34:1;28522:15;;;28502:18;;;28495:43;28554:18;;;;28547:34;;;35922:51:0;;;;;;;;;;28364:18:1;;;;35922:51:0;;;;;;;;;;;;;35911:63;;-1:-1:-1;;;;35911:10:0;;;;:63;;35922:51;35911:63;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35875:99;;;;35989:7;:57;;;;-1:-1:-1;36001:11:0;;:16;;:44;;;36032:4;36021:24;;;;;;;;;;;;:::i;:::-;35981:106;;;;;;;28794:2:1;35981:106:0;;;28776:21:1;28833:2;28813:18;;;28806:30;28872:34;28852:18;;;28845:62;28943:6;28923:18;;;28916:34;28967:19;;35981:106:0;28592:400:1;28796:119:0;28849:13;28878:31;28902:5;28885:23;;;;;;29126:19:1;;29170:2;29161:12;;28997:182;28885:23:0;;;;;;;;;;;;;28921:425;29093:11;;28978:13;;29000:53;;:16;;29093:15;;29107:1;29093:15;:::i;:::-;29089:19;;:1;:19;:::i;:::-;29079:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29079:30:0;;29060:49;;29116:12;:3;29120:1;29116:6;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;;29135;:3;29139:1;29135:6;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;;29159:9;29154:162;29178:4;:11;29174:1;:15;29154:162;;;29222:8;29248:1;29237:4;29242:1;29237:7;;;;;;;;:::i;:::-;;;;;;;:12;;:7;29231:19;29222:29;;;;;;;:::i;:::-;;;;29205:3;29209:5;29213:1;29209;:5;:::i;:::-;:9;;29217:1;29209:9;:::i;:::-;29205:14;;;;;;;;:::i;:::-;;;;:46;;;;;;;;;;;29277:8;29292:4;29297:1;29292:7;;;;;;;;:::i;:::-;;;;;;;;29302:4;29286:21;29277:31;;;;;;;:::i;:::-;;;;29260:3;29264:5;29268:1;29264;:5;:::i;:::-;:9;;29272:1;29264:9;:::i;:::-;29260:14;;;;;;;;:::i;:::-;;;;:48;;;;;;;;;;-1:-1:-1;29191:3:0;;;;:::i;:::-;;;;29154:162;;;-1:-1:-1;29336:3:0;28921:425;-1:-1:-1;;;28921:425:0:o;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:134;241:20;;270:31;241:20;270:31;:::i;:::-;173:134;;;:::o;312:315::-;380:6;388;441:2;429:9;420:7;416:23;412:32;409:52;;;457:1;454;447:12;409:52;496:9;483:23;515:31;540:5;515:31;:::i;:::-;565:5;617:2;602:18;;;;589:32;;-1:-1:-1;;;312:315:1:o;632:184::-;684:77;681:1;674:88;781:4;778:1;771:15;805:4;802:1;795:15;821:255;893:2;887:9;935:6;923:19;;972:18;957:34;;993:22;;;954:62;951:88;;;1019:18;;:::i;:::-;1055:2;1048:22;821:255;:::o;1081:253::-;1153:2;1147:9;1195:4;1183:17;;1230:18;1215:34;;1251:22;;;1212:62;1209:88;;;1277:18;;:::i;1339:334::-;1410:2;1404:9;1466:2;1456:13;;1471:66;1452:86;1440:99;;1569:18;1554:34;;1590:22;;;1551:62;1548:88;;;1616:18;;:::i;:::-;1652:2;1645:22;1339:334;;-1:-1:-1;1339:334:1:o;1678:183::-;1738:4;1771:18;1763:6;1760:30;1757:56;;;1793:18;;:::i;:::-;-1:-1:-1;1838:1:1;1834:14;1850:4;1830:25;;1678:183::o;1866:737::-;1920:5;1973:3;1966:4;1958:6;1954:17;1950:27;1940:55;;1991:1;1988;1981:12;1940:55;2027:6;2014:20;2053:4;2077:60;2093:43;2133:2;2093:43;:::i;:::-;2077:60;:::i;:::-;2171:15;;;2257:1;2253:10;;;;2241:23;;2237:32;;;2202:12;;;;2281:15;;;2278:35;;;2309:1;2306;2299:12;2278:35;2345:2;2337:6;2333:15;2357:217;2373:6;2368:3;2365:15;2357:217;;;2453:3;2440:17;2470:31;2495:5;2470:31;:::i;:::-;2514:18;;2552:12;;;;2390;;2357:217;;2608:662;2662:5;2715:3;2708:4;2700:6;2696:17;2692:27;2682:55;;2733:1;2730;2723:12;2682:55;2769:6;2756:20;2795:4;2819:60;2835:43;2875:2;2835:43;:::i;2819:60::-;2913:15;;;2999:1;2995:10;;;;2983:23;;2979:32;;;2944:12;;;;3023:15;;;3020:35;;;3051:1;3048;3041:12;3020:35;3087:2;3079:6;3075:15;3099:142;3115:6;3110:3;3107:15;3099:142;;;3181:17;;3169:30;;3219:12;;;;3132;;3099:142;;3275:589;3317:5;3370:3;3363:4;3355:6;3351:17;3347:27;3337:55;;3388:1;3385;3378:12;3337:55;3424:6;3411:20;3450:18;3446:2;3443:26;3440:52;;;3472:18;;:::i;:::-;3516:114;3624:4;3555:66;3548:4;3544:2;3540:13;3536:86;3532:97;3516:114;:::i;:::-;3655:2;3646:7;3639:19;3701:3;3694:4;3689:2;3681:6;3677:15;3673:26;3670:35;3667:55;;;3718:1;3715;3708:12;3667:55;3783:2;3776:4;3768:6;3764:17;3757:4;3748:7;3744:18;3731:55;3831:1;3806:16;;;3824:4;3802:27;3795:38;;;;3810:7;3275:589;-1:-1:-1;;;3275:589:1:o;3869:1635::-;3933:5;3981:6;3969:9;3964:3;3960:19;3956:32;3953:52;;;4001:1;3998;3991:12;3953:52;4023:22;;:::i;:::-;4014:31;;4068:29;4087:9;4068:29;:::i;:::-;4061:5;4054:44;4130:38;4164:2;4153:9;4149:18;4130:38;:::i;:::-;4125:2;4118:5;4114:14;4107:62;4220:2;4209:9;4205:18;4192:32;4243:18;4284:2;4276:6;4273:14;4270:34;;;4300:1;4297;4290:12;4270:34;4336:57;4389:3;4380:6;4369:9;4365:22;4336:57;:::i;:::-;4331:2;4324:5;4320:14;4313:81;4447:2;4436:9;4432:18;4419:32;4403:48;;4476:2;4466:8;4463:16;4460:36;;;4492:1;4489;4482:12;4460:36;4528:59;4583:3;4572:8;4561:9;4557:24;4528:59;:::i;:::-;4523:2;4516:5;4512:14;4505:83;4641:3;4630:9;4626:19;4613:33;4597:49;;4671:2;4661:8;4658:16;4655:36;;;4687:1;4684;4677:12;4655:36;4724:59;4779:3;4768:8;4757:9;4753:24;4724:59;:::i;:::-;4718:3;4711:5;4707:15;4700:84;4837:3;4826:9;4822:19;4809:33;4793:49;;4867:2;4857:8;4854:16;4851:36;;;4883:1;4880;4873:12;4851:36;4920:59;4975:3;4964:8;4953:9;4949:24;4920:59;:::i;:::-;4914:3;4907:5;4903:15;4896:84;5013:39;5047:3;5036:9;5032:19;5013:39;:::i;:::-;5007:3;4996:15;;4989:64;5114:3;5099:19;;;5086:33;5069:15;;;5062:58;5139:3;5187:18;;;5174:32;5158:14;;;5151:56;5226:3;5274:18;;;5261:32;5245:14;;;5238:56;5313:3;;-1:-1:-1;5354:18:1;;;5341:32;5385:16;;;5382:36;;;5414:1;5411;5404:12;5382:36;5450:47;5493:3;5482:8;5471:9;5467:24;5450:47;:::i;:::-;5445:2;5438:5;5434:14;5427:71;;;;3869:1635;;;;:::o;5509:347::-;5560:8;5570:6;5624:3;5617:4;5609:6;5605:17;5601:27;5591:55;;5642:1;5639;5632:12;5591:55;-1:-1:-1;5665:20:1;;5708:18;5697:30;;5694:50;;;5740:1;5737;5730:12;5694:50;5777:4;5769:6;5765:17;5753:29;;5829:3;5822:4;5813:6;5805;5801:19;5797:30;5794:39;5791:59;;;5846:1;5843;5836:12;5791:59;5509:347;;;;;:::o;5861:1125::-;6033:6;6041;6049;6057;6065;6073;6126:3;6114:9;6105:7;6101:23;6097:33;6094:53;;;6143:1;6140;6133:12;6094:53;6182:9;6169:23;6201:31;6226:5;6201:31;:::i;:::-;6251:5;-1:-1:-1;6307:2:1;6292:18;;6279:32;6330:18;6360:14;;;6357:34;;;6387:1;6384;6377:12;6357:34;6410:68;6470:7;6461:6;6450:9;6446:22;6410:68;:::i;:::-;6400:78;;6531:2;6520:9;6516:18;6503:32;6487:48;;6560:2;6550:8;6547:16;6544:36;;;6576:1;6573;6566:12;6544:36;6615:60;6667:7;6656:8;6645:9;6641:24;6615:60;:::i;:::-;6694:8;;-1:-1:-1;6589:86:1;-1:-1:-1;6782:2:1;6767:18;;6754:32;;-1:-1:-1;6798:16:1;;;6795:36;;;6827:1;6824;6817:12;6795:36;;6866:60;6918:7;6907:8;6896:9;6892:24;6866:60;:::i;:::-;5861:1125;;;;-1:-1:-1;5861:1125:1;;-1:-1:-1;5861:1125:1;;6945:8;;5861:1125;-1:-1:-1;;;5861:1125:1:o;7475:399::-;7573:6;7626:2;7614:9;7605:7;7601:23;7597:32;7594:52;;;7642:1;7639;7632:12;7594:52;7682:9;7669:23;7715:18;7707:6;7704:30;7701:50;;;7747:1;7744;7737:12;7701:50;7770:22;;7826:3;7808:16;;;7804:26;7801:46;;;7843:1;7840;7833:12;7801:46;7866:2;7475:399;-1:-1:-1;;;7475:399:1:o;7879:247::-;7938:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:52;;;8007:1;8004;7997:12;7959:52;8046:9;8033:23;8065:31;8090:5;8065:31;:::i;8534:184::-;8586:77;8583:1;8576:88;8683:4;8680:1;8673:15;8707:4;8704:1;8697:15;8723:128;8790:9;;;8811:11;;;8808:37;;;8825:18;;:::i;10278:447::-;10435:2;10424:9;10417:21;10474:6;10469:2;10458:9;10454:18;10447:34;10531:6;10523;10518:2;10507:9;10503:18;10490:48;10587:1;10558:22;;;10582:2;10554:31;;;10547:42;;;;10641:2;10629:15;;;10646:66;10625:88;10610:104;10606:113;;10278:447;-1:-1:-1;10278:447:1:o;10730:393::-;10833:4;10891:11;10878:25;10981:66;10970:8;10954:14;10950:29;10946:102;10926:18;10922:127;10912:155;;11063:1;11060;11053:12;10912:155;11084:33;;;;;10730:393;-1:-1:-1;;10730:393:1:o;11128:223::-;11250:9;11287:58;11330:14;11323:5;11287:58;:::i;11711:580::-;11788:4;11794:6;11854:11;11841:25;11944:66;11933:8;11917:14;11913:29;11909:102;11889:18;11885:127;11875:155;;12026:1;12023;12016:12;11875:155;12053:33;;12105:20;;;-1:-1:-1;12148:18:1;12137:30;;12134:50;;;12180:1;12177;12170:12;12134:50;12213:4;12201:17;;-1:-1:-1;12244:14:1;12240:27;;;12230:38;;12227:58;;;12281:1;12278;12271:12;13424:250;13509:1;13519:113;13533:6;13530:1;13527:13;13519:113;;;13609:11;;;13603:18;13590:11;;;13583:39;13555:2;13548:10;13519:113;;;-1:-1:-1;;13666:1:1;13648:16;;13641:27;13424:250::o;13679:287::-;13808:3;13846:6;13840:13;13862:66;13921:6;13916:3;13909:4;13901:6;13897:17;13862:66;:::i;14677:277::-;14744:6;14797:2;14785:9;14776:7;14772:23;14768:32;14765:52;;;14813:1;14810;14803:12;14765:52;14845:9;14839:16;14898:5;14891:13;14884:21;14877:5;14874:32;14864:60;;14920:1;14917;14910:12;15319:430;15516:66;15508:6;15504:79;15499:3;15492:92;15474:3;15613:6;15607:13;15629:74;15696:6;15692:1;15687:3;15683:11;15676:4;15668:6;15664:17;15629:74;:::i;:::-;15723:16;;;;15741:1;15719:24;;15319:430;-1:-1:-1;;;15319:430:1:o;16086:184::-;16156:6;16209:2;16197:9;16188:7;16184:23;16180:32;16177:52;;;16225:1;16222;16215:12;16177:52;-1:-1:-1;16248:16:1;;16086:184;-1:-1:-1;16086:184:1:o;16275:330::-;16317:3;16355:5;16349:12;16382:6;16377:3;16370:19;16398:76;16467:6;16460:4;16455:3;16451:14;16444:4;16437:5;16433:16;16398:76;:::i;:::-;16519:2;16507:15;16524:66;16503:88;16494:98;;;;16594:4;16490:109;;16275:330;-1:-1:-1;;16275:330:1:o;16610:220::-;16759:2;16748:9;16741:21;16722:4;16779:45;16820:2;16809:9;16805:18;16797:6;16779:45;:::i;17178:184::-;17230:77;17227:1;17220:88;17327:4;17324:1;17317:15;17351:4;17348:1;17341:15;17367:168;17440:9;;;17471;;17488:15;;;17482:22;;17468:37;17458:71;;17509:18;;:::i;17540:274::-;17580:1;17606;17596:189;;17641:77;17638:1;17631:88;17742:4;17739:1;17732:15;17770:4;17767:1;17760:15;17596:189;-1:-1:-1;17799:9:1;;17540:274::o;17819:195::-;17858:3;17889:66;17882:5;17879:77;17876:103;;17959:18;;:::i;:::-;-1:-1:-1;18006:1:1;17995:13;;17819:195::o;18115:1521::-;18441:4;18489:3;18478:9;18474:19;18512:42;18593:2;18585:6;18581:15;18570:9;18563:34;18616:2;18654:6;18649:2;18638:9;18634:18;18627:34;18697:6;18692:2;18681:9;18677:18;18670:34;18740:3;18735:2;18724:9;18720:18;18713:31;18764:6;18799;18793:13;18830:6;18822;18815:22;18868:3;18857:9;18853:19;18846:26;;18907:2;18899:6;18895:15;18881:29;;18928:1;18938:178;18952:6;18949:1;18946:13;18938:178;;;19017:13;;19013:22;;19001:35;;19091:15;;;;19056:12;;;;18974:1;18967:9;18938:178;;;-1:-1:-1;;19153:19:1;;;19147:3;19132:19;;19125:48;19223:13;;19245:21;;;19284:12;;;;-1:-1:-1;19223:13:1;-1:-1:-1;19321:15:1;;;19356:1;19366:189;19382:8;19377:3;19374:17;19366:189;;;19451:15;;19437:30;;19489:14;;;;19528:17;;;;19410:1;19401:11;19366:189;;;-1:-1:-1;;;;18089:13:1;;18082:21;19625:3;19610:19;;18070:34;19572:5;-1:-1:-1;18115:1521:1;;;;;;;;;:::o;19641:886::-;19693:5;19746:3;19739:4;19731:6;19727:17;19723:27;19713:55;;19764:1;19761;19754:12;19713:55;19800:6;19787:20;19826:4;19850:60;19866:43;19906:2;19866:43;:::i;19850:60::-;19944:15;;;20030:1;20026:10;;;;20014:23;;20010:32;;;19975:12;;;;20054:15;;;20051:35;;;20082:1;20079;20072:12;20051:35;20118:2;20110:6;20106:15;20130:368;20146:6;20141:3;20138:15;20130:368;;;20232:3;20219:17;20268:18;20255:11;20252:35;20249:125;;;20328:1;20357:2;20353;20346:14;20249:125;20399:56;20451:3;20446:2;20432:11;20424:6;20420:24;20416:33;20399:56;:::i;:::-;20387:69;;-1:-1:-1;20476:12:1;;;;20163;;20130:368;;20532:1225;20623:6;20676:2;20664:9;20655:7;20651:23;20647:32;20644:52;;;20692:1;20689;20682:12;20644:52;20732:9;20719:23;20761:18;20802:2;20794:6;20791:14;20788:34;;;20818:1;20815;20808:12;20788:34;20841:22;;;;20897:4;20879:16;;;20875:27;20872:47;;;20915:1;20912;20905:12;20872:47;20941:22;;:::i;:::-;21001:2;20988:16;21029:2;21019:8;21016:16;21013:36;;;21045:1;21042;21035:12;21013:36;21072:56;21120:7;21109:8;21105:2;21101:17;21072:56;:::i;:::-;21065:5;21058:71;;21175:2;21171;21167:11;21154:25;21204:2;21194:8;21191:16;21188:36;;;21220:1;21217;21210:12;21188:36;21256:56;21304:7;21293:8;21289:2;21285:17;21256:56;:::i;:::-;21251:2;21244:5;21240:14;21233:80;;21359:2;21355;21351:11;21338:25;21388:2;21378:8;21375:16;21372:36;;;21404:1;21401;21394:12;21372:36;21440:54;21486:7;21475:8;21471:2;21467:17;21440:54;:::i;:::-;21435:2;21428:5;21424:14;21417:78;;21548:2;21544;21540:11;21527:25;21522:2;21515:5;21511:14;21504:49;21599:3;21595:2;21591:12;21578:26;21629:2;21619:8;21616:16;21613:36;;;21645:1;21642;21635:12;21613:36;21682:44;21718:7;21707:8;21703:2;21699:17;21682:44;:::i;:::-;21676:3;21665:15;;21658:69;-1:-1:-1;21669:5:1;20532:1225;-1:-1:-1;;;;;20532:1225:1:o;23030:521::-;23224:4;23253:42;23334:2;23326:6;23322:15;23311:9;23304:34;23386:2;23378:6;23374:15;23369:2;23358:9;23354:18;23347:43;23438:2;23430:6;23426:15;23421:2;23410:9;23406:18;23399:43;;23478:3;23473:2;23462:9;23458:18;23451:31;23499:46;23540:3;23529:9;23525:19;23517:6;23499:46;:::i;:::-;23491:54;23030:521;-1:-1:-1;;;;;;23030:521:1:o;24606:125::-;24671:9;;;24692:10;;;24689:36;;;24705:18;;:::i;25775:799::-;26156:3;26194:6;26188:13;26210:66;26269:6;26264:3;26257:4;26249:6;26245:17;26210:66;:::i;:::-;26337:8;26298:16;;;26323:23;;;26371:13;;26393:78;26371:13;26458:1;26447:13;;26440:4;26428:17;;26393:78;:::i;:::-;26538:3;26534:1;26490:20;;;;26526:10;;;26519:23;26566:1;26558:10;;25775:799;-1:-1:-1;;;;25775:799:1:o;26579:::-;26960:3;26998:6;26992:13;27014:66;27073:6;27068:3;27061:4;27053:6;27049:17;27014:66;:::i;:::-;27141:8;27102:16;;;27127:23;;;27175:13;;27197:78;27175:13;27262:1;27251:13;;27244:4;27232:17;;27197:78;:::i;27383:801::-;27764:3;27802:6;27796:13;27818:66;27877:6;27872:3;27865:4;27857:6;27853:17;27818:66;:::i;:::-;27945:10;27906:16;;;27931:25;;;27981:13;;28003:78;27981:13;28068:1;28057:13;;28050:4;28038:17;;28003:78;:::i;:::-;28148:3;28144:1;28100:20;;;;28136:10;;;28129:23;28176:1;28168:10;;27383:801;-1:-1:-1;;;;27383:801:1:o

Swarm Source

ipfs://e48ff7c54a88dc38b5a9da6fa8afe392d858ee0246b094def80ab0d6ce6dcbff

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH7.87%$0.02934152,762.6942$1,548.13
ETH3.53%$0.004963139,671.5613$693.17
ETH2.79%$0.000935587,945.3323$549.5
ETH2.07%$0.0000626,551,639.1832$406.86
ETH1.54%$0.999974303.4839$303.48
ETH1.40%$1.02270.2339$275.64
ETH1.33%$0.02452310,642.0131$260.98
ETH1.03%$1,785.040.1138$203.22
ETH0.71%$0.000313448,399.2861$140.19
ETH0.67%$1,785.040.0734$130.93
ETH0.62%$93,3880.00131101$122.43
ETH0.59%$0.28786400$115.14
ETH0.59%$0.000875131,614.1711$115.11
ETH0.53%$0.000457227,057.7937$103.79
ETH0.44%$0.00364623,710.4727$86.45
ETH0.36%$0.365941191.0366$69.91
ETH0.32%$0.8673.5933$63.29
ETH0.31%$0.000361171,452.2681$61.84
ETH0.28%$155.7736$55.77
ETH0.28%$0.136648398.3237$54.43
ETH0.25%$282.370.1775$50.13
ETH0.22%$0.098756440.1411$43.47
ETH0.22%$42.081.0212$42.97
ETH0.17%$0.2518136.3887$34.34
ETH0.17%$1.1429.9022$34.11
ETH0.17%$1.1429.9022$34.11
ETH0.17%$0.149472223.5943$33.42
ETH0.16%$0.00125724,896.7484$31.29
ETH0.16%$0.87417935.447$30.99
ETH0.15%$0.0003197,558.3026$30.21
ETH0.15%$57.670.4951$28.55
ETH0.13%$0.0033917,748.6648$26.27
ETH0.13%$0.00086929,440.1282$25.58
ETH0.13%$0.000156163,421.7848$25.45
ETH0.13%$125.1499$25.15
ETH0.13%$0.00184613,499.4352$24.92
ETH0.12%$0.00019128,153.3625$24.41
ETH0.12%$0.0179071,358.6897$24.33
ETH0.12%$0.061723379.9923$23.45
ETH0.12%$93,8630.00024158$22.68
ETH0.11%$11.421.9382$22.13
ETH0.11%$107.950.2042$22.05
ETH0.11%<$0.00000160,059,440.6205$21.51
ETH0.10%$0.000173115,982.7343$20.07
ETH0.09%$0.00238,092.9877$18.62
ETH0.09%$0.0115641,559.1211$18.03
ETH0.08%$0.99979416.0974$16.09
ETH0.08%<$0.0000011,516,854,469.3216$15.76
ETH0.08%$0.00059226,172.5942$15.49
ETH0.07%$1.0413.359$13.89
ETH0.07%$1,489.90.00871758$12.99
ETH0.06%$0.00048925,338.0188$12.38
ETH0.06%$0.0003436,290.2445$12.33
ETH0.06%$0.21785956.2389$12.25
ETH0.06%$2,147.740.00567537$12.19
ETH0.06%$0.00076715,195.3427$11.65
ETH0.05%$0.013347807.168$10.77
ETH0.05%$0.0036172,920.2016$10.56
ETH0.05%$0.0034712,935.6777$10.19
ETH0.05%$0.059704163.0843$9.74
ETH0.04%$0.00041221,028.1283$8.67
ETH0.04%$0.060717132.471$8.04
ETH0.04%$0.00019540,043.2192$7.82
ETH0.04%$0.000236,758.2069$7.35
ETH0.03%$0.019804346.3158$6.86
ETH0.03%$163.80.0412$6.75
ETH0.03%$0.13279349.24$6.54
ETH0.03%$18.190.3031$5.51
ETH0.02%$14.860.3273$4.86
ETH0.02%$0.4560049.6238$4.39
ETH0.02%$0.000009438,506.9975$4.02
ETH0.01%$0.017946160.7952$2.89
ETH0.01%$0.001621,421.345$2.3
ETH0.01%$0.04259953.0718$2.26
ETH<0.01%$0.005024337.0401$1.69
ETH<0.01%$0.0086195.7221$1.68
ETH<0.01%$0.002231747.0652$1.67
ETH<0.01%$0.3583234.4919$1.61
ETH<0.01%$0.03250945.4339$1.48
ETH<0.01%$0.6528672.1183$1.38
ETH<0.01%$0.003914318.8695$1.25
ETH<0.01%$0.00002743,965.9003$1.18
ETH<0.01%$0.000006170,498.6714$1.1
ETH<0.01%$0.1104979.8634$1.09
ETH<0.01%$0.05986518.0074$1.08
ETH<0.01%$93,7620.0000094$0.8813
ETH<0.01%$39.20.0214$0.8402
ETH<0.01%$5.970.1361$0.8124
ETH<0.01%$1,953.520.00040947$0.7999
ETH<0.01%$0.0000888,024.2808$0.7035
ETH<0.01%$0.0089473.974$0.6613
ETH<0.01%$0.00596498.9899$0.5903
ETH<0.01%<$0.0000011,027,043,390.0069$0.5744
ETH<0.01%$3,624.750.00012811$0.4643
ETH<0.01%$0.002138202.3481$0.4325
ETH<0.01%<$0.0000011,111,107.1782$0.3899
ETH<0.01%$1,783.850.00018195$0.3245
ETH<0.01%$0.00919434.5956$0.318
ETH<0.01%$0.01354820.293$0.2749
ETH<0.01%$0.000472539.7014$0.2545
ETH<0.01%$92,4300.0000023$0.2122
ETH<0.01%$0.0324396.5037$0.2109
ETH<0.01%$0.3202130.6064$0.1941
ETH<0.01%$0.0631342.1679$0.1368
ETH<0.01%$0.001268106.8661$0.1355
ARB6.86%$93,6810.0144$1,349
ARB2.87%$1,789.020.3158$565.01
ARB0.41%$0.0202733,928.1057$79.63
ARB0.39%$0.328489233.4949$76.7
ARB0.37%$92,3250.00078359$72.34
ARB0.29%$93,3010.00061891$57.74
ARB0.17%$0.99999333.1297$33.13
ARB0.16%$0.99999331.053$31.05
ARB0.12%$1,667.380.0141$23.5
ARB0.10%$1,782.180.0107$19.13
ARB0.09%$118.0703$18.07
ARB0.06%$111.0862$11.09
ARB0.05%$0.0070491,346.4753$9.49
ARB0.05%$0.13951564.4519$8.99
ARB0.04%$1.077.8342$8.35
ARB0.04%$17.9115$7.93
ARB0.04%$0.9999397.8168$7.82
ARB0.04%$1,785.320.00392101$7
ARB0.03%$15.8421$5.87
ARB0.02%$0.9987454.1938$4.19
ARB0.02%$2,144.850.00185378$3.98
ARB0.02%$0.005729690.0194$3.95
ARB0.02%$0.10388235.8461$3.72
ARB0.02%$0.008403374.0105$3.14
ARB0.01%$0.16396616.3099$2.67
ARB0.01%$0.00016812,506.5927$2.1
ARB<0.01%$0.01784487.6855$1.56
ARB<0.01%$0.3645784.1913$1.53
ARB<0.01%$0.003404386.2917$1.31
ARB<0.01%$0.004158283.8641$1.18
ARB<0.01%$1.760.6691$1.18
ARB<0.01%$0.0003033,620.7894$1.1
ARB<0.01%$0.003727261.6522$0.9753
ARB<0.01%$0.0001465,331.2558$0.7792
ARB<0.01%$0.0004191,466.202$0.6141
ARB<0.01%$0.0819316.9404$0.5686
ARB<0.01%$2.080.2531$0.5264
ARB<0.01%$1.20.4089$0.4906
ARB<0.01%$0.9838420.3838$0.3776
ARB<0.01%$0.01011235.5342$0.3593
ARB<0.01%$0.001759170.723$0.3002
ARB<0.01%$0.00000932,704.4041$0.2979
ARB<0.01%$1.140.21$0.2393
ARB<0.01%$0.0230737.6787$0.1771
ARB<0.01%$10.1327$0.1327
ARB<0.01%$0.0202745.8529$0.1186
ARB<0.01%$0.2699920.3727$0.1006
SONIC8.07%$1.141,391.6854$1,586.52
SONIC2.40%$0.522517902.3925$471.52
SONIC0.82%$0.999932160.4413$160.43
SONIC0.16%$1,788.990.0174$31.12
SONIC0.06%$3.523.1159$10.97
SONIC0.03%$0.0030032,177.4073$6.54
SONIC<0.01%$0.5156481$0.515648
BASE4.74%$1,794.740.5198$932.93
BASE1.46%$1,784.870.1613$287.86
BASE0.92%$0.999974181.4235$181.42
BASE0.31%$0.97876461.8746$60.56
BASE0.25%$93,7620.00053278$49.95
BASE0.25%$0.1537314.5$48.34
BASE0.25%$148.191$48.19
BASE0.21%<$0.0000012,233,182,268$42.21
BASE0.14%$1,782.180.0154$27.45
BASE0.12%$0.00039262,641.9725$24.57
BASE0.12%$0.015971,512.516$24.15
BASE0.09%$0.00000118,094,087.0692$17.99
BASE0.07%$0.00089215,040.6998$13.42
BASE0.05%$0.003312,678.1387$8.86
BASE0.02%$2.751.6646$4.58
BASE0.02%$0.001463,116.655$4.55
BASE0.02%$0.9993393.6252$3.62
BASE0.02%$0.7781133.9044$3.04
BASE0.01%$0.000693,831.2664$2.64
BASE0.01%$0.0000021,483,000.001$2.39
BASE0.01%$0.004411493$2.17
BASE<0.01%$3.50.5202$1.82
BASE<0.01%$0.004833275.3681$1.33
BASE<0.01%$0.003915331.7075$1.3
BASE<0.01%$0.003294253.8291$0.8361
BASE<0.01%$0.02310534.9355$0.8071
BASE<0.01%<$0.000001348,036,496.8$0.8004
BASE<0.01%$0.9993580.5953$0.5948
BASE<0.01%$0.000956525.8807$0.5028
BASE<0.01%$0.002396204.7887$0.4906
BASE<0.01%$0.00057765.5758$0.4366
BASE<0.01%$0.4907090.8828$0.4332
BASE<0.01%$0.00803425.7358$0.2067
BASE<0.01%$0.00001612,662.6793$0.1985
BASE<0.01%$0.0308935.7644$0.178
BASE<0.01%$0.1394451$0.1394
BASE<0.01%$0.00001112,155.4228$0.1327
AVAX3.67%$22.931.465$720.63
AVAX2.27%$1445.2803$445.38
AVAX1.06%$0.999968207.5141$207.51
AVAX0.36%$1,794.750.0398$71.46
AVAX0.19%$27.491.3251$36.43
AVAX0.17%$22.631.4994$33.93
AVAX<0.01%$11.1155$1.12
AVAX<0.01%$2.10.1972$0.4144
AVAX<0.01%$10.3358$0.3358
BSC1.96%$613.130.627$384.41
BSC0.98%$0.710714271.8354$193.2
BSC0.62%$0.0000881,395,258.6583$122.27
BSC0.60%$1118.424$118.48
BSC0.46%$610.010.1491$90.96
BSC0.44%$186.0449$86.04
BSC0.39%$1,789.750.0427$76.45
BSC0.35%$0.092038755.2683$69.51
BSC0.28%$0.000168326,263.4654$54.84
BSC0.16%$2.0315.1484$30.75
BSC0.14%$0.00047557,132.7207$27.13
BSC0.09%$93,3880.00019098$17.84
BSC0.09%$0.1732199.99$17.32
BSC0.08%$14.361.072$15.4
BSC0.05%$0.25933436.3917$9.44
BSC0.05%$0.024868375.674$9.34
BSC0.04%$0.32977726.3736$8.7
BSC0.04%$0.054126135.5496$7.34
BSC0.03%$14.9928$4.99
BSC0.02%$0.00010240,492.5665$4.13
BSC0.02%$14.0371$4.04
BSC0.02%$0.021946157.1023$3.45
BSC0.02%$0.1612420.7997$3.35
BSC0.01%$0.0044504.7369$2.22
BSC0.01%$0.0008942,477.0816$2.22
BSC<0.01%$94,102.070.00001315$1.24
BSC<0.01%$0.00001678,559.3153$1.23
BSC<0.01%<$0.0000018,466,329.9602$1.18
BSC<0.01%<$0.000001195,264,355.0599$1.12
BSC<0.01%$0.001337830.2641$1.11
BSC<0.01%$0.1830985.7798$1.06
BSC<0.01%$0.000001804,828$1.01
BSC<0.01%$0.6389331.3249$0.8464
BSC<0.01%$0.004833151.3845$0.7316
BSC<0.01%<$0.000001250,885,756.6329$0.7079
BSC<0.01%$0.4426331.3461$0.5958
BSC<0.01%$0.0000896,642.539$0.5941
BSC<0.01%$0.001773323.6299$0.5736
BSC<0.01%$0.0001613,238.5943$0.5218
BSC<0.01%$0.00001434,061.6727$0.4693
BSC<0.01%$0.00796750.301$0.4007
BSC<0.01%$1.710.2$0.3418
BSC<0.01%$93,3090.00000231$0.2159
BSC<0.01%$0.000364461.8324$0.1682
BSC<0.01%$0.000452333.4021$0.1506
POL1.38%$0.2203091,233.5548$271.76
POL0.91%$0.00997917,838.9281$178.02
POL0.47%$0.0274053,406.9277$93.37
POL0.47%$0.00904410,220.1214$92.43
POL0.40%$178.5728$78.57
POL0.22%$2.2919.1302$43.89
POL0.17%$0.99991534.0198$34.02
POL0.15%$0.218678139.1855$30.44
POL0.14%$0.0109142,537.6383$27.7
POL0.10%$0.34234858.9044$20.17
POL0.07%$0.00066621,109.8972$14.06
POL0.06%$1,789.750.00666579$11.93
POL0.05%$176.870.0584$10.32
POL0.04%$94,0090.0000834$7.84
POL0.04%$72.970.1034$7.54
POL0.04%$0.0000071,108,929.7123$7.41
POL0.03%$0.9999156.1543$6.15
POL0.03%$0.0017752,868.1169$5.09
POL0.02%$164.050.026$4.26
POL0.02%$0.0005996,130.1751$3.67
POL0.01%$0.0003957,456.5473$2.95
POL0.01%$0.431196.6106$2.85
POL0.01%$12.6535$2.65
POL0.01%$0.09519625.2278$2.4
POL0.01%$0.0725929.452$2.14
POL0.01%$0.0556235.7559$1.99
POL<0.01%$1.151.2932$1.49
POL<0.01%$0.0154991.1494$1.41
POL<0.01%$0.005903213.6124$1.26
POL<0.01%$0.03969827.5828$1.09
POL<0.01%$0.00705883.2266$0.5874
POL<0.01%$0.0075973.0659$0.5545
POL<0.01%$14.880.0345$0.5132
POL<0.01%$1.040.4605$0.4779
POL<0.01%$0.00415595.8779$0.3983
POL<0.01%$0.9574010.2934$0.2808
POL<0.01%$0.002506102.4548$0.2567
POL<0.01%$0.0155710.524$0.1638
POL<0.01%$0.8104880.1925$0.156
POL<0.01%$10.1243$0.1243
POL<0.01%$0.000262402.9213$0.1053
POL<0.01%$0.000968103.9489$0.1006
ZKSYNC4.14%$1,785.040.4558$813.63
LINEA0.96%$1189.4654$189.47
LINEA0.77%$0.999903150.6792$150.66
LINEA0.73%$1,794.220.0802$143.96
LINEA0.32%$1,785.040.035$62.53
LINEA0.28%$0.00483711,298.1108$54.65
LINEA0.25%$0.000187262,146.3385$48.93
LINEA0.22%$142.8795$42.88
LINEA0.13%$0.204029124.0368$25.31
LINEA0.05%$0.000088122,908.6217$10.79
LINEA0.04%$0.021006378.5653$7.95
LINEA0.04%$93,9910.00008308$7.81
LINEA0.04%$0.0015734,396.1826$6.92
LINEA<0.01%$0.1351073.5735$0.4828
LINEA<0.01%$0.00000295,672.5059$0.1817
LINEA<0.01%$5.980.0261$0.1563
BLAST2.86%$1,782.80.3152$561.94
BLAST0.11%$1,794.750.0117$20.98
BLAST0.01%$0.000012211,609.7102$2.44
BLAST<0.01%$0.003281446.8593$1.47
OP0.33%$0.0246992,622.1459$64.76
OP0.23%$146.1287$46.13
OP0.22%$1,789.020.0245$43.91
OP0.18%$1.1730.9297$36.19
OP0.18%$0.99999434.7345$34.73
OP0.13%$0.76098433.3067$25.35
OP0.13%$0.99999424.7928$24.79
OP0.09%$1,785.040.0104$18.61
OP0.08%$93,6810.00016078$15.06
OP0.03%$0.9996876.4551$6.45
OP<0.01%$0.00011914,232.1511$1.69
OP<0.01%$11.6315$1.63
OP<0.01%$7.230.1272$0.9194
OP<0.01%$0.3650380.6742$0.2461
OP<0.01%$0.0493574.658$0.2299
OP<0.01%$0.2001830.6989$0.1399
OP<0.01%$0.000303445.4426$0.1348
MANTLE0.90%$1.11158.7138$176.17
MANTLE0.16%$0.99856731.2275$31.18
MANTLE0.10%$0.71123526.7188$19
MANTLE0.08%$1,789.820.00892305$15.97
MANTLE0.02%$0.0695552.0913$3.62
MANTLE0.02%$0.99833.034$3.03
MANTLE<0.01%$0.000146816.8215$0.119
MANTLE<0.01%$0.7058740.003$0.002118
SCROLL0.47%$192.115$92.14
SCROLL0.06%$93,980.470.00013038$12.25
SCROLL0.04%$5.981.4531$8.69
SCROLL0.03%$15.1422$5.14
SCROLL<0.01%$0.06712410.8401$0.7276
SCROLL<0.01%$2,150.870.00032189$0.6923
SCROLL<0.01%$0.3671131.2911$0.4739
SCROLL<0.01%$0.00483365.8824$0.3184
SCROLL<0.01%$0.0185586.8708$0.1275
SCROLL<0.01%$1,912.440.00006459$0.1235
SCROLL<0.01%$1,785.040.000000000000000044<$0.000001
ARBNOVA0.16%$1,783.870.0182$32.4
OPBNB0.14%$610.180.045$27.46
ZKEVM0.02%$1,785.040.002$3.57
ZKEVM<0.01%$11.7393$1.74
ZKEVM<0.01%$0.2204533.063$0.6752
ZKEVM<0.01%$0.251552.5205$0.634
ZKEVM<0.01%$2.10.2309$0.4851
TAIKO0.03%$1,785.040.0030001$5.36
CRONOS<0.01%<$0.00000161,076,400.8675$1.38
CRONOS<0.01%$0.000001120,120.1201$0.1537
APE<0.01%$0.5044460.1512$0.076296
BERA<0.01%$3.660.000004$0.000015
UNI
Ether (ETH)
<0.01%$1,7830.000000002516$0.000004
BTTC<0.01%$0.0000010.000000000000000004<$0.000001
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.