ETH Price: $2,573.66 (-3.30%)

Token

Marvin Inu (MARVIN)
 

Overview

Max Total Supply

1,000,000,000 MARVIN

Holders

221

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,017,345.566899672665668466 MARVIN

Value
$0.00
0x1c0BB56d02242D127F75C20D95e7Aa21dc9C7DaD
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:
Marvin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-13
*/

/*
 * SPDX-License-Identifier: MIT
 * https://marvininu.vip/
 * https://t.me/Marvin_inu_eth
 * https://twitter.com/marvin_inu_eth
 *  __       __   ______   _______   __     __  ______  __    __ 
 * /  \     /  | /      \ /       \ /  |   /  |/      |/  \  /  |
 * $$  \   /$$ |/$$$$$$  |$$$$$$$  |$$ |   $$ |$$$$$$/ $$  \ $$ |
 * $$$  \ /$$$ |$$ |__$$ |$$ |__$$ |$$ |   $$ |  $$ |  $$$  \$$ |
 * $$$$  /$$$$ |$$    $$ |$$    $$< $$  \ /$$/   $$ |  $$$$  $$ |
 * $$ $$ $$/$$ |$$$$$$$$ |$$$$$$$  | $$  /$$/    $$ |  $$ $$ $$ |
 * $$ |$$$/ $$ |$$ |  $$ |$$ |  $$ |  $$ $$/    _$$ |_ $$ |$$$$ |
 * $$ | $/  $$ |$$ |  $$ |$$ |  $$ |   $$$/    / $$   |$$ | $$$ |
 * $$/      $$/ $$/   $$/ $$/   $$/     $/     $$$$$$/ $$/   $$/ 
 *                                                               
 *  ______  __    __  __    __                                   
 * /      |/  \  /  |/  |  /  |                                  
 * $$$$$$/ $$  \ $$ |$$ |  $$ |                                  
 *   $$ |  $$$  \$$ |$$ |  $$ |                                  
 *   $$ |  $$$$  $$ |$$ |  $$ |                                  
 *   $$ |  $$ $$ $$ |$$ |  $$ |                                  
 *  _$$ |_ $$ |$$$$ |$$ \__$$ |                                  
 * / $$   |$$ | $$$ |$$    $$/                                   
 * $$$$$$/ $$/   $$/  $$$$$$/                                    
*/

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

