ETH Price: $2,028.65 (+1.30%)
 

Overview

Max Total Supply

1,000,000,000 $WeeD...

Holders

520

Transfers

-
7

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
WeeDE

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-09-11
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.27;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
 * @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.
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @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 subtraction 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;
        }
    }
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
        return true;
    }
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
contract WeeDE is Context, ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;
    mapping (address => bool) private _excludedFees;
    mapping (address => bool) private _excludedMaxTx;
    mapping (address => bool) private _isBot;
    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled = false;
    uint256 private constant _tSupply = 1000000000 * (10**18);
    uint256 public maxBuyAmount = _tSupply;
    uint256 public maxSellAmount = _tSupply;
    uint256 public maxWalletAmount = _tSupply;
    uint256 public constant FEE_DIVISOR = 1000;
    uint256 private _totalFees;
    uint256 private _WeeDeFee;
    uint256 private _CoinTheatersFee;
    uint256 private _liqFee;
    uint256 public buyWeeDeFee = 25; //2.5 %
    uint256 private _previousBuyWeeDeFee = buyWeeDeFee;
    uint256 public buyCoinTheatersFee = 10; //1 %
    uint256 private _previousBuyCoinTheatersFee = buyCoinTheatersFee;
    uint256 public buyLiqFee = 5; //0.5 %
    uint256 private _previousBuyLiqFee = buyLiqFee;
    uint256 public sellWeeDeFee = 25; //2.5 %
    uint256 private _previousSellWeeDeFee = sellWeeDeFee;
    uint256 public sellCoinTheatersFee = 10; //1 %
    uint256 private _previousSellCoinTheatersFee = sellCoinTheatersFee;
    uint256 public sellLiqFee = 5; //0.5 %
    uint256 private _previousSellLiqFee = sellLiqFee;
    uint256 private _tokensForWeeDe;
    uint256 private _tokensForCoinTheaters;
    uint256 private _tokensForLiq;
    uint256 private _swapTokensAtAmount = 0;
    address payable private _WeeDeWallet = payable(0xfb4c84B7731559ef38feb239F992B82A2a7D3cc4);
    address payable private _CoinTheatersWallet = payable(0x87fd129e392118054a77975936443999A088AB58);
    address payable private _liqWallet = payable(0x9c885CAAaE79BFc25bad2E97AF2268F14e181a84);
    address private uniswapV2Pair;
    address constant private DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant private ZERO = 0x0000000000000000000000000000000000000000;
    
    constructor() ERC20("WeeDE", "$WeeDE") {
        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), _tSupply);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        _excludedFees[owner()] = true;
        _excludedFees[address(this)] = true;
        _excludedFees[DEAD] = true;
        _excludedFees[_WeeDeWallet] = true;
        _excludedFees[_liqWallet] = true;
        _excludedMaxTx[owner()] = true;
        _excludedMaxTx[address(this)] = true;
        _excludedMaxTx[DEAD] = true;
        _excludedMaxTx[_WeeDeWallet] = true;
        _excludedMaxTx[_liqWallet] = true;
        _mint(owner(), _tSupply);
    }
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != ZERO, "ERC20: transfer from the zero address");
        require(to != ZERO, "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            require(!_isBot[from] && !_isBot[to], "Bot.");
            if(!tradingOpen) require(_excludedFees[from] || _excludedFees[to], "Trading is not allowed yet.");
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludedMaxTx[to]) {
                require(amount <= maxBuyAmount, "Transfer amount exceeds the maxBuyAmount.");
                require(balanceOf(to) + amount <= maxWalletAmount, "Exceeds maximum wallet token amount.");
            }
            
            if (to == uniswapV2Pair && from != address(uniswapV2Router) && !_excludedMaxTx[from]) {
                require(amount <= maxSellAmount, "Transfer amount exceeds the maxSellAmount.");
                shouldSwap = true;
            }
        }
        if(_excludedFees[from] || _excludedFees[to]) takeFee = false;
        if(from != uniswapV2Pair && to != uniswapV2Pair) takeFee = false;  
        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap;
        if (canSwap && swapEnabled && !_swapping && !_excludedFees[from] && !_excludedFees[to]) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }
        _tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }
    function _swapBack(uint256 contractBalance) internal {
        uint256 totalTokensToSwap =  _tokensForWeeDe.add(_tokensForCoinTheaters).add(_tokensForLiq);
        bool success;
        
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount.mul(5)) contractBalance = _swapTokensAtAmount.mul(5);
        uint256 liquidityTokens = contractBalance.mul(_tokensForLiq).div(totalTokensToSwap).div(2);
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        swapTokensForETH(amountToSwapForETH);
        
        uint256 ETHBalance = address(this).balance.sub(initialETHBalance);
        uint256 ETHForWeeDe = ETHBalance.mul(_tokensForWeeDe).div(totalTokensToSwap);
        uint256 ETHForCoinTheaters = ETHBalance.mul(_tokensForCoinTheaters).div(totalTokensToSwap);
        uint256 ETHForLiq = ETHBalance.sub(ETHForWeeDe).sub(ETHForCoinTheaters);
        
        _tokensForWeeDe = 0;
        _tokensForCoinTheaters = 0;
        _tokensForLiq = 0;
        if(liquidityTokens > 0 && ETHForLiq > 0) _addLiquidity(liquidityTokens, ETHForLiq);
        (success,) = address(_CoinTheatersWallet).call{value: ETHForCoinTheaters}("");
        (success,) = address(_WeeDeWallet).call{value: address(this).balance}("");
    }
    function swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function _addLiquidity(uint256 tokenAmount, uint256 ETHAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            _liqWallet,
            block.timestamp
        );
    }
        
    function sendETHToFee(uint256 amount) internal {
        _WeeDeWallet.transfer(amount.div(2));
        _CoinTheatersWallet.transfer(amount.div(2));
    }
    function isBot(address wallet) external view returns (bool) {
        return _isBot[wallet];
    }
    function openTrading() public onlyOwner {
        require(!tradingOpen, "Trading is already open");
        swapEnabled = true;
        maxBuyAmount = _tSupply;
        maxSellAmount = _tSupply;
        maxWalletAmount = _tSupply;
        _swapTokensAtAmount = _tSupply.mul(5).div(10000);
        tradingOpen = true;
    }
    function setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }
    function setMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner {
        require(_maxBuyAmount >= (totalSupply().mul(1).div(1000)), "Max buy amount cannot be lower than 0.1% total supply.");
        maxBuyAmount = _maxBuyAmount;
    }
    function setMaxSellAmount(uint256 _maxSellAmount) public onlyOwner {
        require(_maxSellAmount >= (totalSupply().mul(1).div(1000)), "Max sell amount cannot be lower than 0.1% total supply.");
        maxSellAmount = _maxSellAmount;
    }
    
    function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        require(_maxWalletAmount >= (totalSupply().mul(1).div(1000)), "Max wallet amount cannot be lower than 0.1% total supply.");
        maxWalletAmount = _maxWalletAmount;
    }
    
    function setSwapTokensAtAmount(uint256 swapTokensAtAmount) public onlyOwner {
        require(swapTokensAtAmount >= (totalSupply().mul(1).div(100000)), "Swap amount cannot be lower than 0.001% total supply.");
        require(swapTokensAtAmount <= (totalSupply().mul(5).div(1000)), "Swap amount cannot be higher than 1% total supply.");
        _swapTokensAtAmount = swapTokensAtAmount;
    }
    function setWeeDeWallet(address WeeDeWallet) public onlyOwner {
        require(WeeDeWallet != ZERO, "_WeeDeWallet address cannot be 0");
        _excludedFees[_WeeDeWallet] = false;
        _excludedMaxTx[_WeeDeWallet] = false;
        _WeeDeWallet = payable(WeeDeWallet);
        _excludedFees[_WeeDeWallet] = true;
        _excludedMaxTx[_WeeDeWallet] = true;
    }
    function setCoinTheatersWallet(address CoinTheatersWallet) public onlyOwner {
        require(CoinTheatersWallet != ZERO, "_CoinTheatersWallet address cannot be 0");
        _excludedFees[_CoinTheatersWallet] = false;
        _excludedMaxTx[_CoinTheatersWallet] = false;
        _CoinTheatersWallet = payable(CoinTheatersWallet);
        _excludedFees[_CoinTheatersWallet] = true;
        _excludedMaxTx[_CoinTheatersWallet] = true;
    }
    function setLiqWallet(address liqWallet) public onlyOwner {
        require(liqWallet != ZERO, "_liqWallet address cannot be 0");
        _excludedFees[_liqWallet] = false;
        _excludedMaxTx[_liqWallet] = false;
        _liqWallet = payable(liqWallet);
        _excludedFees[_liqWallet] = true;
        _excludedMaxTx[_liqWallet] = true;
    }
    function excludeFees(address[] memory accounts, bool exclude) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _excludedFees[accounts[i]] = exclude;
    }
    
    function excludeMaxTx(address[] memory accounts, bool exclude) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _excludedMaxTx[accounts[i]] = exclude;
    }
    
    function bots(address[] memory accounts, bool bl) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            if((accounts[i] != uniswapV2Pair) && (accounts[i] != address(this)) && (accounts[i] != address(uniswapV2Router))) _isBot[accounts[i]] = bl;
        }
    }
    function buyFee(uint256 _buyWeeDeFee, uint256 _buyCoinTheatersFee, uint256 _buyLiqFee) public onlyOwner {
        require(_buyWeeDeFee.add(_buyCoinTheatersFee).add(_buyLiqFee) <= 300, "Must keep buy taxes below 30%");
        buyWeeDeFee = _buyWeeDeFee;
        buyCoinTheatersFee = _buyCoinTheatersFee;
        buyLiqFee = _buyLiqFee;
    }
    function sellFee(uint256 _sellWeeDeFee, uint256 _sellCoinTheatersFee, uint256 _sellLiqFee) public onlyOwner {
        require(_sellWeeDeFee.add(_sellCoinTheatersFee).add(_sellLiqFee) <= 300, "Must keep sell taxes below 30%");
        sellWeeDeFee = _sellWeeDeFee;
        sellCoinTheatersFee = _sellCoinTheatersFee;
        sellLiqFee = _sellLiqFee;
    }
    function removeAllFee() internal {
        if (buyWeeDeFee == 0 && buyCoinTheatersFee == 0 && buyLiqFee == 0 && sellWeeDeFee == 0 && sellCoinTheatersFee == 0 && sellLiqFee == 0) return;
        _previousBuyWeeDeFee = buyWeeDeFee;
        _previousBuyCoinTheatersFee = buyCoinTheatersFee;
        _previousBuyLiqFee = buyLiqFee;
        _previousSellWeeDeFee = sellWeeDeFee;
        _previousSellCoinTheatersFee = sellCoinTheatersFee;
        _previousSellLiqFee = sellLiqFee;
        
        buyWeeDeFee = 0;
        buyCoinTheatersFee = 0;
        buyLiqFee = 0;
        sellWeeDeFee = 0;
        sellCoinTheatersFee = 0;
        sellLiqFee = 0;
    }
    
    function restoreAllFee() internal {
        buyWeeDeFee = _previousBuyWeeDeFee;
        buyCoinTheatersFee = _previousBuyCoinTheatersFee;
        buyLiqFee = _previousBuyLiqFee;
        sellWeeDeFee = _previousSellWeeDeFee;
        sellCoinTheatersFee = _previousSellCoinTheatersFee;
        sellLiqFee = _previousSellLiqFee;
    }
        
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool isSell) internal {
        if (!takeFee) removeAllFee();
        else amount = _takeFees(sender, amount, isSell);
        super._transfer(sender, recipient, amount);
        
        if (!takeFee) restoreAllFee();
    }
    function _takeFees(address sender, uint256 amount, bool isSell) internal returns (uint256) {
        if (isSell) _setSell();
        else _setBuy();
        
        uint256 fees;
        if (_totalFees > 0) {
            fees = amount.mul(_totalFees).div(FEE_DIVISOR);
            _tokensForWeeDe += fees * _WeeDeFee / _totalFees;
            _tokensForCoinTheaters += fees * _CoinTheatersFee / _totalFees;
            _tokensForLiq += fees * _liqFee / _totalFees;
        }
        if (fees > 0) super._transfer(sender, address(this), fees);
        return amount -= fees;
    }
    function _setSell() internal {
        _WeeDeFee = sellWeeDeFee;
        _CoinTheatersFee = sellCoinTheatersFee;
        _liqFee = sellLiqFee;
        _totalFees = _WeeDeFee.add(_CoinTheatersFee).add(_liqFee);
    }
    function _setBuy() internal {
        _WeeDeFee = buyWeeDeFee;
        _CoinTheatersFee = buyCoinTheatersFee;
        _liqFee = buyLiqFee;
        _totalFees = _WeeDeFee.add(_CoinTheatersFee).add(_liqFee);
    }
    
    function unclog() public onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForETH(contractBalance);
    }
    
    function sendFees() public onlyOwner {
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }
    function rescueETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }
    function rescueForeignTokens(address tkn) public onlyOwner {
        require(tkn != address(this), "Cannot withdraw this token");
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

    function updateuniswapV2Pair(address _newuniswapV2Pair) external onlyOwner{

        uniswapV2Pair=_newuniswapV2Pair;

    }
    function removeLimits() public onlyOwner {
        maxBuyAmount = _tSupply;
        maxSellAmount = _tSupply;
        maxWalletAmount = _tSupply;
    }
    receive() external payable {}
    fallback() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"bl","type":"bool"}],"name":"bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyCoinTheatersFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyWeeDeFee","type":"uint256"},{"internalType":"uint256","name":"_buyCoinTheatersFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiqFee","type":"uint256"}],"name":"buyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyWeeDeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeMaxTx","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":"wallet","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"rescueForeignTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCoinTheatersFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellWeeDeFee","type":"uint256"},{"internalType":"uint256","name":"_sellCoinTheatersFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiqFee","type":"uint256"}],"name":"sellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellWeeDeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"CoinTheatersWallet","type":"address"}],"name":"setCoinTheatersWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liqWallet","type":"address"}],"name":"setLiqWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"WeeDeWallet","type":"address"}],"name":"setWeeDeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newuniswapV2Pair","type":"address"}],"name":"updateuniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805462ff0000191681556b033b2e3c9fd0803ce8000000600b819055600c819055600d55601960128190556013819055601482905560158290556005601681905560178190556018829055908055601a829055601b91909155601c819055601d555f602155602280546001600160a01b031990811673fb4c84b7731559ef38feb239f992b82a2a7d3cc4179091556023805482167387fd129e392118054a77975936443999a088ab5817905560248054909116739c885caaae79bfc25bad2e97af2268f14e181a841790553480156100dc575f5ffd5b5060405180604001604052806005815260200164576565444560d81b8152506040518060400160405280600681526020016524576565444560d01b815250816003908161012991906107d0565b50600461013682826107d0565b50505061014f61014a6104fa60201b60201c565b6104fe565b600680546001600160a01b031916734752ba5dbc23f44d87826276bf6fd6b1c372ad249081179091556101909030906b033b2e3c9fd0803ce800000061054f565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101e0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610204919061088a565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610263573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610287919061088a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f5919061088a565b602580546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b8152921660048301525f1960248301529063095ea7b3906044016020604051808303815f875af1158015610358573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037c91906108b7565b50600160075f6103946005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260079093528183208054851660019081179091557fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d805486168217905560225482168452828420805486168217905560245490911683529082208054909316811790925560089061043d6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260089093528183208054851660019081179091557f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd0933429980548616821790556022548216845282842080548616821790556024549091168352912080549092161790556104f56104e36005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000610677565b6108fb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166105b65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166106175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ad565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166106cd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105ad565b8060025f8282546106de91906108d6565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061076157607f821691505b60208210810361077f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561073457805f5260205f20601f840160051c810160208510156107aa5750805b601f840160051c820191505b818110156107c9575f81556001016107b6565b5050505050565b81516001600160401b038111156107e9576107e9610739565b6107fd816107f7845461074d565b84610785565b6020601f82116001811461082f575f83156108185750848201515b5f19600385901b1c1916600184901b1784556107c9565b5f84815260208120601f198516915b8281101561085e578785015182556020948501946001909201910161083e565b508482101561087b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561089a575f5ffd5b81516001600160a01b03811681146108b0575f5ffd5b9392505050565b5f602082840312156108c7575f5ffd5b815180151581146108b0575f5ffd5b808201808211156108f557634e487b7160e01b5f52601160045260245ffd5b92915050565b612a35806109085f395ff3fe608060405260043610610272575f3560e01c80638da5cb5b1161014d578063d077b48f116100ba578063ec29e0fe11610076578063ec29e0fe14610719578063f2fde38b14610738578063f34eb0b814610757578063f3e8b36914610776578063f5a540e51461078b578063ffb54a99146107a057005b8063d077b48f14610674578063dd62ed3e14610693578063dff90b5b146106b2578063e01af92c146106c6578063e99c9d09146106e5578063eac0bd231461070457005b8063ac0a18a211610109578063ac0a18a2146105d9578063afa4f3b2146105f8578063b6cf8ce614610617578063c04a894c1461062c578063c1aea0c31461064b578063c9567bf91461066057005b80638da5cb5b1461053657806395d89b411461055d5780639e93ad8e14610571578063a457c2d714610586578063a9059cbb146105a5578063aa4bde28146105c457005b806339509351116101eb5780636d659181116101a75780636d659181146104875780636ddd1713146104a657806370a08231146104c5578063715018a6146104f9578063751039fc1461050d57806388e765ff1461052157005b806339509351146103ca5780633bbac579146103e95780634bf17b671461042057806363e7ae001461043f57806366d602ae1461045e57806367c453491461047357005b80631f1105001161023a5780631f1105001461032957806320800a001461034857806323b872dd1461035c57806327a14fc21461037b578063294710c81461039a578063313ce567146103af57005b806306fdde0314610274578063095ea7b31461029e5780630a3d5b55146102cd5780630b01aa51146102ec57806318160ddd1461030b575b005b34801561027f575f5ffd5b506102886107b9565b604051610295919061255c565b60405180910390f35b3480156102a9575f5ffd5b506102bd6102b83660046125b5565b610849565b6040519015158152602001610295565b3480156102d8575f5ffd5b506102726102e736600461260b565b610862565b3480156102f7575f5ffd5b506102726103063660046126e8565b6108c9565b348015610316575f5ffd5b506002545b604051908152602001610295565b348015610334575f5ffd5b5061027261034336600461260b565b6109a9565b348015610353575f5ffd5b50610272610a0b565b348015610367575f5ffd5b506102bd610376366004612703565b610a5d565b348015610386575f5ffd5b50610272610395366004612741565b610a80565b3480156103a5575f5ffd5b5061031b60185481565b3480156103ba575f5ffd5b5060405160128152602001610295565b3480156103d5575f5ffd5b506102bd6103e43660046125b5565b610b22565b3480156103f4575f5ffd5b506102bd6104033660046126e8565b6001600160a01b03165f9081526009602052604090205460ff1690565b34801561042b575f5ffd5b5061027261043a3660046126e8565b610b43565b34801561044a575f5ffd5b506102726104593660046126e8565b610c2e565b348015610469575f5ffd5b5061031b600c5481565b34801561047e575f5ffd5b50610272610d09565b348015610492575f5ffd5b506102726104a1366004612758565b610d2c565b3480156104b1575f5ffd5b50600a546102bd9062010000900460ff1681565b3480156104d0575f5ffd5b5061031b6104df3660046126e8565b6001600160a01b03165f9081526020819052604090205490565b348015610504575f5ffd5b50610272610da7565b348015610518575f5ffd5b50610272610dba565b34801561052c575f5ffd5b5061031b600b5481565b348015610541575f5ffd5b506005546040516001600160a01b039091168152602001610295565b348015610568575f5ffd5b50610288610dde565b34801561057c575f5ffd5b5061031b6103e881565b348015610591575f5ffd5b506102bd6105a03660046125b5565b610ded565b3480156105b0575f5ffd5b506102bd6105bf3660046125b5565b610e67565b3480156105cf575f5ffd5b5061031b600d5481565b3480156105e4575f5ffd5b506102726105f3366004612758565b610e74565b348015610603575f5ffd5b50610272610612366004612741565b610ee9565b348015610622575f5ffd5b5061031b601c5481565b348015610637575f5ffd5b5061027261064636600461260b565b610ff6565b348015610656575f5ffd5b5061031b60165481565b34801561066b575f5ffd5b50610272611115565b34801561067f575f5ffd5b5061027261068e3660046126e8565b6111c2565b34801561069e575f5ffd5b5061031b6106ad366004612781565b61139c565b3480156106bd575f5ffd5b506102726113c6565b3480156106d1575f5ffd5b506102726106e03660046127b8565b6113d8565b3480156106f0575f5ffd5b506102726106ff366004612741565b6113fc565b34801561070f575f5ffd5b5061031b60125481565b348015610724575f5ffd5b506102726107333660046126e8565b611492565b348015610743575f5ffd5b506102726107523660046126e8565b6114bc565b348015610762575f5ffd5b50610272610771366004612741565b611532565b348015610781575f5ffd5b5061031b60145481565b348015610796575f5ffd5b5061031b601a5481565b3480156107ab575f5ffd5b50600a546102bd9060ff1681565b6060600380546107c8906127d3565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906127d3565b801561083f5780601f106108165761010080835404028352916020019161083f565b820191905f5260205f20905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b5f336108568185856115c1565b60019150505b92915050565b61086a6116e4565b5f5b82518110156108c4578160085f85848151811061088b5761088b61280b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161086c565b505050565b6108d16116e4565b6001600160a01b03811661092c5760405162461bcd60e51b815260206004820152601e60248201527f5f6c697157616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b602480546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6109b16116e4565b5f5b82518110156108c4578160075f8584815181106109d2576109d261280b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016109b3565b610a136116e4565b6040515f90339047908381818185875af1925050503d805f8114610a52576040519150601f19603f3d011682016040523d82523d5f602084013e610a57565b606091505b50505050565b5f33610a6a85828561173e565b610a758585856117b0565b506001949350505050565b610a886116e4565b610aa86103e8610aa26001610a9c60025490565b90611d35565b90611d47565b811015610b1d5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610923565b600d55565b5f33610856818585610b34838361139c565b610b3e9190612833565b6115c1565b610b4b6116e4565b6001600160a01b038116610bb15760405162461bcd60e51b815260206004820152602760248201527f5f436f696e546865617465727357616c6c657420616464726573732063616e6e60448201526606f7420626520360cc1b6064820152608401610923565b602380546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610c366116e4565b6001600160a01b038116610c8c5760405162461bcd60e51b815260206004820181905260248201527f5f576565446557616c6c657420616464726573732063616e6e6f7420626520306044820152606401610923565b602280546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610d116116e4565b305f90815260208190526040902054610d2981611d52565b50565b610d346116e4565b61012c610d4b82610d458686611ea2565b90611ea2565b1115610d995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203330250000006044820152606401610923565b601292909255601455601655565b610daf6116e4565b610db85f611ead565b565b610dc26116e4565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b6060600480546107c8906127d3565b5f3381610dfa828661139c565b905083811015610e5a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610923565b610a7582868684036115c1565b5f336108568185856117b0565b610e7c6116e4565b61012c610e8d82610d458686611ea2565b1115610edb5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772033302500006044820152606401610923565b601892909255601a55601c55565b610ef16116e4565b610f06620186a0610aa26001610a9c60025490565b811015610f735760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610923565b610f876103e8610aa26005610a9c60025490565b811115610ff15760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610923565b602155565b610ffe6116e4565b5f5b82518110156108c45760255483516001600160a01b039091169084908390811061102c5761102c61280b565b60200260200101516001600160a01b0316141580156110765750306001600160a01b03168382815181106110625761106261280b565b60200260200101516001600160a01b031614155b80156110b4575060065483516001600160a01b03909116908490839081106110a0576110a061280b565b60200260200101516001600160a01b031614155b1561110d578160095f8584815181106110cf576110cf61280b565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101611000565b61111d6116e4565b600a5460ff16156111705760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610923565b600a805462ff00001916620100001790556b033b2e3c9fd0803ce8000000600b819055600c819055600d8190556111b09061271090610aa2906005611d35565b602155600a805460ff19166001179055565b6111ca6116e4565b306001600160a01b038216036112225760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610923565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611266573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061128a9190612846565b116112c35760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610923565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611307573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132b9190612846565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015611378573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c4919061285d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6113ce6116e4565b47610d2981611efe565b6113e06116e4565b600a8054911515620100000262ff000019909216919091179055565b6114046116e4565b6114186103e8610aa26001610a9c60025490565b81101561148d5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610923565b600c55565b61149a6116e4565b602580546001600160a01b0319166001600160a01b0392909216919091179055565b6114c46116e4565b6001600160a01b0381166115295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b610d2981611ead565b61153a6116e4565b61154e6103e8610aa26001610a9c60025490565b8110156115bc5760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610923565b600b55565b6001600160a01b0383166116235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610923565b6001600160a01b0382166116845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610923565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610db85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610923565b5f611749848461139c565b90505f198114610a5757818110156117a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610923565b610a5784848484036115c1565b6001600160a01b0383166117d65760405162461bcd60e51b815260040161092390612878565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610923906128bd565b5f811161185d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610923565b60015f6118726005546001600160a01b031690565b6001600160a01b0316856001600160a01b0316141580156118a157506005546001600160a01b03858116911614155b80156118b557506001600160a01b03841615155b80156118cc57506001600160a01b03841661dead14155b80156118e05750600a54610100900460ff16155b15611be8576001600160a01b0385165f9081526009602052604090205460ff1615801561192557506001600160a01b0384165f9081526009602052604090205460ff16155b61195a5760405162461bcd60e51b8152600401610923906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff166119ed576001600160a01b0385165f9081526007602052604090205460ff16806119a157506001600160a01b0384165f9081526007602052604090205460ff165b6119ed5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610923565b6025546001600160a01b038681169116148015611a1857506006546001600160a01b03858116911614155b8015611a3c57506001600160a01b0384165f9081526008602052604090205460ff16155b15611b2b57600b54831115611aa55760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610923565b600d5483611ac7866001600160a01b03165f9081526020819052604090205490565b611ad19190612833565b1115611b2b5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610923565b6025546001600160a01b038581169116148015611b5657506006546001600160a01b03868116911614155b8015611b7a57506001600160a01b0385165f9081526008602052604090205460ff16155b15611be857600c54831115611be45760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610923565b5060015b6001600160a01b0385165f9081526007602052604090205460ff1680611c2557506001600160a01b0384165f9081526007602052604090205460ff165b15611c2e575f91505b6025546001600160a01b03868116911614801590611c5a57506025546001600160a01b03858116911614155b15611c63575f91505b305f9081526020819052604081205490505f60215482118015611c835750825b9050808015611c9a5750600a5462010000900460ff165b8015611cae5750600a54610100900460ff16155b8015611cd257506001600160a01b0387165f9081526007602052604090205460ff16155b8015611cf657506001600160a01b0386165f9081526007602052604090205460ff16155b15611d1f57600a805461ff001916610100179055611d1382611f81565b600a805461ff00191690555b611d2c878787878761214c565b50505050505050565b5f611d408284612900565b9392505050565b5f611d408284612917565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611d8557611d8561280b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611ddc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e009190612936565b81600181518110611e1357611e1361280b565b6001600160a01b039283166020918202929092010152600654611e3991309116846115c1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611e719085905f90869030904290600401612951565b5f604051808303815f87803b158015611e88575f5ffd5b505af1158015611e9a573d5f5f3e3d5ffd5b505050505050565b5f611d408284612833565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6022546001600160a01b03166108fc611f18836002611d47565b6040518115909202915f818181858888f19350505050158015611f3d573d5f5f3e3d5ffd5b506023546001600160a01b03166108fc611f58836002611d47565b6040518115909202915f818181858888f19350505050158015611f7d573d5f5f3e3d5ffd5b5050565b5f611f9f602054610d45601f54601e54611ea290919063ffffffff16565b90505f821580611fad575081155b15611fb757505050565b602154611fc5906005611d35565b831115611fdd57602154611fda906005611d35565b92505b5f611ffc6002610aa285610aa260205489611d3590919063ffffffff16565b90505f61200985836121ac565b90504761201582611d52565b5f61202047836121ac565b90505f61203c87610aa2601e5485611d3590919063ffffffff16565b90505f61205888610aa2601f5486611d3590919063ffffffff16565b90505f61206f8261206986866121ac565b906121ac565b5f601e819055601f8190556020559050861580159061208d57505f81115b1561209c5761209c87826121b7565b6023546040516001600160a01b039091169083905f81818185875af1925050503d805f81146120e6576040519150601f19603f3d011682016040523d82523d5f602084013e6120eb565b606091505b50506022546040519199506001600160a01b03169047905f81818185875af1925050503d805f8114612138576040519150601f19603f3d011682016040523d82523d5f602084013e61213d565b606091505b50505050505050505050505050565b8161215e57612159612262565b61216c565b6121698584836122e9565b92505b6121778585856123df565b816121a5576121a5601354601255601554601455601754601655601954601855601b54601a55601d54601c55565b5050505050565b5f611d4082846129c1565b6006546121cf9030906001600160a01b0316846115c1565b6006546024805460405163f305d71960e01b81523060048201529182018590525f6044830181905260648301526001600160a01b0390811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561223d573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906121a591906129d4565b6012541580156122725750601454155b801561227e5750601654155b801561228a5750601854155b80156122965750601a54155b80156122a25750601c54155b156122a957565b60128054601355601480546015556016805460175560188054601955601a8054601b55601c8054601d555f95869055938590559184905583905582905555565b5f81156122fd576122f8612507565b612305565b612305612534565b600e545f90156123bb5761232a6103e8610aa2600e5487611d3590919063ffffffff16565b9050600e54600f548261233d9190612900565b6123479190612917565b601e5f8282546123579190612833565b9091555050600e5460105461236c9083612900565b6123769190612917565b601f5f8282546123869190612833565b9091555050600e5460115461239b9083612900565b6123a59190612917565b60205f8282546123b59190612833565b90915550505b80156123cc576123cc8530836123df565b6123d681856129c1565b95945050505050565b6001600160a01b0383166124055760405162461bcd60e51b815260040161092390612878565b6001600160a01b03821661242b5760405162461bcd60e51b8152600401610923906128bd565b6001600160a01b0383165f90815260208190526040902054818110156124a25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610923565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a57565b601854600f819055601a546010819055601c54601181905561252f929091610d459190611ea2565b600e55565b601254600f8190556014546010819055601654601181905561252f929091610d459190611ea2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d29575f5ffd5b80356125b081612591565b919050565b5f5f604083850312156125c6575f5ffd5b82356125d181612591565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610d29575f5ffd5b80356125b0816125f3565b5f5f6040838503121561261c575f5ffd5b823567ffffffffffffffff811115612632575f5ffd5b8301601f81018513612642575f5ffd5b803567ffffffffffffffff81111561265c5761265c6125df565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715612689576126896125df565b6040529182526020818401810192908101888411156126a6575f5ffd5b6020850194505b838510156126cc576126be856125a5565b8152602094850194016126ad565b5094506126df9250505060208401612600565b90509250929050565b5f602082840312156126f8575f5ffd5b8135611d4081612591565b5f5f5f60608486031215612715575f5ffd5b833561272081612591565b9250602084013561273081612591565b929592945050506040919091013590565b5f60208284031215612751575f5ffd5b5035919050565b5f5f5f6060848603121561276a575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215612792575f5ffd5b823561279d81612591565b915060208301356127ad81612591565b809150509250929050565b5f602082840312156127c8575f5ffd5b8135611d40816125f3565b600181811c908216806127e757607f821691505b60208210810361280557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561085c5761085c61281f565b5f60208284031215612856575f5ffd5b5051919050565b5f6020828403121561286d575f5ffd5b8151611d40816125f3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761085c5761085c61281f565b5f8261293157634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612946575f5ffd5b8151611d4081612591565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156129a15783516001600160a01b031683526020938401939092019160010161297a565b50506001600160a01b039590951660608401525050608001529392505050565b8181038181111561085c5761085c61281f565b5f5f5f606084860312156129e6575f5ffd5b505081516020830151604090930151909492935091905056fea2646970667358221220913b93725efa89d21d3fb9f66afdee31c983ae1c661b2f996266f9f603754b4664736f6c634300081b0033

