ETH Price: $3,289.62 (-1.80%)

Token

National ETH Association (NEA)
 

Overview

Max Total Supply

982,127,530.090503990762076088 NEA

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ghostarmada.eth
Balance
4,086,271.73503027685544846 NEA

Value
$0.00
0xb0D4bA2409eb852E5c461901ddcACA8D96dc7EBB
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:
NEA

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-21
*/

// SPDX-License-Identifier: Unlicensed

/*
 ///,        ////
 \  /,      /  >.
  \  /,   _/  /.
   \_  /_/   /.
    \__/_   <   
    /<<< \_\_  
   /,)^>>_._ \
   (/   \\ /\\\
        // ````
 ======((`=======
 _   _       _   _                   _   ______ _______ _    _                               _       _   _             
 | \ | |     | | (_)                 | | |  ____|__   __| |  | |     /\                      (_)     | | (_)            
 |  \| | __ _| |_ _  ___  _ __   __ _| | | |__     | |  | |__| |    /  \   ___ ___  ___   ___ _  __ _| |_ _  ___  _ __  
 | . ` |/ _` | __| |/ _ \| '_ \ / _` | | |  __|    | |  |  __  |   / /\ \ / __/ __|/ _ \ / __| |/ _` | __| |/ _ \| '_ \ 
 | |\  | (_| | |_| | (_) | | | | (_| | | | |____   | |  | |  | |  / ____ \\__ \__ \ (_) | (__| | (_| | |_| | (_) | | | |
 |_| \_|\__,_|\__|_|\___/|_| |_|\__,_|_| |______|  |_|  |_|  |_| /_/    \_\___/___/\___/ \___|_|\__,_|\__|_|\___/|_| |_|

Website: https://www.nationalethassociation.com/
Twitter: https://twitter.com/NEAERC20
TG: https://t.me/NationalETHAssociation                           

*/

pragma solidity 0.8.17;

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

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


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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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


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

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

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

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


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

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

