ETH Price: $3,717.89 (+20.15%)
Gas: 9 Gwei

Token

BLUE (BLUE)
 

Overview

Max Total Supply

100,000,000,000 BLUE

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Binance 17
Balance
539,348,530.7402 BLUE

Value
$0.00
0x56eddb7aa87536c09ccc2793473599fd21a8b17f
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:
BLUE

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-03
*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity ^0.8.9;

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 BLUE 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 marketingWallet;
    address public mentalHeatlhCharityWallet;
    address public t2eWallet;
    
    uint8 private _decimals;

    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public rescueSwap = false;
            
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyMentalHeatlhCharityFee;
    uint256 public buyT2EFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellMentalHeatlhCharityFee;
    uint256 public sellT2EFee;

    uint256 public transferTotalFees;
    uint256 public transferMarketingFee;
    uint256 public transferLiquidityFee;
    uint256 public transferMentalHeatlhCharityFee;
    uint256 public transferT2EFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForMentalHeatlhCharity;
    uint256 public tokensForT2E;
    
    /******************/

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

    // 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 mentalHeatlhCharityWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event t2eWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    event T2ETriggered(uint256 amount);
    
    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() ERC20("BLUE", "BLUE") {

        address _owner = _msgSender();

        _decimals = 18;

        uint256 totalSupply = 100000000000 * (10**_decimals);
        
        buyMarketingFee = 2;
        buyLiquidityFee = 0;
        buyMentalHeatlhCharityFee = 1;
        buyT2EFee = 2;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyMentalHeatlhCharityFee + buyT2EFee;
        
        sellMarketingFee = 2;
        sellLiquidityFee = 0;
        sellMentalHeatlhCharityFee = 1;
        sellT2EFee = 2;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellMentalHeatlhCharityFee + sellT2EFee;

        transferMarketingFee = 0;
        transferLiquidityFee = 0;
        transferMentalHeatlhCharityFee = 0;
        transferT2EFee = 0;
        transferTotalFees = transferMarketingFee + transferLiquidityFee + transferMentalHeatlhCharityFee + transferT2EFee;

        marketingWallet = msg.sender; // set as marketing wallet
    	mentalHeatlhCharityWallet = msg.sender; // set as mentalHeatlhCharity wallet
    	t2eWallet = msg.sender; // set as t2eWallet


        address currentRouter;
        
        //Adding Variables for all the routers for easier deployment for our customers.
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM
        } else if (block.chainid == 3) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Ropsten
        } else if (block.chainid == 1 || block.chainid == 4) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet
        } else {
            revert();
        }

        //End of Router Variables.

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);

        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
                
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(_owner, totalSupply);
        transferOwnership(_owner);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
    
    function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(!tradingActive, "Trading is already active, cannot airdrop after launch.");
        require(airdropWallets.length == amounts.length, "arrays must be the same length");
        require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            _transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function decimals() public view override returns (uint8) {
        return _decimals;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    // only use this to disable swapback and send tax in form of tokens
    function updateRescueSwap(bool enabled) external onlyOwner(){
        rescueSwap = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _mentalHeatlhCharityFee, uint256 _t2eFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyMentalHeatlhCharityFee = _mentalHeatlhCharityFee;
        buyT2EFee = _t2eFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyMentalHeatlhCharityFee + buyT2EFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _mentalHeatlhCharityFee, uint256 _t2eFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellMentalHeatlhCharityFee = _mentalHeatlhCharityFee;
        sellT2EFee = _t2eFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellMentalHeatlhCharityFee + sellT2EFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateTransferFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _mentalHeatlhCharityFee, uint256 _t2eFee) external onlyOwner {
        transferMarketingFee = _marketingFee;
        transferLiquidityFee = _liquidityFee;
        transferMentalHeatlhCharityFee = _mentalHeatlhCharityFee;
        transferT2EFee = _t2eFee;
        transferTotalFees = transferMarketingFee + transferLiquidityFee + transferMentalHeatlhCharityFee + transferT2EFee;
        require(transferTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value) external 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, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
    
    function updateMentalHeatlhCharityWallet(address newWallet) external onlyOwner {
        emit mentalHeatlhCharityWalletUpdated(newWallet, mentalHeatlhCharityWallet);
        mentalHeatlhCharityWallet = newWallet;
    }
    
    function updateT2EWallet(address newWallet) external onlyOwner {
        emit t2eWalletUpdated(newWallet, t2eWallet);
        t2eWallet = newWallet;
    }
    

    function isExcludedFromFees(address account) external 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(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
                
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance > 0;

        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]){
                if (sellTotalFees > 0){
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForMentalHeatlhCharity += fees * sellMentalHeatlhCharityFee / sellTotalFees;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                    tokensForT2E += fees * sellT2EFee / sellTotalFees;
                }
            }
            // on buy
            else if(automatedMarketMakerPairs[from]) {
                if (buyTotalFees > 0){
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForMentalHeatlhCharity += fees * buyMentalHeatlhCharityFee / buyTotalFees;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                    tokensForT2E += fees * buyT2EFee / buyTotalFees;
                }
            } else {
                if (transferTotalFees > 0){
                    fees = amount.mul(transferTotalFees).div(100);
                    tokensForLiquidity += fees * transferLiquidityFee / transferTotalFees;
                    tokensForMentalHeatlhCharity += fees * transferMentalHeatlhCharityFee / transferTotalFees;
                    tokensForMarketing += fees * transferMarketingFee / transferTotalFees;
                    tokensForT2E += fees * transferT2EFee / transferTotalFees;
                }
            }
            
            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
        try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        ) {} catch {}
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function resetTaxAmount() public onlyOwner {
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForMentalHeatlhCharity = 0;
        tokensForT2E = 0;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (rescueSwap){
            if (contractBalance > 0){
                super._transfer(address(this), marketingWallet, contractBalance);
            }
            return;
        }

        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForMentalHeatlhCharity + tokensForT2E;
        bool success;
        
        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 ethForMentalHeatlhCharity = ethBalance.mul(tokensForMentalHeatlhCharity).div(totalTokensToSwap);
        uint256 ethForT2E = ethBalance.mul(tokensForT2E).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForMentalHeatlhCharity - ethForT2E;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForMentalHeatlhCharity = 0;
        tokensForT2E = 0;
        
        (success,) = address(mentalHeatlhCharityWallet).call{value: ethForMentalHeatlhCharity}("");
        (success,) = address(t2eWallet).call{value: ethForT2E}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (success,) = address(marketingWallet).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":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"T2ETriggered","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mentalHeatlhCharityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"t2eWalletUpdated","type":"event"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"buyMentalHeatlhCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyT2EFee","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":[],"name":"enableTrading","outputs":[],"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":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mentalHeatlhCharityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"rescueSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetTaxAmount","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":"sellMentalHeatlhCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellT2EFee","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2eWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMentalHeatlhCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForT2E","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferMentalHeatlhCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferT2EFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_mentalHeatlhCharityFee","type":"uint256"},{"internalType":"uint256","name":"_t2eFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMentalHeatlhCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateRescueSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_mentalHeatlhCharityFee","type":"uint256"},{"internalType":"uint256","name":"_t2eFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateT2EWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_mentalHeatlhCharityFee","type":"uint256"},{"internalType":"uint256","name":"_t2eFee","type":"uint256"}],"name":"updateTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526008805462ffffff60a81b191690553480156200002057600080fd5b50604080518082018252600480825263424c554560e01b602080840182815285518087019096529285528401528151919291620000609160039162000877565b5080516200007690600490602084019062000877565b50505060006200008b6200050c60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000906000805160206200363a833981519152908290a3506008805460ff60a01b1916600960a11b17908190553390600090620000fa9060ff600160a01b90910416600a62000a30565b6200010b9064174876e80062000a48565b6002600a8190556000600b8190556001600c819055600d83905592935090919062000137908362000a6a565b62000143919062000a6a565b6200014f919062000a6a565b6009556002600f819055600060108190556001601181905560128390559062000179908362000a6a565b62000185919062000a6a565b62000191919062000a6a565b600e556000601481905560158190556016819055601781905580620001b7818062000a6a565b620001c3919062000a6a565b620001cf919062000a6a565b60135560068054336001600160a01b0319918216811790925560078054821683179055600880549091169091179055600046603814156200022657507310ed43c718714eb63d5aa57b78b54704e256024e6200031c565b46606114156200024c575073d99d1c33f9fc3444f8101754abc46c52416550d16200031c565b4661a86a14156200027357507360ae616a2155ee3d9a68541ba4544862310933d46200031c565b466089141562000299575073a5e0829caced8ffdd4de3c43696c57f7d7a678ff6200031c565b4660fa1415620002bf575073f491e7b69e4244ad4002bc14e878a34207e38c296200031c565b4660031415620002e55750737a250d5630b4cf539739df2c5dacb4c659f2488d6200031c565b4660011480620002f55750466004145b15620003175750737a250d5630b4cf539739df2c5dacb4c659f2488d6200031c565b600080fd5b6001600160a01b03811660808190526040805163c45a015560e01b8152905183929163c45a0155916004808301926020929190829003018186803b1580156200036457600080fd5b505afa15801562000379573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039f919062000a85565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003e857600080fd5b505afa158015620003fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000423919062000a85565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200046c57600080fd5b505af115801562000481573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a7919062000a85565b6001600160a01b031660a0819052620004c290600162000510565b620004cf84600162000564565b620004dc30600162000564565b620004eb61dead600162000564565b620004f7848462000612565b62000502846200070e565b5050505062000aed565b3390565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005b35760405162461bcd60e51b815260206004820181905260248201526000805160206200361a83398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200066a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005aa565b62000686816002546200080b60201b6200150f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620006b99183906200150f6200080b821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620007595760405162461bcd60e51b815260206004820181905260248201526000805160206200361a8339815191526044820152606401620005aa565b6001600160a01b038116620007c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620005aa565b6005546040516001600160a01b038084169216906000805160206200363a83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806200081a838562000a6a565b9050838110156200086e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005aa565b90505b92915050565b828054620008859062000ab0565b90600052602060002090601f016020900481019282620008a95760008555620008f4565b82601f10620008c457805160ff1916838001178555620008f4565b82800160010185558215620008f4579182015b82811115620008f4578251825591602001919060010190620008d7565b506200090292915062000906565b5090565b5b8082111562000902576000815560010162000907565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009745781600019048211156200095857620009586200091d565b808516156200096657918102915b93841c939080029062000938565b509250929050565b6000826200098d5750600162000871565b816200099c5750600062000871565b8160018114620009b55760028114620009c057620009e0565b600191505062000871565b60ff841115620009d457620009d46200091d565b50506001821b62000871565b5060208310610133831016604e8410600b841016171562000a05575081810a62000871565b62000a11838362000933565b806000190482111562000a285762000a286200091d565b029392505050565b600062000a4160ff8416836200097c565b9392505050565b600081600019048311821515161562000a655762000a656200091d565b500290565b6000821982111562000a805762000a806200091d565b500190565b60006020828403121562000a9857600080fd5b81516001600160a01b03811681146200086e57600080fd5b600181811c9082168062000ac557607f821691505b6020821081141562000ae757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612add62000b3d6000396000818161058401526110fe0152600081816103f3015281816121a30152818161226b015281816122a70152818161231e015261237b0152612add6000f3fe60806040526004361061037a5760003560e01c80637dd72e8d116101d1578063aba6a54e11610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a1e578063f1fe71d814610a34578063f2fde38b14610a4a578063f637434214610a6a57600080fd5b8063dd62ed3e1461098c578063e3c4818d146109d2578063e513e7cc146109e8578063e7ad9fcd146109fe57600080fd5b8063bbc0c742116100dc578063bbc0c7421461091f578063bfe32c4814610940578063c024666814610956578063d85ba0631461097657600080fd5b8063aba6a54e146108b9578063b62496f5146108d9578063b7c3b2401461090957600080fd5b8063955b225b1161016f5780639bb19a32116101495780639bb19a3214610843578063a457c2d714610859578063a9059cbb14610879578063aacebbe31461089957600080fd5b8063955b225b146107ee57806395d89b411461080e5780639a7a23d61461082357600080fd5b80638da5cb5b116101ab5780638da5cb5b1461078457806391774133146107a257806392136913146107b8578063924de9b7146107ce57600080fd5b80637dd72e8d1461074457806385c5b319146107595780638a8c523c1461076f57600080fd5b806349bd5a5e116102ab57806370a082311161024957806375f0a8741161022357806375f0a874146106ce57806377b45d82146106ee5780637ae908021461070e5780637bce5a041461072e57600080fd5b806370a0823114610663578063715018a614610699578063744b6fb6146106ae57600080fd5b80634fbee193116102855780634fbee193146105dd57806366739170146106165780636a486a8e1461062c5780636ddd17131461064257600080fd5b806349bd5a5e146105725780634a0c71ba146105a65780634c24c51d146105bc57600080fd5b806323b872dd116103185780632e6ed7ef116102f25780632e6ed7ef146104f0578063313ce56714610510578063395093511461053c57806347f85b1d1461055c57600080fd5b806323b872dd14610498578063270b5680146104b857806327c8f835146104da57600080fd5b806318160ddd1161035457806318160ddd1461042d5780631a8145bb1461044c5780631f3fed8f146104625780632307b4411461047857600080fd5b806306fdde0314610386578063095ea7b3146103b15780631694505e146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610a80565b6040516103a89190612436565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc3660046124a0565b610b12565b60405190151581526020016103a8565b3480156103ed57600080fd5b506104157f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103a8565b34801561043957600080fd5b506002545b6040519081526020016103a8565b34801561045857600080fd5b5061043e60195481565b34801561046e57600080fd5b5061043e60185481565b34801561048457600080fd5b506103d16104933660046125a2565b610b29565b3480156104a457600080fd5b506103d16104b3366004612664565b610d12565b3480156104c457600080fd5b506104d86104d33660046126a5565b610d71565b005b3480156104e657600080fd5b5061041561dead81565b3480156104fc57600080fd5b506104d861050b3660046126c2565b610df8565b34801561051c57600080fd5b50600854600160a01b900460ff1660405160ff90911681526020016103a8565b34801561054857600080fd5b506103d16105573660046124a0565b610e81565b34801561056857600080fd5b5061043e600c5481565b34801561057e57600080fd5b506104157f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b257600080fd5b5061043e601a5481565b3480156105c857600080fd5b506008546103d190600160b81b900460ff1681565b3480156105e957600080fd5b506103d16105f83660046126a5565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561062257600080fd5b5061043e60125481565b34801561063857600080fd5b5061043e600e5481565b34801561064e57600080fd5b506008546103d190600160b01b900460ff1681565b34801561066f57600080fd5b5061043e61067e3660046126a5565b6001600160a01b031660009081526020819052604090205490565b3480156106a557600080fd5b506104d8610eb7565b3480156106ba57600080fd5b506104d86106c93660046126a5565b610f2b565b3480156106da57600080fd5b50600654610415906001600160a01b031681565b3480156106fa57600080fd5b50600854610415906001600160a01b031681565b34801561071a57600080fd5b50600754610415906001600160a01b031681565b34801561073a57600080fd5b5061043e600a5481565b34801561075057600080fd5b506104d8610fb2565b34801561076557600080fd5b5061043e60145481565b34801561077b57600080fd5b506104d8610ff2565b34801561079057600080fd5b506005546001600160a01b0316610415565b3480156107ae57600080fd5b5061043e60175481565b3480156107c457600080fd5b5061043e600f5481565b3480156107da57600080fd5b506104d86107e9366004612709565b611033565b3480156107fa57600080fd5b506104d8610809366004612709565b61107b565b34801561081a57600080fd5b5061039b6110c3565b34801561082f57600080fd5b506104d861083e366004612724565b6110d2565b34801561084f57600080fd5b5061043e60155481565b34801561086557600080fd5b506103d16108743660046124a0565b6111b2565b34801561088557600080fd5b506103d16108943660046124a0565b611201565b3480156108a557600080fd5b506104d86108b43660046126a5565b61120e565b3480156108c557600080fd5b506104d86108d43660046126c2565b611295565b3480156108e557600080fd5b506103d16108f43660046126a5565b601d6020526000908152604090205460ff1681565b34801561091557600080fd5b5061043e60115481565b34801561092b57600080fd5b506008546103d190600160a81b900460ff1681565b34801561094c57600080fd5b5061043e601b5481565b34801561096257600080fd5b506104d8610971366004612724565b611318565b34801561098257600080fd5b5061043e60095481565b34801561099857600080fd5b5061043e6109a7366004612759565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109de57600080fd5b5061043e60135481565b3480156109f457600080fd5b5061043e60165481565b348015610a0a57600080fd5b506104d8610a193660046126c2565b6113a1565b348015610a2a57600080fd5b5061043e600b5481565b348015610a4057600080fd5b5061043e600d5481565b348015610a5657600080fd5b506104d8610a653660046126a5565b611424565b348015610a7657600080fd5b5061043e60105481565b606060038054610a8f90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054610abb90612792565b8015610b085780601f10610add57610100808354040283529160200191610b08565b820191906000526020600020905b815481529060010190602001808311610aeb57829003601f168201915b5050505050905090565b6000610b1f338484611575565b5060015b92915050565b6005546000906001600160a01b03163314610b5f5760405162461bcd60e51b8152600401610b56906127cd565b60405180910390fd5b600854600160a81b900460ff1615610bdf5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610b56565b8151835114610c305760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b56565b60c8835110610ca05760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610b56565b60005b8351811015610d08576000848281518110610cc057610cc0612802565b602002602001015190506000848381518110610cde57610cde612802565b60200260200101519050610cf333838361169a565b50508080610d009061282e565b915050610ca3565b5060019392505050565b6000610d1f84848461169a565b610d088433610d6c85604051806060016040528060288152602001612a5b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611bdd565b611575565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610b56906127cd565b6007546040516001600160a01b03918216918316907fe37897cd31d25ca135d67cd07d4ab26bb69563d4ffd97e3a01f7884da8332ddf90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e225760405162461bcd60e51b8152600401610b56906127cd565b600a849055600b839055600c829055600d8190558082610e428587612849565b610e4c9190612849565b610e569190612849565b6009819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b1f918590610d6c908661150f565b6005546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610b56906127cd565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610f555760405162461bcd60e51b8152600401610b56906127cd565b6008546040516001600160a01b03918216918316907f7cf22936f281e8ea191132e1a056229337aa391120a648f3038210b996a3a8eb90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610b56906127cd565b600060198190556018819055601a819055601b55565b6005546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610b56906127cd565b6008805461ffff60a81b191661010160a81b179055565b6005546001600160a01b0316331461105d5760405162461bcd60e51b8152600401610b56906127cd565b60088054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610b56906127cd565b60088054911515600160b81b0260ff60b81b19909216919091179055565b606060048054610a8f90612792565b6005546001600160a01b031633146110fc5760405162461bcd60e51b8152600401610b56906127cd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156111a45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b56565b6111ae8282611c17565b5050565b6000610b1f3384610d6c85604051806060016040528060258152602001612a83602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611bdd565b6000610b1f33848461169a565b6005546001600160a01b031633146112385760405162461bcd60e51b8152600401610b56906127cd565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610b56906127cd565b601484905560158390556016829055601781905580826112df8587612849565b6112e99190612849565b6112f39190612849565b6013819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b6005546001600160a01b031633146113425760405162461bcd60e51b8152600401610b56906127cd565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113cb5760405162461bcd60e51b8152600401610b56906127cd565b600f84905560108390556011829055601281905580826113eb8587612849565b6113f59190612849565b6113ff9190612849565b600e819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610b56906127cd565b6001600160a01b0381166114b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b56565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061151c8385612849565b90508381101561156e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b56565b9392505050565b6001600160a01b0383166115d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b56565b6001600160a01b0382166116385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b56565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116c05760405162461bcd60e51b8152600401610b5690612898565b6001600160a01b0382166116e65760405162461bcd60e51b8152600401610b56906128dd565b600854600160a81b900460ff1661177b576001600160a01b0383166000908152601c602052604090205460ff168061173657506001600160a01b0382166000908152601c602052604090205460ff165b61177b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b56565b806117915761178c83836000611c6b565b505050565b30600090815260208190526040902054801580159081906117bb5750600854600160b01b900460ff165b80156117d15750600554600160a01b900460ff16155b80156117f657506001600160a01b0385166000908152601d602052604090205460ff16155b801561181b57506001600160a01b0385166000908152601c602052604090205460ff16155b801561184057506001600160a01b0384166000908152601c602052604090205460ff16155b1561186e576005805460ff60a01b1916600160a01b179055611860611d74565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b9092048216159116806118bc57506001600160a01b0385166000908152601c602052604090205460ff165b156118c5575060005b60008115611bc9576001600160a01b0386166000908152601d602052604090205460ff16156119df57600e54156119da576119166064611910600e548861204990919063ffffffff16565b906120c8565b9050600e54601054826119299190612920565b611933919061293f565b601960008282546119449190612849565b9091555050600e546011546119599083612920565b611963919061293f565b601a60008282546119749190612849565b9091555050600e54600f546119899083612920565b611993919061293f565b601860008282546119a49190612849565b9091555050600e546012546119b99083612920565b6119c3919061293f565b601b60008282546119d49190612849565b90915550505b611bab565b6001600160a01b0387166000908152601d602052604090205460ff1615611ac557600954156119da57611a2260646119106009548861204990919063ffffffff16565b9050600954600b5482611a359190612920565b611a3f919061293f565b60196000828254611a509190612849565b9091555050600954600c54611a659083612920565b611a6f919061293f565b601a6000828254611a809190612849565b9091555050600954600a54611a959083612920565b611a9f919061293f565b60186000828254611ab09190612849565b9091555050600954600d546119b99083612920565b60135415611bab57611ae760646119106013548861204990919063ffffffff16565b905060135460155482611afa9190612920565b611b04919061293f565b60196000828254611b159190612849565b9091555050601354601654611b2a9083612920565b611b34919061293f565b601a6000828254611b459190612849565b9091555050601354601454611b5a9083612920565b611b64919061293f565b60186000828254611b759190612849565b9091555050601354601754611b8a9083612920565b611b94919061293f565b601b6000828254611ba59190612849565b90915550505b8015611bbc57611bbc873083611c6b565b611bc68186612961565b94505b611bd4878787611c6b565b50505050505050565b60008184841115611c015760405162461bcd60e51b8152600401610b569190612436565b506000611c0e8486612961565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c915760405162461bcd60e51b8152600401610b5690612898565b6001600160a01b038216611cb75760405162461bcd60e51b8152600401610b56906128dd565b611cf481604051806060016040528060268152602001612a35602691396001600160a01b0386166000908152602081905260409020549190611bdd565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d23908261150f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161168d565b30600090815260208190526040902054600854600160b81b900460ff1615611db7578015611db457600654611db49030906001600160a01b031683611c6b565b50565b6000601b54601a54601854601954611dcf9190612849565b611dd99190612849565b611de39190612849565b90506000821580611df2575081155b15611dfc57505050565b600060028360195486611e0f9190612920565b611e19919061293f565b611e23919061293f565b90506000611e31858361210a565b905047611e3d8261214c565b6000611e49478361210a565b90506000611e66876119106018548561204990919063ffffffff16565b90506000611e8388611910601a548661204990919063ffffffff16565b90506000611ea089611910601b548761204990919063ffffffff16565b905060008183611eb08688612961565b611eba9190612961565b611ec49190612961565b600060198190556018819055601a819055601b8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b50909950508715801590611f945750600081115b15611fe757611fa38882612318565b601954604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612034576040519150601f19603f3d011682016040523d82523d6000602084013e612039565b606091505b5050505050505050505050505050565b60008261205857506000610b23565b60006120648385612920565b905082612071858361293f565b1461156e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b56565b600061156e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612408565b600061156e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bdd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061218157612181612802565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156121fa57600080fd5b505afa15801561220e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122329190612978565b8160018151811061224557612245612802565b60200260200101906001600160a01b031690816001600160a01b031681525050612290307f000000000000000000000000000000000000000000000000000000000000000084611575565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122e5908590600090869030904290600401612995565b600060405180830381600087803b1580156122ff57600080fd5b505af1925050508015612310575060015b6111ae575050565b612343307f000000000000000000000000000000000000000000000000000000000000000084611575565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156123c857600080fd5b505af1935050505080156123f9575060408051601f3d908101601f191682019092526123f691810190612a06565b60015b612401575050565b5050505050565b600081836124295760405162461bcd60e51b8152600401610b569190612436565b506000611c0e848661293f565b600060208083528351808285015260005b8181101561246357858101830151858201604001528201612447565b81811115612475576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611db457600080fd5b600080604083850312156124b357600080fd5b82356124be8161248b565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561250b5761250b6124cc565b604052919050565b600067ffffffffffffffff82111561252d5761252d6124cc565b5060051b60200190565b600082601f83011261254857600080fd5b8135602061255d61255883612513565b6124e2565b82815260059290921b8401810191818101908684111561257c57600080fd5b8286015b848110156125975780358352918301918301612580565b509695505050505050565b600080604083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b813560206125f161255883612513565b82815260059290921b8401810191818101908984111561261057600080fd5b948201945b838610156126375785356126288161248b565b82529482019490820190612615565b9650508601359250508082111561264d57600080fd5b5061265a85828601612537565b9150509250929050565b60008060006060848603121561267957600080fd5b83356126848161248b565b925060208401356126948161248b565b929592945050506040919091013590565b6000602082840312156126b757600080fd5b813561156e8161248b565b600080600080608085870312156126d857600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461270457600080fd5b919050565b60006020828403121561271b57600080fd5b61156e826126f4565b6000806040838503121561273757600080fd5b82356127428161248b565b9150612750602084016126f4565b90509250929050565b6000806040838503121561276c57600080fd5b82356127778161248b565b915060208301356127878161248b565b809150509250929050565b600181811c908216806127a657607f821691505b602082108114156127c757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561284257612842612818565b5060010190565b6000821982111561285c5761285c612818565b500190565b6020808252601d908201527f4d757374206b656570206665657320617420313025206f72206c657373000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561293a5761293a612818565b500290565b60008261295c57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561297357612973612818565b500390565b60006020828403121561298a57600080fd5b815161156e8161248b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129e55784516001600160a01b0316835293830193918301916001016129c0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a1b57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f4dd31944aa70acf467d498725fb3111d5bc979a3749b7eb045154a5c375184364736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80637dd72e8d116101d1578063aba6a54e11610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a1e578063f1fe71d814610a34578063f2fde38b14610a4a578063f637434214610a6a57600080fd5b8063dd62ed3e1461098c578063e3c4818d146109d2578063e513e7cc146109e8578063e7ad9fcd146109fe57600080fd5b8063bbc0c742116100dc578063bbc0c7421461091f578063bfe32c4814610940578063c024666814610956578063d85ba0631461097657600080fd5b8063aba6a54e146108b9578063b62496f5146108d9578063b7c3b2401461090957600080fd5b8063955b225b1161016f5780639bb19a32116101495780639bb19a3214610843578063a457c2d714610859578063a9059cbb14610879578063aacebbe31461089957600080fd5b8063955b225b146107ee57806395d89b411461080e5780639a7a23d61461082357600080fd5b80638da5cb5b116101ab5780638da5cb5b1461078457806391774133146107a257806392136913146107b8578063924de9b7146107ce57600080fd5b80637dd72e8d1461074457806385c5b319146107595780638a8c523c1461076f57600080fd5b806349bd5a5e116102ab57806370a082311161024957806375f0a8741161022357806375f0a874146106ce57806377b45d82146106ee5780637ae908021461070e5780637bce5a041461072e57600080fd5b806370a0823114610663578063715018a614610699578063744b6fb6146106ae57600080fd5b80634fbee193116102855780634fbee193146105dd57806366739170146106165780636a486a8e1461062c5780636ddd17131461064257600080fd5b806349bd5a5e146105725780634a0c71ba146105a65780634c24c51d146105bc57600080fd5b806323b872dd116103185780632e6ed7ef116102f25780632e6ed7ef146104f0578063313ce56714610510578063395093511461053c57806347f85b1d1461055c57600080fd5b806323b872dd14610498578063270b5680146104b857806327c8f835146104da57600080fd5b806318160ddd1161035457806318160ddd1461042d5780631a8145bb1461044c5780631f3fed8f146104625780632307b4411461047857600080fd5b806306fdde0314610386578063095ea7b3146103b15780631694505e146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610a80565b6040516103a89190612436565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc3660046124a0565b610b12565b60405190151581526020016103a8565b3480156103ed57600080fd5b506104157f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103a8565b34801561043957600080fd5b506002545b6040519081526020016103a8565b34801561045857600080fd5b5061043e60195481565b34801561046e57600080fd5b5061043e60185481565b34801561048457600080fd5b506103d16104933660046125a2565b610b29565b3480156104a457600080fd5b506103d16104b3366004612664565b610d12565b3480156104c457600080fd5b506104d86104d33660046126a5565b610d71565b005b3480156104e657600080fd5b5061041561dead81565b3480156104fc57600080fd5b506104d861050b3660046126c2565b610df8565b34801561051c57600080fd5b50600854600160a01b900460ff1660405160ff90911681526020016103a8565b34801561054857600080fd5b506103d16105573660046124a0565b610e81565b34801561056857600080fd5b5061043e600c5481565b34801561057e57600080fd5b506104157f00000000000000000000000092974a2efb701999d4884814b40ad034b94b7ba481565b3480156105b257600080fd5b5061043e601a5481565b3480156105c857600080fd5b506008546103d190600160b81b900460ff1681565b3480156105e957600080fd5b506103d16105f83660046126a5565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561062257600080fd5b5061043e60125481565b34801561063857600080fd5b5061043e600e5481565b34801561064e57600080fd5b506008546103d190600160b01b900460ff1681565b34801561066f57600080fd5b5061043e61067e3660046126a5565b6001600160a01b031660009081526020819052604090205490565b3480156106a557600080fd5b506104d8610eb7565b3480156106ba57600080fd5b506104d86106c93660046126a5565b610f2b565b3480156106da57600080fd5b50600654610415906001600160a01b031681565b3480156106fa57600080fd5b50600854610415906001600160a01b031681565b34801561071a57600080fd5b50600754610415906001600160a01b031681565b34801561073a57600080fd5b5061043e600a5481565b34801561075057600080fd5b506104d8610fb2565b34801561076557600080fd5b5061043e60145481565b34801561077b57600080fd5b506104d8610ff2565b34801561079057600080fd5b506005546001600160a01b0316610415565b3480156107ae57600080fd5b5061043e60175481565b3480156107c457600080fd5b5061043e600f5481565b3480156107da57600080fd5b506104d86107e9366004612709565b611033565b3480156107fa57600080fd5b506104d8610809366004612709565b61107b565b34801561081a57600080fd5b5061039b6110c3565b34801561082f57600080fd5b506104d861083e366004612724565b6110d2565b34801561084f57600080fd5b5061043e60155481565b34801561086557600080fd5b506103d16108743660046124a0565b6111b2565b34801561088557600080fd5b506103d16108943660046124a0565b611201565b3480156108a557600080fd5b506104d86108b43660046126a5565b61120e565b3480156108c557600080fd5b506104d86108d43660046126c2565b611295565b3480156108e557600080fd5b506103d16108f43660046126a5565b601d6020526000908152604090205460ff1681565b34801561091557600080fd5b5061043e60115481565b34801561092b57600080fd5b506008546103d190600160a81b900460ff1681565b34801561094c57600080fd5b5061043e601b5481565b34801561096257600080fd5b506104d8610971366004612724565b611318565b34801561098257600080fd5b5061043e60095481565b34801561099857600080fd5b5061043e6109a7366004612759565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109de57600080fd5b5061043e60135481565b3480156109f457600080fd5b5061043e60165481565b348015610a0a57600080fd5b506104d8610a193660046126c2565b6113a1565b348015610a2a57600080fd5b5061043e600b5481565b348015610a4057600080fd5b5061043e600d5481565b348015610a5657600080fd5b506104d8610a653660046126a5565b611424565b348015610a7657600080fd5b5061043e60105481565b606060038054610a8f90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054610abb90612792565b8015610b085780601f10610add57610100808354040283529160200191610b08565b820191906000526020600020905b815481529060010190602001808311610aeb57829003601f168201915b5050505050905090565b6000610b1f338484611575565b5060015b92915050565b6005546000906001600160a01b03163314610b5f5760405162461bcd60e51b8152600401610b56906127cd565b60405180910390fd5b600854600160a81b900460ff1615610bdf5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610b56565b8151835114610c305760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b56565b60c8835110610ca05760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610b56565b60005b8351811015610d08576000848281518110610cc057610cc0612802565b602002602001015190506000848381518110610cde57610cde612802565b60200260200101519050610cf333838361169a565b50508080610d009061282e565b915050610ca3565b5060019392505050565b6000610d1f84848461169a565b610d088433610d6c85604051806060016040528060288152602001612a5b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611bdd565b611575565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610b56906127cd565b6007546040516001600160a01b03918216918316907fe37897cd31d25ca135d67cd07d4ab26bb69563d4ffd97e3a01f7884da8332ddf90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e225760405162461bcd60e51b8152600401610b56906127cd565b600a849055600b839055600c829055600d8190558082610e428587612849565b610e4c9190612849565b610e569190612849565b6009819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b1f918590610d6c908661150f565b6005546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610b56906127cd565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610f555760405162461bcd60e51b8152600401610b56906127cd565b6008546040516001600160a01b03918216918316907f7cf22936f281e8ea191132e1a056229337aa391120a648f3038210b996a3a8eb90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610b56906127cd565b600060198190556018819055601a819055601b55565b6005546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610b56906127cd565b6008805461ffff60a81b191661010160a81b179055565b6005546001600160a01b0316331461105d5760405162461bcd60e51b8152600401610b56906127cd565b60088054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610b56906127cd565b60088054911515600160b81b0260ff60b81b19909216919091179055565b606060048054610a8f90612792565b6005546001600160a01b031633146110fc5760405162461bcd60e51b8152600401610b56906127cd565b7f00000000000000000000000092974a2efb701999d4884814b40ad034b94b7ba46001600160a01b0316826001600160a01b031614156111a45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b56565b6111ae8282611c17565b5050565b6000610b1f3384610d6c85604051806060016040528060258152602001612a83602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611bdd565b6000610b1f33848461169a565b6005546001600160a01b031633146112385760405162461bcd60e51b8152600401610b56906127cd565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610b56906127cd565b601484905560158390556016829055601781905580826112df8587612849565b6112e99190612849565b6112f39190612849565b6013819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b6005546001600160a01b031633146113425760405162461bcd60e51b8152600401610b56906127cd565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113cb5760405162461bcd60e51b8152600401610b56906127cd565b600f84905560108390556011829055601281905580826113eb8587612849565b6113f59190612849565b6113ff9190612849565b600e819055600a1015610e7b5760405162461bcd60e51b8152600401610b5690612861565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610b56906127cd565b6001600160a01b0381166114b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b56565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061151c8385612849565b90508381101561156e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b56565b9392505050565b6001600160a01b0383166115d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b56565b6001600160a01b0382166116385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b56565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116c05760405162461bcd60e51b8152600401610b5690612898565b6001600160a01b0382166116e65760405162461bcd60e51b8152600401610b56906128dd565b600854600160a81b900460ff1661177b576001600160a01b0383166000908152601c602052604090205460ff168061173657506001600160a01b0382166000908152601c602052604090205460ff165b61177b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b56565b806117915761178c83836000611c6b565b505050565b30600090815260208190526040902054801580159081906117bb5750600854600160b01b900460ff165b80156117d15750600554600160a01b900460ff16155b80156117f657506001600160a01b0385166000908152601d602052604090205460ff16155b801561181b57506001600160a01b0385166000908152601c602052604090205460ff16155b801561184057506001600160a01b0384166000908152601c602052604090205460ff16155b1561186e576005805460ff60a01b1916600160a01b179055611860611d74565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b9092048216159116806118bc57506001600160a01b0385166000908152601c602052604090205460ff165b156118c5575060005b60008115611bc9576001600160a01b0386166000908152601d602052604090205460ff16156119df57600e54156119da576119166064611910600e548861204990919063ffffffff16565b906120c8565b9050600e54601054826119299190612920565b611933919061293f565b601960008282546119449190612849565b9091555050600e546011546119599083612920565b611963919061293f565b601a60008282546119749190612849565b9091555050600e54600f546119899083612920565b611993919061293f565b601860008282546119a49190612849565b9091555050600e546012546119b99083612920565b6119c3919061293f565b601b60008282546119d49190612849565b90915550505b611bab565b6001600160a01b0387166000908152601d602052604090205460ff1615611ac557600954156119da57611a2260646119106009548861204990919063ffffffff16565b9050600954600b5482611a359190612920565b611a3f919061293f565b60196000828254611a509190612849565b9091555050600954600c54611a659083612920565b611a6f919061293f565b601a6000828254611a809190612849565b9091555050600954600a54611a959083612920565b611a9f919061293f565b60186000828254611ab09190612849565b9091555050600954600d546119b99083612920565b60135415611bab57611ae760646119106013548861204990919063ffffffff16565b905060135460155482611afa9190612920565b611b04919061293f565b60196000828254611b159190612849565b9091555050601354601654611b2a9083612920565b611b34919061293f565b601a6000828254611b459190612849565b9091555050601354601454611b5a9083612920565b611b64919061293f565b60186000828254611b759190612849565b9091555050601354601754611b8a9083612920565b611b94919061293f565b601b6000828254611ba59190612849565b90915550505b8015611bbc57611bbc873083611c6b565b611bc68186612961565b94505b611bd4878787611c6b565b50505050505050565b60008184841115611c015760405162461bcd60e51b8152600401610b569190612436565b506000611c0e8486612961565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c915760405162461bcd60e51b8152600401610b5690612898565b6001600160a01b038216611cb75760405162461bcd60e51b8152600401610b56906128dd565b611cf481604051806060016040528060268152602001612a35602691396001600160a01b0386166000908152602081905260409020549190611bdd565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d23908261150f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161168d565b30600090815260208190526040902054600854600160b81b900460ff1615611db7578015611db457600654611db49030906001600160a01b031683611c6b565b50565b6000601b54601a54601854601954611dcf9190612849565b611dd99190612849565b611de39190612849565b90506000821580611df2575081155b15611dfc57505050565b600060028360195486611e0f9190612920565b611e19919061293f565b611e23919061293f565b90506000611e31858361210a565b905047611e3d8261214c565b6000611e49478361210a565b90506000611e66876119106018548561204990919063ffffffff16565b90506000611e8388611910601a548661204990919063ffffffff16565b90506000611ea089611910601b548761204990919063ffffffff16565b905060008183611eb08688612961565b611eba9190612961565b611ec49190612961565b600060198190556018819055601a819055601b8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114611f26576040519150601f19603f3d011682016040523d82523d6000602084013e611f2b565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b50909950508715801590611f945750600081115b15611fe757611fa38882612318565b601954604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612034576040519150601f19603f3d011682016040523d82523d6000602084013e612039565b606091505b5050505050505050505050505050565b60008261205857506000610b23565b60006120648385612920565b905082612071858361293f565b1461156e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b56565b600061156e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612408565b600061156e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bdd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061218157612181612802565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156121fa57600080fd5b505afa15801561220e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122329190612978565b8160018151811061224557612245612802565b60200260200101906001600160a01b031690816001600160a01b031681525050612290307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611575565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122e5908590600090869030904290600401612995565b600060405180830381600087803b1580156122ff57600080fd5b505af1925050508015612310575060015b6111ae575050565b612343307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611575565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156123c857600080fd5b505af1935050505080156123f9575060408051601f3d908101601f191682019092526123f691810190612a06565b60015b612401575050565b5050505050565b600081836124295760405162461bcd60e51b8152600401610b569190612436565b506000611c0e848661293f565b600060208083528351808285015260005b8181101561246357858101830151858201604001528201612447565b81811115612475576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611db457600080fd5b600080604083850312156124b357600080fd5b82356124be8161248b565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561250b5761250b6124cc565b604052919050565b600067ffffffffffffffff82111561252d5761252d6124cc565b5060051b60200190565b600082601f83011261254857600080fd5b8135602061255d61255883612513565b6124e2565b82815260059290921b8401810191818101908684111561257c57600080fd5b8286015b848110156125975780358352918301918301612580565b509695505050505050565b600080604083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b813560206125f161255883612513565b82815260059290921b8401810191818101908984111561261057600080fd5b948201945b838610156126375785356126288161248b565b82529482019490820190612615565b9650508601359250508082111561264d57600080fd5b5061265a85828601612537565b9150509250929050565b60008060006060848603121561267957600080fd5b83356126848161248b565b925060208401356126948161248b565b929592945050506040919091013590565b6000602082840312156126b757600080fd5b813561156e8161248b565b600080600080608085870312156126d857600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461270457600080fd5b919050565b60006020828403121561271b57600080fd5b61156e826126f4565b6000806040838503121561273757600080fd5b82356127428161248b565b9150612750602084016126f4565b90509250929050565b6000806040838503121561276c57600080fd5b82356127778161248b565b915060208301356127878161248b565b809150509250929050565b600181811c908216806127a657607f821691505b602082108114156127c757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561284257612842612818565b5060010190565b6000821982111561285c5761285c612818565b500190565b6020808252601d908201527f4d757374206b656570206665657320617420313025206f72206c657373000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561293a5761293a612818565b500290565b60008261295c57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561297357612973612818565b500390565b60006020828403121561298a57600080fd5b815161156e8161248b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129e55784516001600160a01b0316835293830193918301916001016129c0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a1b57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f4dd31944aa70acf467d498725fb3111d5bc979a3749b7eb045154a5c375184364736f6c63430008090033