Deployed Bytecode

0x608060405260043610610272575f3560e01c80638da5cb5b1161014d578063d077b48f116100ba578063ec29e0fe11610076578063ec29e0fe14610719578063f2fde38b14610738578063f34eb0b814610757578063f3e8b36914610776578063f5a540e51461078b578063ffb54a99146107a057005b8063d077b48f14610674578063dd62ed3e14610693578063dff90b5b146106b2578063e01af92c146106c6578063e99c9d09146106e5578063eac0bd231461070457005b8063ac0a18a211610109578063ac0a18a2146105d9578063afa4f3b2146105f8578063b6cf8ce614610617578063c04a894c1461062c578063c1aea0c31461064b578063c9567bf91461066057005b80638da5cb5b1461053657806395d89b411461055d5780639e93ad8e14610571578063a457c2d714610586578063a9059cbb146105a5578063aa4bde28146105c457005b806339509351116101eb5780636d659181116101a75780636d659181146104875780636ddd1713146104a657806370a08231146104c5578063715018a6146104f9578063751039fc1461050d57806388e765ff1461052157005b806339509351146103ca5780633bbac579146103e95780634bf17b671461042057806363e7ae001461043f57806366d602ae1461045e57806367c453491461047357005b80631f1105001161023a5780631f1105001461032957806320800a001461034857806323b872dd1461035c57806327a14fc21461037b578063294710c81461039a578063313ce567146103af57005b806306fdde0314610274578063095ea7b31461029e5780630a3d5b55146102cd5780630b01aa51146102ec57806318160ddd1461030b575b005b34801561027f575f5ffd5b506102886107b9565b604051610295919061255c565b60405180910390f35b3480156102a9575f5ffd5b506102bd6102b83660046125b5565b610849565b6040519015158152602001610295565b3480156102d8575f5ffd5b506102726102e736600461260b565b610862565b3480156102f7575f5ffd5b506102726103063660046126e8565b6108c9565b348015610316575f5ffd5b506002545b604051908152602001610295565b348015610334575f5ffd5b5061027261034336600461260b565b6109a9565b348015610353575f5ffd5b50610272610a0b565b348015610367575f5ffd5b506102bd610376366004612703565b610a5d565b348015610386575f5ffd5b50610272610395366004612741565b610a80565b3480156103a5575f5ffd5b5061031b60185481565b3480156103ba575f5ffd5b5060405160128152602001610295565b3480156103d5575f5ffd5b506102bd6103e43660046125b5565b610b22565b3480156103f4575f5ffd5b506102bd6104033660046126e8565b6001600160a01b03165f9081526009602052604090205460ff1690565b34801561042b575f5ffd5b5061027261043a3660046126e8565b610b43565b34801561044a575f5ffd5b506102726104593660046126e8565b610c2e565b348015610469575f5ffd5b5061031b600c5481565b34801561047e575f5ffd5b50610272610d09565b348015610492575f5ffd5b506102726104a1366004612758565b610d2c565b3480156104b1575f5ffd5b50600a546102bd9062010000900460ff1681565b3480156104d0575f5ffd5b5061031b6104df3660046126e8565b6001600160a01b03165f9081526020819052604090205490565b348015610504575f5ffd5b50610272610da7565b348015610518575f5ffd5b50610272610dba565b34801561052c575f5ffd5b5061031b600b5481565b348015610541575f5ffd5b506005546040516001600160a01b039091168152602001610295565b348015610568575f5ffd5b50610288610dde565b34801561057c575f5ffd5b5061031b6103e881565b348015610591575f5ffd5b506102bd6105a03660046125b5565b610ded565b3480156105b0575f5ffd5b506102bd6105bf3660046125b5565b610e67565b3480156105cf575f5ffd5b5061031b600d5481565b3480156105e4575f5ffd5b506102726105f3366004612758565b610e74565b348015610603575f5ffd5b50610272610612366004612741565b610ee9565b348015610622575f5ffd5b5061031b601c5481565b348015610637575f5ffd5b5061027261064636600461260b565b610ff6565b348015610656575f5ffd5b5061031b60165481565b34801561066b575f5ffd5b50610272611115565b34801561067f575f5ffd5b5061027261068e3660046126e8565b6111c2565b34801561069e575f5ffd5b5061031b6106ad366004612781565b61139c565b3480156106bd575f5ffd5b506102726113c6565b3480156106d1575f5ffd5b506102726106e03660046127b8565b6113d8565b3480156106f0575f5ffd5b506102726106ff366004612741565b6113fc565b34801561070f575f5ffd5b5061031b60125481565b348015610724575f5ffd5b506102726107333660046126e8565b611492565b348015610743575f5ffd5b506102726107523660046126e8565b6114bc565b348015610762575f5ffd5b50610272610771366004612741565b611532565b348015610781575f5ffd5b5061031b60145481565b348015610796575f5ffd5b5061031b601a5481565b3480156107ab575f5ffd5b50600a546102bd9060ff1681565b6060600380546107c8906127d3565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906127d3565b801561083f5780601f106108165761010080835404028352916020019161083f565b820191905f5260205f20905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b5f336108568185856115c1565b60019150505b92915050565b61086a6116e4565b5f5b82518110156108c4578160085f85848151811061088b5761088b61280b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161086c565b505050565b6108d16116e4565b6001600160a01b03811661092c5760405162461bcd60e51b815260206004820152601e60248201527f5f6c697157616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b602480546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6109b16116e4565b5f5b82518110156108c4578160075f8584815181106109d2576109d261280b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016109b3565b610a136116e4565b6040515f90339047908381818185875af1925050503d805f8114610a52576040519150601f19603f3d011682016040523d82523d5f602084013e610a57565b606091505b50505050565b5f33610a6a85828561173e565b610a758585856117b0565b506001949350505050565b610a886116e4565b610aa86103e8610aa26001610a9c60025490565b90611d35565b90611d47565b811015610b1d5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610923565b600d55565b5f33610856818585610b34838361139c565b610b3e9190612833565b6115c1565b610b4b6116e4565b6001600160a01b038116610bb15760405162461bcd60e51b815260206004820152602760248201527f5f436f696e546865617465727357616c6c657420616464726573732063616e6e60448201526606f7420626520360cc1b6064820152608401610923565b602380546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610c366116e4565b6001600160a01b038116610c8c5760405162461bcd60e51b815260206004820181905260248201527f5f576565446557616c6c657420616464726573732063616e6e6f7420626520306044820152606401610923565b602280546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610d116116e4565b305f90815260208190526040902054610d2981611d52565b50565b610d346116e4565b61012c610d4b82610d458686611ea2565b90611ea2565b1115610d995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203330250000006044820152606401610923565b601292909255601455601655565b610daf6116e4565b610db85f611ead565b565b610dc26116e4565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b6060600480546107c8906127d3565b5f3381610dfa828661139c565b905083811015610e5a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610923565b610a7582868684036115c1565b5f336108568185856117b0565b610e7c6116e4565b61012c610e8d82610d458686611ea2565b1115610edb5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772033302500006044820152606401610923565b601892909255601a55601c55565b610ef16116e4565b610f06620186a0610aa26001610a9c60025490565b811015610f735760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610923565b610f876103e8610aa26005610a9c60025490565b811115610ff15760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610923565b602155565b610ffe6116e4565b5f5b82518110156108c45760255483516001600160a01b039091169084908390811061102c5761102c61280b565b60200260200101516001600160a01b0316141580156110765750306001600160a01b03168382815181106110625761106261280b565b60200260200101516001600160a01b031614155b80156110b4575060065483516001600160a01b03909116908490839081106110a0576110a061280b565b60200260200101516001600160a01b031614155b1561110d578160095f8584815181106110cf576110cf61280b565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101611000565b61111d6116e4565b600a5460ff16156111705760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610923565b600a805462ff00001916620100001790556b033b2e3c9fd0803ce8000000600b819055600c819055600d8190556111b09061271090610aa2906005611d35565b602155600a805460ff19166001179055565b6111ca6116e4565b306001600160a01b038216036112225760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610923565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611266573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061128a9190612846565b116112c35760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610923565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611307573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132b9190612846565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015611378573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c4919061285d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6113ce6116e4565b47610d2981611efe565b6113e06116e4565b600a8054911515620100000262ff000019909216919091179055565b6114046116e4565b6114186103e8610aa26001610a9c60025490565b81101561148d5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610923565b600c55565b61149a6116e4565b602580546001600160a01b0319166001600160a01b0392909216919091179055565b6114c46116e4565b6001600160a01b0381166115295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b610d2981611ead565b61153a6116e4565b61154e6103e8610aa26001610a9c60025490565b8110156115bc5760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610923565b600b55565b6001600160a01b0383166116235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610923565b6001600160a01b0382166116845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610923565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610db85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610923565b5f611749848461139c565b90505f198114610a5757818110156117a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610923565b610a5784848484036115c1565b6001600160a01b0383166117d65760405162461bcd60e51b815260040161092390612878565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610923906128bd565b5f811161185d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610923565b60015f6118726005546001600160a01b031690565b6001600160a01b0316856001600160a01b0316141580156118a157506005546001600160a01b03858116911614155b80156118b557506001600160a01b03841615155b80156118cc57506001600160a01b03841661dead14155b80156118e05750600a54610100900460ff16155b15611be8576001600160a01b0385165f9081526009602052604090205460ff1615801561192557506001600160a01b0384165f9081526009602052604090205460ff16155b61195a5760405162461bcd60e51b8152600401610923906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff166119ed576001600160a01b0385165f9081526007602052604090205460ff16806119a157506001600160a01b0384165f9081526007602052604090205460ff165b6119ed5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610923565b6025546001600160a01b038681169116148015611a1857506006546001600160a01b03858116911614155b8015611a3c57506001600160a01b0384165f9081526008602052604090205460ff16155b15611b2b57600b54831115611aa55760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610923565b600d5483611ac7866001600160a01b03165f9081526020819052604090205490565b611ad19190612833565b1115611b2b5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610923565b6025546001600160a01b038581169116148015611b5657506006546001600160a01b03868116911614155b8015611b7a57506001600160a01b0385165f9081526008602052604090205460ff16155b15611be857600c54831115611be45760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610923565b5060015b6001600160a01b0385165f9081526007602052604090205460ff1680611c2557506001600160a01b0384165f9081526007602052604090205460ff165b15611c2e575f91505b6025546001600160a01b03868116911614801590611c5a57506025546001600160a01b03858116911614155b15611c63575f91505b305f9081526020819052604081205490505f60215482118015611c835750825b9050808015611c9a5750600a5462010000900460ff165b8015611cae5750600a54610100900460ff16155b8015611cd257506001600160a01b0387165f9081526007602052604090205460ff16155b8015611cf657506001600160a01b0386165f9081526007602052604090205460ff16155b15611d1f57600a805461ff001916610100179055611d1382611f81565b600a805461ff00191690555b611d2c878787878761214c565b50505050505050565b5f611d408284612900565b9392505050565b5f611d408284612917565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611d8557611d8561280b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611ddc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e009190612936565b81600181518110611e1357611e1361280b565b6001600160a01b039283166020918202929092010152600654611e3991309116846115c1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611e719085905f90869030904290600401612951565b5f604051808303815f87803b158015611e88575f5ffd5b505af1158015611e9a573d5f5f3e3d5ffd5b505050505050565b5f611d408284612833565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6022546001600160a01b03166108fc611f18836002611d47565b6040518115909202915f818181858888f19350505050158015611f3d573d5f5f3e3d5ffd5b506023546001600160a01b03166108fc611f58836002611d47565b6040518115909202915f818181858888f19350505050158015611f7d573d5f5f3e3d5ffd5b5050565b5f611f9f602054610d45601f54601e54611ea290919063ffffffff16565b90505f821580611fad575081155b15611fb757505050565b602154611fc5906005611d35565b831115611fdd57602154611fda906005611d35565b92505b5f611ffc6002610aa285610aa260205489611d3590919063ffffffff16565b90505f61200985836121ac565b90504761201582611d52565b5f61202047836121ac565b90505f61203c87610aa2601e5485611d3590919063ffffffff16565b90505f61205888610aa2601f5486611d3590919063ffffffff16565b90505f61206f8261206986866121ac565b906121ac565b5f601e819055601f8190556020559050861580159061208d57505f81115b1561209c5761209c87826121b7565b6023546040516001600160a01b039091169083905f81818185875af1925050503d805f81146120e6576040519150601f19603f3d011682016040523d82523d5f602084013e6120eb565b606091505b50506022546040519199506001600160a01b03169047905f81818185875af1925050503d805f8114612138576040519150601f19603f3d011682016040523d82523d5f602084013e61213d565b606091505b50505050505050505050505050565b8161215e57612159612262565b61216c565b6121698584836122e9565b92505b6121778585856123df565b816121a5576121a5601354601255601554601455601754601655601954601855601b54601a55601d54601c55565b5050505050565b5f611d4082846129c1565b6006546121cf9030906001600160a01b0316846115c1565b6006546024805460405163f305d71960e01b81523060048201529182018590525f6044830181905260648301526001600160a01b0390811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561223d573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906121a591906129d4565b6012541580156122725750601454155b801561227e5750601654155b801561228a5750601854155b80156122965750601a54155b80156122a25750601c54155b156122a957565b60128054601355601480546015556016805460175560188054601955601a8054601b55601c8054601d555f95869055938590559184905583905582905555565b5f81156122fd576122f8612507565b612305565b612305612534565b600e545f90156123bb5761232a6103e8610aa2600e5487611d3590919063ffffffff16565b9050600e54600f548261233d9190612900565b6123479190612917565b601e5f8282546123579190612833565b9091555050600e5460105461236c9083612900565b6123769190612917565b601f5f8282546123869190612833565b9091555050600e5460115461239b9083612900565b6123a59190612917565b60205f8282546123b59190612833565b90915550505b80156123cc576123cc8530836123df565b6123d681856129c1565b95945050505050565b6001600160a01b0383166124055760405162461bcd60e51b815260040161092390612878565b6001600160a01b03821661242b5760405162461bcd60e51b8152600401610923906128bd565b6001600160a01b0383165f90815260208190526040902054818110156124a25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610923565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a57565b601854600f819055601a546010819055601c54601181905561252f929091610d459190611ea2565b600e55565b601254600f8190556014546010819055601654601181905561252f929091610d459190611ea2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d29575f5ffd5b80356125b081612591565b919050565b5f5f604083850312156125c6575f5ffd5b82356125d181612591565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610d29575f5ffd5b80356125b0816125f3565b5f5f6040838503121561261c575f5ffd5b823567ffffffffffffffff811115612632575f5ffd5b8301601f81018513612642575f5ffd5b803567ffffffffffffffff81111561265c5761265c6125df565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715612689576126896125df565b6040529182526020818401810192908101888411156126a6575f5ffd5b6020850194505b838510156126cc576126be856125a5565b8152602094850194016126ad565b5094506126df9250505060208401612600565b90509250929050565b5f602082840312156126f8575f5ffd5b8135611d4081612591565b5f5f5f60608486031215612715575f5ffd5b833561272081612591565b9250602084013561273081612591565b929592945050506040919091013590565b5f60208284031215612751575f5ffd5b5035919050565b5f5f5f6060848603121561276a575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215612792575f5ffd5b823561279d81612591565b915060208301356127ad81612591565b809150509250929050565b5f602082840312156127c8575f5ffd5b8135611d40816125f3565b600181811c908216806127e757607f821691505b60208210810361280557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561085c5761085c61281f565b5f60208284031215612856575f5ffd5b5051919050565b5f6020828403121561286d575f5ffd5b8151611d40816125f3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761085c5761085c61281f565b5f8261293157634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612946575f5ffd5b8151611d4081612591565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156129a15783516001600160a01b031683526020938401939092019160010161297a565b50506001600160a01b039590951660608401525050608001529392505050565b8181038181111561085c5761085c61281f565b5f5f5f606084860312156129e6575f5ffd5b505081516020830151604090930151909492935091905056fea2646970667358221220913b93725efa89d21d3fb9f66afdee31c983ae1c661b2f996266f9f603754b4664736f6c634300081b0033