contract NEA is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public swapTokensAtAmount = 17000000 * (10**18); // 1.7%
    uint256 public maxTransactionAmount = 20000000 * (10**18); // 2%
    uint256 public maxWalletToken = 20000000 * (10**18); // 2%

    uint256 public liquidityBuyFee = 1;
    uint256 public marketingBuyFee = 2;
    uint256 public teamBuyFee = 1;
    uint256 public burnBuyFee = 1;
    uint256 private totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;

    uint256 public liquiditySellFee = 1;
    uint256 public marketingSellFee = 2;
    uint256 public teamSellFee = 1;
    uint256 public burnSellFee = 1;
    uint256 private totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    address payable public marketingWallet = payable(0x2984312A368Fc8B62884DF94b1F1427601De88e0);
    address payable public teamWallet = payable(0x538a8e7CcaCa247E203E46Bb82d539ec4F43518d);
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    // Blacklist bots
    mapping(address => bool) public _isBlacklisted;

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

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event ExcludeFromFees(address indexed account, bool isExcluded);
   
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("National ETH Association", "NEA") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // exclude from paying fees or having max wallet limit
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(teamWallet, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createSupply(owner(), 1000000000 * (10**18));
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');

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

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(amount <= maxTransactionAmount, "amount must be less than or equal to maxTx limit");
        }

        if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            to==uniswapV2Pair && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 fees;
            uint256 burnShare;
            
            if(from==uniswapV2Pair) {
                fees = amount*(totalBuyFees-burnBuyFee)/100;
                burnShare = amount*(burnBuyFee)/100;
            }

            if(to==uniswapV2Pair) {
                fees = amount*(totalSellFees-burnSellFee)/100;
                burnShare = amount*(burnSellFee)/100;
            }

            amount = amount-(fees+burnShare);

            if(burnShare > 0) {
                super._burn(from, burnShare); 
            }

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

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance*liquiditySellFee/(totalSellFees-burnSellFee);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity/2;
        uint256 otherHalf = tokensForLiquidity-half;

        // capture the contract's current ETH balance.
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); 

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance-initialBalance;

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance);

        // swap and Send ether to wallets
        swapTokensForEth(contractTokenBalance-tokensForLiquidity);
        uint256 teamShare = address(this).balance*teamSellFee/(totalSellFees-burnSellFee-liquiditySellFee);
        
        teamWallet.transfer(teamShare);
        marketingWallet.transfer(address(this).balance);
        

    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

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

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function updateBuyFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquidityBuyFee = _liqFee;
        marketingBuyFee = _markFee;
        teamBuyFee = _teamFee;
        burnBuyFee = _burnFee;
        totalSellFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;
    }

    function updateSellFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquiditySellFee = _liqFee;
        marketingSellFee = _markFee;
        teamSellFee = _teamFee;
        burnSellFee = _burnFee;
        totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;
    }

    function setWallets(address payable _marketing, address payable _team) public onlyOwner {
        marketingWallet = _marketing;
        teamWallet = _team;
    }

    function setMaxTxAmount(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxTransactionAmount = _percent*totalSupply()/100;
    }

    function setMaxWalletLimit(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxWalletToken = _percent*totalSupply()/100;
    }

    function blacklistBots(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }

    receive() external payable {

  	}
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_team","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526a0e0fe3d8bb9bc7b10000006007556a108b2a2c280290940000006008556a108b2a2c280290940000006009556001600a556002600b556001600c556001600d55600d54600c54600b54600a546200005d919062000666565b62000069919062000666565b62000075919062000666565b600e556001600f55600260105560016011556001601255601254601154601054600f54620000a4919062000666565b620000b0919062000666565b620000bc919062000666565b60135560148054752984312a368fc8b62884df94b1f1427601de88e00100610100600160b01b0319909116179055601580546001600160a01b031990811673538a8e7ccaca247e203e46bb82d539ec4f43518d179091556016805490911661dead1790553480156200012d57600080fd5b506040518060400160405280601881526020017f4e6174696f6e616c20455448204173736f63696174696f6e0000000000000000815250604051806040016040528060038152602001624e454160e81b815250816003908162000191919062000732565b506004620001a0828262000732565b505050620001bd620001b7620003e260201b60201c565b620003e6565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d9190620007fe565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b19190620007fe565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003259190620007fe565b600680546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200036b620003636005546001600160a01b031690565b600162000438565b6014546200038a906201000090046001600160a01b0316600162000438565b601554620003a3906001600160a01b0316600162000438565b620003b030600162000438565b620003da620003c76005546001600160a01b031690565b6b033b2e3c9fd0803ce80000006200057c565b505062000830565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526018602052604090205481151560ff9091161515036200051d5760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016200048f565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048f565b8060026000828254620005e8919062000666565b90915550506001600160a01b038216600090815260208190526040812080548392906200061790849062000666565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b808201808211156200068857634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006b957607f821691505b602082108103620006da57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066157600081815260208120601f850160051c81016020861015620007095750805b601f850160051c820191505b818110156200072a5782815560010162000715565b505050505050565b81516001600160401b038111156200074e576200074e6200068e565b62000766816200075f8454620006a4565b84620006e0565b602080601f8311600181146200079e5760008415620007855750858301515b600019600386901b1c1916600185901b1785556200072a565b600085815260208120601f198616915b82811015620007cf57888601518255948401946001909101908401620007ae565b5085821015620007ee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200081157600080fd5b81516001600160a01b03811681146200082957600080fd5b9392505050565b608051611fb162000868600039600081816104190152818161119d015281816112d10152818161137701526113f50152611fb16000f3fe6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b60565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611bc3565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611bef565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c13565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611bc3565b610925565b3480156103f157600080fd5b50610405610400366004611c54565b610961565b005b34801561041357600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611bef565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611bef565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c54565b6109fe565b34801561054057600080fd5b5061040561054f366004611c86565b610a48565b34801561056057600080fd5b5061040561056f366004611c86565b610ab1565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610ae0565b34801561062557600080fd5b506102ac610634366004611bc3565b610aef565b34801561064557600080fd5b506102ac610654366004611bc3565b610b88565b34801561066557600080fd5b50610405610674366004611cb4565b610b95565b34801561068557600080fd5b50610405610694366004611cb4565b610bea565b3480156106a557600080fd5b506104056106b4366004611ce9565b610cf6565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d04565b610d74565b34801561071157600080fd5b506102d2610720366004611d04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611c86565b610dd8565b3480156107b957600080fd5b506104056107c8366004611bef565b610e41565b6060600380546107dc90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d3d565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610edc565b5060015b92915050565b6000610883848484611000565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610edc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611d8d565b610edc565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611da0565b600a849055600b839055600c829055600d81905580826109ab8587611d8d565b6109b59190611d8d565b6109bf9190611d8d565b60135550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611da0565b6109fc60006114bd565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611da0565b600f84905560108390556011829055601281905580826109ab8587611d8d565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260040161090490611da0565b600081118015610a83575060648111155b610a8c57600080fd5b6064610a9760025490565b610aa19083611dd5565b610aab9190611dec565b60095550565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161090490611da0565b600755565b6060600480546107dc90611d3d565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b7e3385858403610edc565b5060019392505050565b600061086c338484611000565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610c975760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d205760405162461bcd60e51b815260040161090490611da0565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d6990831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161090490611da0565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b815260040161090490611da0565b600081118015610e13575060648111155b610e1c57600080fd5b6064610e2760025490565b610e319083611dd5565b610e3b9190611dec565b60085550565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b038116610ed05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ed9816114bd565b50565b6001600160a01b038316610f3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110265760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661104c5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b03831660009081526017602052604090205460ff1615801561108e57506001600160a01b03821660009081526017602052604090205460ff16155b6110d05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b806000036110e9576110e48383600061150f565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561112b57506001600160a01b03821660009081526018602052604090205460ff16155b1561119b5760085481111561119b5760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156111f557506001600160a01b03831660009081526018602052604090205460ff16155b801561121a57506001600160a01b03821660009081526018602052604090205460ff16155b156112a1576001600160a01b0382166000908152602081905260409020546009546112458383611d8d565b111561129f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112c8575060145460ff16155b801561130557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156113185750601454610100900460ff165b1561132b57600754915061132b82611664565b6001600160a01b03851660009081526018602052604090205460ff1615801561136d57506001600160a01b03841660009081526018602052604090205460ff16155b156114ab576000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036113f3576064600d54600e546113c09190611e96565b6113ca9087611dd5565b6113d49190611dec565b91506064600d54866113e69190611dd5565b6113f09190611dec565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03160361147157606460125460135461143e9190611e96565b6114489087611dd5565b6114529190611dec565b91506064601254866114649190611dd5565b61146e9190611dec565b90505b61147b8183611d8d565b6114859086611e96565b945080156114975761149787826117ed565b81156114a8576114a887308461150f565b50505b6114b685858561150f565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115355760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661155b5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b038316600090815260208190526040902054818110156115d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160a908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165691815260200190565b60405180910390a350505050565b6014805460ff1916600117905560125460135460009161168391611e96565b600f546116909084611dd5565b61169a9190611dec565b905060006116a9600283611dec565b905060006116b78284611e96565b9050476116c38361191f565b60006116cf8247611e96565b90506116db8382611aaa565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a16117266117218688611e96565b61191f565b6000600f5460125460135461173b9190611e96565b6117459190611e96565b6011546117529047611dd5565b61175c9190611dec565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611797573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117d9573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661184d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611ea9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190611ebf565b816001815181106119e4576119e4611ea9565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a3b57600654611a3b9030906001600160a01b0316600019610edc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a74908590600090869030904290600401611edc565b600060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611ad36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b3b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b69190611f4d565b600060208083528351808285015260005b81811015611b8d57858101830151858201604001528201611b71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ed957600080fd5b60008060408385031215611bd657600080fd5b8235611be181611bae565b946020939093013593505050565b600060208284031215611c0157600080fd5b8135611c0c81611bae565b9392505050565b600080600060608486031215611c2857600080fd5b8335611c3381611bae565b92506020840135611c4381611bae565b929592945050506040919091013590565b60008060008060808587031215611c6a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611c9857600080fd5b5035919050565b80358015158114611caf57600080fd5b919050565b60008060408385031215611cc757600080fd5b8235611cd281611bae565b9150611ce060208401611c9f565b90509250929050565b600060208284031215611cfb57600080fd5b611c0c82611c9f565b60008060408385031215611d1757600080fd5b8235611d2281611bae565b91506020830135611d3281611bae565b809150509250929050565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d77565b600082611e0957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d77565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed157600080fd5b8151611c0c81611bae565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f2c5784516001600160a01b031683529383019391830191600101611f07565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f6257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dcd82220539adaf294cdc4baea1d38e785c4db47d7611648917f298e88ec235b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b60565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611bc3565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611bef565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c13565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611bc3565b610925565b3480156103f157600080fd5b50610405610400366004611c54565b610961565b005b34801561041357600080fd5b506103007f000000000000000000000000cd43ca119bf44dff7e16b8746e4413f92f708b6281565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611bef565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611bef565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c54565b6109fe565b34801561054057600080fd5b5061040561054f366004611c86565b610a48565b34801561056057600080fd5b5061040561056f366004611c86565b610ab1565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610ae0565b34801561062557600080fd5b506102ac610634366004611bc3565b610aef565b34801561064557600080fd5b506102ac610654366004611bc3565b610b88565b34801561066557600080fd5b50610405610674366004611cb4565b610b95565b34801561068557600080fd5b50610405610694366004611cb4565b610bea565b3480156106a557600080fd5b506104056106b4366004611ce9565b610cf6565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d04565b610d74565b34801561071157600080fd5b506102d2610720366004611d04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611c86565b610dd8565b3480156107b957600080fd5b506104056107c8366004611bef565b610e41565b6060600380546107dc90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d3d565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610edc565b5060015b92915050565b6000610883848484611000565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610edc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611d8d565b610edc565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611da0565b600a849055600b839055600c829055600d81905580826109ab8587611d8d565b6109b59190611d8d565b6109bf9190611d8d565b60135550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611da0565b6109fc60006114bd565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611da0565b600f84905560108390556011829055601281905580826109ab8587611d8d565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260040161090490611da0565b600081118015610a83575060648111155b610a8c57600080fd5b6064610a9760025490565b610aa19083611dd5565b610aab9190611dec565b60095550565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161090490611da0565b600755565b6060600480546107dc90611d3d565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b7e3385858403610edc565b5060019392505050565b600061086c338484611000565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610c975760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d205760405162461bcd60e51b815260040161090490611da0565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d6990831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161090490611da0565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b815260040161090490611da0565b600081118015610e13575060648111155b610e1c57600080fd5b6064610e2760025490565b610e319083611dd5565b610e3b9190611dec565b60085550565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b038116610ed05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ed9816114bd565b50565b6001600160a01b038316610f3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110265760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661104c5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b03831660009081526017602052604090205460ff1615801561108e57506001600160a01b03821660009081526017602052604090205460ff16155b6110d05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b806000036110e9576110e48383600061150f565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561112b57506001600160a01b03821660009081526018602052604090205460ff16155b1561119b5760085481111561119b5760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f000000000000000000000000cd43ca119bf44dff7e16b8746e4413f92f708b626001600160a01b0316836001600160a01b03161480156111f557506001600160a01b03831660009081526018602052604090205460ff16155b801561121a57506001600160a01b03821660009081526018602052604090205460ff16155b156112a1576001600160a01b0382166000908152602081905260409020546009546112458383611d8d565b111561129f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112c8575060145460ff16155b801561130557507f000000000000000000000000cd43ca119bf44dff7e16b8746e4413f92f708b626001600160a01b0316846001600160a01b0316145b80156113185750601454610100900460ff165b1561132b57600754915061132b82611664565b6001600160a01b03851660009081526018602052604090205460ff1615801561136d57506001600160a01b03841660009081526018602052604090205460ff16155b156114ab576000807f000000000000000000000000cd43ca119bf44dff7e16b8746e4413f92f708b626001600160a01b0316876001600160a01b0316036113f3576064600d54600e546113c09190611e96565b6113ca9087611dd5565b6113d49190611dec565b91506064600d54866113e69190611dd5565b6113f09190611dec565b90505b7f000000000000000000000000cd43ca119bf44dff7e16b8746e4413f92f708b626001600160a01b0316866001600160a01b03160361147157606460125460135461143e9190611e96565b6114489087611dd5565b6114529190611dec565b91506064601254866114649190611dd5565b61146e9190611dec565b90505b61147b8183611d8d565b6114859086611e96565b945080156114975761149787826117ed565b81156114a8576114a887308461150f565b50505b6114b685858561150f565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115355760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661155b5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b038316600090815260208190526040902054818110156115d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160a908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165691815260200190565b60405180910390a350505050565b6014805460ff1916600117905560125460135460009161168391611e96565b600f546116909084611dd5565b61169a9190611dec565b905060006116a9600283611dec565b905060006116b78284611e96565b9050476116c38361191f565b60006116cf8247611e96565b90506116db8382611aaa565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a16117266117218688611e96565b61191f565b6000600f5460125460135461173b9190611e96565b6117459190611e96565b6011546117529047611dd5565b61175c9190611dec565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611797573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117d9573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661184d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611ea9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190611ebf565b816001815181106119e4576119e4611ea9565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a3b57600654611a3b9030906001600160a01b0316600019610edc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a74908590600090869030904290600401611edc565b600060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611ad36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b3b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b69190611f4d565b600060208083528351808285015260005b81811015611b8d57858101830151858201604001528201611b71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ed957600080fd5b60008060408385031215611bd657600080fd5b8235611be181611bae565b946020939093013593505050565b600060208284031215611c0157600080fd5b8135611c0c81611bae565b9392505050565b600080600060608486031215611c2857600080fd5b8335611c3381611bae565b92506020840135611c4381611bae565b929592945050506040919091013590565b60008060008060808587031215611c6a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611c9857600080fd5b5035919050565b80358015158114611caf57600080fd5b919050565b60008060408385031215611cc757600080fd5b8235611cd281611bae565b9150611ce060208401611c9f565b90509250929050565b600060208284031215611cfb57600080fd5b611c0c82611c9f565b60008060408385031215611d1757600080fd5b8235611d2281611bae565b91506020830135611d3281611bae565b809150509250929050565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d77565b600082611e0957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d77565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed157600080fd5b8151611c0c81611bae565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f2c5784516001600160a01b031683529383019391830191600101611f07565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f6257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dcd82220539adaf294cdc4baea1d38e785c4db47d7611648917f298e88ec235b64736f6c63430008110033