Deployed Bytecode Sourcemap

29434:16598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:169;;;;;;;;;;-1:-1:-1;9757:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;9757:169:0;1072:187:1;29508:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;29508:51:0;1264:230:1;8710:108:0;;;;;;;;;;-1:-1:-1;8798:12:0;;8710:108;;;1645:25:1;;;1633:2;1618:18;8710:108:0;1499:177:1;30627:33:0;;;;;;;;;;;;;;;;30587;;;;;;;;;;;;;;;;35168:752;;;;;;;;;;-1:-1:-1;35168:752:0;;;;;:::i;:::-;;:::i;10408:355::-;;;;;;;;;;-1:-1:-1;10408:355:0;;;;;:::i;:::-;;:::i;38851:221::-;;;;;;;;;;-1:-1:-1;38851:221:0;;;;;:::i;:::-;;:::i;:::-;;29611:53;;;;;;;;;;;;29657:6;29611:53;;36417:492;;;;;;;;;;-1:-1:-1;36417:492:0;;;;;:::i;:::-;;:::i;35932:92::-;;;;;;;;;;-1:-1:-1;36007:9:0;;-1:-1:-1;;;36007:9:0;;;;35932:92;;5651:4:1;5639:17;;;5621:36;;5609:2;5594:18;35932:92:0;5479:184:1;11172:218:0;;;;;;;;;;-1:-1:-1;11172:218:0;;;;;:::i;:::-;;:::i;30093:40::-;;;;;;;;;;;;;;;;29566:38;;;;;;;;;;;;;;;30667:43;;;;;;;;;;;;;;;;29934:30;;;;;;;;;;-1:-1:-1;29934:30:0;;;;-1:-1:-1;;;29934:30:0;;;;;;39255:127;;;;;;;;;;-1:-1:-1;39255:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;39346:28:0;39322:4;39346:28;;;:19;:28;;;;;;;;;39255:127;30336:25;;;;;;;;;;;;;;;;30177:28;;;;;;;;;;;;;;;;29896:31;;;;;;;;;;-1:-1:-1;29896:31:0;;;;-1:-1:-1;;;29896:31:0;;;;;;8881:127;;;;;;;;;;-1:-1:-1;8881:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8982:18:0;8955:7;8982:18;;;;;;;;;;;;8881:127;22055:148;;;;;;;;;;;;;:::i;39084:157::-;;;;;;;;;;-1:-1:-1;39084:157:0;;;;;:::i;:::-;;:::i;29703:30::-;;;;;;;;;;-1:-1:-1;29703:30:0;;;;-1:-1:-1;;;;;29703:30:0;;;29787:24;;;;;;;;;;-1:-1:-1;29787:24:0;;;;-1:-1:-1;;;;;29787:24:0;;;29740:40;;;;;;;;;;-1:-1:-1;29740:40:0;;;;-1:-1:-1;;;;;29740:40:0;;;30019:30;;;;;;;;;;;;;;;;43795:187;;;;;;;;;;;;;:::i;30409:35::-;;;;;;;;;;;;;;;;35044:112;;;;;;;;;;;;;:::i;21413:79::-;;;;;;;;;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;21478:6:0;21413:79;;30545:29;;;;;;;;;;;;;;;;30212:31;;;;;;;;;;;;;;;;36124:101;;;;;;;;;;-1:-1:-1;36124:101:0;;;;;:::i;:::-;;:::i;36306:99::-;;;;;;;;;;-1:-1:-1;36306:99:0;;;;;:::i;:::-;;:::i;7809:104::-;;;;;;;;;;;;;:::i;38177:246::-;;;;;;;;;;-1:-1:-1;38177:246:0;;;;;:::i;:::-;;:::i;30451:35::-;;;;;;;;;;;;;;;;11893:269;;;;;;;;;;-1:-1:-1;11893:269:0;;;;;:::i;:::-;;:::i;9221:175::-;;;;;;;;;;-1:-1:-1;9221:175:0;;;;;:::i;:::-;;:::i;38631:208::-;;;;;;;;;;-1:-1:-1;38631:208:0;;;;;:::i;:::-;;:::i;37432:547::-;;;;;;;;;;-1:-1:-1;37432:547:0;;;;;:::i;:::-;;:::i;31049:58::-;;;;;;;;;;-1:-1:-1;31049:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30288:41;;;;;;;;;;;;;;;;29856:33;;;;;;;;;;-1:-1:-1;29856:33:0;;;;-1:-1:-1;;;29856:33:0;;;;;;30717:27;;;;;;;;;;;;;;;;37987:182;;;;;;;;;;-1:-1:-1;37987:182:0;;;;;:::i;:::-;;:::i;29985:27::-;;;;;;;;;;;;;;;;9459:151;;;;;;;;;;-1:-1:-1;9459:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9575:18:0;;;9548:7;9575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9459:151;30370:32;;;;;;;;;;;;;;;;30493:45;;;;;;;;;;;;;;;;36921:503;;;;;;;;;;-1:-1:-1;36921:503:0;;;;;:::i;:::-;;:::i;30056:30::-;;;;;;;;;;;;;;;;30140:24;;;;;;;;;;;;;;;;22358:244;;;;;;;;;;-1:-1:-1;22358:244:0;;;;;:::i;:::-;;:::i;30250:31::-;;;;;;;;;;;;;;;;7590:100;7644:13;7677:5;7670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;:::o;9757:169::-;9840:4;9857:39;306:10;9880:7;9889:6;9857:8;:39::i;:::-;-1:-1:-1;9914:4:0;9757:169;;;;;:::o;35168:752::-;21625:6;;35281:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;;;;;;;;;35306:13:::1;::::0;-1:-1:-1;;;35306:13:0;::::1;;;35305:14;35297:82;;;::::0;-1:-1:-1;;;35297:82:0;;7679:2:1;35297:82:0::1;::::0;::::1;7661:21:1::0;7718:2;7698:18;;;7691:30;7757:34;7737:18;;;7730:62;7828:25;7808:18;;;7801:53;7871:19;;35297:82:0::1;7477:419:1::0;35297:82:0::1;35423:7;:14;35398;:21;:39;35390:82;;;::::0;-1:-1:-1;;;35390:82:0;;8103:2:1;35390:82:0::1;::::0;::::1;8085:21:1::0;8142:2;8122:18;;;8115:30;8181:32;8161:18;;;8154:60;8231:18;;35390:82:0::1;7901:354:1::0;35390:82:0::1;35515:3;35491:14;:21;:27;35483:94;;;::::0;-1:-1:-1;;;35483:94:0;;8462:2:1;35483:94:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:34;8520:18;;;8513:62;-1:-1:-1;;;8591:18:1;;;8584:52;8653:19;;35483:94:0::1;8260:418:1::0;35483:94:0::1;35690:9;35686:205;35709:14;:21;35705:1;:25;35686:205;;;35751:14;35768;35783:1;35768:17;;;;;;;;:::i;:::-;;;;;;;35751:34;;35800:14;35817:7;35825:1;35817:10;;;;;;;;:::i;:::-;;;;;;;35800:27;;35842:37;35852:10;35864:6;35872;35842:9;:37::i;:::-;35736:155;;35732:3;;;;;:::i;:::-;;;;35686:205;;;-1:-1:-1::0;35908:4:0::1;::::0;35168:752;-1:-1:-1;;;35168:752:0:o;10408:355::-;10548:4;10565:36;10575:6;10583:9;10594:6;10565:9;:36::i;:::-;10612:121;10621:6;306:10;10643:89;10681:6;10643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10643:19:0;;;;;;:11;:19;;;;;;;;306:10;10643:33;;;;;;;;;;:37;:89::i;:::-;10612:8;:121::i;38851:221::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38990:25:::1;::::0;38946:70:::1;::::0;-1:-1:-1;;;;;38990:25:0;;::::1;::::0;38946:70;::::1;::::0;::::1;::::0;38990:25:::1;::::0;38946:70:::1;39027:25;:37:::0;;-1:-1:-1;;;;;;39027:37:0::1;-1:-1:-1::0;;;;;39027:37:0;;;::::1;::::0;;;::::1;::::0;;38851:221::o;36417:492::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36566:15:::1;:31:::0;;;36608:15:::1;:31:::0;;;36650:25:::1;:51:::0;;;36712:9:::1;:19:::0;;;36724:7;36678:23;36757:33:::1;36626:13:::0;36584;36757:33:::1;:::i;:::-;:61;;;;:::i;:::-;:73;;;;:::i;:::-;36742:12;:88:::0;;;36865:2:::1;-1:-1:-1::0;36849:18:0::1;36841:60;;;;-1:-1:-1::0;;;36841:60:0::1;;;;;;;:::i;:::-;36417:492:::0;;;;:::o;11172:218::-;306:10;11260:4;11309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11309:34:0;;;;;;;;;;11260:4;;11277:83;;11300:7;;11309:50;;11348:10;11309:38;:50::i;22055:148::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;22146:6:::1;::::0;22125:40:::1;::::0;22162:1:::1;::::0;-1:-1:-1;;;;;22146:6:0::1;::::0;22125:40:::1;::::0;22162:1;;22125:40:::1;22176:6;:19:::0;;-1:-1:-1;;;;;;22176:19:0::1;::::0;;22055:148::o;39084:157::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;39191:9:::1;::::0;39163:38:::1;::::0;-1:-1:-1;;;;;39191:9:0;;::::1;::::0;39163:38;::::1;::::0;::::1;::::0;39191:9:::1;::::0;39163:38:::1;39212:9;:21:::0;;-1:-1:-1;;;;;;39212:21:0::1;-1:-1:-1::0;;;;;39212:21:0;;;::::1;::::0;;;::::1;::::0;;39084:157::o;43795:187::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;43870:1:::1;43849:18;:22:::0;;;43882:18:::1;:22:::0;;;43915:28:::1;:32:::0;;;43958:12:::1;:16:::0;43795:187::o;35044:112::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35099:13:::1;:20:::0;;-1:-1:-1;;;;35130:18:0;-1:-1:-1;;;35130:18:0;;;35044:112::o;36124:101::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36196:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;36196:21:0::1;-1:-1:-1::0;;;;36196:21:0;;::::1;::::0;;;::::1;::::0;;36124:101::o;36306:99::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36377:10:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;36377:20:0::1;-1:-1:-1::0;;;;36377:20:0;;::::1;::::0;;;::::1;::::0;;36306:99::o;7809:104::-;7865:13;7898:7;7891:14;;;;;:::i;38177:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38286:13:::1;-1:-1:-1::0;;;;;38278:21:0::1;:4;-1:-1:-1::0;;;;;38278:21:0::1;;;38270:91;;;::::0;-1:-1:-1;;;38270:91:0;;9780:2:1;38270:91:0::1;::::0;::::1;9762:21:1::0;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;9929:27;9909:18;;;9902:55;9974:19;;38270:91:0::1;9578:421:1::0;38270:91:0::1;38374:41;38403:4;38409:5;38374:28;:41::i;:::-;38177:246:::0;;:::o;11893:269::-;11986:4;12003:129;306:10;12026:7;12035:96;12074:15;12035:96;;;;;;;;;;;;;;;;;306:10;12035:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12035:34:0;;;;;;;;;;;;:38;:96::i;9221:175::-;9307:4;9324:42;306:10;9348:9;9359:6;9324:9;:42::i;38631:208::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38768:15:::1;::::0;38725:59:::1;::::0;-1:-1:-1;;;;;38768:15:0;;::::1;::::0;38725:59;::::1;::::0;::::1;::::0;38768:15:::1;::::0;38725:59:::1;38795:15;:36:::0;;-1:-1:-1;;;;;;38795:36:0::1;-1:-1:-1::0;;;;;38795:36:0;;;::::1;::::0;;;::::1;::::0;;38631:208::o;37432:547::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37586:20:::1;:36:::0;;;37633:20:::1;:36:::0;;;37680:30:::1;:56:::0;;;37747:14:::1;:24:::0;;;37764:7;37713:23;37802:43:::1;37656:13:::0;37609;37802:43:::1;:::i;:::-;:76;;;;:::i;:::-;:93;;;;:::i;:::-;37782:17;:113:::0;;;37935:2:::1;-1:-1:-1::0;37914:23:0::1;37906:65;;;;-1:-1:-1::0;;;37906:65:0::1;;;;;;;:::i;37987:182::-:0;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38072:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38072:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38127:34;;1212:41:1;;;38127:34:0::1;::::0;1185:18:1;38127:34:0::1;;;;;;;37987:182:::0;;:::o;36921:503::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37071:16:::1;:32:::0;;;37114:16:::1;:32:::0;;;37157:26:::1;:52:::0;;;37220:10:::1;:20:::0;;;37233:7;37186:23;37267:35:::1;37133:13:::0;37090;37267:35:::1;:::i;:::-;:64;;;;:::i;:::-;:77;;;;:::i;:::-;37251:13;:93:::0;;;37380:2:::1;-1:-1:-1::0;37363:19:0::1;37355:61;;;;-1:-1:-1::0;;;37355:61:0::1;;;;;;;:::i;22358:244::-:0;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22447:22:0;::::1;22439:73;;;::::0;-1:-1:-1;;;22439:73:0;;10206:2:1;22439:73:0::1;::::0;::::1;10188:21:1::0;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;-1:-1:-1;;;10335:18:1;;;10328:36;10381:19;;22439:73:0::1;10004:402:1::0;22439:73:0::1;22549:6;::::0;22528:38:::1;::::0;-1:-1:-1;;;;;22528:38:0;;::::1;::::0;22549:6:::1;::::0;22528:38:::1;::::0;22549:6:::1;::::0;22528:38:::1;22577:6;:17:::0;;-1:-1:-1;;;;;;22577:17:0::1;-1:-1:-1::0;;;;;22577:17:0;;;::::1;::::0;;;::::1;::::0;;22358:244::o;16457:181::-;16515:7;;16547:5;16551:1;16547;:5;:::i;:::-;16535:17;;16576:1;16571;:6;;16563:46;;;;-1:-1:-1;;;16563:46:0;;10613:2:1;16563:46:0;;;10595:21:1;10652:2;10632:18;;;10625:30;10691:29;10671:18;;;10664:57;10738:18;;16563:46:0;10411:351:1;16563:46:0;16629:1;16457:181;-1:-1:-1;;;16457:181:0:o;15079:380::-;-1:-1:-1;;;;;15215:19:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;10969:2:1;15207:68:0;;;10951:21:1;11008:2;10988:18;;;10981:30;11047:34;11027:18;;;11020:62;-1:-1:-1;;;11098:18:1;;;11091:34;11142:19;;15207:68:0;10767:400:1;15207:68:0;-1:-1:-1;;;;;15294:21:0;;15286:68;;;;-1:-1:-1;;;15286:68:0;;11374:2:1;15286:68:0;;;11356:21:1;11413:2;11393:18;;;11386:30;11452:34;11432:18;;;11425:62;-1:-1:-1;;;11503:18:1;;;11496:32;11545:19;;15286:68:0;11172:398:1;15286:68:0;-1:-1:-1;;;;;15367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15419:32;;1645:25:1;;;15419:32:0;;1618:18:1;15419:32:0;;;;;;;;15079:380;;;:::o;39394:3225::-;-1:-1:-1;;;;;39526:18:0;;39518:68;;;;-1:-1:-1;;;39518:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39605:16:0;;39597:64;;;;-1:-1:-1;;;39597:64:0;;;;;;;:::i;:::-;39676:13;;-1:-1:-1;;;39676:13:0;;;;39672:132;;-1:-1:-1;;;;;39713:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39742:23:0;;;;;;:19;:23;;;;;;;;39713:52;39705:87;;;;-1:-1:-1;;;39705:87:0;;12587:2:1;39705:87:0;;;12569:21:1;12626:2;12606:18;;;12599:30;-1:-1:-1;;;12645:18:1;;;12638:52;12707:18;;39705:87:0;12385:346:1;39705:87:0;39818:11;39815:92;;39846:28;39862:4;39868:2;39872:1;39846:15;:28::i;:::-;39394:3225;;;:::o;39815:92::-;39978:4;39929:28;8982:18;;;;;;;;;;;40020:24;;;;;;;40075:35;;-1:-1:-1;40099:11:0;;-1:-1:-1;;;40099:11:0;;;;40075:35;:61;;;;-1:-1:-1;40128:8:0;;-1:-1:-1;;;40128:8:0;;;;40127:9;40075:61;:110;;;;-1:-1:-1;;;;;;40154:31:0;;;;;;:25;:31;;;;;;;;40153:32;40075:110;:153;;;;-1:-1:-1;;;;;;40203:25:0;;;;;;:19;:25;;;;;;;;40202:26;40075:153;:194;;;;-1:-1:-1;;;;;;40246:23:0;;;;;;:19;:23;;;;;;;;40245:24;40075:194;40057:338;;;40296:8;:15;;-1:-1:-1;;;;40296:15:0;-1:-1:-1;;;40296:15:0;;;40340:10;:8;:10::i;:::-;40367:8;:16;;-1:-1:-1;;;;40367:16:0;;;40057:338;40431:8;;-1:-1:-1;;;;;40540:25:0;;40415:12;40540:25;;;:19;:25;;;;;;40431:8;-1:-1:-1;;;40431:8:0;;;;;40430:9;;40540:25;;:52;;-1:-1:-1;;;;;;40569:23:0;;;;;;:19;:23;;;;;;;;40540:52;40537:99;;;-1:-1:-1;40619:5:0;40537:99;40656:12;40760:7;40757:1809;;;-1:-1:-1;;;;;40801:29:0;;;;;;:25;:29;;;;;;;;40797:1600;;;40854:13;;:17;40850:450;;40902:34;40932:3;40902:25;40913:13;;40902:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40895:41;;41007:13;;40988:16;;40981:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40959:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41111:13:0;;41082:26;;41075:33;;:4;:33;:::i;:::-;:49;;;;:::i;:::-;41043:28;;:81;;;;;;;:::i;:::-;;;;-1:-1:-1;;41195:13:0;;41176:16;;41169:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;41147:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41267:13:0;;41254:10;;41247:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;41231:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40850:450:0;40797:1600;;;-1:-1:-1;;;;;41360:31:0;;;;;;:25;:31;;;;;;;;41357:1040;;;41416:12;;:16;41412:440;;41463:33;41492:3;41463:24;41474:12;;41463:6;:10;;:24;;;;:::i;:33::-;41456:40;;41566:12;;41548:15;;41541:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41519:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41668:12:0;;41640:25;;41633:32;;:4;:32;:::i;:::-;:47;;;;:::i;:::-;41601:28;;:79;;;;;;;:::i;:::-;;;;-1:-1:-1;;41750:12:0;;41732:15;;41725:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;41703:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41820:12:0;;41808:9;;41801:16;;:4;:16;:::i;41357:1040::-;41896:17;;:21;41892:490;;41948:38;41982:3;41948:29;41959:17;;41948:6;:10;;:29;;;;:::i;:38::-;41941:45;;42061:17;;42038:20;;42031:4;:27;;;;:::i;:::-;:47;;;;:::i;:::-;42009:18;;:69;;;;;;;:::i;:::-;;;;-1:-1:-1;;42173:17:0;;42140:30;;42133:37;;:4;:37;:::i;:::-;:57;;;;:::i;:::-;42101:28;;:89;;;;;;;:::i;:::-;;;;-1:-1:-1;;42265:17:0;;42242:20;;42235:27;;:4;:27;:::i;:::-;:47;;;;:::i;:::-;42213:18;;:69;;;;;;;:::i;:::-;;;;-1:-1:-1;;42345:17:0;;42328:14;;42321:21;;:4;:21;:::i;:::-;:41;;;;:::i;:::-;42305:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;41892:490:0;42428:8;;42425:93;;42460:42;42476:4;42490;42497;42460:15;:42::i;:::-;42540:14;42550:4;42540:14;;:::i;:::-;;;40757:1809;42578:33;42594:4;42600:2;42604:6;42578:15;:33::i;:::-;39507:3112;;;;39394:3225;;;:::o;17360:192::-;17446:7;17482:12;17474:6;;;;17466:29;;;;-1:-1:-1;;;17466:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17506:9:0;17518:5;17522:1;17518;:5;:::i;:::-;17506:17;17360:192;-1:-1:-1;;;;;17360:192:0:o;38435:188::-;-1:-1:-1;;;;;38518:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38518:39:0;;;;;;;;;;38575:40;;38518:39;;:31;38575:40;;;38435:188;;:::o;12652:573::-;-1:-1:-1;;;;;12792:20:0;;12784:70;;;;-1:-1:-1;;;12784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12873:23:0;;12865:71;;;;-1:-1:-1;;;12865:71:0;;;;;;;:::i;:::-;13029;13051:6;13029:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13029:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13009:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13134:20;;;;;;;:32;;13159:6;13134:24;:32::i;:::-;-1:-1:-1;;;;;13111:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13182:35;1645:25:1;;;13111:20:0;;13182:35;;;;;;1618:18:1;13182:35:0;1499:177:1;43990:2039:0;44073:4;44029:23;8982:18;;;;;;;;;;;44096:10;;-1:-1:-1;;;44096:10:0;;;;44092:185;;;44126:19;;44122:123;;44196:15;;44165:64;;44189:4;;-1:-1:-1;;;;;44196:15:0;44213;44165;:64::i;:::-;44259:7;43990:2039::o;44092:185::-;44289:25;44390:12;;44359:28;;44338:18;;44317;;:39;;;;:::i;:::-;:70;;;;:::i;:::-;:85;;;;:::i;:::-;44289:113;-1:-1:-1;44413:12:0;44449:20;;;:46;;-1:-1:-1;44473:22:0;;44449:46;44446:60;;;44498:7;;;43990:2039::o;44446:60::-;44575:23;44660:1;44640:17;44619:18;;44601:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44575:86;-1:-1:-1;44672:26:0;44701:36;:15;44575:86;44701:19;:36::i;:::-;44672:65;-1:-1:-1;44786:21:0;44820:36;44672:65;44820:16;:36::i;:::-;44878:18;44899:44;:21;44925:17;44899:25;:44::i;:::-;44878:65;;44964:23;44990:57;45029:17;44990:34;45005:18;;44990:10;:14;;:34;;;;:::i;:57::-;44964:83;;45058:33;45094:67;45143:17;45094:44;45109:28;;45094:10;:14;;:44;;;;:::i;:67::-;45058:103;;45172:17;45192:51;45225:17;45192:28;45207:12;;45192:10;:14;;:28;;;;:::i;:51::-;45172:71;-1:-1:-1;45264:23:0;45172:71;45321:25;45290:28;45303:15;45290:10;:28;:::i;:::-;:56;;;;:::i;:::-;:68;;;;:::i;:::-;45400:1;45379:18;:22;;;45412:18;:22;;;45445:28;:32;;;45488:12;:16;;;45546:25;;45538:77;;45264:94;;-1:-1:-1;;;;;;45546:25:0;;45585;;45538:77;45400:1;45538:77;45585:25;45546;45538:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45647:9:0;;45639:45;;45525:90;;-1:-1:-1;;;;;;45647:9:0;;45670;;45639:45;;;;45670:9;45647;45639:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45626:58:0;;-1:-1:-1;;45708:19:0;;;;;:42;;;45749:1;45731:15;:19;45708:42;45705:210;;;45766:46;45779:15;45796;45766:12;:46::i;:::-;45884:18;;45832:71;;;13673:25:1;;;13729:2;13714:18;;13707:34;;;13757:18;;;13750:34;;;;45832:71:0;;;;;;13661:2:1;45832:71:0;;;45705:210;45956:15;;45948:63;;-1:-1:-1;;;;;45956:15:0;;;;45985:21;;45948:63;;;;45985:21;45956:15;45948:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;43990:2039:0:o;17811:471::-;17869:7;18114:6;18110:47;;-1:-1:-1;18144:1:0;18137:8;;18110:47;18169:9;18181:5;18185:1;18181;:5;:::i;:::-;18169:17;-1:-1:-1;18214:1:0;18205:5;18209:1;18169:17;18205:5;:::i;:::-;:10;18197:56;;;;-1:-1:-1;;;18197:56:0;;13997:2:1;18197:56:0;;;13979:21:1;14036:2;14016:18;;;14009:30;14075:34;14055:18;;;14048:62;-1:-1:-1;;;14126:18:1;;;14119:31;14167:19;;18197:56:0;13795:397:1;18758:132:0;18816:7;18843:39;18847:1;18850;18843:39;;;;;;;;;;;;;;;;;:3;:39::i;16921:136::-;16979:7;17006:43;17010:1;17013;17006:43;;;;;;;;;;;;;;;;;:3;:43::i;42627:616::-;42779:16;;;42793:1;42779:16;;;;;;;;42755:21;;42779:16;;;;;;;;;;-1:-1:-1;42779:16:0;42755:40;;42824:4;42806;42811:1;42806:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42806:23:0;;;-1:-1:-1;;;;;42806:23:0;;;;;42850:15;-1:-1:-1;;;;;42850:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42840:4;42845:1;42840:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42840:32:0;;;-1:-1:-1;;;;;42840:32:0;;;;;42885:62;42902:4;42917:15;42935:11;42885:8;:62::i;:::-;42990:224;;-1:-1:-1;;;42990:224:0;;-1:-1:-1;;;;;42990:15:0;:66;;;;:224;;43071:11;;43097:1;;43141:4;;43168;;43188:15;;42990:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42986:240;;38177:246;;:::o;43255:532::-;43403:62;43420:4;43435:15;43453:11;43403:8;:62::i;:::-;43512:256;;-1:-1:-1;;;43512:256:0;;43584:4;43512:256;;;15779:34:1;15829:18;;;15822:34;;;43630:1:0;15872:18:1;;;15865:34;;;15915:18;;;15908:34;29657:6:0;15958:19:1;;;15951:44;43742:15:0;16011:19:1;;;16004:35;43512:15:0;-1:-1:-1;;;;;43512:31:0;;;;43551:9;;15713:19:1;;43512:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43512:256:0;;;;;;;;-1:-1:-1;;43512:256:0;;;;;;;;;;;;:::i;:::-;;;43508:272;;38177:246;;:::o;43508:272::-;;;;43255:532;;:::o;19386:278::-;19472:7;19507:12;19500:5;19492:28;;;;-1:-1:-1;;;19492:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19531:9:0;19543:5;19547:1;19543;:5;:::i;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:127::-;1742:10;1737:3;1733:20;1730:1;1723:31;1773:4;1770:1;1763:15;1797:4;1794:1;1787:15;1813:275;1884:2;1878:9;1949:2;1930:13;;-1:-1:-1;;1926:27:1;1914:40;;1984:18;1969:34;;2005:22;;;1966:62;1963:88;;;2031:18;;:::i;:::-;2067:2;2060:22;1813:275;;-1:-1:-1;1813:275:1:o;2093:183::-;2153:4;2186:18;2178:6;2175:30;2172:56;;;2208:18;;:::i;:::-;-1:-1:-1;2253:1:1;2249:14;2265:4;2245:25;;2093:183::o;2281:662::-;2335:5;2388:3;2381:4;2373:6;2369:17;2365:27;2355:55;;2406:1;2403;2396:12;2355:55;2442:6;2429:20;2468:4;2492:60;2508:43;2548:2;2508:43;:::i;:::-;2492:60;:::i;:::-;2586:15;;;2672:1;2668:10;;;;2656:23;;2652:32;;;2617:12;;;;2696:15;;;2693:35;;;2724:1;2721;2714:12;2693:35;2760:2;2752:6;2748:15;2772:142;2788:6;2783:3;2780:15;2772:142;;;2854:17;;2842:30;;2892:12;;;;2805;;2772:142;;;-1:-1:-1;2932:5:1;2281:662;-1:-1:-1;;;;;;2281:662:1:o;2948:1215::-;3066:6;3074;3127:2;3115:9;3106:7;3102:23;3098:32;3095:52;;;3143:1;3140;3133:12;3095:52;3183:9;3170:23;3212:18;3253:2;3245:6;3242:14;3239:34;;;3269:1;3266;3259:12;3239:34;3307:6;3296:9;3292:22;3282:32;;3352:7;3345:4;3341:2;3337:13;3333:27;3323:55;;3374:1;3371;3364:12;3323:55;3410:2;3397:16;3432:4;3456:60;3472:43;3512:2;3472:43;:::i;3456:60::-;3550:15;;;3632:1;3628:10;;;;3620:19;;3616:28;;;3581:12;;;;3656:19;;;3653:39;;;3688:1;3685;3678:12;3653:39;3712:11;;;;3732:217;3748:6;3743:3;3740:15;3732:217;;;3828:3;3815:17;3845:31;3870:5;3845:31;:::i;:::-;3889:18;;3765:12;;;;3927;;;;3732:217;;;3968:5;-1:-1:-1;;4011:18:1;;3998:32;;-1:-1:-1;;4042:16:1;;;4039:36;;;4071:1;4068;4061:12;4039:36;;4094:63;4149:7;4138:8;4127:9;4123:24;4094:63;:::i;:::-;4084:73;;;2948:1215;;;;;:::o;4168:456::-;4245:6;4253;4261;4314:2;4302:9;4293:7;4289:23;4285:32;4282:52;;;4330:1;4327;4320:12;4282:52;4369:9;4356:23;4388:31;4413:5;4388:31;:::i;:::-;4438:5;-1:-1:-1;4495:2:1;4480:18;;4467:32;4508:33;4467:32;4508:33;:::i;:::-;4168:456;;4560:7;;-1:-1:-1;;;4614:2:1;4599:18;;;;4586:32;;4168:456::o;4629:247::-;4688:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:52;;;4757:1;4754;4747:12;4709:52;4796:9;4783:23;4815:31;4840:5;4815:31;:::i;5089:385::-;5175:6;5183;5191;5199;5252:3;5240:9;5231:7;5227:23;5223:33;5220:53;;;5269:1;5266;5259:12;5220:53;-1:-1:-1;;5292:23:1;;;5362:2;5347:18;;5334:32;;-1:-1:-1;5413:2:1;5398:18;;5385:32;;5464:2;5449:18;5436:32;;-1:-1:-1;5089:385:1;-1:-1:-1;5089:385:1:o;5668:160::-;5733:20;;5789:13;;5782:21;5772:32;;5762:60;;5818:1;5815;5808:12;5762:60;5668:160;;;:::o;5833:180::-;5889:6;5942:2;5930:9;5921:7;5917:23;5913:32;5910:52;;;5958:1;5955;5948:12;5910:52;5981:26;5997:9;5981:26;:::i;6018:315::-;6083:6;6091;6144:2;6132:9;6123:7;6119:23;6115:32;6112:52;;;6160:1;6157;6150:12;6112:52;6199:9;6186:23;6218:31;6243:5;6218:31;:::i;:::-;6268:5;-1:-1:-1;6292:35:1;6323:2;6308:18;;6292:35;:::i;:::-;6282:45;;6018:315;;;;;:::o;6338:388::-;6406:6;6414;6467:2;6455:9;6446:7;6442:23;6438:32;6435:52;;;6483:1;6480;6473:12;6435:52;6522:9;6509:23;6541:31;6566:5;6541:31;:::i;:::-;6591:5;-1:-1:-1;6648:2:1;6633:18;;6620:32;6661:33;6620:32;6661:33;:::i;:::-;6713:7;6703:17;;;6338:388;;;;;:::o;6731:380::-;6810:1;6806:12;;;;6853;;;6874:61;;6928:4;6920:6;6916:17;6906:27;;6874:61;6981:2;6973:6;6970:14;6950:18;6947:38;6944:161;;;7027:10;7022:3;7018:20;7015:1;7008:31;7062:4;7059:1;7052:15;7090:4;7087:1;7080:15;6944:161;;6731:380;;;:::o;7116:356::-;7318:2;7300:21;;;7337:18;;;7330:30;7396:34;7391:2;7376:18;;7369:62;7463:2;7448:18;;7116:356::o;8683:127::-;8744:10;8739:3;8735:20;8732:1;8725:31;8775:4;8772:1;8765:15;8799:4;8796:1;8789:15;8815:127;8876:10;8871:3;8867:20;8864:1;8857:31;8907:4;8904:1;8897:15;8931:4;8928:1;8921:15;8947:135;8986:3;-1:-1:-1;;9007:17:1;;9004:43;;;9027:18;;:::i;:::-;-1:-1:-1;9074:1:1;9063:13;;8947:135::o;9087:128::-;9127:3;9158:1;9154:6;9151:1;9148:13;9145:39;;;9164:18;;:::i;:::-;-1:-1:-1;9200:9:1;;9087:128::o;9220:353::-;9422:2;9404:21;;;9461:2;9441:18;;;9434:30;9500:31;9495:2;9480:18;;9473:59;9564:2;9549:18;;9220:353::o;11575:401::-;11777:2;11759:21;;;11816:2;11796:18;;;11789:30;11855:34;11850:2;11835:18;;11828:62;-1:-1:-1;;;11921:2:1;11906:18;;11899:35;11966:3;11951:19;;11575:401::o;11981:399::-;12183:2;12165:21;;;12222:2;12202:18;;;12195:30;12261:34;12256:2;12241:18;;12234:62;-1:-1:-1;;;12327:2:1;12312:18;;12305:33;12370:3;12355:19;;11981:399::o;12736:168::-;12776:7;12842:1;12838;12834:6;12830:14;12827:1;12824:21;12819:1;12812:9;12805:17;12801:45;12798:71;;;12849:18;;:::i;:::-;-1:-1:-1;12889:9:1;;12736:168::o;12909:217::-;12949:1;12975;12965:132;;13019:10;13014:3;13010:20;13007:1;13000:31;13054:4;13051:1;13044:15;13082:4;13079:1;13072:15;12965:132;-1:-1:-1;13111:9:1;;12909:217::o;13131:125::-;13171:4;13199:1;13196;13193:8;13190:34;;;13204:18;;:::i;:::-;-1:-1:-1;13241:9:1;;13131:125::o;14197:251::-;14267:6;14320:2;14308:9;14299:7;14295:23;14291:32;14288:52;;;14336:1;14333;14326:12;14288:52;14368:9;14362:16;14387:31;14412:5;14387:31;:::i;14453:980::-;14715:4;14763:3;14752:9;14748:19;14794:6;14783:9;14776:25;14820:2;14858:6;14853:2;14842:9;14838:18;14831:34;14901:3;14896:2;14885:9;14881:18;14874:31;14925:6;14960;14954:13;14991:6;14983;14976:22;15029:3;15018:9;15014:19;15007:26;;15068:2;15060:6;15056:15;15042:29;;15089:1;15099:195;15113:6;15110:1;15107:13;15099:195;;;15178:13;;-1:-1:-1;;;;;15174:39:1;15162:52;;15269:15;;;;15234:12;;;;15210:1;15128:9;15099:195;;;-1:-1:-1;;;;;;;15350:32:1;;;;15345:2;15330:18;;15323:60;-1:-1:-1;;;15414:3:1;15399:19;15392:35;15311:3;14453:980;-1:-1:-1;;;14453:980:1:o;16050:306::-;16138:6;16146;16154;16207:2;16195:9;16186:7;16182:23;16178:32;16175:52;;;16223:1;16220;16213:12;16175:52;16252:9;16246:16;16236:26;;16302:2;16291:9;16287:18;16281:25;16271:35;;16346:2;16335:9;16331:18;16325:25;16315:35;;16050:306;;;;;:::o

Swarm Source

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