Deployed Bytecode Sourcemap

32305:15046:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15668:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18005:201;;;;;;;;;;-1:-1:-1;18005:201:0;;;;;:::i;:::-;;:::i;:::-;;;1249:14:1;;1242:22;1224:41;;1212:2;1197:18;18005:201:0;1084:187:1;42566:179:0;;;;;;;;;;-1:-1:-1;42566:179:0;;;;;:::i;:::-;;:::i;42016:355::-;;;;;;;;;;-1:-1:-1;42016:355:0;;;;;:::i;:::-;;:::i;16782:108::-;;;;;;;;;;-1:-1:-1;16870:12:0;;16782:108;;;3274:25:1;;;3262:2;3247:18;16782:108:0;3128:177:1;42377::0;;;;;;;;;;-1:-1:-1;42377:177:0;;;;;:::i;:::-;;:::i;46501:151::-;;;;;;;;;;;;;:::i;18784:295::-;;;;;;;;;;-1:-1:-1;18784:295:0;;;;;:::i;:::-;;:::i;40513:257::-;;;;;;;;;;-1:-1:-1;40513:257:0;;;;;:::i;:::-;;:::i;33396:32::-;;;;;;;;;;;;;;;;16626:93;;;;;;;;;;-1:-1:-1;16626:93:0;;16709:2;4196:36:1;;4184:2;4169:18;16626:93:0;4054:184:1;19486:238:0;;;;;;;;;;-1:-1:-1;19486:238:0;;;;;:::i;:::-;;:::i;39472:100::-;;;;;;;;;;-1:-1:-1;39472:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;39550:14:0;39526:4;39550:14;;;:6;:14;;;;;;;;;39472:100;41565:445;;;;;;;;;;-1:-1:-1;41565:445:0;;;;;:::i;:::-;;:::i;41184:375::-;;;;;;;;;;-1:-1:-1;41184:375:0;;;;;:::i;:::-;;:::i;32798:39::-;;;;;;;;;;;;;;;;46186:148;;;;;;;;;;;;;:::i;43056:346::-;;;;;;;;;;-1:-1:-1;43056:346:0;;;;;:::i;:::-;;:::i;32651:31::-;;;;;;;;;;-1:-1:-1;32651:31:0;;;;;;;;;;;16951:127;;;;;;;;;;-1:-1:-1;16951:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17052:18:0;17025:7;17052:18;;;;;;;;;;;;16951:127;2505:103;;;;;;;;;;;;;:::i;47122:155::-;;;;;;;;;;;;;:::i;32753:38::-;;;;;;;;;;;;;;;;1861:87;;;;;;;;;;-1:-1:-1;1934:6:0;;1861:87;;-1:-1:-1;;;;;1934:6:0;;;4860:51:1;;4848:2;4833:18;1861:87:0;4714:203:1;15885:104:0;;;;;;;;;;;;;:::i;32892:42::-;;;;;;;;;;;;32930:4;32892:42;;20225:434;;;;;;;;;;-1:-1:-1;20225:434:0;;;;;:::i;:::-;;:::i;17282:193::-;;;;;;;;;;-1:-1:-1;17282:193:0;;;;;:::i;:::-;;:::i;32844:41::-;;;;;;;;;;;;;;;;43408:360;;;;;;;;;;-1:-1:-1;43408:360:0;;;;;:::i;:::-;;:::i;40782:396::-;;;;;;;;;;-1:-1:-1;40782:396:0;;;;;:::i;:::-;;:::i;33627:29::-;;;;;;;;;;;;;;;;42757:293;;;;;;;;;;-1:-1:-1;42757:293:0;;;;;:::i;:::-;;:::i;33300:28::-;;;;;;;;;;;;;;;;39578:330;;;;;;;;;;;;;:::i;46658:322::-;;;;;;;;;;-1:-1:-1;46658:322:0;;;;;:::i;:::-;;:::i;17536:151::-;;;;;;;;;;-1:-1:-1;17536:151:0;;;;;:::i;:::-;;:::i;46346:149::-;;;;;;;;;;;;;:::i;39914:91::-;;;;;;;;;;-1:-1:-1;39914:91:0;;;;;:::i;:::-;;:::i;40256:245::-;;;;;;;;;;-1:-1:-1;40256:245:0;;;;;:::i;:::-;;:::i;33075:31::-;;;;;;;;;;;;;;;;46988:128;;;;;;;;;;-1:-1:-1;46988:128:0;;;;;:::i;:::-;;:::i;2761:201::-;;;;;;;;;;-1:-1:-1;2761:201:0;;;;;:::i;:::-;;:::i;40011:239::-;;;;;;;;;;-1:-1:-1;40011:239:0;;;;;:::i;:::-;;:::i;33178:38::-;;;;;;;;;;;;;;;;33502:39;;;;;;;;;;;;;;;;32592:23;;;;;;;;;;-1:-1:-1;32592:23:0;;;;;;;;15668:100;15722:13;15755:5;15748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15668:100;:::o;18005:201::-;18088:4;733:10;18144:32;733:10;18160:7;18169:6;18144:8;:32::i;:::-;18194:4;18187:11;;;18005:201;;;;;:::o;42566:179::-;1749:13;:11;:13::i;:::-;42662:6:::1;42657:80;42678:8;:15;42674:1;:19;42657:80;;;42730:7;42700:14;:27;42715:8;42724:1;42715:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42700:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42700:27:0;:37;;-1:-1:-1;;42700:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;42695:3:0::1;42657:80;;;;42566:179:::0;;:::o;42016:355::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;42093:17:0;::::1;42085:60;;;::::0;-1:-1:-1;;;42085:60:0;;6280:2:1;42085:60:0::1;::::0;::::1;6262:21:1::0;6319:2;6299:18;;;6292:30;6358:32;6338:18;;;6331:60;6408:18;;42085:60:0::1;;;;;;;;;42170:10;::::0;;-1:-1:-1;;;;;42170:10:0;;::::1;42184:5;42156:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;42156:33:0;;::::1;::::0;;;42215:10;;;::::1;42200:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;42245:31;;-1:-1:-1;;;;;;42245:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;42287:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;42287:32:0;;::::1;::::0;;;42345:10;;;;::::1;42330:26:::0;;;;;;;:33;;;;::::1;;::::0;;42016:355::o;42377:177::-;1749:13;:11;:13::i;:::-;42472:6:::1;42467:79;42488:8;:15;42484:1;:19;42467:79;;;42539:7;42510:13;:26;42524:8;42533:1;42524:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42510:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42510:26:0;:36;;-1:-1:-1;;42510:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;42505:3:0::1;42467:79;;46501:151:::0;1749:13;:11;:13::i;:::-;46586:58:::1;::::0;46550:12:::1;::::0;46594:10:::1;::::0;46618:21:::1;::::0;46550:12;46586:58;46550:12;46586:58;46618:21;46594:10;46586:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;46501:151:0:o;18784:295::-;18915:4;733:10;18973:38;18989:4;733:10;19004:6;18973:15;:38::i;:::-;19022:27;19032:4;19038:2;19042:6;19022:9;:27::i;:::-;-1:-1:-1;19067:4:0;;18784:295;-1:-1:-1;;;;18784:295:0:o;40513:257::-;1749:13;:11;:13::i;:::-;40624:30:::1;40649:4;40624:20;40642:1;40624:13;16870:12:::0;;;16782:108;40624:13:::1;:17:::0;::::1;:20::i;:::-;:24:::0;::::1;:30::i;:::-;40603:16;:52;;40595:122;;;::::0;-1:-1:-1;;;40595:122:0;;6849:2:1;40595:122:0::1;::::0;::::1;6831:21:1::0;6888:2;6868:18;;;6861:30;6927:34;6907:18;;;6900:62;6998:27;6978:18;;;6971:55;7043:19;;40595:122:0::1;6647:421:1::0;40595:122:0::1;40728:15;:34:::0;40513:257::o;19486:238::-;19574:4;733:10;19630:64;733:10;19646:7;19683:10;19655:25;733:10;19646:7;19655:9;:25::i;:::-;:38;;;;:::i;:::-;19630:8;:64::i;41565:445::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;41660:26:0;::::1;41652:78;;;::::0;-1:-1:-1;;;41652:78:0;;7537:2:1;41652:78:0::1;::::0;::::1;7519:21:1::0;7576:2;7556:18;;;7549:30;7615:34;7595:18;;;7588:62;-1:-1:-1;;;7666:18:1;;;7659:37;7713:19;;41652:78:0::1;7335:403:1::0;41652:78:0::1;41755:19;::::0;;-1:-1:-1;;;;;41755:19:0;;::::1;41778:5;41741:34:::0;;;:13:::1;:34;::::0;;;;;;;:42;;-1:-1:-1;;41741:42:0;;::::1;::::0;;;41809:19;;;::::1;41794:35:::0;;:14:::1;:35:::0;;;;;;:43;;;::::1;::::0;;41848:49;;-1:-1:-1;;;;;;41848:49:0::1;::::0;;::::1;::::0;;::::1;::::0;;41908:34;;;;;;;;;:41;;;::::1;-1:-1:-1::0;41908:41:0;;::::1;::::0;;;41975:19;;;;::::1;41960:35:::0;;;;;;;:42;;;;::::1;;::::0;;41565:445::o;41184:375::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;41265:19:0;::::1;41257:64;;;::::0;-1:-1:-1;;;41257:64:0;;7945:2:1;41257:64:0::1;::::0;::::1;7927:21:1::0;;;7964:18;;;7957:30;8023:34;8003:18;;;7996:62;8075:18;;41257:64:0::1;7743:356:1::0;41257:64:0::1;41346:12;::::0;;-1:-1:-1;;;;;41346:12:0;;::::1;41362:5;41332:27:::0;;;:13:::1;:27;::::0;;;;;;;:35;;-1:-1:-1;;41332:35:0;;::::1;::::0;;;41393:12;;;::::1;41378:28:::0;;:14:::1;:28:::0;;;;;;:36;;;::::1;::::0;;41425:35;;-1:-1:-1;;;;;;41425:35:0::1;::::0;;::::1;::::0;;::::1;::::0;;41471:27;;;;;;;;;:34;;;::::1;-1:-1:-1::0;41471:34:0;;::::1;::::0;;;41531:12;;;;::::1;41516:28:::0;;;;;;;:35;;;;::::1;;::::0;;41184:375::o;46186:148::-;1749:13;:11;:13::i;:::-;46276:4:::1;46232:23;17052:18:::0;;;;;;;;;;;46293:33:::1;17052:18:::0;46293:16:::1;:33::i;:::-;46221:113;46186:148::o:0;43056:346::-;1749:13;:11;:13::i;:::-;43236:3:::1;43179:53;43221:10:::0;43179:37:::1;:12:::0;43196:19;43179:16:::1;:37::i;:::-;:41:::0;::::1;:53::i;:::-;:60;;43171:102;;;::::0;-1:-1:-1;;;43171:102:0;;8306:2:1;43171:102:0::1;::::0;::::1;8288:21:1::0;8345:2;8325:18;;;8318:30;8384:31;8364:18;;;8357:59;8433:18;;43171:102:0::1;8104:353:1::0;43171:102:0::1;43284:11;:26:::0;;;;43321:18:::1;:40:::0;43372:9:::1;:22:::0;43056:346::o;2505:103::-;1749:13;:11;:13::i;:::-;2570:30:::1;2597:1;2570:18;:30::i;:::-;2505:103::o:0;47122:155::-;1749:13;:11;:13::i;:::-;32725:21:::1;47174:12;:23:::0;;;47208:13:::1;:24:::0;;;47243:15:::1;:26:::0;47122:155::o;15885:104::-;15941:13;15974:7;15967:14;;;;;:::i;20225:434::-;20318:4;733:10;20318:4;20401:25;733:10;20418:7;20401:9;:25::i;:::-;20374:52;;20465:15;20445:16;:35;;20437:85;;;;-1:-1:-1;;;20437:85:0;;8664:2:1;20437:85:0;;;8646:21:1;8703:2;8683:18;;;8676:30;8742:34;8722:18;;;8715:62;-1:-1:-1;;;8793:18:1;;;8786:35;8838:19;;20437:85:0;8462:401:1;20437:85:0;20558:60;20567:5;20574:7;20602:15;20583:16;:34;20558:8;:60::i;17282:193::-;17361:4;733:10;17417:28;733:10;17434:2;17438:6;17417:9;:28::i;43408:360::-;1749:13;:11;:13::i;:::-;43595:3:::1;43535:56;43579:11:::0;43535:39:::1;:13:::0;43553:20;43535:17:::1;:39::i;:56::-;:63;;43527:106;;;::::0;-1:-1:-1;;;43527:106:0;;9070:2:1;43527:106:0::1;::::0;::::1;9052:21:1::0;9109:2;9089:18;;;9082:30;9148:32;9128:18;;;9121:60;9198:18;;43527:106:0::1;8868:354:1::0;43527:106:0::1;43644:12;:28:::0;;;;43683:19:::1;:42:::0;43736:10:::1;:24:::0;43408:360::o;40782:396::-;1749:13;:11;:13::i;:::-;40900:32:::1;40925:6;40900:20;40918:1;40900:13;16870:12:::0;;;16782:108;40900:32:::1;40877:18;:56;;40869:122;;;::::0;-1:-1:-1;;;40869:122:0;;9429:2:1;40869:122:0::1;::::0;::::1;9411:21:1::0;9468:2;9448:18;;;9441:30;9507:34;9487:18;;;9480:62;-1:-1:-1;;;9558:18:1;;;9551:51;9619:19;;40869:122:0::1;9227:417:1::0;40869:122:0::1;41033:30;41058:4;41033:20;41051:1;41033:13;16870:12:::0;;;16782:108;41033:30:::1;41010:18;:54;;41002:117;;;::::0;-1:-1:-1;;;41002:117:0;;9851:2:1;41002:117:0::1;::::0;::::1;9833:21:1::0;9890:2;9870:18;;;9863:30;9929:34;9909:18;;;9902:62;-1:-1:-1;;;9980:18:1;;;9973:48;10038:19;;41002:117:0::1;9649:414:1::0;41002:117:0::1;41130:19;:40:::0;40782:396::o;42757:293::-;1749:13;:11;:13::i;:::-;42840:6:::1;42835:208;42856:8;:15;42852:1;:19;42835:208;;;42912:13;::::0;42897:11;;-1:-1:-1;;;;;42912:13:0;;::::1;::::0;42897:8;;42906:1;;42897:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42897:28:0::1;;;42896:64;;;;;42954:4;-1:-1:-1::0;;;;;42931:28:0::1;:8;42940:1;42931:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42931:28:0::1;;;42896:64;:109;;;;-1:-1:-1::0;42988:15:0::1;::::0;42965:11;;-1:-1:-1;;;;;42988:15:0;;::::1;::::0;42965:8;;42974:1;;42965:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42965:39:0::1;;;42896:109;42893:138;;;43029:2;43007:6;:19;43014:8;43023:1;43014:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;43007:19:0::1;-1:-1:-1::0;;;;;43007:19:0::1;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;42893:138;42873:3;;42835:208;;39578:330:::0;1749:13;:11;:13::i;:::-;39638:11:::1;::::0;::::1;;39637:12;39629:48;;;::::0;-1:-1:-1;;;39629:48:0;;10270:2:1;39629:48:0::1;::::0;::::1;10252:21:1::0;10309:2;10289:18;;;10282:30;10348:25;10328:18;;;10321:53;10391:18;;39629:48:0::1;10068:347:1::0;39629:48:0::1;39688:11;:18:::0;;-1:-1:-1;;39688:18:0::1;::::0;::::1;::::0;;32725:21:::1;39717:12;:23:::0;;;39751:13:::1;:24:::0;;;39786:15:::1;:26:::0;;;39845::::1;::::0;39865:5:::1;::::0;39845:15:::1;::::0;39858:1:::1;39845:12;:15::i;:26::-;39823:19;:48:::0;39882:11:::1;:18:::0;;-1:-1:-1;;39882:18:0::1;39896:4;39882:18;::::0;;39578:330::o;46658:322::-;1749:13;:11;:13::i;:::-;46751:4:::1;-1:-1:-1::0;;;;;46736:20:0;::::1;::::0;46728:59:::1;;;::::0;-1:-1:-1;;;46728:59:0;;10622:2:1;46728:59:0::1;::::0;::::1;10604:21:1::0;10661:2;10641:18;;;10634:30;10700:28;10680:18;;;10673:56;10746:18;;46728:59:0::1;10420:350:1::0;46728:59:0::1;46806:36;::::0;-1:-1:-1;;;46806:36:0;;46836:4:::1;46806:36;::::0;::::1;4860:51:1::0;46845:1:0::1;::::0;-1:-1:-1;;;;;46806:21:0;::::1;::::0;::::1;::::0;4833:18:1;;46806:36:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;46798:62;;;::::0;-1:-1:-1;;;46798:62:0;;11212:2:1;46798:62:0::1;::::0;::::1;11194:21:1::0;11251:1;11231:18;;;11224:29;-1:-1:-1;;;11269:18:1;;;11262:39;11318:18;;46798:62:0::1;11010:332:1::0;46798:62:0::1;46885:36;::::0;-1:-1:-1;;;46885:36:0;;46915:4:::1;46885:36;::::0;::::1;4860:51:1::0;46871:11:0::1;::::0;-1:-1:-1;;;;;46885:21:0;::::1;::::0;::::1;::::0;4833:18:1;;46885:36:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46932:40;::::0;-1:-1:-1;;;46932:40:0;;46953:10:::1;46932:40;::::0;::::1;11521:51:1::0;11588:18;;;11581:34;;;46871:50:0;;-1:-1:-1;;;;;;46932:20:0;::::1;::::0;::::1;::::0;11494:18:1;;46932:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;17536:151::-:0;-1:-1:-1;;;;;17652:18:0;;;17625:7;17652:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17536:151::o;46346:149::-;1749:13;:11;:13::i;:::-;46423:21:::1;46455:32;46423:21:::0;46455:12:::1;:32::i;39914:91::-:0;1749:13;:11;:13::i;:::-;39978:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39978:19:0;;::::1;::::0;;;::::1;::::0;;39914:91::o;40256:245::-;1749:13;:11;:13::i;:::-;40361:30:::1;40386:4;40361:20;40379:1;40361:13;16870:12:::0;;;16782:108;40361:30:::1;40342:14;:50;;40334:118;;;::::0;-1:-1:-1;;;40334:118:0;;12078:2:1;40334:118:0::1;::::0;::::1;12060:21:1::0;12117:2;12097:18;;;12090:30;12156:34;12136:18;;;12129:62;12227:25;12207:18;;;12200:53;12270:19;;40334:118:0::1;11876:419:1::0;40334:118:0::1;40463:13;:30:::0;40256:245::o;46988:128::-;1749:13;:11;:13::i;:::-;47075::::1;:31:::0;;-1:-1:-1;;;;;;47075:31:0::1;-1:-1:-1::0;;;;;47075:31:0;;;::::1;::::0;;;::::1;::::0;;46988:128::o;2761:201::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;2850:22:0;::::1;2842:73;;;::::0;-1:-1:-1;;;2842:73:0;;12502:2:1;2842:73:0::1;::::0;::::1;12484:21:1::0;12541:2;12521:18;;;12514:30;12580:34;12560:18;;;12553:62;-1:-1:-1;;;12631:18:1;;;12624:36;12677:19;;2842:73:0::1;12300:402:1::0;2842:73:0::1;2926:28;2945:8;2926:18;:28::i;40011:239::-:0;1749:13;:11;:13::i;:::-;40113:30:::1;40138:4;40113:20;40131:1;40113:13;16870:12:::0;;;16782:108;40113:30:::1;40095:13;:49;;40087:116;;;::::0;-1:-1:-1;;;40087:116:0;;12909:2:1;40087:116:0::1;::::0;::::1;12891:21:1::0;12948:2;12928:18;;;12921:30;12987:34;12967:18;;;12960:62;-1:-1:-1;;;13038:18:1;;;13031:52;13100:19;;40087:116:0::1;12707:418:1::0;40087:116:0::1;40214:12;:28:::0;40011:239::o;24220:378::-;-1:-1:-1;;;;;24356:19:0;;24348:68;;;;-1:-1:-1;;;24348:68:0;;13332:2:1;24348:68:0;;;13314:21:1;13371:2;13351:18;;;13344:30;13410:34;13390:18;;;13383:62;-1:-1:-1;;;13461:18:1;;;13454:34;13505:19;;24348:68:0;13130:400:1;24348:68:0;-1:-1:-1;;;;;24435:21:0;;24427:68;;;;-1:-1:-1;;;24427:68:0;;13737:2:1;24427:68:0;;;13719:21:1;13776:2;13756:18;;;13749:30;13815:34;13795:18;;;13788:62;-1:-1:-1;;;13866:18:1;;;13859:32;13908:19;;24427:68:0;13535:398:1;24427:68:0;-1:-1:-1;;;;;24506:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24558:32;;3274:25:1;;;24558:32:0;;3247:18:1;24558:32:0;;;;;;;24220:378;;;:::o;2024:132::-;1934:6;;-1:-1:-1;;;;;1934:6:0;733:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;14140:2:1;2080:68:0;;;14122:21:1;;;14159:18;;;14152:30;14218:34;14198:18;;;14191:62;14270:18;;2080:68:0;13938:356:1;24887:453:0;25022:24;25049:25;25059:5;25066:7;25049:9;:25::i;:::-;25022:52;;-1:-1:-1;;25089:16:0;:37;25085:248;;25171:6;25151:16;:26;;25143:68;;;;-1:-1:-1;;;25143:68:0;;14501:2:1;25143:68:0;;;14483:21:1;14540:2;14520:18;;;14513:30;14579:31;14559:18;;;14552:59;14628:18;;25143:68:0;14299:353:1;25143:68:0;25255:51;25264:5;25271:7;25299:6;25280:16;:25;25255:8;:51::i;35270:1789::-;-1:-1:-1;;;;;35368:12:0;;35360:62;;;;-1:-1:-1;;;35360:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35441:10:0;;35433:58;;;;-1:-1:-1;;;35433:58:0;;;;;;;:::i;:::-;35519:1;35510:6;:10;35502:64;;;;-1:-1:-1;;;35502:64:0;;15669:2:1;35502:64:0;;;15651:21:1;15708:2;15688:18;;;15681:30;15747:34;15727:18;;;15720:62;-1:-1:-1;;;15798:18:1;;;15791:39;15847:19;;35502:64:0;15467:405:1;35502:64:0;35592:4;35577:12;35653:7;1934:6;;-1:-1:-1;;;;;1934:6:0;;1861:87;35653:7;-1:-1:-1;;;;;35645:15:0;:4;-1:-1:-1;;;;;35645:15:0;;;:32;;;;-1:-1:-1;1934:6:0;;-1:-1:-1;;;;;35664:13:0;;;1934:6;;35664:13;;35645:32;:46;;;;-1:-1:-1;;;;;;35681:10:0;;;;35645:46;:60;;;;-1:-1:-1;;;;;;35695:10:0;;34255:42;35695:10;;35645:60;:74;;;;-1:-1:-1;35710:9:0;;;;;;;35709:10;35645:74;35641:845;;;-1:-1:-1;;;;;35745:12:0;;;;;;:6;:12;;;;;;;;35744:13;:28;;;;-1:-1:-1;;;;;;35762:10:0;;;;;;:6;:10;;;;;;;;35761:11;35744:28;35736:45;;;;-1:-1:-1;;;35736:45:0;;;;;;16079:2:1;16061:21;;;16118:1;16098:18;;;16091:29;-1:-1:-1;;;16151:2:1;16136:18;;16129:34;16195:2;16180:18;;15877:327;35736:45:0;35800:11;;;;35796:97;;-1:-1:-1;;;;;35821:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;35844:17:0;;;;;;:13;:17;;;;;;;;35821:40;35813:80;;;;-1:-1:-1;;;35813:80:0;;16411:2:1;35813:80:0;;;16393:21:1;16450:2;16430:18;;;16423:30;16489:29;16469:18;;;16462:57;16536:18;;35813:80:0;16209:351:1;35813:80:0;35920:13;;-1:-1:-1;;;;;35912:21:0;;;35920:13;;35912:21;:55;;;;-1:-1:-1;35951:15:0;;-1:-1:-1;;;;;35937:30:0;;;35951:15;;35937:30;;35912:55;:78;;;;-1:-1:-1;;;;;;35972:18:0;;;;;;:14;:18;;;;;;;;35971:19;35912:78;35908:304;;;36029:12;;36019:6;:22;;36011:76;;;;-1:-1:-1;;;36011:76:0;;16767:2:1;36011:76:0;;;16749:21:1;16806:2;16786:18;;;16779:30;16845:34;16825:18;;;16818:62;-1:-1:-1;;;16896:18:1;;;16889:39;16945:19;;36011:76:0;16565:405:1;36011:76:0;36140:15;;36130:6;36114:13;36124:2;-1:-1:-1;;;;;17052:18:0;17025:7;17052:18;;;;;;;;;;;;16951:127;36114:13;:22;;;;:::i;:::-;:41;;36106:90;;;;-1:-1:-1;;;36106:90:0;;17177:2:1;36106:90:0;;;17159:21:1;17216:2;17196:18;;;17189:30;17255:34;17235:18;;;17228:62;-1:-1:-1;;;17306:18:1;;;17299:34;17350:19;;36106:90:0;16975:400:1;36106:90:0;36250:13;;-1:-1:-1;;;;;36244:19:0;;;36250:13;;36244:19;:55;;;;-1:-1:-1;36283:15:0;;-1:-1:-1;;;;;36267:32:0;;;36283:15;;36267:32;;36244:55;:80;;;;-1:-1:-1;;;;;;36304:20:0;;;;;;:14;:20;;;;;;;;36303:21;36244:80;36240:235;;;36363:13;;36353:6;:23;;36345:78;;;;-1:-1:-1;;;36345:78:0;;17582:2:1;36345:78:0;;;17564:21:1;17621:2;17601:18;;;17594:30;17660:34;17640:18;;;17633:62;-1:-1:-1;;;17711:18:1;;;17704:40;17761:19;;36345:78:0;17380:406:1;36345:78:0;-1:-1:-1;36455:4:0;36240:235;-1:-1:-1;;;;;36499:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;36522:17:0;;;;;;:13;:17;;;;;;;;36499:40;36496:60;;;36551:5;36541:15;;36496:60;36578:13;;-1:-1:-1;;;;;36570:21:0;;;36578:13;;36570:21;;;;:44;;-1:-1:-1;36601:13:0;;-1:-1:-1;;;;;36595:19:0;;;36601:13;;36595:19;;36570:44;36567:64;;;36626:5;36616:15;;36567:64;36688:4;36644:23;17052:18;;;;;;;;;;;36644:50;;36705:12;36739:19;;36721:15;:37;36720:53;;;;;36763:10;36720:53;36705:68;;36788:7;:22;;;;-1:-1:-1;36799:11:0;;;;;;;36788:22;:36;;;;-1:-1:-1;36815:9:0;;;;;;;36814:10;36788:36;:60;;;;-1:-1:-1;;;;;;36829:19:0;;;;;;:13;:19;;;;;;;;36828:20;36788:60;:82;;;;-1:-1:-1;;;;;;36853:17:0;;;;;;:13;:17;;;;;;;;36852:18;36788:82;36784:204;;;36887:9;:16;;-1:-1:-1;;36887:16:0;;;;;36918:26;36928:15;36918:9;:26::i;:::-;36959:9;:17;;-1:-1:-1;;36959:17:0;;;36784:204;36998:53;37013:4;37019:2;37023:6;37031:7;37040:10;36998:14;:53::i;:::-;35349:1710;;;;35270:1789;;;:::o;6823:98::-;6881:7;6908:5;6912:1;6908;:5;:::i;:::-;6901:12;6823:98;-1:-1:-1;;;6823:98:0:o;7220:::-;7278:7;7305:5;7309:1;7305;:5;:::i;38451:472::-;38542:16;;;38556:1;38542:16;;;;;;;;38518:21;;38542:16;;;;;;;;;;-1:-1:-1;38542:16:0;38518:40;;38587:4;38569;38574:1;38569:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38569:23:0;;;:7;;;;;;;;;;:23;;;;38613:15;;:22;;;-1:-1:-1;;;38613:22:0;;;;:15;;;;;:20;;:22;;;;;38569:7;;38613:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38603:4;38608:1;38603:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38603:32:0;;;:7;;;;;;;;;:32;38678:15;;38646:62;;38663:4;;38678:15;38696:11;38646:8;:62::i;:::-;38719:15;;:196;;-1:-1:-1;;;38719:196:0;;-1:-1:-1;;;;;38719:15:0;;;;:66;;:196;;38800:11;;38719:15;;38842:4;;38869;;38889:15;;38719:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38507:416;38451:472;:::o;6089:98::-;6147:7;6174:5;6178:1;6174;:5;:::i;3120:191::-;3213:6;;;-1:-1:-1;;;;;3230:17:0;;;-1:-1:-1;;;;;;3230:17:0;;;;;;;3263:40;;3213:6;;;3230:17;3213:6;;3263:40;;3194:16;;3263:40;3183:128;3120:191;:::o;39310:156::-;39368:12;;-1:-1:-1;;;;;39368:12:0;:36;39390:13;:6;39401:1;39390:10;:13::i;:::-;39368:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39415:19:0;;-1:-1:-1;;;;;39415:19:0;:43;39444:13;:6;39455:1;39444:10;:13::i;:::-;39415:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39310:156;:::o;37065:1380::-;37129:25;37158:62;37206:13;;37158:43;37178:22;;37158:15;;:19;;:43;;;;:::i;:62::-;37129:91;-1:-1:-1;37231:12:0;37268:20;;;:46;;-1:-1:-1;37292:22:0;;37268:46;37264:59;;;37316:7;;37065:1380;:::o;37264:59::-;37355:19;;:26;;37379:1;37355:23;:26::i;:::-;37337:15;:44;37333:94;;;37401:19;;:26;;37425:1;37401:23;:26::i;:::-;37383:44;;37333:94;37438:23;37464:64;37526:1;37464:57;37503:17;37464:34;37484:13;;37464:15;:19;;:34;;;;:::i;:64::-;37438:90;-1:-1:-1;37539:26:0;37568:36;:15;37438:90;37568:19;:36::i;:::-;37539:65;-1:-1:-1;37643:21:0;37675:36;37539:65;37675:16;:36::i;:::-;37732:18;37753:44;:21;37779:17;37753:25;:44::i;:::-;37732:65;;37808:19;37830:54;37866:17;37830:31;37845:15;;37830:10;:14;;:31;;;;:::i;:54::-;37808:76;;37895:26;37924:61;37967:17;37924:38;37939:22;;37924:10;:14;;:38;;;;:::i;:61::-;37895:90;-1:-1:-1;37996:17:0;38016:51;37895:90;38016:27;:10;38031:11;38016:14;:27::i;:::-;:31;;:51::i;:::-;38106:1;38088:15;:19;;;38118:22;:26;;;38155:13;:17;37996:71;-1:-1:-1;38186:19:0;;;;;:36;;;38221:1;38209:9;:13;38186:36;38183:82;;;38224:41;38238:15;38255:9;38224:13;:41::i;:::-;38297:19;;38289:64;;-1:-1:-1;;;;;38297:19:0;;;;38330:18;;38289:64;;;;38330:18;38297:19;38289:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38385:12:0;;38377:60;;38276:77;;-1:-1:-1;;;;;;38385:12:0;;38411:21;;38377:60;;;;38411:21;38385:12;38377:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;37065:1380:0:o;44808:319::-;44935:7;44930:86;;44944:14;:12;:14::i;:::-;44930:86;;;44983:33;44993:6;45001;45009;44983:9;:33::i;:::-;44974:42;;44930:86;45027:42;45043:6;45051:9;45062:6;45027:15;:42::i;:::-;45095:7;45090:29;;45104:15;44513:20;;44499:11;:34;44565:27;;44544:18;:48;44615:18;;44603:9;:30;44659:21;;44644:12;:36;44713:28;;44691:19;:50;44765:19;;44752:10;:32;44454:338;45104:15;44808:319;;;;;:::o;6468:98::-;6526:7;6553:5;6557:1;6553;:5;:::i;38929:365::-;39044:15;;39012:62;;39029:4;;-1:-1:-1;;;;;39044:15:0;39062:11;39012:8;:62::i;:::-;39085:15;;39235:10;;;39085:201;;-1:-1:-1;;;39085:201:0;;39157:4;39085:201;;;19850:51:1;19917:18;;;19910:34;;;39085:15:0;19960:18:1;;;19953:34;;;20003:18;;;19996:34;-1:-1:-1;;;;;39235:10:0;;;20046:19:1;;;20039:61;39260:15:0;20116:19:1;;;20109:35;39085:15:0;;;;:31;;39124:9;;19822:19:1;;39085:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43774:668::-;43822:11;;:16;:43;;;;-1:-1:-1;43842:18:0;;:23;43822:43;:61;;;;-1:-1:-1;43869:9:0;;:14;43822:61;:82;;;;-1:-1:-1;43887:12:0;;:17;43822:82;:110;;;;-1:-1:-1;43908:19:0;;:24;43822:110;:129;;;;-1:-1:-1;43936:10:0;;:15;43822:129;43818:142;;;43774:668::o;43818:142::-;43993:11;;;43970:20;:34;44045:18;;;44015:27;:48;44095:9;;;44074:18;:30;44139:12;;;44115:21;:36;44193:19;;;44162:28;:50;44245:10;;;44223:19;:32;-1:-1:-1;44276:15:0;;;;44302:22;;;;44335:13;;;;44359:16;;;44386:23;;;44420:14;43774:668::o;45133:593::-;45215:7;45239:6;45235:47;;;45247:10;:8;:10::i;:::-;45235:47;;;45273:9;:7;:9::i;:::-;45330:10;;45303:12;;45330:14;45326:292;;45368:39;32930:4;45368:22;45379:10;;45368:6;:10;;:22;;;;:::i;:39::-;45361:46;;45460:10;;45448:9;;45441:4;:16;;;;:::i;:::-;:29;;;;:::i;:::-;45422:15;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45537:10:0;;45518:16;;45511:23;;:4;:23;:::i;:::-;:36;;;;:::i;:::-;45485:22;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;45596:10:0;;45586:7;;45579:14;;:4;:14;:::i;:::-;:27;;;;:::i;:::-;45562:13;;:44;;;;;;;:::i;:::-;;;;-1:-1:-1;;45326:292:0;45632:8;;45628:58;;45642:44;45658:6;45674:4;45681;45642:15;:44::i;:::-;45704:14;45714:4;45704:14;;:::i;:::-;;45133:593;-1:-1:-1;;;;;45133:593:0:o;21127:832::-;-1:-1:-1;;;;;21258:18:0;;21250:68;;;;-1:-1:-1;;;21250:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21337:16:0;;21329:64;;;;-1:-1:-1;;;21329:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21475:15:0;;21453:19;21475:15;;;;;;;;;;;21509:21;;;;21501:72;;;;-1:-1:-1;;;21501:72:0;;20818:2:1;21501:72:0;;;20800:21:1;20857:2;20837:18;;;20830:30;20896:34;20876:18;;;20869:62;-1:-1:-1;;;20947:18:1;;;20940:36;20993:19;;21501:72:0;20616:402:1;21501:72:0;-1:-1:-1;;;;;21609:15:0;;;:9;:15;;;;;;;;;;;21627:20;;;21609:38;;21827:13;;;;;;;;;;:23;;;;;;21877:26;;3274:25:1;;;21827:13:0;;21877:26;;3247:18:1;21877:26:0;;;;;;;21914:37;42566:179;45732:220;45784:12;;45772:9;:24;;;45826:19;;45807:16;:38;;;45866:10;;45856:7;:20;;;45900:44;;45866:10;;45900:31;;45784:12;45900:13;:31::i;:44::-;45887:10;:57;45732:220::o;45958:216::-;46009:11;;45997:9;:23;;;46050:18;;46031:16;:37;;;46089:9;;46079:7;:19;;;46122:44;;46089:9;;46122:31;;46009:11;46122:13;:31::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:134;641:20;;670:31;641:20;670:31;:::i;:::-;573:134;;;:::o;712:367::-;780:6;788;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;896:9;883:23;915:31;940:5;915:31;:::i;:::-;965:5;1043:2;1028:18;;;;1015:32;;-1:-1:-1;;;712:367:1:o;1276:127::-;1337:10;1332:3;1328:20;1325:1;1318:31;1368:4;1365:1;1358:15;1392:4;1389:1;1382:15;1408:118;1494:5;1487:13;1480:21;1473:5;1470:32;1460:60;;1516:1;1513;1506:12;1531:128;1596:20;;1625:28;1596:20;1625:28;:::i;1664:1207::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:52;;;1831:1;1828;1821:12;1783:52;1871:9;1858:23;1904:18;1896:6;1893:30;1890:50;;;1936:1;1933;1926:12;1890:50;1959:22;;2012:4;2004:13;;2000:27;-1:-1:-1;1990:55:1;;2041:1;2038;2031:12;1990:55;2081:2;2068:16;2107:18;2099:6;2096:30;2093:56;;;2129:18;;:::i;:::-;2175:6;2172:1;2168:14;2211:2;2205:9;2274:2;2270:7;2265:2;2261;2257:11;2253:25;2245:6;2241:38;2345:6;2333:10;2330:22;2309:18;2297:10;2294:34;2291:62;2288:88;;;2356:18;;:::i;:::-;2392:2;2385:22;2442;;;2492:4;2524:11;;;2520:22;;;2442;2480:17;;2554:19;;;2551:39;;;2586:1;2583;2576:12;2551:39;2618:4;2614:2;2610:13;2599:24;;2632:152;2648:6;2643:3;2640:15;2632:152;;;2716:23;2735:3;2716:23;:::i;:::-;2704:36;;2769:4;2665:14;;;;2760;2632:152;;;-1:-1:-1;2803:6:1;-1:-1:-1;2828:37:1;;-1:-1:-1;;;2859:4:1;2844:20;;2828:37;:::i;:::-;2818:47;;1664:1207;;;;;:::o;2876:247::-;2935:6;2988:2;2976:9;2967:7;2963:23;2959:32;2956:52;;;3004:1;3001;2994:12;2956:52;3043:9;3030:23;3062:31;3087:5;3062:31;:::i;3310:508::-;3387:6;3395;3403;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3511:9;3498:23;3530:31;3555:5;3530:31;:::i;:::-;3580:5;-1:-1:-1;3637:2:1;3622:18;;3609:32;3650:33;3609:32;3650:33;:::i;:::-;3310:508;;3702:7;;-1:-1:-1;;;3782:2:1;3767:18;;;;3754:32;;3310:508::o;3823:226::-;3882:6;3935:2;3923:9;3914:7;3910:23;3906:32;3903:52;;;3951:1;3948;3941:12;3903:52;-1:-1:-1;3996:23:1;;3823:226;-1:-1:-1;3823:226:1:o;4243:466::-;4320:6;4328;4336;4389:2;4377:9;4368:7;4364:23;4360:32;4357:52;;;4405:1;4402;4395:12;4357:52;-1:-1:-1;;4450:23:1;;;4570:2;4555:18;;4542:32;;-1:-1:-1;4673:2:1;4658:18;;;4645:32;;4243:466;-1:-1:-1;4243:466:1:o;4922:388::-;4990:6;4998;5051:2;5039:9;5030:7;5026:23;5022:32;5019:52;;;5067:1;5064;5057:12;5019:52;5106:9;5093:23;5125:31;5150:5;5125:31;:::i;:::-;5175:5;-1:-1:-1;5232:2:1;5217:18;;5204:32;5245:33;5204:32;5245:33;:::i;:::-;5297:7;5287:17;;;4922:388;;;;;:::o;5315:241::-;5371:6;5424:2;5412:9;5403:7;5399:23;5395:32;5392:52;;;5440:1;5437;5430:12;5392:52;5479:9;5466:23;5498:28;5520:5;5498:28;:::i;5561:380::-;5640:1;5636:12;;;;5683;;;5704:61;;5758:4;5750:6;5746:17;5736:27;;5704:61;5811:2;5803:6;5800:14;5780:18;5777:38;5774:161;;5857:10;5852:3;5848:20;5845:1;5838:31;5892:4;5889:1;5882:15;5920:4;5917:1;5910:15;5774:161;;5561:380;;;:::o;5946:127::-;6007:10;6002:3;5998:20;5995:1;5988:31;6038:4;6035:1;6028:15;6062:4;6059:1;6052:15;7073:127;7134:10;7129:3;7125:20;7122:1;7115:31;7165:4;7162:1;7155:15;7189:4;7186:1;7179:15;7205:125;7270:9;;;7291:10;;;7288:36;;;7304:18;;:::i;10775:230::-;10845:6;10898:2;10886:9;10877:7;10873:23;10869:32;10866:52;;;10914:1;10911;10904:12;10866:52;-1:-1:-1;10959:16:1;;10775:230;-1:-1:-1;10775:230:1:o;11626:245::-;11693:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:52;;;11762:1;11759;11752:12;11714:52;11794:9;11788:16;11813:28;11835:5;11813:28;:::i;14657:401::-;14859:2;14841:21;;;14898:2;14878:18;;;14871:30;14937:34;14932:2;14917:18;;14910:62;-1:-1:-1;;;15003:2:1;14988:18;;14981:35;15048:3;15033:19;;14657:401::o;15063:399::-;15265:2;15247:21;;;15304:2;15284:18;;;15277:30;15343:34;15338:2;15323:18;;15316:62;-1:-1:-1;;;15409:2:1;15394:18;;15387:33;15452:3;15437:19;;15063:399::o;17791:168::-;17864:9;;;17895;;17912:15;;;17906:22;;17892:37;17882:71;;17933:18;;:::i;17964:217::-;18004:1;18030;18020:132;;18074:10;18069:3;18065:20;18062:1;18055:31;18109:4;18106:1;18099:15;18137:4;18134:1;18127:15;18020:132;-1:-1:-1;18166:9:1;;17964:217::o;18186:251::-;18256:6;18309:2;18297:9;18288:7;18284:23;18280:32;18277:52;;;18325:1;18322;18315:12;18277:52;18357:9;18351:16;18376:31;18401:5;18376:31;:::i;18442:959::-;18704:4;18752:3;18741:9;18737:19;18783:6;18772:9;18765:25;18826:6;18821:2;18810:9;18806:18;18799:34;18869:3;18864:2;18853:9;18849:18;18842:31;18893:6;18928;18922:13;18959:6;18951;18944:22;18997:3;18986:9;18982:19;18975:26;;19036:2;19028:6;19024:15;19010:29;;19057:1;19067:195;19081:6;19078:1;19075:13;19067:195;;;19146:13;;-1:-1:-1;;;;;19142:39:1;19130:52;;19211:2;19237:15;;;;19202:12;;;;19178:1;19096:9;19067:195;;;-1:-1:-1;;;;;;;19318:32:1;;;;19313:2;19298:18;;19291:60;-1:-1:-1;;19382:3:1;19367:19;19360:35;19279:3;18442:959;-1:-1:-1;;;18442:959:1:o;19406:128::-;19473:9;;;19494:11;;;19491:37;;;19508:18;;:::i;20155:456::-;20243:6;20251;20259;20312:2;20300:9;20291:7;20287:23;20283:32;20280:52;;;20328:1;20325;20318:12;20280:52;-1:-1:-1;;20373:16:1;;20479:2;20464:18;;20458:25;20575:2;20560:18;;;20554:25;20373:16;;20458:25;;-1:-1:-1;20554:25:1;20155:456;-1:-1:-1;20155:456:1:o

Swarm Source

ipfs://913b93725efa89d21d3fb9f66afdee31c983ae1c661b2f996266f9f603754b46
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.