Deployed Bytecode Sourcemap

24425:9282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8854:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11021:169;;;;;;;;;;-1:-1:-1;11021:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11021:169:0;1023:187:1;25011:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;25011:35:0;1215:177:1;24463:41:0;;;;;;;;;;-1:-1:-1;24463:41:0;;;;-1:-1:-1;;;;;24463:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;24463:41:0;1397:230:1;9974:108:0;;;;;;;;;;-1:-1:-1;10062:12:0;;9974:108;;25095:30;;;;;;;;;;;;;;;;25647:46;;;;;;;;;;-1:-1:-1;25647:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24846:29;;;;;;;;;;;;;;;;11672:492;;;;;;;;;;-1:-1:-1;11672:492:0;;;;;:::i;:::-;;:::i;9816:93::-;;;;;;;;;;-1:-1:-1;9816:93:0;;9899:2;2487:36:1;;2475:2;2460:18;9816:93:0;2345:184:1;12573:215:0;;;;;;;;;;-1:-1:-1;12573:215:0;;;;;:::i;:::-;;:::i;32300:335::-;;;;;;;;;;-1:-1:-1;32300:335:0;;;;;:::i;:::-;;:::i;:::-;;24511:38;;;;;;;;;;;;;;;25303:40;;;;;;;;;;-1:-1:-1;25303:40:0;;;;;;;;;;;31858:125;;;;;;;;;;-1:-1:-1;31858:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;31947:28:0;31923:4;31947:28;;;:19;:28;;;;;;;;;31858:125;25451:87;;;;;;;;;;-1:-1:-1;25451:87:0;;;;-1:-1:-1;;;;;25451:87:0;;;24805:34;;;;;;;;;;;;;;;;10145:127;;;;;;;;;;-1:-1:-1;10145:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10246:18:0;10219:7;10246:18;;;;;;;;;;;;10145:127;2958:94;;;;;;;;;;;;;:::i;32643:344::-;;;;;;;;;;-1:-1:-1;32643:344:0;;;;;:::i;:::-;;:::i;33353:175::-;;;;;;;;;;-1:-1:-1;33353:175:0;;;;;:::i;:::-;;:::i;32173:119::-;;;;;;;;;;-1:-1:-1;32173:119:0;;;;;:::i;:::-;;:::i;25352:92::-;;;;;;;;;;-1:-1:-1;25352:92:0;;;;;;;-1:-1:-1;;;;;25352:92:0;;;24882:29;;;;;;;;;;;;;;;;25132:30;;;;;;;;;;;;;;;;25545:70;;;;;;;;;;-1:-1:-1;25545:70:0;;;;-1:-1:-1;;;;;25545:70:0;;;2307:87;;;;;;;;;;-1:-1:-1;2380:6:0;;-1:-1:-1;;;;;2380:6:0;2307:87;;9073:104;;;;;;;;;;;;;:::i;13291:413::-;;;;;;;;;;-1:-1:-1;13291:413:0;;;;;:::i;:::-;;:::i;10485:175::-;;;;;;;;;;-1:-1:-1;10485:175:0;;;;;:::i;:::-;;:::i;33536:120::-;;;;;;;;;;-1:-1:-1;33536:120:0;;;;;:::i;:::-;;:::i;31556:290::-;;;;;;;;;;-1:-1:-1;31556:290:0;;;;;:::i;:::-;;:::i;31994:171::-;;;;;;;;;;-1:-1:-1;31994:171:0;;;;;:::i;:::-;;:::i;24628:57::-;;;;;;;;;;;;;;;;24764:34;;;;;;;;;;;;;;;;32995:164;;;;;;;;;;-1:-1:-1;32995:164:0;;;;;:::i;:::-;;:::i;10723:151::-;;;;;;;;;;-1:-1:-1;10723:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10839:18:0;;;10812:7;10839:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10723:151;24558:55;;;;;;;;;;;;;;;;24698:51;;;;;;;;;;;;;;;;25053:35;;;;;;;;;;;;;;;;33167:178;;;;;;;;;;-1:-1:-1;33167:178:0;;;;;:::i;:::-;;:::i;3207:192::-;;;;;;;;;;-1:-1:-1;3207:192:0;;;;;:::i;:::-;;:::i;8854:100::-;8908:13;8941:5;8934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8854:100;:::o;11021:169::-;11104:4;11121:39;1261:10;11144:7;11153:6;11121:8;:39::i;:::-;-1:-1:-1;11178:4:0;11021:169;;;;;:::o;11672:492::-;11812:4;11829:36;11839:6;11847:9;11858:6;11829:9;:36::i;:::-;-1:-1:-1;;;;;11905:19:0;;11878:24;11905:19;;;:11;:19;;;;;;;;1261:10;11905:33;;;;;;;;11957:26;;;;11949:79;;;;-1:-1:-1;;;11949:79:0;;5600:2:1;11949:79:0;;;5582:21:1;5639:2;5619:18;;;5612:30;5678:34;5658:18;;;5651:62;-1:-1:-1;;;5729:18:1;;;5722:38;5777:19;;11949:79:0;;;;;;;;;12064:57;12073:6;1261:10;12114:6;12095:16;:25;12064:8;:57::i;:::-;-1:-1:-1;12152:4:0;;11672:492;-1:-1:-1;;;;11672:492:0:o;12573:215::-;1261:10;12661:4;12710:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12710:34:0;;;;;;;;;;12661:4;;12678:80;;12701:7;;12710:47;;12747:10;;12710:47;:::i;:::-;12678:8;:80::i;32300:335::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;32421:15:::1;:25:::0;;;32457:15:::1;:26:::0;;;32494:10:::1;:21:::0;;;32526:10:::1;:21:::0;;;32539:8;32507;32574:31:::1;32475:8:::0;32439:7;32574:31:::1;:::i;:::-;:42;;;;:::i;:::-;:53;;;;:::i;:::-;32558:13;:69:::0;-1:-1:-1;;;;32300:335:0:o;2958:94::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;3023:21:::1;3041:1;3023:9;:21::i;:::-;2958:94::o:0;32643:344::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;32765:16:::1;:26:::0;;;32802:16:::1;:27:::0;;;32840:11:::1;:22:::0;;;32873:11:::1;:22:::0;;;32887:8;32854;32922:33:::1;32821:8:::0;32784:7;32922:33:::1;:::i;33353:175::-:0;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;33445:1:::1;33434:8;:12;:31;;;;;33462:3;33450:8;:15;;33434:31;33426:40;;;::::0;::::1;;33517:3;33503:13;10062:12:::0;;;9974:108;33503:13:::1;33494:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;33477:14;:43:::0;-1:-1:-1;33353:175:0:o;32173:119::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;32253:18:::1;:31:::0;32173:119::o;9073:104::-;9129:13;9162:7;9155:14;;;;;:::i;13291:413::-;1261:10;13384:4;13428:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13428:34:0;;;;;;;;;;13481:35;;;;13473:85;;;;-1:-1:-1;;;13473:85:0;;7027:2:1;13473:85:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:35;7201:19;;13473:85:0;6825:401:1;13473:85:0;13594:67;1261:10;13617:7;13645:15;13626:16;:34;13594:8;:67::i;:::-;-1:-1:-1;13692:4:0;;13291:413;-1:-1:-1;;;13291:413:0:o;10485:175::-;10571:4;10588:42;1261:10;10612:9;10623:6;10588:9;:42::i;33536:120::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33617:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;33617:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33536:120::o;31556:290::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31649:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;31641:95:::1;;;::::0;-1:-1:-1;;;31641:95:0;;7433:2:1;31641:95:0::1;::::0;::::1;7415:21:1::0;7472:2;7452:18;;;7445:30;7511:34;7491:18;;;7484:62;-1:-1:-1;;;7562:18:1;;;7555:40;7612:19;;31641:95:0::1;7231:406:1::0;31641:95:0::1;-1:-1:-1::0;;;;;31747:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31747:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31804:34;;1163:41:1;;;31804:34:0::1;::::0;1136:18:1;31804:34:0::1;;;;;;;31556:290:::0;;:::o;31994:171::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;32071:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;32071:32:0;;::::1;;::::0;;32119:38:::1;::::0;::::1;::::0;::::1;::::0;32095:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;32119:38:0::1;;;;;;;;31994:171:::0;:::o;32995:164::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;33094:15:::1;:28:::0;;-1:-1:-1;;;;;;33094:28:0::1;::::0;-1:-1:-1;;;;;33094:28:0;;::::1;;;::::0;;33133:10:::1;:18:::0;;-1:-1:-1;;;;;;33133:18:0::1;::::0;;;::::1;;::::0;;32995:164::o;33167:178::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;33256:1:::1;33245:8;:12;:31;;;;;33273:3;33261:8;:15;;33245:31;33237:40;;;::::0;::::1;;33334:3;33320:13;10062:12:::0;;;9974:108;33320:13:::1;33311:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;33288:20;:49:::0;-1:-1:-1;33167:178:0:o;3207:192::-;2380:6;;-1:-1:-1;;;;;2380:6:0;1261:10;2527:23;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3296:22:0;::::1;3288:73;;;::::0;-1:-1:-1;;;3288:73:0;;7844:2:1;3288:73:0::1;::::0;::::1;7826:21:1::0;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:36;8019:19;;3288:73:0::1;7642:402:1::0;3288:73:0::1;3372:19;3382:8;3372:9;:19::i;:::-;3207:192:::0;:::o;17070:380::-;-1:-1:-1;;;;;17206:19:0;;17198:68;;;;-1:-1:-1;;;17198:68:0;;8251:2:1;17198:68:0;;;8233:21:1;8290:2;8270:18;;;8263:30;8329:34;8309:18;;;8302:62;-1:-1:-1;;;8380:18:1;;;8373:34;8424:19;;17198:68:0;8049:400:1;17198:68:0;-1:-1:-1;;;;;17285:21:0;;17277:68;;;;-1:-1:-1;;;17277:68:0;;8656:2:1;17277:68:0;;;8638:21:1;8695:2;8675:18;;;8668:30;8734:34;8714:18;;;8707:62;-1:-1:-1;;;8785:18:1;;;8778:32;8827:19;;17277:68:0;8454:398:1;17277:68:0;-1:-1:-1;;;;;17358:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17410:32;;1361:25:1;;;17410:32:0;;1334:18:1;17410:32:0;;;;;;;17070:380;;;:::o;27038:2288::-;-1:-1:-1;;;;;27170:18:0;;27162:68;;;;-1:-1:-1;;;27162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27249:16:0;;27241:64;;;;-1:-1:-1;;;27241:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27325:20:0;;;;;;:14;:20;;;;;;;;27324:21;:44;;;;-1:-1:-1;;;;;;27350:18:0;;;;;;:14;:18;;;;;;;;27349:19;27324:44;27316:76;;;;-1:-1:-1;;;27316:76:0;;9869:2:1;27316:76:0;;;9851:21:1;9908:2;9888:18;;;9881:30;-1:-1:-1;;;9927:18:1;;;9920:49;9986:18;;27316:76:0;9667:343:1;27316:76:0;27408:6;27418:1;27408:11;27405:92;;27436:28;27452:4;27458:2;27462:1;27436:15;:28::i;:::-;27038:2288;;;:::o;27405:92::-;-1:-1:-1;;;;;27513:25:0;;;;;;:19;:25;;;;;;;;27512:26;:54;;;;-1:-1:-1;;;;;;27543:23:0;;;;;;:19;:23;;;;;;;;27542:24;27512:54;27509:177;;;27601:20;;27591:6;:30;;27583:91;;;;-1:-1:-1;;;27583:91:0;;10217:2:1;27583:91:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:46;10402:19;;27583:91:0;10015:412:1;27583:91:0;27707:13;-1:-1:-1;;;;;27701:19:0;:4;-1:-1:-1;;;;;27701:19:0;;:49;;;;-1:-1:-1;;;;;;27725:25:0;;;;;;:19;:25;;;;;;;;27724:26;27701:49;:77;;;;-1:-1:-1;;;;;;27755:23:0;;;;;;:19;:23;;;;;;;;27754:24;27701:77;27698:271;;;-1:-1:-1;;;;;10246:18:0;;27794:32;10246:18;;;;;;;;;;;27902:14;;27865:33;27892:6;10246:18;27865:33;:::i;:::-;:51;;27857:100;;;;-1:-1:-1;;;27857:100:0;;10634:2:1;27857:100:0;;;10616:21:1;10673:2;10653:18;;;10646:30;10712:34;10692:18;;;10685:62;-1:-1:-1;;;10763:18:1;;;10756:34;10807:19;;27857:100:0;10432:400:1;27857:100:0;27779:190;27698:271;28027:4;27978:28;10246:18;;;;;;;;;;;28105;;28081:42;;;;;;;28160:53;;-1:-1:-1;28197:16:0;;;;28196:17;28160:53;:87;;;;;28234:13;-1:-1:-1;;;;;28230:17:0;:2;-1:-1:-1;;;;;28230:17:0;;28160:87;:126;;;;-1:-1:-1;28265:21:0;;;;;;;28160:126;28143:274;;;28336:18;;28313:41;;28369:36;28384:20;28369:14;:36::i;:::-;-1:-1:-1;;;;;28519:25:0;;;;;;:19;:25;;;;;;;;28518:26;:54;;;;-1:-1:-1;;;;;;28549:23:0;;;;;;:19;:23;;;;;;;;28548:24;28518:54;28515:756;;;28589:12;28616:17;28671:13;-1:-1:-1;;;;;28665:19:0;:4;-1:-1:-1;;;;;28665:19:0;;28662:156;;28745:3;28733:10;;28720:12;;:23;;;;:::i;:::-;28712:32;;:6;:32;:::i;:::-;:36;;;;:::i;:::-;28705:43;;28799:3;28787:10;;28779:6;:19;;;;:::i;:::-;:23;;;;:::i;:::-;28767:35;;28662:156;28841:13;-1:-1:-1;;;;;28837:17:0;:2;-1:-1:-1;;;;;28837:17:0;;28834:157;;28917:3;28904:11;;28890:13;;:25;;;;:::i;:::-;28882:34;;:6;:34;:::i;:::-;:38;;;;:::i;:::-;28875:45;;28972:3;28959:11;;28951:6;:20;;;;:::i;:::-;:24;;;;:::i;:::-;28939:36;;28834:157;29024:14;29029:9;29024:4;:14;:::i;:::-;29016:23;;:6;:23;:::i;:::-;29007:32;-1:-1:-1;29059:13:0;;29056:82;;29093:28;29105:4;29111:9;29093:11;:28::i;:::-;29157:8;;29154:91;;29186:42;29202:4;29216;29223;29186:15;:42::i;:::-;28574:697;;28515:756;29283:33;29299:4;29305:2;29309:6;29283:15;:33::i;:::-;27151:2175;;27038:2288;;;:::o;3407:173::-;3482:6;;;-1:-1:-1;;;;;3499:17:0;;;-1:-1:-1;;;;;;3499:17:0;;;;;;;3532:40;;3482:6;;;3499:17;3482:6;;3532:40;;3463:16;;3532:40;3452:128;3407:173;:::o;14194:733::-;-1:-1:-1;;;;;14334:20:0;;14326:70;;;;-1:-1:-1;;;14326:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14415:23:0;;14407:71;;;;-1:-1:-1;;;14407:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14575:17:0;;14551:21;14575:17;;;;;;;;;;;14611:23;;;;14603:74;;;;-1:-1:-1;;;14603:74:0;;11172:2:1;14603:74:0;;;11154:21:1;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:1;;;11294:36;11347:19;;14603:74:0;10970:402:1;14603:74:0;-1:-1:-1;;;;;14713:17:0;;;:9;:17;;;;;;;;;;;14733:22;;;14713:42;;14777:20;;;;;;;;:30;;14749:6;;14713:9;14777:30;;14749:6;;14777:30;:::i;:::-;;;;;;;;14842:9;-1:-1:-1;;;;;14825:35:0;14834:6;-1:-1:-1;;;;;14825:35:0;;14853:6;14825:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;14825:35:0;;;;;;;;14315:612;14194:733;;;:::o;29335:1124::-;26043:16;:23;;-1:-1:-1;;26043:23:0;26062:4;26043:23;;;29502:11:::1;::::0;29488:13:::1;::::0;26043:16;;29488:25:::1;::::0;::::1;:::i;:::-;29470:16;::::0;29449:37:::1;::::0;:20;:37:::1;:::i;:::-;:65;;;;:::i;:::-;29420:94:::0;-1:-1:-1;29583:12:0::1;29598:20;29617:1;29420:94:::0;29598:20:::1;:::i;:::-;29583:35:::0;-1:-1:-1;29629:17:0::1;29649:23;29583:35:::0;29649:18;:23:::1;:::i;:::-;29629:43:::0;-1:-1:-1;29766:21:0::1;29832:22;29849:4:::0;29832:16:::1;:22::i;:::-;29916:18;29937:36;29959:14:::0;29937:21:::1;:36;:::i;:::-;29916:57;;30023:35;30036:9;30047:10;30023:12;:35::i;:::-;30076:32;::::0;;11551:25:1;;;11607:2;11592:18;;11585:34;;;30076:32:0::1;::::0;11524:18:1;30076:32:0::1;;;;;;;30164:57;30181:39;30202:18:::0;30181:20;:39:::1;:::i;:::-;30164:16;:57::i;:::-;30232:17;30313:16;;30301:11;;30287:13;;:25;;;;:::i;:::-;:42;;;;:::i;:::-;30274:11;::::0;30252:33:::1;::::0;:21:::1;:33;:::i;:::-;:78;;;;:::i;:::-;30351:10;::::0;:30:::1;::::0;30232:98;;-1:-1:-1;;;;;;30351:10:0::1;::::0;:30;::::1;;;::::0;30232:98;;30351:10:::1;:30:::0;:10;:30;30232:98;30351:10;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;30392:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;30392:15:0;;;::::1;::::0;;;::::1;::::0;30417:21:::1;30392:47:::0;::::1;;;::::0;::::1;::::0;;;30417:21;30392:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26089:16:0;:24;;-1:-1:-1;;26089:24:0;;;-1:-1:-1;;;;;;29335:1124:0:o;15955:675::-;-1:-1:-1;;;;;16039:21:0;;16031:67;;;;-1:-1:-1;;;16031:67:0;;11832:2:1;16031:67:0;;;11814:21:1;11871:2;11851:18;;;11844:30;11910:34;11890:18;;;11883:62;-1:-1:-1;;;11961:18:1;;;11954:31;12002:19;;16031:67:0;11630:397:1;16031:67:0;-1:-1:-1;;;;;16198:18:0;;16173:22;16198:18;;;;;;;;;;;16235:24;;;;16227:71;;;;-1:-1:-1;;;16227:71:0;;12234:2:1;16227:71:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:34;12292:18;;;12285:62;-1:-1:-1;;;12363:18:1;;;12356:32;12405:19;;16227:71:0;12032:398:1;16227:71:0;-1:-1:-1;;;;;16334:18:0;;:9;:18;;;;;;;;;;;16355:23;;;16334:44;;16473:12;:22;;;;;;;16524:37;1361:25:1;;;16334:9:0;;:18;16524:37;;1334:18:1;16524:37:0;;;;;;;27038:2288;;;:::o;30467:692::-;30617:16;;;30631:1;30617:16;;;;;;;;30593:21;;30617:16;;;;;;;;;;-1:-1:-1;30617:16:0;30593:40;;30662:4;30644;30649:1;30644:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30644:23:0;;;:7;;;;;;;;;;:23;;;;30688:15;;:22;;;-1:-1:-1;;;30688:22:0;;;;:15;;;;;:20;;:22;;;;;30644:7;;30688:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30678:4;30683:1;30678:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30678:32:0;;;:7;;;;;;;;;;:32;;;;30759:15;;30744:4;10812:7;10839:18;;;:11;:18;;;;;;30759:15;;;;10839:27;;;;;;30779:11;-1:-1:-1;30723:156:0;;;30837:15;;30805:62;;30822:4;;-1:-1:-1;;;;;30837:15:0;-1:-1:-1;;30805:8:0;:62::i;:::-;30917:15;;:224;;-1:-1:-1;;;30917:224:0;;-1:-1:-1;;;;;30917:15:0;;;;:66;;:224;;30998:11;;30917:15;;31068:4;;31095;;31115:15;;30917:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30522:637;30467:692;:::o;31167:381::-;31278:15;;-1:-1:-1;;;;;31278:15:0;:31;31317:9;31350:4;31370:11;31278:15;;31482:7;2380:6;;-1:-1:-1;;;;;2380:6:0;;2307:87;31482:7;31278:252;;;;;;-1:-1:-1;;;;;;31278:252:0;;;-1:-1:-1;;;;;14299:15:1;;;31278:252:0;;;14281:34:1;14331:18;;;14324:34;;;;14374:18;;;14367:34;;;;14417:18;;;14410:34;14481:15;;;14460:19;;;14453:44;31504:15:0;14513:19:1;;;14506:35;14215:19;;31278:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:247::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;1799:9;1786:23;1818:31;1843:5;1818:31;:::i;:::-;1868:5;1632:247;-1:-1:-1;;;1632:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2534:385::-;2620:6;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;-1:-1:-1;;2737:23:1;;;2807:2;2792:18;;2779:32;;-1:-1:-1;2858:2:1;2843:18;;2830:32;;2909:2;2894:18;2881:32;;-1:-1:-1;2534:385:1;-1:-1:-1;2534:385:1:o;3356:180::-;3415:6;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;-1:-1:-1;3507:23:1;;3356:180;-1:-1:-1;3356:180:1:o;3541:160::-;3606:20;;3662:13;;3655:21;3645:32;;3635:60;;3691:1;3688;3681:12;3635:60;3541:160;;;:::o;3706:315::-;3771:6;3779;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3887:9;3874:23;3906:31;3931:5;3906:31;:::i;:::-;3956:5;-1:-1:-1;3980:35:1;4011:2;3996:18;;3980:35;:::i;:::-;3970:45;;3706:315;;;;;:::o;4026:180::-;4082:6;4135:2;4123:9;4114:7;4110:23;4106:32;4103:52;;;4151:1;4148;4141:12;4103:52;4174:26;4190:9;4174:26;:::i;4211:404::-;4295:6;4303;4356:2;4344:9;4335:7;4331:23;4327:32;4324:52;;;4372:1;4369;4362:12;4324:52;4411:9;4398:23;4430:31;4455:5;4430:31;:::i;:::-;4480:5;-1:-1:-1;4537:2:1;4522:18;;4509:32;4550:33;4509:32;4550:33;:::i;:::-;4602:7;4592:17;;;4211:404;;;;;:::o;5013:380::-;5092:1;5088:12;;;;5135;;;5156:61;;5210:4;5202:6;5198:17;5188:27;;5156:61;5263:2;5255:6;5252:14;5232:18;5229:38;5226:161;;5309:10;5304:3;5300:20;5297:1;5290:31;5344:4;5341:1;5334:15;5372:4;5369:1;5362:15;5226:161;;5013:380;;;:::o;5807:127::-;5868:10;5863:3;5859:20;5856:1;5849:31;5899:4;5896:1;5889:15;5923:4;5920:1;5913:15;5939:125;6004:9;;;6025:10;;;6022:36;;;6038:18;;:::i;6069:356::-;6271:2;6253:21;;;6290:18;;;6283:30;6349:34;6344:2;6329:18;;6322:62;6416:2;6401:18;;6069:356::o;6430:168::-;6503:9;;;6534;;6551:15;;;6545:22;;6531:37;6521:71;;6572:18;;:::i;6603:217::-;6643:1;6669;6659:132;;6713:10;6708:3;6704:20;6701:1;6694:31;6748:4;6745:1;6738:15;6776:4;6773:1;6766:15;6659:132;-1:-1:-1;6805:9:1;;6603:217::o;8857:401::-;9059:2;9041:21;;;9098:2;9078:18;;;9071:30;9137:34;9132:2;9117:18;;9110:62;-1:-1:-1;;;9203:2:1;9188:18;;9181:35;9248:3;9233:19;;8857:401::o;9263:399::-;9465:2;9447:21;;;9504:2;9484:18;;;9477:30;9543:34;9538:2;9523:18;;9516:62;-1:-1:-1;;;9609:2:1;9594:18;;9587:33;9652:3;9637:19;;9263:399::o;10837:128::-;10904:9;;;10925:11;;;10922:37;;;10939:18;;:::i;12567:127::-;12628:10;12623:3;12619:20;12616:1;12609:31;12659:4;12656:1;12649:15;12683:4;12680:1;12673:15;12699:251;12769:6;12822:2;12810:9;12801:7;12797:23;12793:32;12790:52;;;12838:1;12835;12828:12;12790:52;12870:9;12864:16;12889:31;12914:5;12889:31;:::i;12955:980::-;13217:4;13265:3;13254:9;13250:19;13296:6;13285:9;13278:25;13322:2;13360:6;13355:2;13344:9;13340:18;13333:34;13403:3;13398:2;13387:9;13383:18;13376:31;13427:6;13462;13456:13;13493:6;13485;13478:22;13531:3;13520:9;13516:19;13509:26;;13570:2;13562:6;13558:15;13544:29;;13591:1;13601:195;13615:6;13612:1;13609:13;13601:195;;;13680:13;;-1:-1:-1;;;;;13676:39:1;13664:52;;13771:15;;;;13736:12;;;;13712:1;13630:9;13601:195;;;-1:-1:-1;;;;;;;13852:32:1;;;;13847:2;13832:18;;13825:60;-1:-1:-1;;;13916:3:1;13901:19;13894:35;13813:3;12955:980;-1:-1:-1;;;12955:980:1:o;14552:306::-;14640:6;14648;14656;14709:2;14697:9;14688:7;14684:23;14680:32;14677:52;;;14725:1;14722;14715:12;14677:52;14754:9;14748:16;14738:26;;14804:2;14793:9;14789:18;14783:25;14773:35;;14848:2;14837:9;14833:18;14827:25;14817:35;;14552:306;;;;;:::o

Swarm Source

ipfs://dcd82220539adaf294cdc4baea1d38e785c4db47d7611648917f298e88ec235b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.