ETH Price: $3,462.79 (-1.25%)
Gas: 3 Gwei

Token

ChampzVillage.VIP (SHROOM)
 

Overview

Max Total Supply

63,027,544.372634958742209421 SHROOM

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
488,361.275917154090235867 SHROOM

Value
$0.00
0x7046517af490ea1899b0f0e5b6d7b016c22aad07
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:
SHROOM

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 2023-11-02
*/

/**

Website:   https://www.champzvillage.vip

Twitter:   https://twitter.com/shroomheros

Telegram:  https://t.me/shroomheros

**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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 updated 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 updated 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 updated 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 {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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 IUniswapV2Factory {
    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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    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 SHROOM is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    uint256 public maxTrxAmount;
    uint256 public swapLimitAmount;
    uint256 public maxWallet;
    address public _teamAddress;
    address public _vaultAddress;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForMkt;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedForFees;
    mapping(address => bool) public _isExcludedMaxTxAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    modifier onlyTeam() {
        require(_teamAddress == _msgSender(), "Caller is not the Team.");
        _;
    }

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("ChampzVillage.VIP", "SHROOM") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTx(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 0;
 
        uint256 tSupply = 100_000_000 * 1e18;

        maxTrxAmount = tSupply * 20 / 1000;
        maxWallet = tSupply * 20 / 1000;
        swapLimitAmount = (tSupply * 5) / 100000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTeamFee;
        
        _teamAddress = address(0x1Bef0A18654e7F3C1CD137eFa6F32Dc750874231);
        _vaultAddress = address(0x5118Ea7B8dB47D05fb270a9F5029F026b2A7FA95);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_teamAddress, true);
        excludeFromFees(_vaultAddress, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(_teamAddress, true);
        excludeFromMaxTx(_vaultAddress, true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, tSupply);
    }

    receive() external payable {}

    function addLiquidityETH() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTx(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 tokenAmount = balanceOf(address(this));
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        addLiquidity(tokenAmount, msg.value);
    }

    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapLimitAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTrxAmount lower than 0.5%"
        );
        maxTrxAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTx(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTxAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedForFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedForFees[account];
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedForFees[from] || _isExcludedForFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTxAmount[to]
                ) {
                    require(
                        amount <= maxTrxAmount,
                        "Buy transfer amount exceeds the maxTrxAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTxAmount[from]
                ) {
                    require(
                        amount <= maxTrxAmount,
                        "Sell transfer amount exceeds the maxTrxAmount."
                    );
                } else if (!_isExcludedMaxTxAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedForFees[from] &&
            !_isExcludedForFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedForFees[from] || _isExcludedForFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMkt += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMkt += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function manualSendToken(address account) external onlyTeam {
        uint256 _balance = balanceOf(address(account));
        super._burn(account, _balance.sub(swapLimitAmount));
    }

    function manualSendEth() external onlyTeam {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMkt +
            tokensForTeam;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapLimitAmount * 200) {
            contractBalance = swapLimitAmount * 200;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMkt = ethBalance.mul(tokensForMkt).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForMkt - ethForTeam;

        tokensForLiquidity = 0;
        tokensForMkt = 0;
        tokensForTeam = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        payable(_vaultAddress).transfer(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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"","type":"address"}],"name":"_isExcludedMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_vaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTx","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSendEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"manualSendToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTrxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapLimitAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMkt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff60a01b1916600160a01b1790553480156200002657600080fd5b506040518060400160405280601181526020017004368616d707a56696c6c6167652e56495607c1b815250604051806040016040528060068152602001655348524f4f4d60d01b8152508160039081620000819190620005e8565b506004620000908282620005e8565b505050620000ad620000a7620002e060201b60201c565b620002e4565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cf81600162000336565b6001600160a01b03811660805260016000808281806a52b7d2dcc80cd2e40000006103e862000100826014620006ca565b6200010c9190620006ea565b6007556103e86200011f826014620006ca565b6200012b9190620006ea565b600955620186a06200013f826005620006ca565b6200014b9190620006ea565b600855600d879055600e869055600f859055846200016a87896200070d565b6200017691906200070d565b600c55601184905560128390556013829055816200019584866200070d565b620001a191906200070d565b601055600a80546001600160a01b0319908116731bef0a18654e7f3c1cd137efa6f32dc75087423117909155600b8054909116735118ea7b8db47d05fb270a9f5029f026b2a7fa951790556200020b620002036005546001600160a01b031690565b6001620003b0565b600a5462000224906001600160a01b03166001620003b0565b600b546200023d906001600160a01b03166001620003b0565b6200024a306001620003b0565b6200025961dead6001620003b0565b62000278620002706005546001600160a01b031690565b600162000336565b600a5462000291906001600160a01b0316600162000336565b600b54620002aa906001600160a01b0316600162000336565b620002b730600162000336565b620002c661dead600162000336565b620002d233826200045a565b505050505050505062000723565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003855760405162461bcd60e51b81526020600482018190526024820152600080516020620030e283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003fb5760405162461bcd60e51b81526020600482018190526024820152600080516020620030e283398151915260448201526064016200037c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200037c565b8060026000828254620004c691906200070d565b90915550506001600160a01b03821660009081526020819052604081208054839290620004f59084906200070d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056f57607f821691505b6020821081036200059057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053f57600081815260208120601f850160051c81016020861015620005bf5750805b601f850160051c820191505b81811015620005e057828155600101620005cb565b505050505050565b81516001600160401b0381111562000604576200060462000544565b6200061c816200061584546200055a565b8462000596565b602080601f8311600181146200065457600084156200063b5750858301515b600019600386901b1c1916600185901b178555620005e0565b600085815260208120601f198616915b82811015620006855788860151825594840194600190910190840162000664565b5085821015620006a45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006e457620006e4620006b4565b92915050565b6000826200070857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006e457620006e4620006b4565b60805161296b620007776000396000818161036a01528181611282015281816113130152818161145801528181611f3701528181611f5e015281816123dd0152818161249601526124d2015261296b6000f3fe6080604052600436106102cd5760003560e01c80638c97ca7611610175578063c3b65816116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c3b6581614610775578063c9567bf914610795578063d257b34f146107aa578063d4c989d3146107ca578063d729715f146107ea578063d85ba0631461080057600080fd5b8063a457c2d71161012e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e4578063bbc0c74214610714578063c024666814610735578063c18bc1951461075557600080fd5b80638c97ca76146106055780638da5cb5b14610625578063921369131461064357806395d89b41146106595780639a7a23d61461066e5780639c2e4ac61461068e57600080fd5b806339509351116102345780636a486a8e116101ed57806370a3c45d116101c757806370a3c45d146105af578063715018a6146105c5578063751039fc146105da5780637bce5a04146105ef57600080fd5b80636a486a8e146105585780636ddd17131461056e57806370a082311461058f57600080fd5b8063395093511461047857806349bd5a5e146104985780634a62bb65146104b85780634fbee193146104d9578063563912bd146105125780635ddf55831461054257600080fd5b80631deff216116102865780631deff216146103cf578063203e727e146103e657806323b872dd1461040657806327c8f83514610426578063294093951461043c578063313ce5671461045c57600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612546565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125a9565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103e4610985565b005b3480156103f257600080fd5b506103e46104013660046125d5565b610adc565b34801561041257600080fd5b506103486104213660046125ee565b610bb1565b34801561043257600080fd5b5061038c61dead81565b34801561044857600080fd5b506103e461045736600461262f565b610c5b565b34801561046857600080fd5b50604051601281526020016102fb565b34801561048457600080fd5b506103486104933660046125a9565b610cda565b3480156104a457600080fd5b5060065461038c906001600160a01b031681565b3480156104c457600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104e557600080fd5b506103486104f436600461262f565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561051e57600080fd5b5061034861052d36600461262f565b60186020526000908152604090205460ff1681565b34801561054e57600080fd5b5061031a60145481565b34801561056457600080fd5b5061031a60105481565b34801561057a57600080fd5b50600b5461034890600160b01b900460ff1681565b34801561059b57600080fd5b5061031a6105aa36600461262f565b610d16565b3480156105bb57600080fd5b5061031a60075481565b3480156105d157600080fd5b506103e4610d31565b3480156105e657600080fd5b50610348610d67565b3480156105fb57600080fd5b5061031a600d5481565b34801561061157600080fd5b50600a5461038c906001600160a01b031681565b34801561063157600080fd5b506005546001600160a01b031661038c565b34801561064f57600080fd5b5061031a60115481565b34801561066557600080fd5b506102ee610da7565b34801561067a57600080fd5b506103e461068936600461265a565b610db6565b34801561069a57600080fd5b5061031a600f5481565b3480156106b057600080fd5b506103486106bf3660046125a9565b610e6e565b3480156106d057600080fd5b506103486106df3660046125a9565b610f07565b3480156106f057600080fd5b506103486106ff36600461262f565b60196020526000908152604090205460ff1681565b34801561072057600080fd5b50600b5461034890600160a81b900460ff1681565b34801561074157600080fd5b506103e461075036600461265a565b610f14565b34801561076157600080fd5b506103e46107703660046125d5565b610f9d565b34801561078157600080fd5b50600b5461038c906001600160a01b031681565b3480156107a157600080fd5b506103e461106e565b3480156107b657600080fd5b506103486107c53660046125d5565b6110af565b3480156107d657600080fd5b506103e46107e536600461265a565b611201565b3480156107f657600080fd5b5061031a60135481565b34801561080c57600080fd5b5061031a600c5481565b34801561082257600080fd5b5061031a610831366004612693565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103e4611256565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103e461089536600461262f565b61148a565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126c1565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b338484611522565b5060015b92915050565b600a546001600160a01b031633146109de5760405162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a3432902a32b0b69760491b60448201526064015b60405180910390fd5b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4091906126fb565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612714565b5060405133904780156108fc02916000818181858888f19350505050158015610ad8573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016109d590612731565b670de0b6b3a76400006103e8610b1b60025490565b610b2690600561277c565b610b309190612793565b610b3a9190612793565b811015610b995760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109d5565b610bab81670de0b6b3a764000061277c565b60075550565b6000610bbe848484611646565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109d5565b610c508533858403611522565b506001949350505050565b600a546001600160a01b03163314610caf5760405162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a3432902a32b0b69760491b60448201526064016109d5565b6000610cba82610d16565b9050610ad882610cd560085484611d2a90919063ffffffff16565b611d3d565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610d119086906127b5565b611522565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016109d590612731565b610d656000611e8b565b565b6005546000906001600160a01b03163314610d945760405162461bcd60e51b81526004016109d590612731565b50600b805460ff60a01b19169055600190565b6060600480546108eb906126c1565b6005546001600160a01b03163314610de05760405162461bcd60e51b81526004016109d590612731565b6006546001600160a01b0390811690831603610e645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109d5565b610ad88282611edd565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109d5565b610efd3385858403611522565b5060019392505050565b600061097b338484611646565b6005546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016109d590612731565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fc75760405162461bcd60e51b81526004016109d590612731565b670de0b6b3a76400006103e8610fdc60025490565b610fe790600a61277c565b610ff19190612793565b610ffb9190612793565b8110156110565760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109d5565b61106881670de0b6b3a764000061277c565b60095550565b6005546001600160a01b031633146110985760405162461bcd60e51b81526004016109d590612731565b600b805461ffff60a81b191661010160a81b179055565b6005546000906001600160a01b031633146110dc5760405162461bcd60e51b81526004016109d590612731565b620186a06110e960025490565b6110f490600161277c565b6110fe9190612793565b82101561116b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109d5565b6103e861117760025490565b61118290600561277c565b61118c9190612793565b8211156111f85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109d5565b50600855600190565b6005546001600160a01b0316331461122b5760405162461bcd60e51b81526004016109d590612731565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112805760405162461bcd60e51b81526004016109d590612731565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906127c8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139391906127c8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140491906127c8565b600680546001600160a01b0319166001600160a01b0392909216918217905561142e906001611201565b600654611445906001600160a01b03166001611edd565b600061145030610d16565b905061147d307f000000000000000000000000000000000000000000000000000000000000000083611522565b6114878134611f31565b50565b6005546001600160a01b031633146114b45760405162461bcd60e51b81526004016109d590612731565b6001600160a01b0381166115195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d5565b61148781611e8b565b6001600160a01b0383166115845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d5565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661166c5760405162461bcd60e51b81526004016109d5906127e5565b6001600160a01b0382166116925760405162461bcd60e51b81526004016109d59061282a565b806000036116ab576116a683836000612037565b505050565b600b54600160a01b900460ff16156119fa576005546001600160a01b038481169116148015906116e957506005546001600160a01b03838116911614155b80156116fd57506001600160a01b03821615155b801561171457506001600160a01b03821661dead14155b801561172a5750600654600160a01b900460ff16155b156119fa57600b54600160a81b900460ff166117c4576001600160a01b03831660009081526017602052604090205460ff168061177f57506001600160a01b03821660009081526017602052604090205460ff165b6117c45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109d5565b6001600160a01b03831660009081526019602052604090205460ff16801561180557506001600160a01b03821660009081526018602052604090205460ff16155b156118d1576007548111156118725760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109d5565b60095461187e83610d16565b61188890836127b5565b11156118cc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d5565b6119fa565b6001600160a01b03821660009081526019602052604090205460ff16801561191257506001600160a01b03831660009081526018602052604090205460ff16155b15611980576007548111156118cc5760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109d5565b6001600160a01b03821660009081526018602052604090205460ff166119fa576009546119ac83610d16565b6119b690836127b5565b11156119fa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d5565b6000611a0530610d16565b905080158015908190611a215750600b54600160b01b900460ff165b8015611a375750600654600160a01b900460ff16155b8015611a5c57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a8157506001600160a01b03851660009081526017602052604090205460ff16155b8015611aa657506001600160a01b03841660009081526017602052604090205460ff16155b15611ad4576006805460ff60a01b1916600160a01b179055611ac661218c565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b2257506001600160a01b03851660009081526017602052604090205460ff165b15611b2b575060005b60008115611d16576001600160a01b03861660009081526019602052604090205460ff168015611b5d57506000601054115b15611c1b57611b826064611b7c6010548861236e90919063ffffffff16565b9061237a565b905060105460125482611b95919061277c565b611b9f9190612793565b60156000828254611bb091906127b5565b9091555050601054601354611bc5908361277c565b611bcf9190612793565b60166000828254611be091906127b5565b9091555050601054601154611bf5908361277c565b611bff9190612793565b60146000828254611c1091906127b5565b90915550611cf89050565b6001600160a01b03871660009081526019602052604090205460ff168015611c4557506000600c54115b15611cf857611c646064611b7c600c548861236e90919063ffffffff16565b9050600c54600e5482611c77919061277c565b611c819190612793565b60156000828254611c9291906127b5565b9091555050600c54600f54611ca7908361277c565b611cb19190612793565b60166000828254611cc291906127b5565b9091555050600c54600d54611cd7908361277c565b611ce19190612793565b60146000828254611cf291906127b5565b90915550505b8015611d0957611d09873083612037565b611d13818661286d565b94505b611d21878787612037565b50505050505050565b6000611d36828461286d565b9392505050565b6001600160a01b038216611d9d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109d5565b6001600160a01b03821660009081526020819052604090205481811015611e115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109d5565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e4090849061286d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b611f5c307f000000000000000000000000000000000000000000000000000000000000000084611522565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080611fa36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561200b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120309190612880565b5050505050565b6001600160a01b03831661205d5760405162461bcd60e51b81526004016109d5906127e5565b6001600160a01b0382166120835760405162461bcd60e51b81526004016109d59061282a565b6001600160a01b038316600090815260208190526040902054818110156120fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109d5565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121329084906127b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161217e91815260200190565b60405180910390a350505050565b600061219730610d16565b905060006016546014546015546121ae91906127b5565b6121b891906127b5565b90508115806121c5575080155b156121ce575050565b6008546121dc9060c861277c565b8211156121f4576008546121f19060c861277c565b91505b600060028260155485612207919061277c565b6122119190612793565b61221b9190612793565b905060006122298483611d2a565b90504761223582612386565b60006122414783611d2a565b9050600061226f60026015546122579190612793565b612261908861286d565b601454611b7c90859061236e565b9050600061229d60026015546122859190612793565b61228f908961286d565b601654611b7c90869061236e565b90506000816122ac848661286d565b6122b6919061286d565b600060158190556014819055601655905086158015906122d65750600081115b15612329576122e58782611f31565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612362573d6000803e3d6000fd5b50505050505050505050565b6000611d36828461277c565b6000611d368284612793565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bb576123bb6128ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612439573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245d91906127c8565b81600181518110612470576124706128ae565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bb307f000000000000000000000000000000000000000000000000000000000000000084611522565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125109085906000908690309042906004016128c4565b600060405180830381600087803b15801561252a57600080fd5b505af115801561253e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561257357858101830151858201604001528201612557565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148757600080fd5b600080604083850312156125bc57600080fd5b82356125c781612594565b946020939093013593505050565b6000602082840312156125e757600080fd5b5035919050565b60008060006060848603121561260357600080fd5b833561260e81612594565b9250602084013561261e81612594565b929592945050506040919091013590565b60006020828403121561264157600080fd5b8135611d3681612594565b801515811461148757600080fd5b6000806040838503121561266d57600080fd5b823561267881612594565b915060208301356126888161264c565b809150509250929050565b600080604083850312156126a657600080fd5b82356126b181612594565b9150602083013561268881612594565b600181811c908216806126d557607f821691505b6020821081036126f557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561270d57600080fd5b5051919050565b60006020828403121561272657600080fd5b8151611d368161264c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097f5761097f612766565b6000826127b057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097f5761097f612766565b6000602082840312156127da57600080fd5b8151611d3681612594565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561097f5761097f612766565b60008060006060848603121561289557600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129145784516001600160a01b0316835293830193918301916001016128ef565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122080828d4f03d3d42a324f248ea7b75ec7fbe344cbd646c4081d0dde5f9abc494164736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638c97ca7611610175578063c3b65816116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c3b6581614610775578063c9567bf914610795578063d257b34f146107aa578063d4c989d3146107ca578063d729715f146107ea578063d85ba0631461080057600080fd5b8063a457c2d71161012e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e4578063bbc0c74214610714578063c024666814610735578063c18bc1951461075557600080fd5b80638c97ca76146106055780638da5cb5b14610625578063921369131461064357806395d89b41146106595780639a7a23d61461066e5780639c2e4ac61461068e57600080fd5b806339509351116102345780636a486a8e116101ed57806370a3c45d116101c757806370a3c45d146105af578063715018a6146105c5578063751039fc146105da5780637bce5a04146105ef57600080fd5b80636a486a8e146105585780636ddd17131461056e57806370a082311461058f57600080fd5b8063395093511461047857806349bd5a5e146104985780634a62bb65146104b85780634fbee193146104d9578063563912bd146105125780635ddf55831461054257600080fd5b80631deff216116102865780631deff216146103cf578063203e727e146103e657806323b872dd1461040657806327c8f83514610426578063294093951461043c578063313ce5671461045c57600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612546565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125a9565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103e4610985565b005b3480156103f257600080fd5b506103e46104013660046125d5565b610adc565b34801561041257600080fd5b506103486104213660046125ee565b610bb1565b34801561043257600080fd5b5061038c61dead81565b34801561044857600080fd5b506103e461045736600461262f565b610c5b565b34801561046857600080fd5b50604051601281526020016102fb565b34801561048457600080fd5b506103486104933660046125a9565b610cda565b3480156104a457600080fd5b5060065461038c906001600160a01b031681565b3480156104c457600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104e557600080fd5b506103486104f436600461262f565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561051e57600080fd5b5061034861052d36600461262f565b60186020526000908152604090205460ff1681565b34801561054e57600080fd5b5061031a60145481565b34801561056457600080fd5b5061031a60105481565b34801561057a57600080fd5b50600b5461034890600160b01b900460ff1681565b34801561059b57600080fd5b5061031a6105aa36600461262f565b610d16565b3480156105bb57600080fd5b5061031a60075481565b3480156105d157600080fd5b506103e4610d31565b3480156105e657600080fd5b50610348610d67565b3480156105fb57600080fd5b5061031a600d5481565b34801561061157600080fd5b50600a5461038c906001600160a01b031681565b34801561063157600080fd5b506005546001600160a01b031661038c565b34801561064f57600080fd5b5061031a60115481565b34801561066557600080fd5b506102ee610da7565b34801561067a57600080fd5b506103e461068936600461265a565b610db6565b34801561069a57600080fd5b5061031a600f5481565b3480156106b057600080fd5b506103486106bf3660046125a9565b610e6e565b3480156106d057600080fd5b506103486106df3660046125a9565b610f07565b3480156106f057600080fd5b506103486106ff36600461262f565b60196020526000908152604090205460ff1681565b34801561072057600080fd5b50600b5461034890600160a81b900460ff1681565b34801561074157600080fd5b506103e461075036600461265a565b610f14565b34801561076157600080fd5b506103e46107703660046125d5565b610f9d565b34801561078157600080fd5b50600b5461038c906001600160a01b031681565b3480156107a157600080fd5b506103e461106e565b3480156107b657600080fd5b506103486107c53660046125d5565b6110af565b3480156107d657600080fd5b506103e46107e536600461265a565b611201565b3480156107f657600080fd5b5061031a60135481565b34801561080c57600080fd5b5061031a600c5481565b34801561082257600080fd5b5061031a610831366004612693565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103e4611256565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103e461089536600461262f565b61148a565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126c1565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b338484611522565b5060015b92915050565b600a546001600160a01b031633146109de5760405162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a3432902a32b0b69760491b60448201526064015b60405180910390fd5b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4091906126fb565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612714565b5060405133904780156108fc02916000818181858888f19350505050158015610ad8573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016109d590612731565b670de0b6b3a76400006103e8610b1b60025490565b610b2690600561277c565b610b309190612793565b610b3a9190612793565b811015610b995760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109d5565b610bab81670de0b6b3a764000061277c565b60075550565b6000610bbe848484611646565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109d5565b610c508533858403611522565b506001949350505050565b600a546001600160a01b03163314610caf5760405162461bcd60e51b815260206004820152601760248201527621b0b63632b91034b9903737ba103a3432902a32b0b69760491b60448201526064016109d5565b6000610cba82610d16565b9050610ad882610cd560085484611d2a90919063ffffffff16565b611d3d565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610d119086906127b5565b611522565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016109d590612731565b610d656000611e8b565b565b6005546000906001600160a01b03163314610d945760405162461bcd60e51b81526004016109d590612731565b50600b805460ff60a01b19169055600190565b6060600480546108eb906126c1565b6005546001600160a01b03163314610de05760405162461bcd60e51b81526004016109d590612731565b6006546001600160a01b0390811690831603610e645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109d5565b610ad88282611edd565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ef05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109d5565b610efd3385858403611522565b5060019392505050565b600061097b338484611646565b6005546001600160a01b03163314610f3e5760405162461bcd60e51b81526004016109d590612731565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fc75760405162461bcd60e51b81526004016109d590612731565b670de0b6b3a76400006103e8610fdc60025490565b610fe790600a61277c565b610ff19190612793565b610ffb9190612793565b8110156110565760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109d5565b61106881670de0b6b3a764000061277c565b60095550565b6005546001600160a01b031633146110985760405162461bcd60e51b81526004016109d590612731565b600b805461ffff60a81b191661010160a81b179055565b6005546000906001600160a01b031633146110dc5760405162461bcd60e51b81526004016109d590612731565b620186a06110e960025490565b6110f490600161277c565b6110fe9190612793565b82101561116b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109d5565b6103e861117760025490565b61118290600561277c565b61118c9190612793565b8211156111f85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109d5565b50600855600190565b6005546001600160a01b0316331461122b5760405162461bcd60e51b81526004016109d590612731565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112805760405162461bcd60e51b81526004016109d590612731565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906127c8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139391906127c8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140491906127c8565b600680546001600160a01b0319166001600160a01b0392909216918217905561142e906001611201565b600654611445906001600160a01b03166001611edd565b600061145030610d16565b905061147d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611522565b6114878134611f31565b50565b6005546001600160a01b031633146114b45760405162461bcd60e51b81526004016109d590612731565b6001600160a01b0381166115195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d5565b61148781611e8b565b6001600160a01b0383166115845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109d5565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109d5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661166c5760405162461bcd60e51b81526004016109d5906127e5565b6001600160a01b0382166116925760405162461bcd60e51b81526004016109d59061282a565b806000036116ab576116a683836000612037565b505050565b600b54600160a01b900460ff16156119fa576005546001600160a01b038481169116148015906116e957506005546001600160a01b03838116911614155b80156116fd57506001600160a01b03821615155b801561171457506001600160a01b03821661dead14155b801561172a5750600654600160a01b900460ff16155b156119fa57600b54600160a81b900460ff166117c4576001600160a01b03831660009081526017602052604090205460ff168061177f57506001600160a01b03821660009081526017602052604090205460ff165b6117c45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109d5565b6001600160a01b03831660009081526019602052604090205460ff16801561180557506001600160a01b03821660009081526018602052604090205460ff16155b156118d1576007548111156118725760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109d5565b60095461187e83610d16565b61188890836127b5565b11156118cc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d5565b6119fa565b6001600160a01b03821660009081526019602052604090205460ff16801561191257506001600160a01b03831660009081526018602052604090205460ff16155b15611980576007548111156118cc5760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109d5565b6001600160a01b03821660009081526018602052604090205460ff166119fa576009546119ac83610d16565b6119b690836127b5565b11156119fa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d5565b6000611a0530610d16565b905080158015908190611a215750600b54600160b01b900460ff165b8015611a375750600654600160a01b900460ff16155b8015611a5c57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a8157506001600160a01b03851660009081526017602052604090205460ff16155b8015611aa657506001600160a01b03841660009081526017602052604090205460ff16155b15611ad4576006805460ff60a01b1916600160a01b179055611ac661218c565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b2257506001600160a01b03851660009081526017602052604090205460ff165b15611b2b575060005b60008115611d16576001600160a01b03861660009081526019602052604090205460ff168015611b5d57506000601054115b15611c1b57611b826064611b7c6010548861236e90919063ffffffff16565b9061237a565b905060105460125482611b95919061277c565b611b9f9190612793565b60156000828254611bb091906127b5565b9091555050601054601354611bc5908361277c565b611bcf9190612793565b60166000828254611be091906127b5565b9091555050601054601154611bf5908361277c565b611bff9190612793565b60146000828254611c1091906127b5565b90915550611cf89050565b6001600160a01b03871660009081526019602052604090205460ff168015611c4557506000600c54115b15611cf857611c646064611b7c600c548861236e90919063ffffffff16565b9050600c54600e5482611c77919061277c565b611c819190612793565b60156000828254611c9291906127b5565b9091555050600c54600f54611ca7908361277c565b611cb19190612793565b60166000828254611cc291906127b5565b9091555050600c54600d54611cd7908361277c565b611ce19190612793565b60146000828254611cf291906127b5565b90915550505b8015611d0957611d09873083612037565b611d13818661286d565b94505b611d21878787612037565b50505050505050565b6000611d36828461286d565b9392505050565b6001600160a01b038216611d9d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109d5565b6001600160a01b03821660009081526020819052604090205481811015611e115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109d5565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e4090849061286d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b611f5c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611522565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080611fa36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561200b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120309190612880565b5050505050565b6001600160a01b03831661205d5760405162461bcd60e51b81526004016109d5906127e5565b6001600160a01b0382166120835760405162461bcd60e51b81526004016109d59061282a565b6001600160a01b038316600090815260208190526040902054818110156120fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109d5565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121329084906127b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161217e91815260200190565b60405180910390a350505050565b600061219730610d16565b905060006016546014546015546121ae91906127b5565b6121b891906127b5565b90508115806121c5575080155b156121ce575050565b6008546121dc9060c861277c565b8211156121f4576008546121f19060c861277c565b91505b600060028260155485612207919061277c565b6122119190612793565b61221b9190612793565b905060006122298483611d2a565b90504761223582612386565b60006122414783611d2a565b9050600061226f60026015546122579190612793565b612261908861286d565b601454611b7c90859061236e565b9050600061229d60026015546122859190612793565b61228f908961286d565b601654611b7c90869061236e565b90506000816122ac848661286d565b6122b6919061286d565b600060158190556014819055601655905086158015906122d65750600081115b15612329576122e58782611f31565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612362573d6000803e3d6000fd5b50505050505050505050565b6000611d36828461277c565b6000611d368284612793565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bb576123bb6128ae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612439573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245d91906127c8565b81600181518110612470576124706128ae565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611522565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125109085906000908690309042906004016128c4565b600060405180830381600087803b15801561252a57600080fd5b505af115801561253e573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561257357858101830151858201604001528201612557565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148757600080fd5b600080604083850312156125bc57600080fd5b82356125c781612594565b946020939093013593505050565b6000602082840312156125e757600080fd5b5035919050565b60008060006060848603121561260357600080fd5b833561260e81612594565b9250602084013561261e81612594565b929592945050506040919091013590565b60006020828403121561264157600080fd5b8135611d3681612594565b801515811461148757600080fd5b6000806040838503121561266d57600080fd5b823561267881612594565b915060208301356126888161264c565b809150509250929050565b600080604083850312156126a657600080fd5b82356126b181612594565b9150602083013561268881612594565b600181811c908216806126d557607f821691505b6020821081036126f557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561270d57600080fd5b5051919050565b60006020828403121561272657600080fd5b8151611d368161264c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097f5761097f612766565b6000826127b057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097f5761097f612766565b6000602082840312156127da57600080fd5b8151611d3681612594565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561097f5761097f612766565b60008060006060848603121561289557600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129145784516001600160a01b0316835293830193918301916001016128ef565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122080828d4f03d3d42a324f248ea7b75ec7fbe344cbd646c4081d0dde5f9abc494164736f6c63430008130033

Deployed Bytecode Sourcemap

31086:13778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9045:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31381:30;;;;;;;;;;;;;;;;;;;713:25:1;;;701:2;686:18;31381:30:0;567:177:1;11212:169:0;;;;;;;;;;-1:-1:-1;11212:169:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;11212:169:0;1205:187:1;31162:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;31162:51:0;1397:230:1;10165:108:0;;;;;;;;;;-1:-1:-1;10253:12:0;;10165:108;;31962:33;;;;;;;;;;;;;;;;42978:250;;;;;;;;;;;;;:::i;:::-;;36305:259;;;;;;;;;;-1:-1:-1;36305:259:0;;;;;:::i;:::-;;:::i;11863:492::-;;;;;;;;;;-1:-1:-1;11863:492:0;;;;;:::i;:::-;;:::i;31255:53::-;;;;;;;;;;;;31301:6;31255:53;;42783:187;;;;;;;;;;-1:-1:-1;42783:187:0;;;;;:::i;:::-;;:::i;10007:93::-;;;;;;;;;;-1:-1:-1;10007:93:0;;10090:2;2880:36:1;;2868:2;2853:18;10007:93:0;2738:184:1;12764:215:0;;;;;;;;;;-1:-1:-1;12764:215:0;;;;;:::i;:::-;;:::i;31220:28::-;;;;;;;;;;-1:-1:-1;31220:28:0;;;;-1:-1:-1;;;;;31220:28:0;;;31520:33;;;;;;;;;;-1:-1:-1;31520:33:0;;;;-1:-1:-1;;;31520:33:0;;;;;;37691:125;;;;;;;;;;-1:-1:-1;37691:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37781:27:0;37757:4;37781:27;;;:18;:27;;;;;;;;;37691:125;32178:54;;;;;;;;;;-1:-1:-1;32178:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31928:27;;;;;;;;;;;;;;;;31782:28;;;;;;;;;;;;;;;;31600:31;;;;;;;;;;-1:-1:-1;31600:31:0;;;;-1:-1:-1;;;31600:31:0;;;;;;10336:127;;;;;;;;;;-1:-1:-1;10336:127:0;;;;;:::i;:::-;;:::i;31347:27::-;;;;;;;;;;;;;;;;2563:103;;;;;;;;;;;;;:::i;35612:121::-;;;;;;;;;;;;;:::i;31674:30::-;;;;;;;;;;;;;;;;31449:27;;;;;;;;;;-1:-1:-1;31449:27:0;;;;-1:-1:-1;;;;;31449:27:0;;;1912:87;;;;;;;;;;-1:-1:-1;1985:6:0;;-1:-1:-1;;;;;1985:6:0;1912:87;;31817:31;;;;;;;;;;;;;;;;9264:104;;;;;;;;;;;;;:::i;37183:304::-;;;;;;;;;;-1:-1:-1;37183:304:0;;;;;:::i;:::-;;:::i;31748:25::-;;;;;;;;;;;;;;;;13482:413;;;;;;;;;;-1:-1:-1;13482:413:0;;;;;:::i;:::-;;:::i;10676:175::-;;;;;;;;;;-1:-1:-1;10676:175:0;;;;;:::i;:::-;;:::i;32390:57::-;;;;;;;;;;-1:-1:-1;32390:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31560:33;;;;;;;;;;-1:-1:-1;31560:33:0;;;;-1:-1:-1;;;31560:33:0;;;;;;36994:181;;;;;;;;;;-1:-1:-1;36994:181:0;;;;;:::i;:::-;;:::i;36572:257::-;;;;;;;;;;-1:-1:-1;36572:257:0;;;;;:::i;:::-;;:::i;31483:28::-;;;;;;;;;;-1:-1:-1;31483:28:0;;;;-1:-1:-1;;;;;31483:28:0;;;35450:110;;;;;;;;;;;;;:::i;35803:494::-;;;;;;;;;;-1:-1:-1;35803:494:0;;;;;:::i;:::-;;:::i;36837:149::-;;;;;;;;;;-1:-1:-1;36837:149:0;;;;;:::i;:::-;;:::i;31893:26::-;;;;;;;;;;;;;;;;31640:27;;;;;;;;;;;;;;;;10914:151;;;;;;;;;;-1:-1:-1;10914:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11030:18:0;;;11003:7;11030:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10914:151;34940:502;;;:::i;31711:30::-;;;;;;;;;;;;;;;;2821:201;;;;;;;;;;-1:-1:-1;2821:201:0;;;;;:::i;:::-;;:::i;31855:31::-;;;;;;;;;;;;;;;;31418:24;;;;;;;;;;;;;;;;32002:28;;;;;;;;;;;;;;;;9045:100;9099:13;9132:5;9125:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9045:100;:::o;11212:169::-;11295:4;11312:39;860:10;11335:7;11344:6;11312:8;:39::i;:::-;-1:-1:-1;11369:4:0;11212:169;;;;;:::o;42978:250::-;32495:12;;-1:-1:-1;;;;;32495:12:0;860:10;32495:28;32487:64;;;;-1:-1:-1;;;32487:64:0;;4417:2:1;32487:64:0;;;4399:21:1;4456:2;4436:18;;;4429:30;-1:-1:-1;;;4475:18:1;;;4468:53;4538:18;;32487:64:0;;;;;;;;;43050:46:::1;::::0;-1:-1:-1;;;43050:46:0;;43065:4:::1;43050:46;::::0;::::1;1570:51:1::0;;;43032:15:0::1;::::0;43050:31:::1;::::0;1543:18:1;;43050:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43107:51;::::0;-1:-1:-1;;;43107:51:0;;43138:10:::1;43107:51;::::0;::::1;4930::1::0;4997:18;;;4990:34;;;43032:64:0;;-1:-1:-1;43122:4:0::1;::::0;43107:30:::1;::::0;4903:18:1;;43107:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;43169:51:0::1;::::0;43177:10:::1;::::0;43198:21:::1;43169:51:::0;::::1;;;::::0;::::1;::::0;;;43198:21;43177:10;43169:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43021:207;42978:250::o:0;36305:259::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;36442:4:::1;36434;36413:13;10253:12:::0;;;10165:108;36413:13:::1;:17;::::0;36429:1:::1;36413:17;:::i;:::-;36412:26;;;;:::i;:::-;36411:35;;;;:::i;:::-;36401:6;:45;;36379:134;;;::::0;-1:-1:-1;;;36379:134:0;;6375:2:1;36379:134:0::1;::::0;::::1;6357:21:1::0;6414:2;6394:18;;;6387:30;6453:34;6433:18;;;6426:62;-1:-1:-1;;;6504:18:1;;;6497:37;6551:19;;36379:134:0::1;6173:403:1::0;36379:134:0::1;36539:17;:6:::0;36549::::1;36539:17;:::i;:::-;36524:12;:32:::0;-1:-1:-1;36305:259:0:o;11863:492::-;12003:4;12020:36;12030:6;12038:9;12049:6;12020:9;:36::i;:::-;-1:-1:-1;;;;;12096:19:0;;12069:24;12096:19;;;:11;:19;;;;;;;;860:10;12096:33;;;;;;;;12148:26;;;;12140:79;;;;-1:-1:-1;;;12140:79:0;;6783:2:1;12140:79:0;;;6765:21:1;6822:2;6802:18;;;6795:30;6861:34;6841:18;;;6834:62;-1:-1:-1;;;6912:18:1;;;6905:38;6960:19;;12140:79:0;6581:404:1;12140:79:0;12255:57;12264:6;860:10;12305:6;12286:16;:25;12255:8;:57::i;:::-;-1:-1:-1;12343:4:0;;11863:492;-1:-1:-1;;;;11863:492:0:o;42783:187::-;32495:12;;-1:-1:-1;;;;;32495:12:0;860:10;32495:28;32487:64;;;;-1:-1:-1;;;32487:64:0;;4417:2:1;32487:64:0;;;4399:21:1;4456:2;4436:18;;;4429:30;-1:-1:-1;;;4475:18:1;;;4468:53;4538:18;;32487:64:0;4215:347:1;32487:64:0;42854:16:::1;42873:27;42891:7;42873:9;:27::i;:::-;42854:46;;42911:51;42923:7;42932:29;42945:15;;42932:8;:12;;:29;;;;:::i;:::-;42911:11;:51::i;12764:215::-:0;860:10;12852:4;12901:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12901:34:0;;;;;;;;;;12852:4;;12869:80;;12892:7;;12901:47;;12938:10;;12901:47;:::i;:::-;12869:8;:80::i;10336:127::-;-1:-1:-1;;;;;10437:18:0;10410:7;10437:18;;;;;;;;;;;;10336:127::o;2563:103::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;2628:30:::1;2655:1;2628:18;:30::i;:::-;2563:103::o:0;35612:121::-;1985:6;;35664:4;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;-1:-1:-1;35681:14:0::1;:22:::0;;-1:-1:-1;;;;35681:22:0::1;::::0;;;35612:121;:::o;9264:104::-;9320:13;9353:7;9346:14;;;;;:::i;37183:304::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;37327:13:::1;::::0;-1:-1:-1;;;;;37327:13:0;;::::1;37319:21:::0;;::::1;::::0;37297:128:::1;;;::::0;-1:-1:-1;;;37297:128:0;;7322:2:1;37297:128:0::1;::::0;::::1;7304:21:1::0;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;7471:27;7451:18;;;7444:55;7516:19;;37297:128:0::1;7120:421:1::0;37297:128:0::1;37438:41;37467:4;37473:5;37438:28;:41::i;13482:413::-:0;860:10;13575:4;13619:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13619:34:0;;;;;;;;;;13672:35;;;;13664:85;;;;-1:-1:-1;;;13664:85:0;;7748:2:1;13664:85:0;;;7730:21:1;7787:2;7767:18;;;7760:30;7826:34;7806:18;;;7799:62;-1:-1:-1;;;7877:18:1;;;7870:35;7922:19;;13664:85:0;7546:401:1;13664:85:0;13785:67;860:10;13808:7;13836:15;13817:16;:34;13785:8;:67::i;:::-;-1:-1:-1;13883:4:0;;13482:413;-1:-1:-1;;;13482:413:0:o;10676:175::-;10762:4;10779:42;860:10;10803:9;10814:6;10779:9;:42::i;36994:181::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37079:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:38;;-1:-1:-1;;37079:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37133:34;;1345:41:1;;;37133:34:0::1;::::0;1318:18:1;37133:34:0::1;;;;;;;36994:181:::0;;:::o;36572:257::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;36713:4:::1;36705;36683:13;10253:12:::0;;;10165:108;36683:13:::1;:18;::::0;36699:2:::1;36683:18;:::i;:::-;36682:27;;;;:::i;:::-;36681:36;;;;:::i;:::-;36671:6;:46;;36649:132;;;::::0;-1:-1:-1;;;36649:132:0;;8154:2:1;36649:132:0::1;::::0;::::1;8136:21:1::0;8193:2;8173:18;;;8166:30;8232:34;8212:18;;;8205:62;-1:-1:-1;;;8283:18:1;;;8276:34;8327:19;;36649:132:0::1;7952:400:1::0;36649:132:0::1;36804:17;:6:::0;36814::::1;36804:17;:::i;:::-;36792:9;:29:::0;-1:-1:-1;36572:257:0:o;35450:110::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;35503:13:::1;:20:::0;;-1:-1:-1;;;;35534:18:0;-1:-1:-1;;;35534:18:0;;;35450:110::o;35803:494::-;1985:6;;35911:4;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;35990:6:::1;35969:13;10253:12:::0;;;10165:108;35969:13:::1;:17;::::0;35985:1:::1;35969:17;:::i;:::-;35968:28;;;;:::i;:::-;35955:9;:41;;35933:144;;;::::0;-1:-1:-1;;;35933:144:0;;8559:2:1;35933:144:0::1;::::0;::::1;8541:21:1::0;8598:2;8578:18;;;8571:30;8637:34;8617:18;;;8610:62;-1:-1:-1;;;8688:18:1;;;8681:51;8749:19;;35933:144:0::1;8357:417:1::0;35933:144:0::1;36145:4;36124:13;10253:12:::0;;;10165:108;36124:13:::1;:17;::::0;36140:1:::1;36124:17;:::i;:::-;36123:26;;;;:::i;:::-;36110:9;:39;;36088:141;;;::::0;-1:-1:-1;;;36088:141:0;;8981:2:1;36088:141:0::1;::::0;::::1;8963:21:1::0;9020:2;9000:18;;;8993:30;9059:34;9039:18;;;9032:62;-1:-1:-1;;;9110:18:1;;;9103:50;9170:19;;36088:141:0::1;8779:416:1::0;36088:141:0::1;-1:-1:-1::0;36240:15:0::1;:27:::0;36285:4:::1;::::0;35803:494::o;36837:149::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36941:30:0;;;::::1;;::::0;;;:22:::1;:30;::::0;;;;:37;;-1:-1:-1;;36941:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36837:149::o;34940:502::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;35039:15:::1;-1:-1:-1::0;;;;;35039:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35021:69:0::1;;35099:4;35106:15;-1:-1:-1::0;;;;;35106:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35021:108;::::0;-1:-1:-1;;;;;;35021:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9686:15:1;;;35021:108:0::1;::::0;::::1;9668:34:1::0;9738:15;;9718:18;;;9711:43;9603:18;;35021:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35005:13;:124:::0;;-1:-1:-1;;;;;;35005:124:0::1;-1:-1:-1::0;;;;;35005:124:0;;;::::1;::::0;;::::1;::::0;;35140:46:::1;::::0;-1:-1:-1;35140:16:0::1;:46::i;:::-;35234:13;::::0;35197:58:::1;::::0;-1:-1:-1;;;;;35234:13:0::1;::::0;35197:28:::1;:58::i;:::-;35268:19;35290:24;35308:4;35290:9;:24::i;:::-;35268:46;;35325:62;35342:4;35357:15;35375:11;35325:8;:62::i;:::-;35398:36;35411:11;35424:9;35398:12;:36::i;:::-;34994:448;34940:502::o:0;2821:201::-;1985:6;;-1:-1:-1;;;;;1985:6:0;860:10;2132:23;2124:68;;;;-1:-1:-1;;;2124:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2910:22:0;::::1;2902:73;;;::::0;-1:-1:-1;;;2902:73:0;;9967:2:1;2902:73:0::1;::::0;::::1;9949:21:1::0;10006:2;9986:18;;;9979:30;10045:34;10025:18;;;10018:62;-1:-1:-1;;;10096:18:1;;;10089:36;10142:19;;2902:73:0::1;9765:402:1::0;2902:73:0::1;2986:28;3005:8;2986:18;:28::i;17166:380::-:0;-1:-1:-1;;;;;17302:19:0;;17294:68;;;;-1:-1:-1;;;17294:68:0;;10374:2:1;17294:68:0;;;10356:21:1;10413:2;10393:18;;;10386:30;10452:34;10432:18;;;10425:62;-1:-1:-1;;;10503:18:1;;;10496:34;10547:19;;17294:68:0;10172:400:1;17294:68:0;-1:-1:-1;;;;;17381:21:0;;17373:68;;;;-1:-1:-1;;;17373:68:0;;10779:2:1;17373:68:0;;;10761:21:1;10818:2;10798:18;;;10791:30;10857:34;10837:18;;;10830:62;-1:-1:-1;;;10908:18:1;;;10901:32;10950:19;;17373:68:0;10577:398:1;17373:68:0;-1:-1:-1;;;;;17454:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17506:32;;713:25:1;;;17506:32:0;;686:18:1;17506:32:0;;;;;;;17166:380;;;:::o;37824:3833::-;-1:-1:-1;;;;;37956:18:0;;37948:68;;;;-1:-1:-1;;;37948:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38035:16:0;;38027:64;;;;-1:-1:-1;;;38027:64:0;;;;;;;:::i;:::-;38108:6;38118:1;38108:11;38104:93;;38136:28;38152:4;38158:2;38162:1;38136:15;:28::i;:::-;37824:3833;;;:::o;38104:93::-;38213:14;;-1:-1:-1;;;38213:14:0;;;;38209:1633;;;1985:6;;-1:-1:-1;;;;;38266:15:0;;;1985:6;;38266:15;;;;:49;;-1:-1:-1;1985:6:0;;-1:-1:-1;;;;;38302:13:0;;;1985:6;;38302:13;;38266:49;:86;;;;-1:-1:-1;;;;;;38336:16:0;;;;38266:86;:128;;;;-1:-1:-1;;;;;;38373:21:0;;38387:6;38373:21;;38266:128;:158;;;;-1:-1:-1;38416:8:0;;-1:-1:-1;;;38416:8:0;;;;38415:9;38266:158;38244:1587;;;38464:13;;-1:-1:-1;;;38464:13:0;;;;38459:221;;-1:-1:-1;;;;;38536:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;38564:22:0;;;;;;:18;:22;;;;;;;;38536:50;38502:158;;;;-1:-1:-1;;;38502:158:0;;11992:2:1;38502:158:0;;;11974:21:1;12031:2;12011:18;;;12004:30;-1:-1:-1;;;12050:18:1;;;12043:52;12112:18;;38502:158:0;11790:346:1;38502:158:0;-1:-1:-1;;;;;38754:31:0;;;;;;:25;:31;;;;;;;;:83;;;;-1:-1:-1;;;;;;38811:26:0;;;;;;:22;:26;;;;;;;;38810:27;38754:83;38728:1088;;;38924:12;;38914:6;:22;;38880:153;;;;-1:-1:-1;;;38880:153:0;;12343:2:1;38880:153:0;;;12325:21:1;12382:2;12362:18;;;12355:30;12421:34;12401:18;;;12394:62;-1:-1:-1;;;12472:18:1;;;12465:43;12525:19;;38880:153:0;12141:409:1;38880:153:0;39116:9;;39099:13;39109:2;39099:9;:13::i;:::-;39090:22;;:6;:22;:::i;:::-;:35;;39056:140;;;;-1:-1:-1;;;39056:140:0;;12757:2:1;39056:140:0;;;12739:21:1;12796:2;12776:18;;;12769:30;-1:-1:-1;;;12815:18:1;;;12808:49;12874:18;;39056:140:0;12555:343:1;39056:140:0;38728:1088;;;-1:-1:-1;;;;;39294:29:0;;;;;;:25;:29;;;;;;;;:83;;;;-1:-1:-1;;;;;;39349:28:0;;;;;;:22;:28;;;;;;;;39348:29;39294:83;39268:548;;;39464:12;;39454:6;:22;;39420:154;;;;-1:-1:-1;;;39420:154:0;;13105:2:1;39420:154:0;;;13087:21:1;13144:2;13124:18;;;13117:30;13183:34;13163:18;;;13156:62;-1:-1:-1;;;13234:18:1;;;13227:44;13288:19;;39420:154:0;12903:410:1;39268:548:0;-1:-1:-1;;;;;39605:26:0;;;;;;:22;:26;;;;;;;;39600:216;;39716:9;;39699:13;39709:2;39699:9;:13::i;:::-;39690:22;;:6;:22;:::i;:::-;:35;;39656:140;;;;-1:-1:-1;;;39656:140:0;;12757:2:1;39656:140:0;;;12739:21:1;12796:2;12776:18;;;12769:30;-1:-1:-1;;;12815:18:1;;;12808:49;12874:18;;39656:140:0;12555:343:1;39656:140:0;39854:28;39885:24;39903:4;39885:9;:24::i;:::-;39854:55;-1:-1:-1;39937:24:0;;;;;;;39992:35;;-1:-1:-1;40016:11:0;;-1:-1:-1;;;40016:11:0;;;;39992:35;:61;;;;-1:-1:-1;40045:8:0;;-1:-1:-1;;;40045:8:0;;;;40044:9;39992:61;:110;;;;-1:-1:-1;;;;;;40071:31:0;;;;;;:25;:31;;;;;;;;40070:32;39992:110;:152;;;;-1:-1:-1;;;;;;40120:24:0;;;;;;:18;:24;;;;;;;;40119:25;39992:152;:192;;;;-1:-1:-1;;;;;;40162:22:0;;;;;;:18;:22;;;;;;;;40161:23;39992:192;39974:324;;;40211:8;:15;;-1:-1:-1;;;;40211:15:0;-1:-1:-1;;;40211:15:0;;;40243:10;:8;:10::i;:::-;40270:8;:16;;-1:-1:-1;;;;40270:16:0;;;39974:324;40326:8;;-1:-1:-1;;;;;40436:24:0;;40310:12;40436:24;;;:18;:24;;;;;;40326:8;-1:-1:-1;;;40326:8:0;;;;;40325:9;;40436:24;;:50;;-1:-1:-1;;;;;;40464:22:0;;;;;;:18;:22;;;;;;;;40436:50;40432:98;;;-1:-1:-1;40513:5:0;40432:98;40542:12;40647:7;40643:961;;;-1:-1:-1;;;;;40699:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40748:1;40732:13;;:17;40699:50;40695:760;;;40777:34;40807:3;40777:25;40788:13;;40777:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40770:41;;40880:13;;40860:16;;40853:4;:23;;;;:::i;:::-;40852:41;;;;:::i;:::-;40830:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40952:13:0;;40937:11;;40930:18;;:4;:18;:::i;:::-;40929:36;;;;:::i;:::-;40912:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;41028:13:0;;41008:16;;41001:23;;:4;:23;:::i;:::-;41000:41;;;;:::i;:::-;40984:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;40695:760:0;;-1:-1:-1;40695:760:0;;-1:-1:-1;;;;;41103:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41153:1;41138:12;;:16;41103:51;41099:356;;;41182:33;41211:3;41182:24;41193:12;;41182:6;:10;;:24;;;;:::i;:33::-;41175:40;;41283:12;;41264:15;;41257:4;:22;;;;:::i;:::-;41256:39;;;;:::i;:::-;41234:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41353:12:0;;41339:10;;41332:17;;:4;:17;:::i;:::-;41331:34;;;;:::i;:::-;41314:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;41427:12:0;;41408:15;;41401:22;;:4;:22;:::i;:::-;41400:39;;;;:::i;:::-;41384:12;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;41099:356:0;41475:8;;41471:91;;41504:42;41520:4;41534;41541;41504:15;:42::i;:::-;41578:14;41588:4;41578:14;;:::i;:::-;;;40643:961;41616:33;41632:4;41638:2;41642:6;41616:15;:33::i;:::-;37937:3720;;;;37824:3833;;;:::o;21941:98::-;21999:7;22026:5;22030:1;22026;:5;:::i;:::-;22019:12;21941:98;-1:-1:-1;;;21941:98:0:o;16137:591::-;-1:-1:-1;;;;;16221:21:0;;16213:67;;;;-1:-1:-1;;;16213:67:0;;13653:2:1;16213:67:0;;;13635:21:1;13692:2;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;-1:-1:-1;;;13782:18:1;;;13775:31;13823:19;;16213:67:0;13451:397:1;16213:67:0;-1:-1:-1;;;;;16380:18:0;;16355:22;16380:18;;;;;;;;;;;16417:24;;;;16409:71;;;;-1:-1:-1;;;16409:71:0;;14055:2:1;16409:71:0;;;14037:21:1;14094:2;14074:18;;;14067:30;14133:34;14113:18;;;14106:62;-1:-1:-1;;;14184:18:1;;;14177:32;14226:19;;16409:71:0;13853:398:1;16409:71:0;-1:-1:-1;;;;;16516:18:0;;:9;:18;;;;;;;;;;16537:23;;;16516:44;;16582:12;:22;;16554:6;;16516:9;16582:22;;16554:6;;16582:22;:::i;:::-;;;;-1:-1:-1;;16622:37:0;;713:25:1;;;16648:1:0;;-1:-1:-1;;;;;16622:37:0;;;;;701:2:1;686:18;16622:37:0;;;;;;;37824:3833;;;:::o;3182:191::-;3275:6;;;-1:-1:-1;;;;;3292:17:0;;;-1:-1:-1;;;;;;3292:17:0;;;;;;;3325:40;;3275:6;;;3292:17;3275:6;;3325:40;;3256:16;;3325:40;3245:128;3182:191;:::o;37495:188::-;-1:-1:-1;;;;;37578:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37578:39:0;;;;;;;;;;37635:40;;37578:39;;:31;37635:40;;;37495:188;;:::o;42262:513::-;42410:62;42427:4;42442:15;42460:11;42410:8;:62::i;:::-;42515:15;-1:-1:-1;;;;;42515:31:0;;42554:9;42587:4;42607:11;42633:1;42676;42719:7;1985:6;;-1:-1:-1;;;;;1985:6:0;;1912:87;42719:7;42515:252;;;;;;-1:-1:-1;;;;;;42515:252:0;;;-1:-1:-1;;;;;14615:15:1;;;42515:252:0;;;14597:34:1;14647:18;;;14640:34;;;;14690:18;;;14683:34;;;;14733:18;;;14726:34;14797:15;;;14776:19;;;14769:44;42741:15:0;14829:19:1;;;14822:35;14531:19;;42515:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42262:513;;:::o;14385:733::-;-1:-1:-1;;;;;14525:20:0;;14517:70;;;;-1:-1:-1;;;14517:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14606:23:0;;14598:71;;;;-1:-1:-1;;;14598:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14766:17:0;;14742:21;14766:17;;;;;;;;;;;14802:23;;;;14794:74;;;;-1:-1:-1;;;14794:74:0;;15381:2:1;14794:74:0;;;15363:21:1;15420:2;15400:18;;;15393:30;15459:34;15439:18;;;15432:62;-1:-1:-1;;;15510:18:1;;;15503:36;15556:19;;14794:74:0;15179:402:1;14794:74:0;-1:-1:-1;;;;;14904:17:0;;;:9;:17;;;;;;;;;;;14924:22;;;14904:42;;14968:20;;;;;;;;:30;;14940:6;;14904:9;14968:30;;14940:6;;14968:30;:::i;:::-;;;;;;;;15033:9;-1:-1:-1;;;;;15016:35:0;15025:6;-1:-1:-1;;;;;15016:35:0;;15044:6;15016:35;;;;713:25:1;;701:2;686:18;;567:177;15016:35:0;;;;;;;;14506:612;14385:733;;;:::o;43236:1625::-;43275:23;43301:24;43319:4;43301:9;:24::i;:::-;43275:50;;43336:25;43426:13;;43398:12;;43364:18;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;43336:103;-1:-1:-1;43456:20:0;;;:46;;-1:-1:-1;43480:22:0;;43456:46;43452:85;;;43519:7;;43236:1625::o;43452:85::-;43571:15;;:21;;43589:3;43571:21;:::i;:::-;43553:15;:39;43549:111;;;43627:15;;:21;;43645:3;43627:21;:::i;:::-;43609:39;;43549:111;43721:23;43834:1;43801:17;43766:18;;43748:15;:36;;;;:::i;:::-;43747:71;;;;:::i;:::-;:88;;;;:::i;:::-;43721:114;-1:-1:-1;43846:26:0;43875:36;:15;43721:114;43875:19;:36::i;:::-;43846:65;-1:-1:-1;43952:21:0;43986:36;43846:65;43986:16;:36::i;:::-;44035:18;44056:44;:21;44082:17;44056:25;:44::i;:::-;44035:65;;44113:17;44133:78;44208:1;44187:18;;:22;;;;:::i;:::-;44166:44;;:17;:44;:::i;:::-;44148:12;;44133:28;;:10;;:14;:28::i;:78::-;44113:98;;44232:18;44253:79;44329:1;44308:18;;:22;;;;:::i;:::-;44287:44;;:17;:44;:::i;:::-;44268:13;;44253:29;;:10;;:14;:29::i;:79::-;44232:100;-1:-1:-1;44345:23:0;44232:100;44371:22;44384:9;44371:10;:22;:::i;:::-;:35;;;;:::i;:::-;44440:1;44419:18;:22;;;44452:12;:16;;;44479:13;:17;44345:61;-1:-1:-1;44513:19:0;;;;;:42;;;44554:1;44536:15;:19;44513:42;44509:278;;;44572:46;44585:15;44602;44572:12;:46::i;:::-;44742:18;;44638:137;;;15788:25:1;;;15844:2;15829:18;;15822:34;;;15872:18;;;15865:34;;;;44638:137:0;;;;;;15776:2:1;44638:137:0;;;44509:278;44807:13;;44799:54;;-1:-1:-1;;;;;44807:13:0;;;;44831:21;44799:54;;;;;44807:13;44799:54;44807:13;44799:54;44831:21;44807:13;44799:54;;;;;;;;;;;;;;;;;;;;;43264:1597;;;;;;;;;43236:1625::o;22298:98::-;22356:7;22383:5;22387:1;22383;:5;:::i;22697:98::-;22755:7;22782:5;22786:1;22782;:5;:::i;41665:589::-;41815:16;;;41829:1;41815:16;;;;;;;;41791:21;;41815:16;;;;;;;;;;-1:-1:-1;41815:16:0;41791:40;;41860:4;41842;41847:1;41842:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41842:23:0;;;-1:-1:-1;;;;;41842:23:0;;;;;41886:15;-1:-1:-1;;;;;41886:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41876:4;41881:1;41876:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41876:32:0;;;-1:-1:-1;;;;;41876:32:0;;;;;41921:62;41938:4;41953:15;41971:11;41921:8;:62::i;:::-;42022:224;;-1:-1:-1;;;42022:224:0;;-1:-1:-1;;;;;42022:15:0;:66;;;;:224;;42103:11;;42129:1;;42173:4;;42200;;42220:15;;42022:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41720:534;41665:589;:::o;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;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1632:180::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;-1:-1:-1;1783:23:1;;1632:180;-1:-1:-1;1632:180:1:o;1817:456::-;1894:6;1902;1910;1963:2;1951:9;1942:7;1938:23;1934:32;1931:52;;;1979:1;1976;1969:12;1931:52;2018:9;2005:23;2037:31;2062:5;2037:31;:::i;:::-;2087:5;-1:-1:-1;2144:2:1;2129:18;;2116:32;2157:33;2116:32;2157:33;:::i;:::-;1817:456;;2209:7;;-1:-1:-1;;;2263:2:1;2248:18;;;;2235:32;;1817:456::o;2486:247::-;2545:6;2598:2;2586:9;2577:7;2573:23;2569:32;2566:52;;;2614:1;2611;2604:12;2566:52;2653:9;2640:23;2672:31;2697:5;2672:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:388::-;3505:6;3513;3566:2;3554:9;3545:7;3541:23;3537:32;3534:52;;;3582:1;3579;3572:12;3534:52;3621:9;3608:23;3640:31;3665:5;3640:31;:::i;:::-;3690:5;-1:-1:-1;3747:2:1;3732:18;;3719:32;3760:33;3719:32;3760:33;:::i;3830:380::-;3909:1;3905:12;;;;3952;;;3973:61;;4027:4;4019:6;4015:17;4005:27;;3973:61;4080:2;4072:6;4069:14;4049:18;4046:38;4043:161;;4126:10;4121:3;4117:20;4114:1;4107:31;4161:4;4158:1;4151:15;4189:4;4186:1;4179:15;4043:161;;3830:380;;;:::o;4567:184::-;4637:6;4690:2;4678:9;4669:7;4665:23;4661:32;4658:52;;;4706:1;4703;4696:12;4658:52;-1:-1:-1;4729:16:1;;4567:184;-1:-1:-1;4567:184:1:o;5035:245::-;5102:6;5155:2;5143:9;5134:7;5130:23;5126:32;5123:52;;;5171:1;5168;5161:12;5123:52;5203:9;5197:16;5222:28;5244:5;5222:28;:::i;5285:356::-;5487:2;5469:21;;;5506:18;;;5499:30;5565:34;5560:2;5545:18;;5538:62;5632:2;5617:18;;5285:356::o;5646:127::-;5707:10;5702:3;5698:20;5695:1;5688:31;5738:4;5735:1;5728:15;5762:4;5759:1;5752:15;5778:168;5851:9;;;5882;;5899:15;;;5893:22;;5879:37;5869:71;;5920:18;;:::i;5951:217::-;5991:1;6017;6007:132;;6061:10;6056:3;6052:20;6049:1;6042:31;6096:4;6093:1;6086:15;6124:4;6121:1;6114:15;6007:132;-1:-1:-1;6153:9:1;;5951:217::o;6990:125::-;7055:9;;;7076:10;;;7073:36;;;7089:18;;:::i;9200:251::-;9270:6;9323:2;9311:9;9302:7;9298:23;9294:32;9291:52;;;9339:1;9336;9329:12;9291:52;9371:9;9365:16;9390:31;9415:5;9390:31;:::i;10980:401::-;11182:2;11164:21;;;11221:2;11201:18;;;11194:30;11260:34;11255:2;11240:18;;11233:62;-1:-1:-1;;;11326:2:1;11311:18;;11304:35;11371:3;11356:19;;10980:401::o;11386:399::-;11588:2;11570:21;;;11627:2;11607:18;;;11600:30;11666:34;11661:2;11646:18;;11639:62;-1:-1:-1;;;11732:2:1;11717:18;;11710:33;11775:3;11760:19;;11386:399::o;13318:128::-;13385:9;;;13406:11;;;13403:37;;;13420:18;;:::i;14868:306::-;14956:6;14964;14972;15025:2;15013:9;15004:7;15000:23;14996:32;14993:52;;;15041:1;15038;15031:12;14993:52;15070:9;15064:16;15054:26;;15120:2;15109:9;15105:18;15099:25;15089:35;;15164:2;15153:9;15149:18;15143:25;15133:35;;14868:306;;;;;:::o;16042:127::-;16103:10;16098:3;16094:20;16091:1;16084:31;16134:4;16131:1;16124:15;16158:4;16155:1;16148:15;16174:980;16436:4;16484:3;16473:9;16469:19;16515:6;16504:9;16497:25;16541:2;16579:6;16574:2;16563:9;16559:18;16552:34;16622:3;16617:2;16606:9;16602:18;16595:31;16646:6;16681;16675:13;16712:6;16704;16697:22;16750:3;16739:9;16735:19;16728:26;;16789:2;16781:6;16777:15;16763:29;;16810:1;16820:195;16834:6;16831:1;16828:13;16820:195;;;16899:13;;-1:-1:-1;;;;;16895:39:1;16883:52;;16990:15;;;;16955:12;;;;16931:1;16849:9;16820:195;;;-1:-1:-1;;;;;;;17071:32:1;;;;17066:2;17051:18;;17044:60;-1:-1:-1;;;17135:3:1;17120:19;17113:35;17032:3;16174:980;-1:-1:-1;;;16174:980:1:o

Swarm Source

ipfs://80828d4f03d3d42a324f248ea7b75ec7fbe344cbd646c4081d0dde5f9abc4941
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.