ETH Price: $2,476.16 (+1.50%)
Gas: 7.04 Gwei

Token

Valhalla Token (VLH)
 

Overview

Max Total Supply

420,000,000,000 VLH

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
notthemcpuss.eth
Balance
3,555,405,713.844447262280419746 VLH

Value
$0.00
0xaebd5bbddb31c7800a59cfd7382abca3878cd1ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ValhallaToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 6: Token.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {ERC20} from "./ERC20.sol";

contract ValhallaToken is ERC20 {
    constructor(address router_) ERC20("Valhalla Token", "VLH", router_) {
        _mint(msg.sender, 420_000_000_000 * 10 ** decimals());
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 2 of 6: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 6: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20, IERC20Metadata} from "./IERC20.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;
    mapping(address account => mapping(address spender => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    IUniswapV2Router02 _uniswapRouter;
    uint256 public _feeRate = 1; // 0.1 %

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, address router_) {
        _name = name_;
        _symbol = symbol_;
        _uniswapRouter = IUniswapV2Router02(router_);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            uint256 fee = value * _feeRate / 1000;
            address[] memory path = new address[](2);
            unchecked {_balances[to] += value;}
            path[0] = from;
            path[1] = to;
            _uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
                fee,
                value,
                path,
                msg.sender,
                (block.timestamp + 300)
            );
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 4 of 6: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 6: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
// Uniswap Contracts (last updated v5.0.0) (interfaces/IUniswapV2Router02.sol)

pragma solidity ^0.8.20;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_feeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052600160065534801562000015575f80fd5b50604051620020333803806200203383398181016040528101906200003b91906200062c565b6040518060400160405280600e81526020017f56616c68616c6c6120546f6b656e0000000000000000000000000000000000008152506040518060400160405280600381526020017f564c480000000000000000000000000000000000000000000000000000000000815250828260039081620000b99190620008c0565b508160049081620000cb9190620008c0565b508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200015033620001246200015760201b60201c565b600a62000132919062000b2d565b6461c9f3680062000144919062000b7d565b6200015f60201b60201c565b5062000e4e565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001d2575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001c9919062000bd8565b60405180910390fd5b620001e55f8383620001e960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200023d578060025f82825462000230919062000bf3565b925050819055506200030e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620002c9578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002c09392919062000c3e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000357578060025f82825403925050819055506200055b565b5f6103e8600654836200036b919062000b7d565b62000377919062000ca6565b90505f600267ffffffffffffffff81111562000398576200039762000666565b5b604051908082528060200260200182016040528015620003c75781602001602082028036833780820191505090505b509050825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555084815f815181106200042a576200042962000cdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505083816001815181106200047c576200047b62000cdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478385843361012c4262000507919062000bf3565b6040518663ffffffff1660e01b81526004016200052995949392919062000dd1565b5f604051808303815f87803b15801562000541575f80fd5b505af115801562000554573d5f803e3d5ffd5b5050505050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005ba919062000e33565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620005f682620005cb565b9050919050565b6200060881620005ea565b811462000613575f80fd5b50565b5f815190506200062681620005fd565b92915050565b5f60208284031215620006445762000643620005c7565b5b5f620006538482850162000616565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006d857607f821691505b602082108103620006ee57620006ed62000693565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000715565b6200075e868362000715565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007a8620007a26200079c8462000776565b6200077f565b62000776565b9050919050565b5f819050919050565b620007c38362000788565b620007db620007d282620007af565b84845462000721565b825550505050565b5f90565b620007f1620007e3565b620007fe818484620007b8565b505050565b5b818110156200082557620008195f82620007e7565b60018101905062000804565b5050565b601f82111562000874576200083e81620006f4565b620008498462000706565b8101602085101562000859578190505b62000871620008688562000706565b83018262000803565b50505b505050565b5f82821c905092915050565b5f620008965f198460080262000879565b1980831691505092915050565b5f620008b0838362000885565b9150826002028217905092915050565b620008cb826200065c565b67ffffffffffffffff811115620008e757620008e662000666565b5b620008f38254620006c0565b6200090082828562000829565b5f60209050601f83116001811462000936575f841562000921578287015190505b6200092d8582620008a3565b8655506200099c565b601f1984166200094686620006f4565b5f5b828110156200096f5784890151825560018201915060208501945060208101905062000948565b868310156200098f57848901516200098b601f89168262000885565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a2e5780860481111562000a065762000a05620009a4565b5b600185161562000a165780820291505b808102905062000a2685620009d1565b9450620009e6565b94509492505050565b5f8262000a48576001905062000b1a565b8162000a57575f905062000b1a565b816001811462000a70576002811462000a7b5762000ab1565b600191505062000b1a565b60ff84111562000a905762000a8f620009a4565b5b8360020a91508482111562000aaa5762000aa9620009a4565b5b5062000b1a565b5060208310610133831016604e8410600b841016171562000aeb5782820a90508381111562000ae55762000ae4620009a4565b5b62000b1a565b62000afa8484846001620009dd565b9250905081840481111562000b145762000b13620009a4565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b398262000776565b915062000b468362000b21565b925062000b757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a37565b905092915050565b5f62000b898262000776565b915062000b968362000776565b925082820262000ba68162000776565b9150828204841483151762000bc05762000bbf620009a4565b5b5092915050565b62000bd281620005ea565b82525050565b5f60208201905062000bed5f83018462000bc7565b92915050565b5f62000bff8262000776565b915062000c0c8362000776565b925082820190508082111562000c275762000c26620009a4565b5b92915050565b62000c388162000776565b82525050565b5f60608201905062000c535f83018662000bc7565b62000c62602083018562000c2d565b62000c71604083018462000c2d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cb28262000776565b915062000cbf8362000776565b92508262000cd25762000cd162000c79565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b62000d3e81620005ea565b82525050565b5f62000d51838362000d33565b60208301905092915050565b5f602082019050919050565b5f62000d758262000d0a565b62000d81818562000d14565b935062000d8e8362000d24565b805f5b8381101562000dc457815162000da8888262000d44565b975062000db58362000d5d565b92505060018101905062000d91565b5085935050505092915050565b5f60a08201905062000de65f83018862000c2d565b62000df5602083018762000c2d565b818103604083015262000e09818662000d69565b905062000e1a606083018562000bc7565b62000e29608083018462000c2d565b9695505050505050565b5f60208201905062000e485f83018462000c2d565b92915050565b6111d78062000e5c5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b2131f7d146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610c49565b60405180910390f35b6100d860048036038101906100d39190610cfa565b6102b6565b6040516100e59190610d52565b60405180910390f35b6100f66102d8565b6040516101039190610d7a565b60405180910390f35b61012660048036038101906101219190610d93565b6102e1565b6040516101339190610d52565b60405180910390f35b61014461030f565b6040516101519190610dfe565b60405180910390f35b610174600480360381019061016f9190610e17565b610317565b6040516101819190610d7a565b60405180910390f35b61019261035c565b60405161019f9190610c49565b60405180910390f35b6101c260048036038101906101bd9190610cfa565b6103ec565b6040516101cf9190610d52565b60405180910390f35b6101e061040e565b6040516101ed9190610d7a565b60405180910390f35b610210600480360381019061020b9190610e42565b610414565b60405161021d9190610d7a565b60405180910390f35b60606003805461023590610ead565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610ead565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610496565b90506102cd81858561049d565b600191505092915050565b5f600254905090565b5f806102eb610496565b90506102f88582856104af565b610303858585610541565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036b90610ead565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610ead565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b5050505050905090565b5f806103f6610496565b9050610403818585610541565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104aa8383836001610631565b505050565b5f6104ba8484610414565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461053b578181101561052c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161052393929190610eec565b60405180910390fd5b61053a84848484035f610631565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105a89190610f21565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106189190610f21565b60405180910390fd5b61062c838383610800565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106a1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106989190610f21565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610711575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107089190610f21565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107fa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f19190610d7a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850578060025f8282546108449190610f67565b9250508190555061091e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156108d9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108d093929190610eec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965578060025f8282540392505081905550610b55565b5f6103e8600654836109779190610f9a565b6109819190611008565b90505f600267ffffffffffffffff81111561099f5761099e611038565b5b6040519080825280602002602001820160405280156109cd5781602001602082028036833780820191505090505b509050825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555084815f81518110610a2d57610a2c611065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600181518110610a7c57610a7b611065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478385843361012c42610b059190610f67565b6040518663ffffffff1660e01b8152600401610b25959493929190611149565b5f604051808303815f87803b158015610b3c575f80fd5b505af1158015610b4e573d5f803e3d5ffd5b5050505050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb29190610d7a565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610bf6578082015181840152602081019050610bdb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c1b82610bbf565b610c258185610bc9565b9350610c35818560208601610bd9565b610c3e81610c01565b840191505092915050565b5f6020820190508181035f830152610c618184610c11565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c9682610c6d565b9050919050565b610ca681610c8c565b8114610cb0575f80fd5b50565b5f81359050610cc181610c9d565b92915050565b5f819050919050565b610cd981610cc7565b8114610ce3575f80fd5b50565b5f81359050610cf481610cd0565b92915050565b5f8060408385031215610d1057610d0f610c69565b5b5f610d1d85828601610cb3565b9250506020610d2e85828601610ce6565b9150509250929050565b5f8115159050919050565b610d4c81610d38565b82525050565b5f602082019050610d655f830184610d43565b92915050565b610d7481610cc7565b82525050565b5f602082019050610d8d5f830184610d6b565b92915050565b5f805f60608486031215610daa57610da9610c69565b5b5f610db786828701610cb3565b9350506020610dc886828701610cb3565b9250506040610dd986828701610ce6565b9150509250925092565b5f60ff82169050919050565b610df881610de3565b82525050565b5f602082019050610e115f830184610def565b92915050565b5f60208284031215610e2c57610e2b610c69565b5b5f610e3984828501610cb3565b91505092915050565b5f8060408385031215610e5857610e57610c69565b5b5f610e6585828601610cb3565b9250506020610e7685828601610cb3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610ec457607f821691505b602082108103610ed757610ed6610e80565b5b50919050565b610ee681610c8c565b82525050565b5f606082019050610eff5f830186610edd565b610f0c6020830185610d6b565b610f196040830184610d6b565b949350505050565b5f602082019050610f345f830184610edd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f7182610cc7565b9150610f7c83610cc7565b9250828201905080821115610f9457610f93610f3a565b5b92915050565b5f610fa482610cc7565b9150610faf83610cc7565b9250828202610fbd81610cc7565b91508282048414831517610fd457610fd3610f3a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61101282610cc7565b915061101d83610cc7565b92508261102d5761102c610fdb565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6110c481610c8c565b82525050565b5f6110d583836110bb565b60208301905092915050565b5f602082019050919050565b5f6110f782611092565b611101818561109c565b935061110c836110ac565b805f5b8381101561113c57815161112388826110ca565b975061112e836110e1565b92505060018101905061110f565b5085935050505092915050565b5f60a08201905061115c5f830188610d6b565b6111696020830187610d6b565b818103604083015261117b81866110ed565b905061118a6060830185610edd565b6111976080830184610d6b565b969550505050505056fea26469706673582212201668089990edafaec6acdeca1e9676d3fe4c3c25c136761ab853d6279ed2f8f864736f6c634300081800330000000000000000000000000000000e022edd6dcb9672f6ef5e355f9c4a173d

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b2131f7d146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610c49565b60405180910390f35b6100d860048036038101906100d39190610cfa565b6102b6565b6040516100e59190610d52565b60405180910390f35b6100f66102d8565b6040516101039190610d7a565b60405180910390f35b61012660048036038101906101219190610d93565b6102e1565b6040516101339190610d52565b60405180910390f35b61014461030f565b6040516101519190610dfe565b60405180910390f35b610174600480360381019061016f9190610e17565b610317565b6040516101819190610d7a565b60405180910390f35b61019261035c565b60405161019f9190610c49565b60405180910390f35b6101c260048036038101906101bd9190610cfa565b6103ec565b6040516101cf9190610d52565b60405180910390f35b6101e061040e565b6040516101ed9190610d7a565b60405180910390f35b610210600480360381019061020b9190610e42565b610414565b60405161021d9190610d7a565b60405180910390f35b60606003805461023590610ead565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610ead565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610496565b90506102cd81858561049d565b600191505092915050565b5f600254905090565b5f806102eb610496565b90506102f88582856104af565b610303858585610541565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036b90610ead565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610ead565b80156103e25780601f106103b9576101008083540402835291602001916103e2565b820191905f5260205f20905b8154815290600101906020018083116103c557829003601f168201915b5050505050905090565b5f806103f6610496565b9050610403818585610541565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104aa8383836001610631565b505050565b5f6104ba8484610414565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461053b578181101561052c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161052393929190610eec565b60405180910390fd5b61053a84848484035f610631565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105b1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105a89190610f21565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106189190610f21565b60405180910390fd5b61062c838383610800565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106a1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106989190610f21565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610711575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107089190610f21565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107fa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f19190610d7a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850578060025f8282546108449190610f67565b9250508190555061091e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156108d9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108d093929190610eec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965578060025f8282540392505081905550610b55565b5f6103e8600654836109779190610f9a565b6109819190611008565b90505f600267ffffffffffffffff81111561099f5761099e611038565b5b6040519080825280602002602001820160405280156109cd5781602001602082028036833780820191505090505b509050825f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555084815f81518110610a2d57610a2c611065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600181518110610a7c57610a7b611065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478385843361012c42610b059190610f67565b6040518663ffffffff1660e01b8152600401610b25959493929190611149565b5f604051808303815f87803b158015610b3c575f80fd5b505af1158015610b4e573d5f803e3d5ffd5b5050505050505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb29190610d7a565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610bf6578082015181840152602081019050610bdb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c1b82610bbf565b610c258185610bc9565b9350610c35818560208601610bd9565b610c3e81610c01565b840191505092915050565b5f6020820190508181035f830152610c618184610c11565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c9682610c6d565b9050919050565b610ca681610c8c565b8114610cb0575f80fd5b50565b5f81359050610cc181610c9d565b92915050565b5f819050919050565b610cd981610cc7565b8114610ce3575f80fd5b50565b5f81359050610cf481610cd0565b92915050565b5f8060408385031215610d1057610d0f610c69565b5b5f610d1d85828601610cb3565b9250506020610d2e85828601610ce6565b9150509250929050565b5f8115159050919050565b610d4c81610d38565b82525050565b5f602082019050610d655f830184610d43565b92915050565b610d7481610cc7565b82525050565b5f602082019050610d8d5f830184610d6b565b92915050565b5f805f60608486031215610daa57610da9610c69565b5b5f610db786828701610cb3565b9350506020610dc886828701610cb3565b9250506040610dd986828701610ce6565b9150509250925092565b5f60ff82169050919050565b610df881610de3565b82525050565b5f602082019050610e115f830184610def565b92915050565b5f60208284031215610e2c57610e2b610c69565b5b5f610e3984828501610cb3565b91505092915050565b5f8060408385031215610e5857610e57610c69565b5b5f610e6585828601610cb3565b9250506020610e7685828601610cb3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610ec457607f821691505b602082108103610ed757610ed6610e80565b5b50919050565b610ee681610c8c565b82525050565b5f606082019050610eff5f830186610edd565b610f0c6020830185610d6b565b610f196040830184610d6b565b949350505050565b5f602082019050610f345f830184610edd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f7182610cc7565b9150610f7c83610cc7565b9250828201905080821115610f9457610f93610f3a565b5b92915050565b5f610fa482610cc7565b9150610faf83610cc7565b9250828202610fbd81610cc7565b91508282048414831517610fd457610fd3610f3a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61101282610cc7565b915061101d83610cc7565b92508261102d5761102c610fdb565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6110c481610c8c565b82525050565b5f6110d583836110bb565b60208301905092915050565b5f602082019050919050565b5f6110f782611092565b611101818561109c565b935061110c836110ac565b805f5b8381101561113c57815161112388826110ca565b975061112e836110e1565b92505060018101905061110f565b5085935050505092915050565b5f60a08201905061115c5f830188610d6b565b6111696020830187610d6b565b818103604083015261117b81866110ed565b905061118a6060830185610edd565b6111976080830184610d6b565b969550505050505056fea26469706673582212201668089990edafaec6acdeca1e9676d3fe4c3c25c136761ab853d6279ed2f8f864736f6c63430008180033

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

0000000000000000000000000000000e022edd6dcb9672f6ef5e355f9c4a173d

-----Decoded View---------------
Arg [0] : router_ (address): 0x0000000E022edD6DCb9672F6Ef5e355F9c4A173D

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


Deployed Bytecode Sourcemap

101:179:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1916:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4135:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2986:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4913:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2844:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2118:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3452:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1448:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3688:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1916:89;1961:13;1993:5;1986:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1916:89;:::o;4135:186::-;4208:4;4224:13;4240:12;:10;:12::i;:::-;4224:28;;4262:31;4271:5;4278:7;4287:5;4262:8;:31::i;:::-;4310:4;4303:11;;;4135:186;;;;:::o;2986:97::-;3038:7;3064:12;;3057:19;;2986:97;:::o;4913:244::-;5000:4;5016:15;5034:12;:10;:12::i;:::-;5016:30;;5056:37;5072:4;5078:7;5087:5;5056:15;:37::i;:::-;5103:26;5113:4;5119:2;5123:5;5103:9;:26::i;:::-;5146:4;5139:11;;;4913:244;;;;;:::o;2844:82::-;2893:5;2917:2;2910:9;;2844:82;:::o;3141:116::-;3206:7;3232:9;:18;3242:7;3232:18;;;;;;;;;;;;;;;;3225:25;;3141:116;;;:::o;2118:93::-;2165:13;2197:7;2190:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2118:93;:::o;3452:178::-;3521:4;3537:13;3553:12;:10;:12::i;:::-;3537:28;;3575:27;3585:5;3592:2;3596:5;3575:9;:27::i;:::-;3619:4;3612:11;;;3452:178;;;;:::o;1448:27::-;;;;:::o;3688:140::-;3768:7;3794:11;:18;3806:5;3794:18;;;;;;;;;;;;;;;:27;3813:7;3794:27;;;;;;;;;;;;;;;;3787:34;;3688:140;;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9103:128:1:-;9187:37;9196:5;9203:7;9212:5;9219:4;9187:8;:37::i;:::-;9103:128;;;:::o;10792:477::-;10891:24;10918:25;10928:5;10935:7;10918:9;:25::i;:::-;10891:52;;10977:17;10957:16;:37;10953:310;;11033:5;11014:16;:24;11010:130;;;11092:7;11101:16;11119:5;11065:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11010:130;11181:57;11190:5;11197:7;11225:5;11206:16;:24;11232:5;11181:8;:57::i;:::-;10953:310;10881:388;10792:477;;;:::o;5530:300::-;5629:1;5613:18;;:4;:18;;;5609:86;;5681:1;5654:30;;;;;;;;;;;:::i;:::-;;;;;;;;5609:86;5722:1;5708:16;;:2;:16;;;5704:86;;5776:1;5747:32;;;;;;;;;;;:::i;:::-;;;;;;;;5704:86;5799:24;5807:4;5813:2;5817:5;5799:7;:24::i;:::-;5530:300;;;:::o;10078:432::-;10207:1;10190:19;;:5;:19;;;10186:89;;10261:1;10232:32;;;;;;;;;;;:::i;:::-;;;;;;;;10186:89;10307:1;10288:21;;:7;:21;;;10284:90;;10360:1;10332:31;;;;;;;;;;;:::i;:::-;;;;;;;;10284:90;10413:5;10383:11;:18;10395:5;10383:18;;;;;;;;;;;;;;;:27;10402:7;10383:27;;;;;;;;;;;;;;;:35;;;;10432:9;10428:76;;;10478:7;10462:31;;10471:5;10462:31;;;10487:5;10462:31;;;;;;:::i;:::-;;;;;;;;10428:76;10078:432;;;;:::o;6145:1347::-;6250:1;6234:18;;:4;:18;;;6230:540;;6386:5;6370:12;;:21;;;;;;;:::i;:::-;;;;;;;;6230:540;;;6422:19;6444:9;:15;6454:4;6444:15;;;;;;;;;;;;;;;;6422:37;;6491:5;6477:11;:19;6473:115;;;6548:4;6554:11;6567:5;6523:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6473:115;6740:5;6726:11;:19;6708:9;:15;6718:4;6708:15;;;;;;;;;;;;;;;:37;;;;6408:362;6230:540;6798:1;6784:16;;:2;:16;;;6780:665;;6963:5;6947:12;;:21;;;;;;;;;;;6780:665;;;7013:11;7046:4;7035:8;;7027:5;:16;;;;:::i;:::-;:23;;;;:::i;:::-;7013:37;;7064:21;7102:1;7088:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7064:40;;7146:5;7129:9;:13;7139:2;7129:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;7176:4;7166;7171:1;7166:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;7204:2;7194:4;7199:1;7194:7;;;;;;;;:::i;:::-;;;;;;;:12;;;;;;;;;;;7220:14;;;;;;;;;;;:65;;;7303:3;7324:5;7347:4;7369:10;7416:3;7398:15;:21;;;;:::i;:::-;7220:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6999:446;;6780:665;7475:2;7460:25;;7469:4;7460:25;;;7479:5;7460:25;;;;;;:::i;:::-;;;;;;;;6145:1347;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:118::-;6267:24;6285:5;6267:24;:::i;:::-;6262:3;6255:37;6180:118;;:::o;6304:442::-;6453:4;6491:2;6480:9;6476:18;6468:26;;6504:71;6572:1;6561:9;6557:17;6548:6;6504:71;:::i;:::-;6585:72;6653:2;6642:9;6638:18;6629:6;6585:72;:::i;:::-;6667;6735:2;6724:9;6720:18;6711:6;6667:72;:::i;:::-;6304:442;;;;;;:::o;6752:222::-;6845:4;6883:2;6872:9;6868:18;6860:26;;6896:71;6964:1;6953:9;6949:17;6940:6;6896:71;:::i;:::-;6752:222;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o;8156:180::-;8204:77;8201:1;8194:88;8301:4;8298:1;8291:15;8325:4;8322:1;8315:15;8342:180;8390:77;8387:1;8380:88;8487:4;8484:1;8477:15;8511:4;8508:1;8501:15;8528:114;8595:6;8629:5;8623:12;8613:22;;8528:114;;;:::o;8648:184::-;8747:11;8781:6;8776:3;8769:19;8821:4;8816:3;8812:14;8797:29;;8648:184;;;;:::o;8838:132::-;8905:4;8928:3;8920:11;;8958:4;8953:3;8949:14;8941:22;;8838:132;;;:::o;8976:108::-;9053:24;9071:5;9053:24;:::i;:::-;9048:3;9041:37;8976:108;;:::o;9090:179::-;9159:10;9180:46;9222:3;9214:6;9180:46;:::i;:::-;9258:4;9253:3;9249:14;9235:28;;9090:179;;;;:::o;9275:113::-;9345:4;9377;9372:3;9368:14;9360:22;;9275:113;;;:::o;9424:732::-;9543:3;9572:54;9620:5;9572:54;:::i;:::-;9642:86;9721:6;9716:3;9642:86;:::i;:::-;9635:93;;9752:56;9802:5;9752:56;:::i;:::-;9831:7;9862:1;9847:284;9872:6;9869:1;9866:13;9847:284;;;9948:6;9942:13;9975:63;10034:3;10019:13;9975:63;:::i;:::-;9968:70;;10061:60;10114:6;10061:60;:::i;:::-;10051:70;;9907:224;9894:1;9891;9887:9;9882:14;;9847:284;;;9851:14;10147:3;10140:10;;9548:608;;;9424:732;;;;:::o;10162:815::-;10417:4;10455:3;10444:9;10440:19;10432:27;;10469:71;10537:1;10526:9;10522:17;10513:6;10469:71;:::i;:::-;10550:72;10618:2;10607:9;10603:18;10594:6;10550:72;:::i;:::-;10669:9;10663:4;10659:20;10654:2;10643:9;10639:18;10632:48;10697:108;10800:4;10791:6;10697:108;:::i;:::-;10689:116;;10815:72;10883:2;10872:9;10868:18;10859:6;10815:72;:::i;:::-;10897:73;10965:3;10954:9;10950:19;10941:6;10897:73;:::i;:::-;10162:815;;;;;;;;:::o

Swarm Source

ipfs://1668089990edafaec6acdeca1e9676d3fe4c3c25c136761ab853d6279ed2f8f8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.