interface IDexFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexRouter {
    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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

contract Marvin is Context, ERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => bool) private _isExcludedFromFee;
    address payable private _taxWallet;
    uint256 firstBlock;

    uint64 private lastLiquifyTime;

    uint256 private buyFee = 10;
    uint256 private sellFee = 10;
    uint256 private _preventSwapBefore = 1;
    uint256 private _buyCount = 0;

    uint256 private _txAmountLimit;
    uint256 private _walletAmountLimit;
    uint256 private _swapbackMin;
    uint256 private _swapbackMax;

    IDexRouter private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool private launchmode = true;
    mapping(address => bool) private _canTx;

    event MaxTxAmountUpdated(uint _txAmountLimit);
    event MaxWalletAmountUpdated(uint _walletAmountLimit);
    event FeesUpdated(uint buyFee, uint sellFee);
    event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax);
    event FeeReceiverUpdated(address _taxWallet);
    event ExcludedFromFee(address account, bool status);
    event LimitsRemoved();
    event TradingOpened();

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() ERC20("Marvin Inu", "MARVIN") {
        uint256 _totalSupply = 1_000_000_000 * 10 ** 18;

        _txAmountLimit = (_totalSupply * 10) / 1000;
        _walletAmountLimit = (_totalSupply * 10) / 1000;
        _swapbackMin = (_totalSupply * 5) / 10000;
        _swapbackMax = (_totalSupply * 400) / 10000;
        _canTx [address(this)] = true;
        _taxWallet = payable(0x3aF280e044AD3767bAA7bdfdeFA61d6eB7FDa4dC);
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

        _mint(_msgSender(), _totalSupply);
    }


    receive() external payable {}

    function startLaunch() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        uniswapV2Router = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
        firstBlock = block.number;
        lastLiquifyTime = uint64(block.number);
        _isExcludedFromFee[address(this)] = true;
        buyFee = 25;
        sellFee = 25;

        emit TradingOpened();
    }

    function setMarketingWalletAddress(address payable marketingWallet) external onlyOwner {
        _taxWallet = marketingWallet;

        emit FeeReceiverUpdated(marketingWallet);
    }

    function setMaxTransaction(uint256 newValue) external onlyOwner {
        require(newValue >= 1, "Max tx cant be lower than 0.1%");
        _txAmountLimit = (totalSupply() * newValue) / 1000;
        emit MaxTxAmountUpdated(_txAmountLimit);
    }

    function setMaxWallet(uint256 newValue) external onlyOwner {
        require(newValue >= 1, "Max wallet cant be lower than 0.1%");
        _walletAmountLimit = (totalSupply() * newValue) / 1000;
        emit MaxWalletAmountUpdated(_walletAmountLimit);
    }

    function setSwapbackRange(
        uint256 taxSwapThreshold,
        uint256 maxTaxSwap
    ) external onlyOwner {
        _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000;
        _swapbackMax = (totalSupply() * maxTaxSwap) / 10000;
        emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap);
    }

    function changemode() external onlyOwner {
        require(launchmode, "Launch mode is already disabled");
        buyFee = 25;
        sellFee = 25;
        launchmode = false;
    }

    function removeAllLimits() external onlyOwner {
        _txAmountLimit = totalSupply();
        _walletAmountLimit = totalSupply();
        emit MaxTxAmountUpdated(totalSupply());
        emit MaxWalletAmountUpdated(totalSupply());
    }

    function setfees(uint256 buyTax, uint256 sellTax) external onlyOwner {
        require(buyTax <= 99, "Invalid buy tax value");
        require(sellTax <= 99, "Invalid sell tax value");
        buyFee = buyTax;
        sellFee = sellTax;
        emit FeesUpdated(buyTax, sellTax);
    }

    function removeStuckETH() external {
        require(msg.sender == _taxWallet, "Only fee receiver can trigger");
        _taxWallet.transfer(address(this).balance);
    }

    function setMlt(address[] calldata cute, bool status)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < cute.length; i++) {
            _canTx[cute[i]] = status;
        }
    }

    function feeExempt(address account, bool status) external onlyOwner {
        _isExcludedFromFee[account] = status;
        emit ExcludedFromFee(account, status);
    }

    function viewInfo()
        external
        view
        returns (
            uint256 _buyFee,
            uint256 _sellFee,
            uint256 maxTxAmount,
            uint256 maxWalletSize,
            uint256 taxSwapThreshold,
            uint256 maxTaxSwap
        )
    {
        return (
            buyFee,
            sellFee,
            _txAmountLimit,
            _walletAmountLimit,
            _swapbackMin,
            _swapbackMax
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;
        if (from != owner() && to != owner() && !inSwap) {
            if (launchmode){
                require(_canTx[from] || _canTx[to], "");
            }

            taxAmount = amount.mul(buyFee).div(100);

            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit.");
                require(
                    balanceOf(to) + amount <= _walletAmountLimit,
                    "Exceeds the maxWalletSize."
                );

                if (firstBlock + 3 > block.number) {
                    require(!isContract(to));
                }
                _buyCount++;
            }

            if (to != uniswapV2Pair && !_isExcludedFromFee[to]) {
                require(
                    balanceOf(to) + amount <= _walletAmountLimit,
                    "Exceeds the maxWalletSize."
                );
            }

            if (to == uniswapV2Pair && from != address(this)) {
                taxAmount = amount.mul(sellFee).div(100);
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap &&
                to == uniswapV2Pair &&
                swapEnabled &&
                contractTokenBalance > _swapbackMin &&
                _buyCount > _preventSwapBefore &&
                lastLiquifyTime != uint64(block.number)
            ) {
                swapTokensForEth(min(contractTokenBalance, _swapbackMax));
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee();
                }
            }
        }

        if (taxAmount > 0) {
            super._transfer(from, address(this), taxAmount);
        }
        super._transfer(from, to, amount.sub(taxAmount));
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function triggerSwap() external {
        require(
            msg.sender == _taxWallet || msg.sender == owner(),
            "Only fee receiver can trigger"
        );
        uint256 contractTokenBalance = balanceOf(address(this));

        swapTokensForEth(contractTokenBalance);
        uint256 contractETHBalance = address(this).balance;
        if (contractETHBalance > 0) {
            sendETHToFee();
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        lastLiquifyTime = uint64(block.number);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETHToFee() private {
        bool success;
        (success, ) = address(_taxWallet).call{value: address(this).balance}(
            ""
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changemode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"feeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet","type":"address"}],"name":"setMarketingWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"cute","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMlt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"setSwapbackRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"setfees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLaunch","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a808055600b556001600c556000600d556013805462ffffff60a81b1916600160b81b1790553480156200003857600080fd5b506040518060400160405280600a8152602001694d617276696e20496e7560b01b8152506040518060400160405280600681526020016526a0a92b24a760d11b81525081600390816200008c9190620003f4565b5060046200009b8282620003f4565b505050620000b8620000b26200020d60201b60201c565b62000211565b6b033b2e3c9fd0803ce80000006103e8620000d582600a620004d6565b620000e19190620004f6565b600e556103e8620000f482600a620004d6565b620001009190620004f6565b600f5561271062000113826005620004d6565b6200011f9190620004f6565b6010556127106200013382610190620004d6565b6200013f9190620004f6565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b031916733af280e044ad3767baa7bdfdefa61d6eb7fda4dc179055906006906200019c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915560075490911683529120805490921617905562000206620001ff3390565b8262000263565b506200052f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002be5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002d2919062000519565b90915550506001600160a01b038216600090815260208190526040812080548392906200030190849062000519565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037b57607f821691505b6020821081036200039c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034b57600081815260208120601f850160051c81016020861015620003cb5750805b601f850160051c820191505b81811015620003ec57828155600101620003d7565b505050505050565b81516001600160401b0381111562000410576200041062000350565b620004288162000421845462000366565b84620003a2565b602080601f831160018114620004605760008415620004475750858301515b600019600386901b1c1916600185901b178555620003ec565b600085815260208120601f198616915b82811015620004915788860151825594840194600190910190840162000470565b5085821015620004b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004f057620004f0620004c0565b92915050565b6000826200051457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004f057620004f0620004c0565b612280806200053f6000396000f3fe6080604052600436106101a05760003560e01c806370a08231116100ec578063ab5a18871161008a578063db05e5cb11610064578063db05e5cb146104ac578063dd62ed3e146104c1578063f2fde38b14610507578063f84f7cb31461052757600080fd5b8063ab5a18871461042b578063ae6014801461044b578063c2d4c5b11461049757600080fd5b80638f937cc4116100c65780638f937cc4146103c157806395d89b41146103d6578063a457c2d7146103eb578063a9059cbb1461040b57600080fd5b806370a082311461034e578063715018a6146103845780638da5cb5b1461039957600080fd5b8063395093511161015957806359a945e91161013357806359a945e9146102d95780635d0044ca146102ee5780636166da071461030e5780636f0415101461032e57600080fd5b806339509351146102795780634363c486146102995780634cb80fd5146102b957600080fd5b806306fdde03146101ac578063095ea7b3146101d75780630f299cf11461020757806318160ddd1461021e57806323b872dd1461023d578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611db9565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e1c565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f0565b005b34801561022a57600080fd5b506002545b6040519081526020016101ce565b34801561024957600080fd5b506101f7610258366004611e48565b61068b565b34801561026957600080fd5b50604051601281526020016101ce565b34801561028557600080fd5b506101f7610294366004611e1c565b610735565b3480156102a557600080fd5b5061021c6102b4366004611e97565b610771565b3480156102c557600080fd5b5061021c6102d4366004611ed0565b6107ff565b3480156102e557600080fd5b5061021c61087e565b3480156102fa57600080fd5b5061021c610309366004611eed565b610c9a565b34801561031a57600080fd5b5061021c610329366004611f06565b610d76565b34801561033a57600080fd5b5061021c610349366004611f8c565b610e17565b34801561035a57600080fd5b5061022f610369366004611ed0565b6001600160a01b031660009081526020819052604090205490565b34801561039057600080fd5b5061021c610ebf565b3480156103a557600080fd5b506005546040516001600160a01b0390911681526020016101ce565b3480156103cd57600080fd5b5061021c610ef5565b3480156103e257600080fd5b506101c1610f90565b3480156103f757600080fd5b506101f7610406366004611e1c565b610f9f565b34801561041757600080fd5b506101f7610426366004611e1c565b611038565b34801561043757600080fd5b5061021c610446366004611eed565b611045565b34801561045757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b3480156104a357600080fd5b5061021c611116565b3480156104b857600080fd5b5061021c6111b2565b3480156104cd57600080fd5b5061022f6104dc366004611fae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b5061021c610522366004611ed0565b611260565b34801561053357600080fd5b5061021c610542366004611f8c565b6112f8565b60606003805461055690611fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611fdc565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113f5565b5060015b92915050565b6007546001600160a01b0316331461064f5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610688573d6000803e3d6000fd5b50565b6000610698848484611519565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561071d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610646565b61072a85338584036113f5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e691859061076c908690612026565b6113f5565b6005546001600160a01b0316331461079b5760405162461bcd60e51b815260040161064690612039565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991015b60405180910390a15050565b6005546001600160a01b031633146108295760405162461bcd60e51b815260040161064690612039565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b031633146108a85760405162461bcd60e51b815260040161064690612039565b601354600160a01b900460ff16156109025760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610646565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561093a90309061076c60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061206e565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a37919061206e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa8919061206e565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610af0816001600160a01b031660009081526020819052604090205490565b600080610b056005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b92919061208b565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f91906120b9565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556019600a819055600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b03163314610cc45760405162461bcd60e51b815260040161064690612039565b6001811015610d205760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610646565b6103e881610d2d60025490565b610d3791906120d6565b610d4191906120ed565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610873565b6005546001600160a01b03163314610da05760405162461bcd60e51b815260040161064690612039565b60005b82811015610e11578160146000868685818110610dc257610dc261210f565b9050602002016020810190610dd79190611ed0565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e0981612125565b915050610da3565b50505050565b6005546001600160a01b03163314610e415760405162461bcd60e51b815260040161064690612039565b61271082610e4e60025490565b610e5891906120d6565b610e6291906120ed565b60105561271081610e7260025490565b610e7c91906120d6565b610e8691906120ed565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191016107f3565b6005546001600160a01b03163314610ee95760405162461bcd60e51b815260040161064690612039565b610ef360006119ed565b565b6007546001600160a01b0316331480610f1857506005546001600160a01b031633145b610f645760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610646565b30600090815260208190526040902054610f7d81611a3f565b478015610f8c57610f8c611bd8565b5050565b60606004805461055690611fdc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610646565b61102e33858584036113f5565b5060019392505050565b60006105e6338484611519565b6005546001600160a01b0316331461106f5760405162461bcd60e51b815260040161064690612039565b60018110156110c05760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610646565b6103e8816110cd60025490565b6110d791906120d6565b6110e191906120ed565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610873565b6005546001600160a01b031633146111405760405162461bcd60e51b815260040161064690612039565b601354600160b81b900460ff166111995760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610646565b6019600a819055600b556013805460ff60b81b19169055565b6005546001600160a01b031633146111dc5760405162461bcd60e51b815260040161064690612039565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61121260025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161124d60025490565b60405190815260200160405180910390a1565b6005546001600160a01b0316331461128a5760405162461bcd60e51b815260040161064690612039565b6001600160a01b0381166112ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b610688816119ed565b6005546001600160a01b031633146113225760405162461bcd60e51b815260040161064690612039565b606382111561136b5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610646565b60638111156113b55760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610646565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016107f3565b6001600160a01b0383166114575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b0382166114b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153f5760405162461bcd60e51b81526004016106469061213e565b6001600160a01b0382166115655760405162461bcd60e51b815260040161064690612183565b600081116115c75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610646565b60006115db6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160a57506005546001600160a01b03848116911614155b80156116205750601354600160a81b900460ff16155b156119c857601354600160b81b900460ff161561169c576001600160a01b03841660009081526014602052604090205460ff168061167657506001600160a01b03831660009081526014602052604090205460ff165b61169c5760405162461bcd60e51b81526020600482015260006024820152604401610646565b6116bc60646116b6600a5485611c2590919063ffffffff16565b90611c38565b6013549091506001600160a01b0385811691161480156116ea57506012546001600160a01b03848116911614155b801561170f57506001600160a01b03831660009081526006602052604090205460ff16155b1561181957600e548211156117665760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610646565b600f5482611789856001600160a01b031660009081526020819052604090205490565b6117939190612026565b11156117e15760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610646565b4360085460036117f19190612026565b111561180357823b1561180357600080fd5b600d805490600061181383612125565b91905055505b6013546001600160a01b0384811691161480159061185057506001600160a01b03831660009081526006602052604090205460ff16155b156118d057600f5482611878856001600160a01b031660009081526020819052604090205490565b6118829190612026565b11156118d05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610646565b6013546001600160a01b0384811691161480156118f657506001600160a01b0384163014155b156119185761191560646116b6600b5485611c2590919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194f57506013546001600160a01b038581169116145b80156119645750601354600160b01b900460ff165b8015611971575060105481115b80156119805750600c54600d54115b801561199c57506009544367ffffffffffffffff908116911614155b156119c6576119b56119b082601154611c44565b611a3f565b4780156119c4576119c4611bd8565b505b505b80156119d9576119d9843083611c59565b610e1184846119e88585611dad565b611c59565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa661210f565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b23919061206e565b81600181518110611b3657611b3661210f565b6001600160a01b039283166020918202929092010152601254611b5c91309116846113f5565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b959085906000908690309042906004016121c6565b600060405180830381600087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610e11576040519150601f19603f3d011682016040523d82523d6000602084013e610e11565b6000611c3182846120d6565b9392505050565b6000611c3182846120ed565b6000818311611c535782611c31565b50919050565b6001600160a01b038316611c7f5760405162461bcd60e51b81526004016106469061213e565b6001600160a01b038216611ca55760405162461bcd60e51b815260040161064690612183565b6001600160a01b03831660009081526020819052604090205481811015611d1d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610646565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d54908490612026565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da091815260200190565b60405180910390a3610e11565b6000611c318284612237565b600060208083528351808285015260005b81811015611de657858101830151858201604001528201611dca565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461068857600080fd5b60008060408385031215611e2f57600080fd5b8235611e3a81611e07565b946020939093013593505050565b600080600060608486031215611e5d57600080fd5b8335611e6881611e07565b92506020840135611e7881611e07565b929592945050506040919091013590565b801515811461068857600080fd5b60008060408385031215611eaa57600080fd5b8235611eb581611e07565b91506020830135611ec581611e89565b809150509250929050565b600060208284031215611ee257600080fd5b8135611c3181611e07565b600060208284031215611eff57600080fd5b5035919050565b600080600060408486031215611f1b57600080fd5b833567ffffffffffffffff80821115611f3357600080fd5b818601915086601f830112611f4757600080fd5b813581811115611f5657600080fd5b8760208260051b8501011115611f6b57600080fd5b60209283019550935050840135611f8181611e89565b809150509250925092565b60008060408385031215611f9f57600080fd5b50508035926020909101359150565b60008060408385031215611fc157600080fd5b8235611fcc81611e07565b91506020830135611ec581611e07565b600181811c90821680611ff057607f821691505b602082108103611c5357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea612010565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561208057600080fd5b8151611c3181611e07565b6000806000606084860312156120a057600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156120cb57600080fd5b8151611c3181611e89565b80820281158282048414176105ea576105ea612010565b60008261210a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161213757612137612010565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122165784516001600160a01b0316835293830193918301916001016121f1565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea61201056fea26469706673582212205b4d1f0eb5458f3d58d09b137f5c74251e85c7aa2737fc9b8c758154b044c07864736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806370a08231116100ec578063ab5a18871161008a578063db05e5cb11610064578063db05e5cb146104ac578063dd62ed3e146104c1578063f2fde38b14610507578063f84f7cb31461052757600080fd5b8063ab5a18871461042b578063ae6014801461044b578063c2d4c5b11461049757600080fd5b80638f937cc4116100c65780638f937cc4146103c157806395d89b41146103d6578063a457c2d7146103eb578063a9059cbb1461040b57600080fd5b806370a082311461034e578063715018a6146103845780638da5cb5b1461039957600080fd5b8063395093511161015957806359a945e91161013357806359a945e9146102d95780635d0044ca146102ee5780636166da071461030e5780636f0415101461032e57600080fd5b806339509351146102795780634363c486146102995780634cb80fd5146102b957600080fd5b806306fdde03146101ac578063095ea7b3146101d75780630f299cf11461020757806318160ddd1461021e57806323b872dd1461023d578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611db9565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e1c565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f0565b005b34801561022a57600080fd5b506002545b6040519081526020016101ce565b34801561024957600080fd5b506101f7610258366004611e48565b61068b565b34801561026957600080fd5b50604051601281526020016101ce565b34801561028557600080fd5b506101f7610294366004611e1c565b610735565b3480156102a557600080fd5b5061021c6102b4366004611e97565b610771565b3480156102c557600080fd5b5061021c6102d4366004611ed0565b6107ff565b3480156102e557600080fd5b5061021c61087e565b3480156102fa57600080fd5b5061021c610309366004611eed565b610c9a565b34801561031a57600080fd5b5061021c610329366004611f06565b610d76565b34801561033a57600080fd5b5061021c610349366004611f8c565b610e17565b34801561035a57600080fd5b5061022f610369366004611ed0565b6001600160a01b031660009081526020819052604090205490565b34801561039057600080fd5b5061021c610ebf565b3480156103a557600080fd5b506005546040516001600160a01b0390911681526020016101ce565b3480156103cd57600080fd5b5061021c610ef5565b3480156103e257600080fd5b506101c1610f90565b3480156103f757600080fd5b506101f7610406366004611e1c565b610f9f565b34801561041757600080fd5b506101f7610426366004611e1c565b611038565b34801561043757600080fd5b5061021c610446366004611eed565b611045565b34801561045757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b3480156104a357600080fd5b5061021c611116565b3480156104b857600080fd5b5061021c6111b2565b3480156104cd57600080fd5b5061022f6104dc366004611fae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b5061021c610522366004611ed0565b611260565b34801561053357600080fd5b5061021c610542366004611f8c565b6112f8565b60606003805461055690611fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611fdc565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113f5565b5060015b92915050565b6007546001600160a01b0316331461064f5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e207472696767657200000060448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610688573d6000803e3d6000fd5b50565b6000610698848484611519565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561071d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610646565b61072a85338584036113f5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e691859061076c908690612026565b6113f5565b6005546001600160a01b0316331461079b5760405162461bcd60e51b815260040161064690612039565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991015b60405180910390a15050565b6005546001600160a01b031633146108295760405162461bcd60e51b815260040161064690612039565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b031633146108a85760405162461bcd60e51b815260040161064690612039565b601354600160a01b900460ff16156109025760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610646565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561093a90309061076c60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061206e565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a37919061206e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa8919061206e565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610af0816001600160a01b031660009081526020819052604090205490565b600080610b056005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b92919061208b565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f91906120b9565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556019600a819055600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b03163314610cc45760405162461bcd60e51b815260040161064690612039565b6001811015610d205760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610646565b6103e881610d2d60025490565b610d3791906120d6565b610d4191906120ed565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610873565b6005546001600160a01b03163314610da05760405162461bcd60e51b815260040161064690612039565b60005b82811015610e11578160146000868685818110610dc257610dc261210f565b9050602002016020810190610dd79190611ed0565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e0981612125565b915050610da3565b50505050565b6005546001600160a01b03163314610e415760405162461bcd60e51b815260040161064690612039565b61271082610e4e60025490565b610e5891906120d6565b610e6291906120ed565b60105561271081610e7260025490565b610e7c91906120d6565b610e8691906120ed565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191016107f3565b6005546001600160a01b03163314610ee95760405162461bcd60e51b815260040161064690612039565b610ef360006119ed565b565b6007546001600160a01b0316331480610f1857506005546001600160a01b031633145b610f645760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610646565b30600090815260208190526040902054610f7d81611a3f565b478015610f8c57610f8c611bd8565b5050565b60606004805461055690611fdc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610646565b61102e33858584036113f5565b5060019392505050565b60006105e6338484611519565b6005546001600160a01b0316331461106f5760405162461bcd60e51b815260040161064690612039565b60018110156110c05760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610646565b6103e8816110cd60025490565b6110d791906120d6565b6110e191906120ed565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610873565b6005546001600160a01b031633146111405760405162461bcd60e51b815260040161064690612039565b601354600160b81b900460ff166111995760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610646565b6019600a819055600b556013805460ff60b81b19169055565b6005546001600160a01b031633146111dc5760405162461bcd60e51b815260040161064690612039565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61121260025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161124d60025490565b60405190815260200160405180910390a1565b6005546001600160a01b0316331461128a5760405162461bcd60e51b815260040161064690612039565b6001600160a01b0381166112ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b610688816119ed565b6005546001600160a01b031633146113225760405162461bcd60e51b815260040161064690612039565b606382111561136b5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610646565b60638111156113b55760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610646565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016107f3565b6001600160a01b0383166114575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b0382166114b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153f5760405162461bcd60e51b81526004016106469061213e565b6001600160a01b0382166115655760405162461bcd60e51b815260040161064690612183565b600081116115c75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610646565b60006115db6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160a57506005546001600160a01b03848116911614155b80156116205750601354600160a81b900460ff16155b156119c857601354600160b81b900460ff161561169c576001600160a01b03841660009081526014602052604090205460ff168061167657506001600160a01b03831660009081526014602052604090205460ff165b61169c5760405162461bcd60e51b81526020600482015260006024820152604401610646565b6116bc60646116b6600a5485611c2590919063ffffffff16565b90611c38565b6013549091506001600160a01b0385811691161480156116ea57506012546001600160a01b03848116911614155b801561170f57506001600160a01b03831660009081526006602052604090205460ff16155b1561181957600e548211156117665760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610646565b600f5482611789856001600160a01b031660009081526020819052604090205490565b6117939190612026565b11156117e15760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610646565b4360085460036117f19190612026565b111561180357823b1561180357600080fd5b600d805490600061181383612125565b91905055505b6013546001600160a01b0384811691161480159061185057506001600160a01b03831660009081526006602052604090205460ff16155b156118d057600f5482611878856001600160a01b031660009081526020819052604090205490565b6118829190612026565b11156118d05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610646565b6013546001600160a01b0384811691161480156118f657506001600160a01b0384163014155b156119185761191560646116b6600b5485611c2590919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194f57506013546001600160a01b038581169116145b80156119645750601354600160b01b900460ff165b8015611971575060105481115b80156119805750600c54600d54115b801561199c57506009544367ffffffffffffffff908116911614155b156119c6576119b56119b082601154611c44565b611a3f565b4780156119c4576119c4611bd8565b505b505b80156119d9576119d9843083611c59565b610e1184846119e88585611dad565b611c59565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa661210f565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b23919061206e565b81600181518110611b3657611b3661210f565b6001600160a01b039283166020918202929092010152601254611b5c91309116846113f5565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b959085906000908690309042906004016121c6565b600060405180830381600087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610e11576040519150601f19603f3d011682016040523d82523d6000602084013e610e11565b6000611c3182846120d6565b9392505050565b6000611c3182846120ed565b6000818311611c535782611c31565b50919050565b6001600160a01b038316611c7f5760405162461bcd60e51b81526004016106469061213e565b6001600160a01b038216611ca55760405162461bcd60e51b815260040161064690612183565b6001600160a01b03831660009081526020819052604090205481811015611d1d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610646565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d54908490612026565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da091815260200190565b60405180910390a3610e11565b6000611c318284612237565b600060208083528351808285015260005b81811015611de657858101830151858201604001528201611dca565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461068857600080fd5b60008060408385031215611e2f57600080fd5b8235611e3a81611e07565b946020939093013593505050565b600080600060608486031215611e5d57600080fd5b8335611e6881611e07565b92506020840135611e7881611e07565b929592945050506040919091013590565b801515811461068857600080fd5b60008060408385031215611eaa57600080fd5b8235611eb581611e07565b91506020830135611ec581611e89565b809150509250929050565b600060208284031215611ee257600080fd5b8135611c3181611e07565b600060208284031215611eff57600080fd5b5035919050565b600080600060408486031215611f1b57600080fd5b833567ffffffffffffffff80821115611f3357600080fd5b818601915086601f830112611f4757600080fd5b813581811115611f5657600080fd5b8760208260051b8501011115611f6b57600080fd5b60209283019550935050840135611f8181611e89565b809150509250925092565b60008060408385031215611f9f57600080fd5b50508035926020909101359150565b60008060408385031215611fc157600080fd5b8235611fcc81611e07565b91506020830135611ec581611e07565b600181811c90821680611ff057607f821691505b602082108103611c5357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea612010565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561208057600080fd5b8151611c3181611e07565b6000806000606084860312156120a057600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156120cb57600080fd5b8151611c3181611e89565b80820281158282048414176105ea576105ea612010565b60008261210a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161213757612137612010565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122165784516001600160a01b0316835293830193918301916001016121f1565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea61201056fea26469706673582212205b4d1f0eb5458f3d58d09b137f5c74251e85c7aa2737fc9b8c758154b044c07864736f6c63430008130033

Deployed Bytecode Sourcemap

26692:9756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12290:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14523:194;;;;;;;;;;-1:-1:-1;14523:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;14523:194:0;1023:187:1;31515:173:0;;;;;;;;;;;;;:::i;:::-;;13410:108;;;;;;;;;;-1:-1:-1;13498:12:0;;13410:108;;;1361:25:1;;;1349:2;1334:18;13410:108:0;1215:177:1;15195:529:0;;;;;;;;;;-1:-1:-1;15195:529:0;;;;;:::i;:::-;;:::i;13252:93::-;;;;;;;;;;-1:-1:-1;13252:93:0;;13335:2;2000:36:1;;1988:2;1973:18;13252:93:0;1858:184:1;16129:290:0;;;;;;;;;;-1:-1:-1;16129:290:0;;;;;:::i;:::-;;:::i;31911:171::-;;;;;;;;;;-1:-1:-1;31911:171:0;;;;;:::i;:::-;;:::i;29725:187::-;;;;;;;;;;-1:-1:-1;29725:187:0;;;;;:::i;:::-;;:::i;28686:1031::-;;;;;;;;;;;;;:::i;30178:261::-;;;;;;;;;;-1:-1:-1;30178:261:0;;;;;:::i;:::-;;:::i;31696:207::-;;;;;;;;;;-1:-1:-1;31696:207:0;;;;;:::i;:::-;;:::i;30447:315::-;;;;;;;;;;-1:-1:-1;30447:315:0;;;;;:::i;:::-;;:::i;13581:143::-;;;;;;;;;;-1:-1:-1;13581:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13698:18:0;13671:7;13698:18;;;;;;;;;;;;13581:143;23629:103;;;;;;;;;;;;;:::i;22978:87::-;;;;;;;;;;-1:-1:-1;23051:6:0;;22978:87;;-1:-1:-1;;;;;23051:6:0;;;4408:51:1;;4396:2;4381:18;22978:87:0;4262:203:1;35291:436:0;;;;;;;;;;;;;:::i;12509:104::-;;;;;;;;;;;;;:::i;16918:475::-;;;;;;;;;;-1:-1:-1;16918:475:0;;;;;:::i;:::-;;:::i;13937:200::-;;;;;;;;;;-1:-1:-1;13937:200:0;;;;;:::i;:::-;;:::i;29920:250::-;;;;;;;;;;-1:-1:-1;29920:250:0;;;;;:::i;:::-;;:::i;32090:485::-;;;;;;;;;;-1:-1:-1;32412:6:0;;32433:7;;32455:14;;32484:18;;32517:12;;32544;;32090:485;;;4757:25:1;;;4813:2;4798:18;;4791:34;;;;4841:18;;;4834:34;;;;4899:2;4884:18;;4877:34;4942:3;4927:19;;4920:35;4986:3;4971:19;;4964:35;4744:3;4729:19;32090:485:0;4470:535:1;30770:188:0;;;;;;;;;;;;;:::i;30966:242::-;;;;;;;;;;;;;:::i;14200:176::-;;;;;;;;;;-1:-1:-1;14200:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;14341:18:0;;;14314:7;14341:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14200:176;23887:238;;;;;;;;;;-1:-1:-1;23887:238:0;;;;;:::i;:::-;;:::i;31216:291::-;;;;;;;;;;-1:-1:-1;31216:291:0;;;;;:::i;:::-;;:::i;12290:100::-;12344:13;12377:5;12370:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12290:100;:::o;14523:194::-;14631:4;14648:39;11376:10;14671:7;14680:6;14648:8;:39::i;:::-;-1:-1:-1;14705:4:0;14523:194;;;;;:::o;31515:173::-;31583:10;;-1:-1:-1;;;;;31583:10:0;31569;:24;31561:66;;;;-1:-1:-1;;;31561:66:0;;5990:2:1;31561:66:0;;;5972:21:1;6029:2;6009:18;;;6002:30;6068:31;6048:18;;;6041:59;6117:18;;31561:66:0;;;;;;;;;31638:10;;:42;;-1:-1:-1;;;;;31638:10:0;;;;31658:21;31638:42;;;;;:10;:42;:10;:42;31658:21;31638:10;:42;;;;;;;;;;;;;;;;;;;;;31515:173::o;15195:529::-;15335:4;15352:36;15362:6;15370:9;15381:6;15352:9;:36::i;:::-;-1:-1:-1;;;;;15428:19:0;;15401:24;15428:19;;;:11;:19;;;;;;;;11376:10;15428:33;;;;;;;;15494:26;;;;15472:116;;;;-1:-1:-1;;;15472:116:0;;6348:2:1;15472:116:0;;;6330:21:1;6387:2;6367:18;;;6360:30;6426:34;6406:18;;;6399:62;-1:-1:-1;;;6477:18:1;;;6470:38;6525:19;;15472:116:0;6146:404:1;15472:116:0;15624:57;15633:6;11376:10;15674:6;15655:16;:25;15624:8;:57::i;:::-;-1:-1:-1;15712:4:0;;15195:529;-1:-1:-1;;;;15195:529:0:o;16129:290::-;11376:10;16242:4;16331:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16331:34:0;;;;;;;;;;16242:4;;16259:130;;16309:7;;16331:47;;16368:10;;16331:47;:::i;:::-;16259:8;:130::i;31911:171::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31990:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:36;;-1:-1:-1;;31990:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32042:32;;7346:51:1;;;7413:18;;;7406:50;32042:32:0::1;::::0;7319:18:1;32042:32:0::1;;;;;;;;31911:171:::0;;:::o;29725:187::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;29823:10:::1;:28:::0;;-1:-1:-1;;;;;;29823:28:0::1;-1:-1:-1::0;;;;;29823:28:0;::::1;::::0;;::::1;::::0;;;29869:35:::1;::::0;4408:51:1;;;29869:35:0::1;::::0;4396:2:1;4381:18;29869:35:0::1;;;;;;;;29725:187:::0;:::o;28686:1031::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;28748:11:::1;::::0;-1:-1:-1;;;28748:11:0;::::1;;;28747:12;28739:48;;;::::0;-1:-1:-1;;;28739:48:0;;7885:2:1;28739:48:0::1;::::0;::::1;7867:21:1::0;7924:2;7904:18;;;7897:30;7963:25;7943:18;;;7936:53;8006:18;;28739:48:0::1;7683:347:1::0;28739:48:0::1;28798:15;:96:::0;;-1:-1:-1;;;;;;28798:96:0::1;28841:42;28798:96:::0;;::::1;::::0;;;28905:64:::1;::::0;28922:4:::1;::::0;28955:13:::1;13498:12:::0;;;13410:108;28905:64:::1;29008:15;;;;;;;;;-1:-1:-1::0;;;;;29008:15:0::1;-1:-1:-1::0;;;;;29008:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28996:49:0::1;;29068:4;29088:15;;;;;;;;;-1:-1:-1::0;;;;;29088:15:0::1;-1:-1:-1::0;;;;;29088:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28996:125;::::0;-1:-1:-1;;;;;;28996:125:0::1;::::0;;;;;;-1:-1:-1;;;;;8521:15:1;;;28996:125:0::1;::::0;::::1;8503:34:1::0;8573:15;;8553:18;;;8546:43;8438:18;;28996:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28980:13;:141:::0;;-1:-1:-1;;;;;28980:141:0;;::::1;-1:-1:-1::0;;;;;;28980:141:0;;::::1;;::::0;;29132:15:::1;::::0;::::1;:31;29171:21;29216:4;29236:24;29216:4:::0;-1:-1:-1;;;;;13698:18:0;13671:7;13698:18;;;;;;;;;;;;13581:143;29236:24:::1;29275:1;29291::::0;29307:7:::1;23051:6:::0;;-1:-1:-1;;;;;23051:6:0;;22978:87;29307:7:::1;29132:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29132:223:0;;;-1:-1:-1;;;;;8959:15:1;;;29132:223:0::1;::::0;::::1;8941:34:1::0;8991:18;;;8984:34;;;;9034:18;;;9027:34;;;;9077:18;;;9070:34;9141:15;;;9120:19;;;9113:44;29329:15:0::1;9173:19:1::0;;;9166:35;8875:19;;29132:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29373:13:0::1;::::0;29404:15:::1;::::0;29366:71:::1;::::0;-1:-1:-1;;;29366:71:0;;-1:-1:-1;;;;;29404:15:0;;::::1;29366:71;::::0;::::1;9697:51:1::0;-1:-1:-1;;9764:18:1;;;9757:34;29373:13:0;::::1;::::0;-1:-1:-1;29366:29:0::1;::::0;9670:18:1;;29366:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;29448:11:0::1;:18:::0;;-1:-1:-1;;;;29477:18:0;-1:-1:-1;;;29477:18:0;;;29519:12:::1;29506:10;:25:::0;;;29542:15:::1;:38:::0;;-1:-1:-1;;29542:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;29618:4:::1;-1:-1:-1::0;29591:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;29591:40:0::1;-1:-1:-1::0;29591:40:0::1;::::0;;29651:2:::1;-1:-1:-1::0;29642:11:0;;;-1:-1:-1;29664:12:0;29694:15;::::1;::::0;-1:-1:-1;29694:15:0::1;28686:1031::o:0;30178:261::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;30268:1:::1;30256:8;:13;;30248:60;;;::::0;-1:-1:-1;;;30248:60:0;;10254:2:1;30248:60:0::1;::::0;::::1;10236:21:1::0;10293:2;10273:18;;;10266:30;10332:34;10312:18;;;10305:62;-1:-1:-1;;;10383:18:1;;;10376:32;10425:19;;30248:60:0::1;10052:398:1::0;30248:60:0::1;30369:4;30357:8;30341:13;13498:12:::0;;;13410:108;30341:13:::1;:24;;;;:::i;:::-;30340:33;;;;:::i;:::-;30319:18;:54:::0;;;30389:42:::1;::::0;1361:25:1;;;30389:42:0::1;::::0;1349:2:1;1334:18;30389:42:0::1;1215:177:1::0;31696:207:0;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;31808:9:::1;31803:93;31823:15:::0;;::::1;31803:93;;;31878:6;31860;:15;31867:4;;31872:1;31867:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31860:15:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;31860:15:0;:24;;-1:-1:-1;;31860:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31840:3;::::1;::::0;::::1;:::i;:::-;;;;31803:93;;;;31696:207:::0;;;:::o;30447:315::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;30626:5:::1;30606:16;30590:13;13498:12:::0;;;13410:108;30590:13:::1;:32;;;;:::i;:::-;30589:42;;;;:::i;:::-;30574:12;:57:::0;30688:5:::1;30674:10:::0;30658:13:::1;13498:12:::0;;;13410:108;30658:13:::1;:26;;;;:::i;:::-;30657:36;;;;:::i;:::-;30642:12;:51:::0;30709:45:::1;::::0;;11296:25:1;;;11352:2;11337:18;;11330:34;;;30709:45:0::1;::::0;11269:18:1;30709:45:0::1;11122:248:1::0;23629:103:0;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;23694:30:::1;23721:1;23694:18;:30::i;:::-;23629:103::o:0;35291:436::-;35370:10;;-1:-1:-1;;;;;35370:10:0;35356;:24;;:49;;-1:-1:-1;23051:6:0;;-1:-1:-1;;;;;23051:6:0;35384:10;:21;35356:49;35334:128;;;;-1:-1:-1;;;35334:128:0;;5990:2:1;35334:128:0;;;5972:21:1;6029:2;6009:18;;;6002:30;6068:31;6048:18;;;6041:59;6117:18;;35334:128:0;5788:353:1;35334:128:0;35522:4;35473:28;13698:18;;;;;;;;;;;35541:38;13698:18;35541:16;:38::i;:::-;35619:21;35655:22;;35651:69;;35694:14;:12;:14::i;:::-;35323:404;;35291:436::o;12509:104::-;12565:13;12598:7;12591:14;;;;;:::i;16918:475::-;11376:10;17036:4;17080:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17080:34:0;;;;;;;;;;17147:35;;;;17125:122;;;;-1:-1:-1;;;17125:122:0;;11577:2:1;17125:122:0;;;11559:21:1;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:35;11751:19;;17125:122:0;11375:401:1;17125:122:0;17283:67;11376:10;17306:7;17334:15;17315:16;:34;17283:8;:67::i;:::-;-1:-1:-1;17381:4:0;;16918:475;-1:-1:-1;;;16918:475:0:o;13937:200::-;14048:4;14065:42;11376:10;14089:9;14100:6;14065:9;:42::i;29920:250::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;30015:1:::1;30003:8;:13;;29995:56;;;::::0;-1:-1:-1;;;29995:56:0;;11983:2:1;29995:56:0::1;::::0;::::1;11965:21:1::0;12022:2;12002:18;;;11995:30;12061:32;12041:18;;;12034:60;12111:18;;29995:56:0::1;11781:354:1::0;29995:56:0::1;30108:4;30096:8;30080:13;13498:12:::0;;;13410:108;30080:13:::1;:24;;;;:::i;:::-;30079:33;;;;:::i;:::-;30062:14;:50:::0;;;30128:34:::1;::::0;1361:25:1;;;30128:34:0::1;::::0;1349:2:1;1334:18;30128:34:0::1;1215:177:1::0;30770:188:0;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;30830:10:::1;::::0;-1:-1:-1;;;30830:10:0;::::1;;;30822:54;;;::::0;-1:-1:-1;;;30822:54:0;;12342:2:1;30822:54:0::1;::::0;::::1;12324:21:1::0;12381:2;12361:18;;;12354:30;12420:33;12400:18;;;12393:61;12471:18;;30822:54:0::1;12140:355:1::0;30822:54:0::1;30896:2;30887:6;:11:::0;;;30909:7:::1;:12:::0;30932:10:::1;:18:::0;;-1:-1:-1;;;;30932:18:0::1;::::0;;30770:188::o;30966:242::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;13498:12;;31023:14:::1;:30:::0;13498:12;;31064:18:::1;:34:::0;31114:33:::1;31133:13;13498:12:::0;;;13410:108;31133:13:::1;31114:33;::::0;1361:25:1;;;1349:2;1334:18;31114:33:0::1;;;;;;;31163:37;31186:13;13498:12:::0;;;13410:108;31186:13:::1;31163:37;::::0;1361:25:1;;;1349:2;1334:18;31163:37:0::1;;;;;;;30966:242::o:0;23887:238::-;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23990:22:0;::::1;23968:110;;;::::0;-1:-1:-1;;;23968:110:0;;12702:2:1;23968:110:0::1;::::0;::::1;12684:21:1::0;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:36;12877:19;;23968:110:0::1;12500:402:1::0;23968:110:0::1;24089:28;24108:8;24089:18;:28::i;31216:291::-:0;23051:6;;-1:-1:-1;;;;;23051:6:0;11376:10;23198:23;23190:68;;;;-1:-1:-1;;;23190:68:0;;;;;;;:::i;:::-;31314:2:::1;31304:6;:12;;31296:46;;;::::0;-1:-1:-1;;;31296:46:0;;13109:2:1;31296:46:0::1;::::0;::::1;13091:21:1::0;13148:2;13128:18;;;13121:30;-1:-1:-1;;;13167:18:1;;;13160:51;13228:18;;31296:46:0::1;12907:345:1::0;31296:46:0::1;31372:2;31361:7;:13;;31353:48;;;::::0;-1:-1:-1;;;31353:48:0;;13459:2:1;31353:48:0::1;::::0;::::1;13441:21:1::0;13498:2;13478:18;;;13471:30;-1:-1:-1;;;13517:18:1;;;13510:52;13579:18;;31353:48:0::1;13257:346:1::0;31353:48:0::1;31412:6;:15:::0;;;31438:7:::1;:17:::0;;;31471:28:::1;::::0;;11296:25:1;;;11352:2;11337:18;;11330:34;;;31471:28:0::1;::::0;11269:18:1;31471:28:0::1;11122:248:1::0;20701:380:0;-1:-1:-1;;;;;20837:19:0;;20829:68;;;;-1:-1:-1;;;20829:68:0;;13810:2:1;20829:68:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:34;13983:19;;20829:68:0;13608:400:1;20829:68:0;-1:-1:-1;;;;;20916:21:0;;20908:68;;;;-1:-1:-1;;;20908:68:0;;14215:2:1;20908:68:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;-1:-1:-1;;;14344:18:1;;;14337:32;14386:19;;20908:68:0;14013:398:1;20908:68:0;-1:-1:-1;;;;;20989:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21041:32;;1361:25:1;;;21041:32:0;;1334:18:1;21041:32:0;;;;;;;20701:380;;;:::o;32583:2382::-;-1:-1:-1;;;;;32715:18:0;;32707:68;;;;-1:-1:-1;;;32707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32794:16:0;;32786:64;;;;-1:-1:-1;;;32786:64:0;;;;;;;:::i;:::-;32878:1;32869:6;:10;32861:64;;;;-1:-1:-1;;;32861:64:0;;15428:2:1;32861:64:0;;;15410:21:1;15467:2;15447:18;;;15440:30;15506:34;15486:18;;;15479:62;-1:-1:-1;;;15557:18:1;;;15550:39;15606:19;;32861:64:0;15226:405:1;32861:64:0;32936:17;32980:7;23051:6;;-1:-1:-1;;;;;23051:6:0;;22978:87;32980:7;-1:-1:-1;;;;;32972:15:0;:4;-1:-1:-1;;;;;32972:15:0;;;:32;;;;-1:-1:-1;23051:6:0;;-1:-1:-1;;;;;32991:13:0;;;23051:6;;32991:13;;32972:32;:43;;;;-1:-1:-1;33009:6:0;;-1:-1:-1;;;33009:6:0;;;;33008:7;32972:43;32968:1826;;;33036:10;;-1:-1:-1;;;33036:10:0;;;;33032:89;;;-1:-1:-1;;;;;33074:12:0;;;;;;:6;:12;;;;;;;;;:26;;-1:-1:-1;;;;;;33090:10:0;;;;;;:6;:10;;;;;;;;33074:26;33066:39;;;;-1:-1:-1;;;33066:39:0;;15838:2:1;33066:39:0;;;15820:21:1;-1:-1:-1;15857:18:1;;;15850:29;15896:18;;33066:39:0;15636:284:1;33066:39:0;33149:27;33172:3;33149:18;33160:6;;33149;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;33223:13;;33137:39;;-1:-1:-1;;;;;;33215:21:0;;;33223:13;;33215:21;:72;;;;-1:-1:-1;33271:15:0;;-1:-1:-1;;;;;33257:30:0;;;33271:15;;33257:30;;33215:72;:116;;;;-1:-1:-1;;;;;;33309:22:0;;;;;;:18;:22;;;;;;;;33308:23;33215:116;33193:568;;;33384:14;;33374:6;:24;;33366:64;;;;-1:-1:-1;;;33366:64:0;;16127:2:1;33366:64:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:29;16185:18;;;16178:57;16252:18;;33366:64:0;15925:351:1;33366:64:0;33505:18;;33495:6;33479:13;33489:2;-1:-1:-1;;;;;13698:18:0;13671:7;13698:18;;;;;;;;;;;;13581:143;33479:13;:22;;;;:::i;:::-;:44;;33449:144;;;;-1:-1:-1;;;33449:144:0;;16483:2:1;33449:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;33449:144:0;16281:350:1;33449:144:0;33635:12;33618:10;;33631:1;33618:14;;;;:::i;:::-;:29;33614:102;;;35219:20;;35267:8;33672:24;;;;;;33734:9;:11;;;:9;:11;;;:::i;:::-;;;;;;33193:568;33787:13;;-1:-1:-1;;;;;33781:19:0;;;33787:13;;33781:19;;;;:46;;-1:-1:-1;;;;;;33805:22:0;;;;;;:18;:22;;;;;;;;33804:23;33781:46;33777:231;;;33904:18;;33894:6;33878:13;33888:2;-1:-1:-1;;;;;13698:18:0;13671:7;13698:18;;;;;;;;;;;;13581:143;33878:13;:22;;;;:::i;:::-;:44;;33848:144;;;;-1:-1:-1;;;33848:144:0;;16483:2:1;33848:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;33848:144:0;16281:350:1;33848:144:0;34034:13;;-1:-1:-1;;;;;34028:19:0;;;34034:13;;34028:19;:44;;;;-1:-1:-1;;;;;;34051:21:0;;34067:4;34051:21;;34028:44;34024:125;;;34105:28;34129:3;34105:19;34116:7;;34105:6;:10;;:19;;;;:::i;:28::-;34093:40;;34024:125;34214:4;34165:28;13698:18;;;;;;;;;;;34258:6;;-1:-1:-1;;;34258:6:0;;;;34257:7;:47;;;;-1:-1:-1;34291:13:0;;-1:-1:-1;;;;;34285:19:0;;;34291:13;;34285:19;34257:47;:79;;;;-1:-1:-1;34325:11:0;;-1:-1:-1;;;34325:11:0;;;;34257:79;:135;;;;;34380:12;;34357:20;:35;34257:135;:186;;;;;34425:18;;34413:9;;:30;34257:186;:246;;;;-1:-1:-1;34464:15:0;;34490:12;34464:39;;;;:15;;:39;;34257:246;34235:548;;;34538:57;34555:39;34559:20;34581:12;;34555:3;:39::i;:::-;34538:16;:57::i;:::-;34643:21;34687:22;;34683:85;;34734:14;:12;:14::i;:::-;34519:264;34235:548;33017:1777;32968:1826;34810:13;;34806:93;;34840:47;34856:4;34870;34877:9;34840:15;:47::i;:::-;34909:48;34925:4;34931:2;34935:21;:6;34946:9;34935:10;:21::i;:::-;34909:15;:48::i;24285:191::-;24378:6;;;-1:-1:-1;;;;;24395:17:0;;;-1:-1:-1;;;;;;24395:17:0;;;;;;;24428:40;;24378:6;;;24395:17;24378:6;;24428:40;;24359:16;;24428:40;24348:128;24285:191;:::o;35735:532::-;27938:6;:13;;-1:-1:-1;;;;27938:13:0;-1:-1:-1;;;27938:13:0;;;35813:15:::1;:38:::0;;::::1;35838:12;35813:38;-1:-1:-1::0;;35813:38:0;;::::1;;::::0;;35886:16:::1;::::0;;35900:1:::1;35886:16:::0;;;;;::::1;::::0;;-1:-1:-1;;35886:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;35886:16:0::1;35862:40;;35931:4;35913;35918:1;35913:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35913:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;35957:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;35957:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;35913:7;;35957:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35947:4;35952:1;35947:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35947:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;36022:15:::1;::::0;35990:62:::1;::::0;36007:4:::1;::::0;36022:15:::1;36040:11:::0;35990:8:::1;:62::i;:::-;36063:15;::::0;:196:::1;::::0;-1:-1:-1;;;36063:196:0;;-1:-1:-1;;;;;36063:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;36144:11;;36063:15:::1;::::0;36186:4;;36213::::1;::::0;36233:15:::1;::::0;36063:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27974:6:0;:14;;-1:-1:-1;;;;27974:14:0;;;-1:-1:-1;;;;35735:532:0:o;36275:170::-;36363:10;;36355:82;;36318:12;;-1:-1:-1;;;;;36363:10:0;;36387:21;;36318:12;36355:82;36318:12;36355:82;36387:21;36363:10;36355:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4655:98;4713:7;4740:5;4744:1;4740;:5;:::i;:::-;4733:12;4655:98;-1:-1:-1;;;4655:98:0:o;5054:::-;5112:7;5139:5;5143:1;5139;:5;:::i;34973:107::-;35030:7;35062:1;35058;:5;35057:15;;35071:1;35057:15;;;-1:-1:-1;35067:1:0;34973:107;-1:-1:-1;34973:107:0:o;17883:770::-;-1:-1:-1;;;;;18023:20:0;;18015:70;;;;-1:-1:-1;;;18015:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18104:23:0;;18096:71;;;;-1:-1:-1;;;18096:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18264:17:0;;18240:21;18264:17;;;;;;;;;;;18314:23;;;;18292:111;;;;-1:-1:-1;;;18292:111:0;;18165:2:1;18292:111:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;-1:-1:-1;;;18294:18:1;;;18287:36;18340:19;;18292:111:0;17963:402:1;18292:111:0;-1:-1:-1;;;;;18439:17:0;;;:9;:17;;;;;;;;;;;18459:22;;;18439:42;;18503:20;;;;;;;;:30;;18475:6;;18439:9;18503:30;;18475:6;;18503:30;:::i;:::-;;;;;;;;18568:9;-1:-1:-1;;;;;18551:35:0;18560:6;-1:-1:-1;;;;;18551:35:0;;18579:6;18551:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;18551:35:0;;;;;;;;18599:46;21681:125;4298:98;4356:7;4383:5;4387:1;4383;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:118::-;2133:5;2126:13;2119:21;2112:5;2109:32;2099:60;;2155:1;2152;2145:12;2170:382;2235:6;2243;2296:2;2284:9;2275:7;2271:23;2267:32;2264:52;;;2312:1;2309;2302:12;2264:52;2351:9;2338:23;2370:31;2395:5;2370:31;:::i;:::-;2420:5;-1:-1:-1;2477:2:1;2462:18;;2449:32;2490:30;2449:32;2490:30;:::i;:::-;2539:7;2529:17;;;2170:382;;;;;:::o;2557:255::-;2624:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2732:9;2719:23;2751:31;2776:5;2751:31;:::i;2817:180::-;2876:6;2929:2;2917:9;2908:7;2904:23;2900:32;2897:52;;;2945:1;2942;2935:12;2897:52;-1:-1:-1;2968:23:1;;2817:180;-1:-1:-1;2817:180:1:o;3002:750::-;3094:6;3102;3110;3163:2;3151:9;3142:7;3138:23;3134:32;3131:52;;;3179:1;3176;3169:12;3131:52;3219:9;3206:23;3248:18;3289:2;3281:6;3278:14;3275:34;;;3305:1;3302;3295:12;3275:34;3343:6;3332:9;3328:22;3318:32;;3388:7;3381:4;3377:2;3373:13;3369:27;3359:55;;3410:1;3407;3400:12;3359:55;3450:2;3437:16;3476:2;3468:6;3465:14;3462:34;;;3492:1;3489;3482:12;3462:34;3547:7;3540:4;3530:6;3527:1;3523:14;3519:2;3515:23;3511:34;3508:47;3505:67;;;3568:1;3565;3558:12;3505:67;3599:4;3591:13;;;;-1:-1:-1;3623:6:1;-1:-1:-1;;3664:20:1;;3651:34;3694:28;3651:34;3694:28;:::i;:::-;3741:5;3731:15;;;3002:750;;;;;:::o;3757:248::-;3825:6;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;-1:-1:-1;;3925:23:1;;;3995:2;3980:18;;;3967:32;;-1:-1:-1;3757:248:1:o;5010:388::-;5078:6;5086;5139:2;5127:9;5118:7;5114:23;5110:32;5107:52;;;5155:1;5152;5145:12;5107:52;5194:9;5181:23;5213:31;5238:5;5213:31;:::i;:::-;5263:5;-1:-1:-1;5320:2:1;5305:18;;5292:32;5333:33;5292:32;5333:33;:::i;5403:380::-;5482:1;5478:12;;;;5525;;;5546:61;;5600:4;5592:6;5588:17;5578:27;;5546:61;5653:2;5645:6;5642:14;5622:18;5619:38;5616:161;;5699:10;5694:3;5690:20;5687:1;5680:31;5734:4;5731:1;5724:15;5762:4;5759:1;5752:15;6555:127;6616:10;6611:3;6607:20;6604:1;6597:31;6647:4;6644:1;6637:15;6671:4;6668:1;6661:15;6687:125;6752:9;;;6773:10;;;6770:36;;;6786:18;;:::i;6817:356::-;7019:2;7001:21;;;7038:18;;;7031:30;7097:34;7092:2;7077:18;;7070:62;7164:2;7149:18;;6817:356::o;8035:251::-;8105:6;8158:2;8146:9;8137:7;8133:23;8129:32;8126:52;;;8174:1;8171;8164:12;8126:52;8206:9;8200:16;8225:31;8250:5;8225:31;:::i;9212:306::-;9300:6;9308;9316;9369:2;9357:9;9348:7;9344:23;9340:32;9337:52;;;9385:1;9382;9375:12;9337:52;9414:9;9408:16;9398:26;;9464:2;9453:9;9449:18;9443:25;9433:35;;9508:2;9497:9;9493:18;9487:25;9477:35;;9212:306;;;;;:::o;9802:245::-;9869:6;9922:2;9910:9;9901:7;9897:23;9893:32;9890:52;;;9938:1;9935;9928:12;9890:52;9970:9;9964:16;9989:28;10011:5;9989:28;:::i;10455:168::-;10528:9;;;10559;;10576:15;;;10570:22;;10556:37;10546:71;;10597:18;;:::i;10628:217::-;10668:1;10694;10684:132;;10738:10;10733:3;10729:20;10726:1;10719:31;10773:4;10770:1;10763:15;10801:4;10798:1;10791:15;10684:132;-1:-1:-1;10830:9:1;;10628:217::o;10850:127::-;10911:10;10906:3;10902:20;10899:1;10892:31;10942:4;10939:1;10932:15;10966:4;10963:1;10956:15;10982:135;11021:3;11042:17;;;11039:43;;11062:18;;:::i;:::-;-1:-1:-1;11109:1:1;11098:13;;10982:135::o;14416:401::-;14618:2;14600:21;;;14657:2;14637:18;;;14630:30;14696:34;14691:2;14676:18;;14669:62;-1:-1:-1;;;14762:2:1;14747:18;;14740:35;14807:3;14792:19;;14416:401::o;14822:399::-;15024:2;15006:21;;;15063:2;15043:18;;;15036:30;15102:34;15097:2;15082:18;;15075:62;-1:-1:-1;;;15168:2:1;15153:18;;15146:33;15211:3;15196:19;;14822:399::o;16768:980::-;17030:4;17078:3;17067:9;17063:19;17109:6;17098:9;17091:25;17135:2;17173:6;17168:2;17157:9;17153:18;17146:34;17216:3;17211:2;17200:9;17196:18;17189:31;17240:6;17275;17269:13;17306:6;17298;17291:22;17344:3;17333:9;17329:19;17322:26;;17383:2;17375:6;17371:15;17357:29;;17404:1;17414:195;17428:6;17425:1;17422:13;17414:195;;;17493:13;;-1:-1:-1;;;;;17489:39:1;17477:52;;17584:15;;;;17549:12;;;;17525:1;17443:9;17414:195;;;-1:-1:-1;;;;;;;17665:32:1;;;;17660:2;17645:18;;17638:60;-1:-1:-1;;;17729:3:1;17714:19;17707:35;17626:3;16768:980;-1:-1:-1;;;16768:980:1:o;18370:128::-;18437:9;;;18458:11;;;18455:37;;;18472:18;;:::i

Swarm Source

ipfs://5b4d1f0eb5458f3d58d09b137f5c74251e85c7aa2737fc9b8c758154b044c078
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.