ETH Price: $2,684.29 (-3.47%)
Gas: 0.86 Gwei

Token

Yes Chad (CHAD)
 

Overview

Max Total Supply

1,000,000,000 CHAD

Holders

27

Total Transfers

-

Market

Onchain Market Cap

$0.00

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
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CHAD

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-12
*/

/*

Telegram : https://t.me/YesChadERC

Website : https://yeschad.club

*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity 0.8.18;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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 IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

     /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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

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


    bool private swapping;

    address public marketing;
    
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    uint256 public maxTransactionAmount;

    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    
    uint256 private tokensForMarketing;
    uint256 private tokensForLiquidity;
    
    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    mapping (address => bool) public _isExcludedMaxTransactionAmount;

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

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    constructor() ERC20(unicode"Yes Chad", "CHAD") {

        address newOwner = address(owner());

        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 1;

     
        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 1;
        
        uint256 totalSupply = 1e9 * 1e18;
        
        maxWallet = totalSupply * 3 / 100; // 3% max wallet
        maxTransactionAmount = totalSupply * 3 / 100; // 3% maxTransactionAmountTxn
        swapTokensAtAmount = 1000000 * (10**18);

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        
    	marketing = address(0x08DC678b2156ba5e17447000481aFF05Ee48259b); // set as marketing wallet

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

        excludeFromMaxTransaction(newOwner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(marketing, true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {

  	}

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketing);
        marketing = newMarketingWallet;
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }

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

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing;
        
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        
        (bool success,) = address(marketing).call{value: ethForMarketing/2}("");
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        // keep leftover ETH for buyback
        (success,) = address(0x946ac81bae247f5BC25ec27Dc356b1cB72B43588).call{value: address(this).balance}("");
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805460ff191660011790553480156200001e57600080fd5b506040518060400160405280600881526020016716595cc810da185960c21b8152506040518060400160405280600481526020016310d2105160e21b81525081600390816200006e919062000837565b5060046200007d828262000837565b505050600062000092620003ad60201b60201c565b600580546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062002adb833981519152908290a3506000620000e46005546001600160a01b031690565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b815290519293509091829163c45a01559160048083019260209291908290030181865afa15801562000140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000166919062000903565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da919062000903565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e919062000903565b6001600160a01b031660a081905262000269906001620003b1565b6002600181816b033b2e3c9fd0803ce800000060646200028b82600362000944565b6200029791906200095e565b6008556064620002a982600362000944565b620002b591906200095e565b60095569d3c21bcecceda1000000600755600c859055600d849055620002dc848662000981565b600b55600f8390556010829055620002f5828462000981565b600e55600680546001600160a01b0319167308dc678b2156ba5e17447000481aff05ee48259b1790556200032b87600162000405565b6200033830600162000405565b6200034761dead600162000405565b62000354876001620004b3565b62000361306001620004b3565b6006546200037a906001600160a01b03166001620004b3565b6200038961dead6001620004b3565b62000395878262000529565b620003a08762000625565b5050505050505062000997565b3390565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004545760405162461bcd60e51b8152602060048201819052602482015260008051602062002abb83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620004fe5760405162461bcd60e51b8152602060048201819052602482015260008051602062002abb83398151915260448201526064016200044b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216620005815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044b565b6200059d816002546200072760201b62000d9b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005d091839062000d9b62000727821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006705760405162461bcd60e51b8152602060048201819052602482015260008051602062002abb83398151915260448201526064016200044b565b6001600160a01b038116620006d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200044b565b6005546040516001600160a01b0380841692169060008051602062002adb83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b505050565b60008062000736838562000981565b9050838110156200078a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200044b565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007be57607f821691505b602082108103620007df57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072257600081815260208120601f850160051c810160208610156200080e5750805b601f850160051c820191505b818110156200082f578281556001016200081a565b505050505050565b81516001600160401b0381111562000853576200085362000793565b6200086b81620008648454620007a9565b84620007e5565b602080601f831160018114620008a357600084156200088a5750858301515b600019600386901b1c1916600185901b1785556200082f565b600085815260208120601f198616915b82811015620008d457888601518255948401946001909101908401620008b3565b5085821015620008f35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091657600080fd5b81516001600160a01b03811681146200078a57600080fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200078d576200078d6200092e565b6000826200097c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200078d576200078d6200092e565b60805160a0516120d4620009e7600039600081816103b9015261093f0152600081816102bc015281816119ee01528181611aa701528181611ae301528181611b5d0152611bcc01526120d46000f3fe6080604052600436106102135760003560e01c80638da5cb5b11610118578063c8c8ebe4116100a0578063e2f456051161006f578063e2f4560514610672578063f11a24d314610688578063f2fde38b1461069e578063f6374342146106be578063f8b45b05146106d457600080fd5b8063c8c8ebe4146105e0578063d257b34f146105f6578063d85ba06314610616578063dd62ed3e1461062c57600080fd5b8063a457c2d7116100e7578063a457c2d714610530578063a9059cbb14610550578063aacebbe314610570578063b62496f514610590578063c0246668146105c057600080fd5b80638da5cb5b146104c757806392136913146104e557806395d89b41146104fb5780639a7a23d61461051057600080fd5b8063395093511161019b5780636ddd17131161016a5780636ddd17131461042a57806370a0823114610444578063715018a61461047a5780637571336a146104915780637bce5a04146104b157600080fd5b8063395093511461038757806349bd5a5e146103a75780634fbee193146103db5780636a486a8e1461041457600080fd5b806318160ddd116101e257806318160ddd146102f657806323b872dd1461031557806327c8f835146103355780632d3e474a1461034b578063313ce5671461036b57600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a5780631694505e146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346106ea565b6040516102419190611c78565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611cde565b61077c565b6040519015158152602001610241565b34801561028657600080fd5b5061026a610295366004611d0a565b60146020526000908152604090205460ff1681565b3480156102b657600080fd5b506102de7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b34801561030257600080fd5b506002545b604051908152602001610241565b34801561032157600080fd5b5061026a610330366004611d27565b610793565b34801561034157600080fd5b506102de61dead81565b34801561035757600080fd5b506006546102de906001600160a01b031681565b34801561037757600080fd5b5060405160128152602001610241565b34801561039357600080fd5b5061026a6103a2366004611cde565b6107fc565b3480156103b357600080fd5b506102de7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103e757600080fd5b5061026a6103f6366004611d0a565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561042057600080fd5b50610307600e5481565b34801561043657600080fd5b50600a5461026a9060ff1681565b34801561045057600080fd5b5061030761045f366004611d0a565b6001600160a01b031660009081526020819052604090205490565b34801561048657600080fd5b5061048f610832565b005b34801561049d57600080fd5b5061048f6104ac366004611d68565b6108af565b3480156104bd57600080fd5b50610307600c5481565b3480156104d357600080fd5b506005546001600160a01b03166102de565b3480156104f157600080fd5b50610307600f5481565b34801561050757600080fd5b50610234610904565b34801561051c57600080fd5b5061048f61052b366004611d68565b610913565b34801561053c57600080fd5b5061026a61054b366004611cde565b6109f2565b34801561055c57600080fd5b5061026a61056b366004611cde565b610a41565b34801561057c57600080fd5b5061048f61058b366004611d0a565b610a4e565b34801561059c57600080fd5b5061026a6105ab366004611d0a565b60156020526000908152604090205460ff1681565b3480156105cc57600080fd5b5061048f6105db366004611d68565b610ad5565b3480156105ec57600080fd5b5061030760095481565b34801561060257600080fd5b5061026a610611366004611da6565b610b5e565b34801561062257600080fd5b50610307600b5481565b34801561063857600080fd5b50610307610647366004611dbf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067e57600080fd5b5061030760075481565b34801561069457600080fd5b50610307600d5481565b3480156106aa57600080fd5b5061048f6106b9366004611d0a565b610cb0565b3480156106ca57600080fd5b5061030760105481565b3480156106e057600080fd5b5061030760085481565b6060600380546106f990611ded565b80601f016020809104026020016040519081016040528092919081815260200182805461072590611ded565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b6000610789338484610e01565b5060015b92915050565b60006107a0848484610f26565b6107f284336107ed85604051806060016040528060288152602001612052602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611512565b610e01565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107899185906107ed9086610d9b565b6005546001600160a01b031633146108655760405162461bcd60e51b815260040161085c90611e27565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146108d95760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6060600480546106f990611ded565b6005546001600160a01b0316331461093d5760405162461bcd60e51b815260040161085c90611e27565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036109e45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161085c565b6109ee828261154c565b5050565b600061078933846107ed8560405180606001604052806025815260200161207a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611512565b6000610789338484610f26565b6005546001600160a01b03163314610a785760405162461bcd60e51b815260040161085c90611e27565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aff5760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610b8b5760405162461bcd60e51b815260040161085c90611e27565b620186a0610b9860025490565b610ba3906001611e72565b610bad9190611e89565b821015610c1a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085c565b6103e8610c2660025490565b610c31906005611e72565b610c3b9190611e89565b821115610ca75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085c565b50600755600190565b6005546001600160a01b03163314610cda5760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b038116610d3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610da88385611eab565b905083811015610dfa5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161085c565b9392505050565b6001600160a01b038316610e635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085c565b6001600160a01b038216610ec45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610f4c5760405162461bcd60e51b815260040161085c90611ebe565b6001600160a01b038216610f725760405162461bcd60e51b815260040161085c90611f03565b80600003610f8b57610f86838360006115a0565b505050565b6005546001600160a01b03848116911614801590610fb757506005546001600160a01b03838116911614155b8015610fcb57506001600160a01b03821615155b8015610fe257506001600160a01b03821661dead14155b8015610ff85750600554600160a01b900460ff16155b15611243576001600160a01b03831660009081526015602052604090205460ff16801561103e57506001600160a01b03821660009081526014602052604090205460ff16155b15611122576009548111156110b35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085c565b6008546001600160a01b0383166000908152602081905260409020546110d99083611eab565b111561111d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b611243565b6001600160a01b03821660009081526015602052604090205460ff16801561116357506001600160a01b03831660009081526014602052604090205460ff16155b156111d95760095481111561111d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161085c565b6008546001600160a01b0383166000908152602081905260409020546111ff9083611eab565b11156112435760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b30600090815260208190526040902054600754811080159081906112695750600a5460ff165b801561127f5750600554600160a01b900460ff16155b80156112a457506001600160a01b03851660009081526015602052604090205460ff16155b80156112c957506001600160a01b03851660009081526013602052604090205460ff16155b80156112ee57506001600160a01b03841660009081526013602052604090205460ff16155b1561131c576005805460ff60a01b1916600160a01b17905561130e6116a9565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061136a57506001600160a01b03851660009081526013602052604090205460ff165b15611373575060005b600081156114fe576001600160a01b03861660009081526015602052604090205460ff1680156113a557506000600e54115b15611433576113ca60646113c4600e548861189190919063ffffffff16565b90611913565b9050600e54601054826113dd9190611e72565b6113e79190611e89565b601260008282546113f89190611eab565b9091555050600e54600f5461140d9083611e72565b6114179190611e89565b601160008282546114289190611eab565b909155506114e09050565b6001600160a01b03871660009081526015602052604090205460ff16801561145d57506000600b54115b156114e05761147c60646113c4600b548861189190919063ffffffff16565b9050600b54600d548261148f9190611e72565b6114999190611e89565b601260008282546114aa9190611eab565b9091555050600b54600c546114bf9083611e72565b6114c99190611e89565b601160008282546114da9190611eab565b90915550505b80156114f1576114f18730836115a0565b6114fb8186611f46565b94505b6115098787876115a0565b50505050505050565b600081848411156115365760405162461bcd60e51b815260040161085c9190611c78565b5060006115438486611f46565b95945050505050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166115c65760405162461bcd60e51b815260040161085c90611ebe565b6001600160a01b0382166115ec5760405162461bcd60e51b815260040161085c90611f03565b6116298160405180606001604052806026815260200161202c602691396001600160a01b0386166000908152602081905260409020549190611512565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546116589082610d9b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f19565b30600090815260208190526040812054905060006011546012546116cd9190611eab565b90508115806116da575080155b156116e3575050565b6000600282601254856116f69190611e72565b6117009190611e89565b61170a9190611e89565b905060006117188483611955565b90504761172482611997565b60006117304783611955565b9050600061174d866113c46011548561189190919063ffffffff16565b9050600061175b8284611f46565b600060128190556011819055600654919250906001600160a01b0316611782600285611e89565b604051600081818185875af1925050503d80600081146117be576040519150601f19603f3d011682016040523d82523d6000602084013e6117c3565b606091505b505090506000871180156117d75750600082115b1561182a576117e68783611b57565b601254604080518881526020810185905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60405173946ac81bae247f5bc25ec27dc356b1cb72b43588904790600081818185875af1925050503d806000811461187e576040519150601f19603f3d011682016040523d82523d6000602084013e611883565b606091505b505050505050505050505050565b6000826000036118a35750600061078d565b60006118af8385611e72565b9050826118bc8583611e89565b14610dfa5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161085c565b6000610dfa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c4a565b6000610dfa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611512565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119cc576119cc611f59565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6e9190611f6f565b81600181518110611a8157611a81611f59565b60200260200101906001600160a01b031690816001600160a01b031681525050611acc307f000000000000000000000000000000000000000000000000000000000000000084610e01565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b21908590600090869030904290600401611f8c565b600060405180830381600087803b158015611b3b57600080fd5b505af1158015611b4f573d6000803e3d6000fd5b505050505050565b611b82307f000000000000000000000000000000000000000000000000000000000000000084610e01565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015273946ac81bae247f5bc25ec27dc356b1cb72b4358860848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c439190611ffd565b5050505050565b60008183611c6b5760405162461bcd60e51b815260040161085c9190611c78565b5060006115438486611e89565b600060208083528351808285015260005b81811015611ca557858101830151858201604001528201611c89565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cdb57600080fd5b50565b60008060408385031215611cf157600080fd5b8235611cfc81611cc6565b946020939093013593505050565b600060208284031215611d1c57600080fd5b8135610dfa81611cc6565b600080600060608486031215611d3c57600080fd5b8335611d4781611cc6565b92506020840135611d5781611cc6565b929592945050506040919091013590565b60008060408385031215611d7b57600080fd5b8235611d8681611cc6565b915060208301358015158114611d9b57600080fd5b809150509250929050565b600060208284031215611db857600080fd5b5035919050565b60008060408385031215611dd257600080fd5b8235611ddd81611cc6565b91506020830135611d9b81611cc6565b600181811c90821680611e0157607f821691505b602082108103611e2157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761078d5761078d611e5c565b600082611ea657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561078d5761078d611e5c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078d5761078d611e5c565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f8157600080fd5b8151610dfa81611cc6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fdc5784516001600160a01b031683529383019391830191600101611fb7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561201257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c2255a35402a5781a6051580d96b53d7ef191e21a36375f74f1f99d0c502598364736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638da5cb5b11610118578063c8c8ebe4116100a0578063e2f456051161006f578063e2f4560514610672578063f11a24d314610688578063f2fde38b1461069e578063f6374342146106be578063f8b45b05146106d457600080fd5b8063c8c8ebe4146105e0578063d257b34f146105f6578063d85ba06314610616578063dd62ed3e1461062c57600080fd5b8063a457c2d7116100e7578063a457c2d714610530578063a9059cbb14610550578063aacebbe314610570578063b62496f514610590578063c0246668146105c057600080fd5b80638da5cb5b146104c757806392136913146104e557806395d89b41146104fb5780639a7a23d61461051057600080fd5b8063395093511161019b5780636ddd17131161016a5780636ddd17131461042a57806370a0823114610444578063715018a61461047a5780637571336a146104915780637bce5a04146104b157600080fd5b8063395093511461038757806349bd5a5e146103a75780634fbee193146103db5780636a486a8e1461041457600080fd5b806318160ddd116101e257806318160ddd146102f657806323b872dd1461031557806327c8f835146103355780632d3e474a1461034b578063313ce5671461036b57600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a5780631694505e146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346106ea565b6040516102419190611c78565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611cde565b61077c565b6040519015158152602001610241565b34801561028657600080fd5b5061026a610295366004611d0a565b60146020526000908152604090205460ff1681565b3480156102b657600080fd5b506102de7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b34801561030257600080fd5b506002545b604051908152602001610241565b34801561032157600080fd5b5061026a610330366004611d27565b610793565b34801561034157600080fd5b506102de61dead81565b34801561035757600080fd5b506006546102de906001600160a01b031681565b34801561037757600080fd5b5060405160128152602001610241565b34801561039357600080fd5b5061026a6103a2366004611cde565b6107fc565b3480156103b357600080fd5b506102de7f0000000000000000000000003a347e6972be15fad0254175f448b2943fe6a16481565b3480156103e757600080fd5b5061026a6103f6366004611d0a565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561042057600080fd5b50610307600e5481565b34801561043657600080fd5b50600a5461026a9060ff1681565b34801561045057600080fd5b5061030761045f366004611d0a565b6001600160a01b031660009081526020819052604090205490565b34801561048657600080fd5b5061048f610832565b005b34801561049d57600080fd5b5061048f6104ac366004611d68565b6108af565b3480156104bd57600080fd5b50610307600c5481565b3480156104d357600080fd5b506005546001600160a01b03166102de565b3480156104f157600080fd5b50610307600f5481565b34801561050757600080fd5b50610234610904565b34801561051c57600080fd5b5061048f61052b366004611d68565b610913565b34801561053c57600080fd5b5061026a61054b366004611cde565b6109f2565b34801561055c57600080fd5b5061026a61056b366004611cde565b610a41565b34801561057c57600080fd5b5061048f61058b366004611d0a565b610a4e565b34801561059c57600080fd5b5061026a6105ab366004611d0a565b60156020526000908152604090205460ff1681565b3480156105cc57600080fd5b5061048f6105db366004611d68565b610ad5565b3480156105ec57600080fd5b5061030760095481565b34801561060257600080fd5b5061026a610611366004611da6565b610b5e565b34801561062257600080fd5b50610307600b5481565b34801561063857600080fd5b50610307610647366004611dbf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067e57600080fd5b5061030760075481565b34801561069457600080fd5b50610307600d5481565b3480156106aa57600080fd5b5061048f6106b9366004611d0a565b610cb0565b3480156106ca57600080fd5b5061030760105481565b3480156106e057600080fd5b5061030760085481565b6060600380546106f990611ded565b80601f016020809104026020016040519081016040528092919081815260200182805461072590611ded565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b6000610789338484610e01565b5060015b92915050565b60006107a0848484610f26565b6107f284336107ed85604051806060016040528060288152602001612052602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611512565b610e01565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107899185906107ed9086610d9b565b6005546001600160a01b031633146108655760405162461bcd60e51b815260040161085c90611e27565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146108d95760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6060600480546106f990611ded565b6005546001600160a01b0316331461093d5760405162461bcd60e51b815260040161085c90611e27565b7f0000000000000000000000003a347e6972be15fad0254175f448b2943fe6a1646001600160a01b0316826001600160a01b0316036109e45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161085c565b6109ee828261154c565b5050565b600061078933846107ed8560405180606001604052806025815260200161207a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611512565b6000610789338484610f26565b6005546001600160a01b03163314610a785760405162461bcd60e51b815260040161085c90611e27565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aff5760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610b8b5760405162461bcd60e51b815260040161085c90611e27565b620186a0610b9860025490565b610ba3906001611e72565b610bad9190611e89565b821015610c1a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085c565b6103e8610c2660025490565b610c31906005611e72565b610c3b9190611e89565b821115610ca75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085c565b50600755600190565b6005546001600160a01b03163314610cda5760405162461bcd60e51b815260040161085c90611e27565b6001600160a01b038116610d3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610da88385611eab565b905083811015610dfa5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161085c565b9392505050565b6001600160a01b038316610e635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085c565b6001600160a01b038216610ec45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610f4c5760405162461bcd60e51b815260040161085c90611ebe565b6001600160a01b038216610f725760405162461bcd60e51b815260040161085c90611f03565b80600003610f8b57610f86838360006115a0565b505050565b6005546001600160a01b03848116911614801590610fb757506005546001600160a01b03838116911614155b8015610fcb57506001600160a01b03821615155b8015610fe257506001600160a01b03821661dead14155b8015610ff85750600554600160a01b900460ff16155b15611243576001600160a01b03831660009081526015602052604090205460ff16801561103e57506001600160a01b03821660009081526014602052604090205460ff16155b15611122576009548111156110b35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085c565b6008546001600160a01b0383166000908152602081905260409020546110d99083611eab565b111561111d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b611243565b6001600160a01b03821660009081526015602052604090205460ff16801561116357506001600160a01b03831660009081526014602052604090205460ff16155b156111d95760095481111561111d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161085c565b6008546001600160a01b0383166000908152602081905260409020546111ff9083611eab565b11156112435760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085c565b30600090815260208190526040902054600754811080159081906112695750600a5460ff165b801561127f5750600554600160a01b900460ff16155b80156112a457506001600160a01b03851660009081526015602052604090205460ff16155b80156112c957506001600160a01b03851660009081526013602052604090205460ff16155b80156112ee57506001600160a01b03841660009081526013602052604090205460ff16155b1561131c576005805460ff60a01b1916600160a01b17905561130e6116a9565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061136a57506001600160a01b03851660009081526013602052604090205460ff165b15611373575060005b600081156114fe576001600160a01b03861660009081526015602052604090205460ff1680156113a557506000600e54115b15611433576113ca60646113c4600e548861189190919063ffffffff16565b90611913565b9050600e54601054826113dd9190611e72565b6113e79190611e89565b601260008282546113f89190611eab565b9091555050600e54600f5461140d9083611e72565b6114179190611e89565b601160008282546114289190611eab565b909155506114e09050565b6001600160a01b03871660009081526015602052604090205460ff16801561145d57506000600b54115b156114e05761147c60646113c4600b548861189190919063ffffffff16565b9050600b54600d548261148f9190611e72565b6114999190611e89565b601260008282546114aa9190611eab565b9091555050600b54600c546114bf9083611e72565b6114c99190611e89565b601160008282546114da9190611eab565b90915550505b80156114f1576114f18730836115a0565b6114fb8186611f46565b94505b6115098787876115a0565b50505050505050565b600081848411156115365760405162461bcd60e51b815260040161085c9190611c78565b5060006115438486611f46565b95945050505050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166115c65760405162461bcd60e51b815260040161085c90611ebe565b6001600160a01b0382166115ec5760405162461bcd60e51b815260040161085c90611f03565b6116298160405180606001604052806026815260200161202c602691396001600160a01b0386166000908152602081905260409020549190611512565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546116589082610d9b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f19565b30600090815260208190526040812054905060006011546012546116cd9190611eab565b90508115806116da575080155b156116e3575050565b6000600282601254856116f69190611e72565b6117009190611e89565b61170a9190611e89565b905060006117188483611955565b90504761172482611997565b60006117304783611955565b9050600061174d866113c46011548561189190919063ffffffff16565b9050600061175b8284611f46565b600060128190556011819055600654919250906001600160a01b0316611782600285611e89565b604051600081818185875af1925050503d80600081146117be576040519150601f19603f3d011682016040523d82523d6000602084013e6117c3565b606091505b505090506000871180156117d75750600082115b1561182a576117e68783611b57565b601254604080518881526020810185905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60405173946ac81bae247f5bc25ec27dc356b1cb72b43588904790600081818185875af1925050503d806000811461187e576040519150601f19603f3d011682016040523d82523d6000602084013e611883565b606091505b505050505050505050505050565b6000826000036118a35750600061078d565b60006118af8385611e72565b9050826118bc8583611e89565b14610dfa5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161085c565b6000610dfa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c4a565b6000610dfa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611512565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119cc576119cc611f59565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6e9190611f6f565b81600181518110611a8157611a81611f59565b60200260200101906001600160a01b031690816001600160a01b031681525050611acc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e01565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b21908590600090869030904290600401611f8c565b600060405180830381600087803b158015611b3b57600080fd5b505af1158015611b4f573d6000803e3d6000fd5b505050505050565b611b82307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e01565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015273946ac81bae247f5bc25ec27dc356b1cb72b4358860848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c439190611ffd565b5050505050565b60008183611c6b5760405162461bcd60e51b815260040161085c9190611c78565b5060006115438486611e89565b600060208083528351808285015260005b81811015611ca557858101830151858201604001528201611c89565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cdb57600080fd5b50565b60008060408385031215611cf157600080fd5b8235611cfc81611cc6565b946020939093013593505050565b600060208284031215611d1c57600080fd5b8135610dfa81611cc6565b600080600060608486031215611d3c57600080fd5b8335611d4781611cc6565b92506020840135611d5781611cc6565b929592945050506040919091013590565b60008060408385031215611d7b57600080fd5b8235611d8681611cc6565b915060208301358015158114611d9b57600080fd5b809150509250929050565b600060208284031215611db857600080fd5b5035919050565b60008060408385031215611dd257600080fd5b8235611ddd81611cc6565b91506020830135611d9b81611cc6565b600181811c90821680611e0157607f821691505b602082108103611e2157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761078d5761078d611e5c565b600082611ea657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561078d5761078d611e5c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078d5761078d611e5c565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f8157600080fd5b8151610dfa81611cc6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fdc5784516001600160a01b031683529383019391830191600101611fb7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561201257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c2255a35402a5781a6051580d96b53d7ef191e21a36375f74f1f99d0c502598364736f6c63430008120033

Deployed Bytecode Sourcemap

29512:11060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7674:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9841:169;;;;;;;;;;-1:-1:-1;9841:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9841:169:0;1023:187:1;30436:64:0;;;;;;;;;;-1:-1:-1;30436:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29586:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;29586:51:0;1467:230:1;8794:108:0;;;;;;;;;;-1:-1:-1;8882:12:0;;8794:108;;;1848:25:1;;;1836:2;1821:18;8794:108:0;1702:177:1;10492:355:0;;;;;;;;;;-1:-1:-1;10492:355:0;;;;;:::i;:::-;;:::i;29689:53::-;;;;;;;;;;;;29735:6;29689:53;;29783:24;;;;;;;;;;-1:-1:-1;29783:24:0;;;;-1:-1:-1;;;;;29783:24:0;;;8636:93;;;;;;;;;;-1:-1:-1;8636:93:0;;8719:2;2695:36:1;;2683:2;2668:18;8636:93:0;2553:184:1;11256:218:0;;;;;;;;;;-1:-1:-1;11256:218:0;;;;;:::i;:::-;;:::i;29644:38::-;;;;;;;;;;;;;;;34713:125;;;;;;;;;;-1:-1:-1;34713:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;34802:28:0;34778:4;34802:28;;;:19;:28;;;;;;;;;34713:125;30088:28;;;;;;;;;;;;;;;;29935:30;;;;;;;;;;-1:-1:-1;29935:30:0;;;;;;;;8965:127;;;;;;;;;;-1:-1:-1;8965:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9066:18:0;9039:7;9066:18;;;;;;;;;;;;8965:127;22137:148;;;;;;;;;;;;;:::i;:::-;;33719:144;;;;;;;;;;-1:-1:-1;33719:144:0;;;;;:::i;:::-;;:::i;30008:30::-;;;;;;;;;;;;;;;;21494:79;;;;;;;;;;-1:-1:-1;21559:6:0;;-1:-1:-1;;;;;21559:6:0;21494:79;;30123:31;;;;;;;;;;;;;;;;7893:104;;;;;;;;;;;;;:::i;34061:244::-;;;;;;;;;;-1:-1:-1;34061:244:0;;;;;:::i;:::-;;:::i;11977:269::-;;;;;;;;;;-1:-1:-1;11977:269:0;;;;;:::i;:::-;;:::i;9305:175::-;;;;;;;;;;-1:-1:-1;9305:175:0;;;;;:::i;:::-;;:::i;34509:196::-;;;;;;;;;;-1:-1:-1;34509:196:0;;;;;:::i;:::-;;:::i;30658:58::-;;;;;;;;;;-1:-1:-1;30658:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33871:182;;;;;;;;;;-1:-1:-1;33871:182:0;;;;;:::i;:::-;;:::i;29891:35::-;;;;;;;;;;;;;;;;33330:381;;;;;;;;;;-1:-1:-1;33330:381:0;;;;;:::i;:::-;;:::i;29974:27::-;;;;;;;;;;;;;;;;9543:151;;;;;;;;;;-1:-1:-1;9543:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9659:18:0;;;9632:7;9659:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9543:151;29820:33;;;;;;;;;;;;;;;;30045:30;;;;;;;;;;;;;;;;22440:244;;;;;;;;;;-1:-1:-1;22440:244:0;;;;;:::i;:::-;;:::i;30161:31::-;;;;;;;;;;;;;;;;29860:24;;;;;;;;;;;;;;;;7674:100;7728:13;7761:5;7754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7674:100;:::o;9841:169::-;9924:4;9941:39;390:10;9964:7;9973:6;9941:8;:39::i;:::-;-1:-1:-1;9998:4:0;9841:169;;;;;:::o;10492:355::-;10632:4;10649:36;10659:6;10667:9;10678:6;10649:9;:36::i;:::-;10696:121;10705:6;390:10;10727:89;10765:6;10727:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10727:19:0;;;;;;:11;:19;;;;;;;;390:10;10727:33;;;;;;;;;;:37;:89::i;:::-;10696:8;:121::i;:::-;-1:-1:-1;10835:4:0;10492:355;;;;;:::o;11256:218::-;390:10;11344:4;11393:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11393:34:0;;;;;;;;;;11344:4;;11361:83;;11384:7;;11393:50;;11432:10;11393:38;:50::i;22137:148::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;;;;;;;;;22228:6:::1;::::0;22207:40:::1;::::0;22244:1:::1;::::0;-1:-1:-1;;;;;22228:6:0::1;::::0;22207:40:::1;::::0;22244:1;;22207:40:::1;22258:6;:19:::0;;-1:-1:-1;;;;;;22258:19:0::1;::::0;;22137:148::o;33719:144::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33809:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;33809:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33719:144::o;7893:104::-;7949:13;7982:7;7975:14;;;;;:::i;34061:244::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;34168:13:::1;-1:-1:-1::0;;;;;34160:21:0::1;:4;-1:-1:-1::0;;;;;34160:21:0::1;::::0;34152:91:::1;;;::::0;-1:-1:-1;;;34152:91:0;;4689:2:1;34152:91:0::1;::::0;::::1;4671:21:1::0;4728:2;4708:18;;;4701:30;4767:34;4747:18;;;4740:62;4838:27;4818:18;;;4811:55;4883:19;;34152:91:0::1;4487:421:1::0;34152:91:0::1;34256:41;34285:4;34291:5;34256:28;:41::i;:::-;34061:244:::0;;:::o;11977:269::-;12070:4;12087:129;390:10;12110:7;12119:96;12158:15;12119:96;;;;;;;;;;;;;;;;;390:10;12119:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12119:34:0;;;;;;;;;;;;:38;:96::i;9305:175::-;9391:4;9408:42;390:10;9432:9;9443:6;9408:9;:42::i;34509:196::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;34646:9:::1;::::0;34603:53:::1;::::0;-1:-1:-1;;;;;34646:9:0;;::::1;::::0;34603:53;::::1;::::0;::::1;::::0;34646:9:::1;::::0;34603:53:::1;34667:9;:30:::0;;-1:-1:-1;;;;;;34667:30:0::1;-1:-1:-1::0;;;;;34667:30:0;;;::::1;::::0;;;::::1;::::0;;34509:196::o;33871:182::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33956:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;33956:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34011:34;;1163:41:1;;;34011:34:0::1;::::0;1136:18:1;34011:34:0::1;;;;;;;33871:182:::0;;:::o;33330:381::-;21706:6;;33411:4;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;33467:6:::1;33447:13;8882:12:::0;;;8794:108;33447:13:::1;:17;::::0;33463:1:::1;33447:17;:::i;:::-;:26;;;;:::i;:::-;33434:9;:39;;33426:105;;;::::0;-1:-1:-1;;;33426:105:0;;5642:2:1;33426:105:0::1;::::0;::::1;5624:21:1::0;5681:2;5661:18;;;5654:30;5720:34;5700:18;;;5693:62;-1:-1:-1;;;5771:18:1;;;5764:51;5832:19;;33426:105:0::1;5440:417:1::0;33426:105:0::1;33582:4;33562:13;8882:12:::0;;;8794:108;33562:13:::1;:17;::::0;33578:1:::1;33562:17;:::i;:::-;:24;;;;:::i;:::-;33549:9;:37;;33541:102;;;::::0;-1:-1:-1;;;33541:102:0;;6064:2:1;33541:102:0::1;::::0;::::1;6046:21:1::0;6103:2;6083:18;;;6076:30;6142:34;6122:18;;;6115:62;-1:-1:-1;;;6193:18:1;;;6186:50;6253:19;;33541:102:0::1;5862:416:1::0;33541:102:0::1;-1:-1:-1::0;33653:18:0::1;:30:::0;33700:4:::1;::::0;33330:381::o;22440:244::-;21706:6;;-1:-1:-1;;;;;21706:6:0;390:10;21706:22;21698:67;;;;-1:-1:-1;;;21698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22529:22:0;::::1;22521:73;;;::::0;-1:-1:-1;;;22521:73:0;;6485:2:1;22521:73:0::1;::::0;::::1;6467:21:1::0;6524:2;6504:18;;;6497:30;6563:34;6543:18;;;6536:62;-1:-1:-1;;;6614:18:1;;;6607:36;6660:19;;22521:73:0::1;6283:402:1::0;22521:73:0::1;22631:6;::::0;22610:38:::1;::::0;-1:-1:-1;;;;;22610:38:0;;::::1;::::0;22631:6:::1;::::0;22610:38:::1;::::0;22631:6:::1;::::0;22610:38:::1;22659:6;:17:::0;;-1:-1:-1;;;;;;22659:17:0::1;-1:-1:-1::0;;;;;22659:17:0;;;::::1;::::0;;;::::1;::::0;;22440:244::o;16541:181::-;16599:7;;16631:5;16635:1;16631;:5;:::i;:::-;16619:17;;16660:1;16655;:6;;16647:46;;;;-1:-1:-1;;;16647:46:0;;7022:2:1;16647:46:0;;;7004:21:1;7061:2;7041:18;;;7034:30;7100:29;7080:18;;;7073:57;7147:18;;16647:46:0;6820:351:1;16647:46:0;16713:1;16541:181;-1:-1:-1;;;16541:181:0:o;15163:380::-;-1:-1:-1;;;;;15299:19:0;;15291:68;;;;-1:-1:-1;;;15291:68:0;;7378:2:1;15291:68:0;;;7360:21:1;7417:2;7397:18;;;7390:30;7456:34;7436:18;;;7429:62;-1:-1:-1;;;7507:18:1;;;7500:34;7551:19;;15291:68:0;7176:400:1;15291:68:0;-1:-1:-1;;;;;15378:21:0;;15370:68;;;;-1:-1:-1;;;15370:68:0;;7783:2:1;15370:68:0;;;7765:21:1;7822:2;7802:18;;;7795:30;7861:34;7841:18;;;7834:62;-1:-1:-1;;;7912:18:1;;;7905:32;7954:19;;15370:68:0;7581:398:1;15370:68:0;-1:-1:-1;;;;;15451:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15503:32;;1848:25:1;;;15503:32:0;;1821:18:1;15503:32:0;;;;;;;;15163:380;;;:::o;34846:3094::-;-1:-1:-1;;;;;34978:18:0;;34970:68;;;;-1:-1:-1;;;34970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35057:16:0;;35049:64;;;;-1:-1:-1;;;35049:64:0;;;;;;;:::i;:::-;35138:6;35148:1;35138:11;35135:92;;35166:28;35182:4;35188:2;35192:1;35166:15;:28::i;:::-;34846:3094;;;:::o;35135:92::-;21559:6;;-1:-1:-1;;;;;35262:15:0;;;21559:6;;35262:15;;;;:49;;-1:-1:-1;21559:6:0;;-1:-1:-1;;;;;35298:13:0;;;21559:6;;35298:13;;35262:49;:86;;;;-1:-1:-1;;;;;;35332:16:0;;;;35262:86;:128;;;;-1:-1:-1;;;;;;35369:21:0;;35383:6;35369:21;;35262:128;:158;;;;-1:-1:-1;35412:8:0;;-1:-1:-1;;;35412:8:0;;;;35411:9;35262:158;35240:995;;;-1:-1:-1;;;;;35486:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;35522:35:0;;;;;;:31;:35;;;;;;;;35521:36;35486:71;35482:738;;;35604:20;;35594:6;:30;;35586:96;;;;-1:-1:-1;;;35586:96:0;;8996:2:1;35586:96:0;;;8978:21:1;9035:2;9015:18;;;9008:30;9074:34;9054:18;;;9047:62;-1:-1:-1;;;9125:18:1;;;9118:51;9186:19;;35586:96:0;8794:417:1;35586:96:0;35743:9;;-1:-1:-1;;;;;9066:18:0;;9039:7;9066:18;;;;;;;;;;;35717:22;;:6;:22;:::i;:::-;:35;;35709:67;;;;-1:-1:-1;;;35709:67:0;;9418:2:1;35709:67:0;;;9400:21:1;9457:2;9437:18;;;9430:30;-1:-1:-1;;;9476:18:1;;;9469:49;9535:18;;35709:67:0;9216:343:1;35709:67:0;35482:738;;;-1:-1:-1;;;;;35870:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;35904:37:0;;;;;;:31;:37;;;;;;;;35903:38;35870:71;35866:354;;;35988:20;;35978:6;:30;;35970:97;;;;-1:-1:-1;;;35970:97:0;;9766:2:1;35970:97:0;;;9748:21:1;9805:2;9785:18;;;9778:30;9844:34;9824:18;;;9817:62;-1:-1:-1;;;9895:18:1;;;9888:52;9957:19;;35970:97:0;9564:418:1;35866:354:0;36167:9;;-1:-1:-1;;;;;9066:18:0;;9039:7;9066:18;;;;;;;;;;;36141:22;;:6;:22;:::i;:::-;:35;;36133:67;;;;-1:-1:-1;;;36133:67:0;;9418:2:1;36133:67:0;;;9400:21:1;9457:2;9437:18;;;9430:30;-1:-1:-1;;;9476:18:1;;;9469:49;9535:18;;36133:67:0;9216:343:1;36133:67:0;36290:4;36241:28;9066:18;;;;;;;;;;;36356;;36332:42;;;;;;;36405:35;;-1:-1:-1;36429:11:0;;;;36405:35;:61;;;;-1:-1:-1;36458:8:0;;-1:-1:-1;;;36458:8:0;;;;36457:9;36405:61;:110;;;;-1:-1:-1;;;;;;36484:31:0;;;;;;:25;:31;;;;;;;;36483:32;36405:110;:153;;;;-1:-1:-1;;;;;;36533:25:0;;;;;;:19;:25;;;;;;;;36532:26;36405:153;:194;;;;-1:-1:-1;;;;;;36576:23:0;;;;;;:19;:23;;;;;;;;36575:24;36405:194;36387:338;;;36626:8;:15;;-1:-1:-1;;;;36626:15:0;-1:-1:-1;;;36626:15:0;;;36670:10;:8;:10::i;:::-;36697:8;:16;;-1:-1:-1;;;;36697:16:0;;;36387:338;36761:8;;-1:-1:-1;;;;;36870:25:0;;36745:12;36870:25;;;:19;:25;;;;;;36761:8;-1:-1:-1;;;36761:8:0;;;;;36760:9;;36870:25;;:52;;-1:-1:-1;;;;;;36899:23:0;;;;;;:19;:23;;;;;;;;36870:52;36867:99;;;-1:-1:-1;36949:5:0;36867:99;36986:12;37090:7;37087:800;;;-1:-1:-1;;;;;37117:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;37166:1;37150:13;;:17;37117:50;37113:614;;;37194:34;37224:3;37194:25;37205:13;;37194:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;37187:41;;37295:13;;37276:16;;37269:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37247:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;37375:13:0;;37356:16;;37349:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;37327:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;37113:614:0;;-1:-1:-1;37113:614:0;;-1:-1:-1;;;;;37449:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;37499:1;37484:12;;:16;37449:51;37446:281;;;37525:33;37554:3;37525:24;37536:12;;37525:6;:10;;:24;;;;:::i;:33::-;37518:40;;37621:12;;37603:15;;37596:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37574:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37699:12:0;;37681:15;;37674:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;37652:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37446:281:0;37747:8;;37744:95;;37779:44;37795:4;37809;37817;37779:15;:44::i;:::-;37861:14;37871:4;37861:14;;:::i;:::-;;;37087:800;37899:33;37915:4;37921:2;37925:6;37899:15;:33::i;:::-;34959:2981;;;;34846:3094;;;:::o;17444:192::-;17530:7;17566:12;17558:6;;;;17550:29;;;;-1:-1:-1;;;17550:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17590:9:0;17602:5;17606:1;17602;:5;:::i;:::-;17590:17;17444:192;-1:-1:-1;;;;;17444:192:0:o;34313:188::-;-1:-1:-1;;;;;34396:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;34396:39:0;;;;;;;;;;34453:40;;34396:39;;:31;34453:40;;;34313:188;;:::o;12736:573::-;-1:-1:-1;;;;;12876:20:0;;12868:70;;;;-1:-1:-1;;;12868:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12957:23:0;;12949:71;;;;-1:-1:-1;;;12949:71:0;;;;;;;:::i;:::-;13113;13135:6;13113:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13113:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13093:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13218:20;;;;;;;:32;;13243:6;13218:24;:32::i;:::-;-1:-1:-1;;;;;13195:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13266:35;1848:25:1;;;13195:20:0;;13266:35;;;;;;1821:18:1;13266:35:0;1702:177:1;39117:1446:0;39200:4;39156:23;9066:18;;;;;;;;;;;39156:50;;39217:25;39266:18;;39245;;:39;;;;:::i;:::-;39217:67;-1:-1:-1;39308:20:0;;;:46;;-1:-1:-1;39332:22:0;;39308:46;39305:60;;;39357:7;;39117:1446::o;39305:60::-;39434:23;39519:1;39499:17;39478:18;;39460:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;39434:86;-1:-1:-1;39531:26:0;39560:36;:15;39434:86;39560:19;:36::i;:::-;39531:65;-1:-1:-1;39645:21:0;39679:36;39531:65;39679:16;:36::i;:::-;39737:18;39758:44;:21;39784:17;39758:25;:44::i;:::-;39737:65;;39823:23;39849:57;39888:17;39849:34;39864:18;;39849:10;:14;;:34;;;;:::i;:57::-;39823:83;-1:-1:-1;39937:23:0;39963:28;39823:83;39963:10;:28;:::i;:::-;40043:1;40022:18;:22;;;40055:18;:22;;;40124:9;;39937:54;;-1:-1:-1;40043:1:0;-1:-1:-1;;;;;40124:9:0;40147:17;40163:1;40147:15;:17;:::i;:::-;40116:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40098:71;;;40201:1;40183:15;:19;:42;;;;;40224:1;40206:15;:19;40183:42;40180:210;;;40241:46;40254:15;40271;40241:12;:46::i;:::-;40359:18;;40307:71;;;10532:25:1;;;10588:2;10573:18;;10566:34;;;10616:18;;;10609:34;;;;40307:71:0;;;;;;10520:2:1;40307:71:0;;;40180:210;40465:90;;40473:42;;40529:21;;40465:90;;;;40529:21;40473:42;40465:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;39117:1446:0:o;17895:471::-;17953:7;18198:1;18203;18198:6;18194:47;;-1:-1:-1;18228:1:0;18221:8;;18194:47;18253:9;18265:5;18269:1;18265;:5;:::i;:::-;18253:17;-1:-1:-1;18298:1:0;18289:5;18293:1;18253:17;18289:5;:::i;:::-;:10;18281:56;;;;-1:-1:-1;;;18281:56:0;;10856:2:1;18281:56:0;;;10838:21:1;10895:2;10875:18;;;10868:30;10934:34;10914:18;;;10907:62;-1:-1:-1;;;10985:18:1;;;10978:31;11026:19;;18281:56:0;10654:397:1;18842:132:0;18900:7;18927:39;18931:1;18934;18927:39;;;;;;;;;;;;;;;;;:3;:39::i;17005:136::-;17063:7;17090:43;17094:1;17097;17090:43;;;;;;;;;;;;;;;;;:3;:43::i;37948:601::-;38100:16;;;38114:1;38100:16;;;;;;;;38076:21;;38100:16;;;;;;;;;;-1:-1:-1;38100:16:0;38076:40;;38145:4;38127;38132:1;38127:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;38127:23:0;;;-1:-1:-1;;;;;38127:23:0;;;;;38171:15;-1:-1:-1;;;;;38171:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38161:4;38166:1;38161:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;38161:32:0;;;-1:-1:-1;;;;;38161:32:0;;;;;38206:62;38223:4;38238:15;38256:11;38206:8;:62::i;:::-;38307:224;;-1:-1:-1;;;38307:224:0;;-1:-1:-1;;;;;38307:15:0;:66;;;;:224;;38388:11;;38414:1;;38458:4;;38485;;38505:15;;38307:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38003:546;37948:601;:::o;38561:548::-;38709:62;38726:4;38741:15;38759:11;38709:8;:62::i;:::-;38814:287;;-1:-1:-1;;;38814:287:0;;38886:4;38814:287;;;12902:34:1;12952:18;;;12945:34;;;38932:1:0;12995:18:1;;;12988:34;;;13038:18;;;13031:34;39018:42:0;13081:19:1;;;13074:44;39075:15:0;13134:19:1;;;13127:35;38814:15:0;-1:-1:-1;;;;;38814:31:0;;;;38853:9;;12836:19:1;;38814:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38561:548;;:::o;19470:278::-;19556:7;19591:12;19584:5;19576:28;;;;-1:-1:-1;;;19576:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19615:9:0;19627:5;19631:1;19627;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:180::-;3222:6;3275:2;3263:9;3254:7;3250:23;3246:32;3243:52;;;3291:1;3288;3281:12;3243:52;-1:-1:-1;3314:23:1;;3163:180;-1:-1:-1;3163:180:1:o;3348:388::-;3416:6;3424;3477:2;3465:9;3456:7;3452:23;3448:32;3445:52;;;3493:1;3490;3483:12;3445:52;3532:9;3519:23;3551:31;3576:5;3551:31;:::i;:::-;3601:5;-1:-1:-1;3658:2:1;3643:18;;3630:32;3671:33;3630:32;3671:33;:::i;3741:380::-;3820:1;3816:12;;;;3863;;;3884:61;;3938:4;3930:6;3926:17;3916:27;;3884:61;3991:2;3983:6;3980:14;3960:18;3957:38;3954:161;;4037:10;4032:3;4028:20;4025:1;4018:31;4072:4;4069:1;4062:15;4100:4;4097:1;4090:15;3954:161;;3741:380;;;:::o;4126:356::-;4328:2;4310:21;;;4347:18;;;4340:30;4406:34;4401:2;4386:18;;4379:62;4473:2;4458:18;;4126:356::o;4913:127::-;4974:10;4969:3;4965:20;4962:1;4955:31;5005:4;5002:1;4995:15;5029:4;5026:1;5019:15;5045:168;5118:9;;;5149;;5166:15;;;5160:22;;5146:37;5136:71;;5187:18;;:::i;5218:217::-;5258:1;5284;5274:132;;5328:10;5323:3;5319:20;5316:1;5309:31;5363:4;5360:1;5353:15;5391:4;5388:1;5381:15;5274:132;-1:-1:-1;5420:9:1;;5218:217::o;6690:125::-;6755:9;;;6776:10;;;6773:36;;;6789:18;;:::i;7984:401::-;8186:2;8168:21;;;8225:2;8205:18;;;8198:30;8264:34;8259:2;8244:18;;8237:62;-1:-1:-1;;;8330:2:1;8315:18;;8308:35;8375:3;8360:19;;7984:401::o;8390:399::-;8592:2;8574:21;;;8631:2;8611:18;;;8604:30;8670:34;8665:2;8650:18;;8643:62;-1:-1:-1;;;8736:2:1;8721:18;;8714:33;8779:3;8764:19;;8390:399::o;9987:128::-;10054:9;;;10075:11;;;10072:37;;;10089:18;;:::i;11188:127::-;11249:10;11244:3;11240:20;11237:1;11230:31;11280:4;11277:1;11270:15;11304:4;11301:1;11294:15;11320:251;11390:6;11443:2;11431:9;11422:7;11418:23;11414:32;11411:52;;;11459:1;11456;11449:12;11411:52;11491:9;11485:16;11510:31;11535:5;11510:31;:::i;11576:980::-;11838:4;11886:3;11875:9;11871:19;11917:6;11906:9;11899:25;11943:2;11981:6;11976:2;11965:9;11961:18;11954:34;12024:3;12019:2;12008:9;12004:18;11997:31;12048:6;12083;12077:13;12114:6;12106;12099:22;12152:3;12141:9;12137:19;12130:26;;12191:2;12183:6;12179:15;12165:29;;12212:1;12222:195;12236:6;12233:1;12230:13;12222:195;;;12301:13;;-1:-1:-1;;;;;12297:39:1;12285:52;;12392:15;;;;12357:12;;;;12333:1;12251:9;12222:195;;;-1:-1:-1;;;;;;;12473:32:1;;;;12468:2;12453:18;;12446:60;-1:-1:-1;;;12537:3:1;12522:19;12515:35;12434:3;11576:980;-1:-1:-1;;;11576:980:1:o;13173:306::-;13261:6;13269;13277;13330:2;13318:9;13309:7;13305:23;13301:32;13298:52;;;13346:1;13343;13336:12;13298:52;13375:9;13369:16;13359:26;;13425:2;13414:9;13410:18;13404:25;13394:35;;13469:2;13458:9;13454:18;13448:25;13438:35;;13173:306;;;;;:::o

Swarm Source

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