ETH Price: $3,029.07 (+3.34%)
Gas: 1 Gwei

Token

$DIE CN (死)
 

Overview

Max Total Supply

1,000,000,000

Holders

123

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
29,093,962.059009662 死

Value
$0.00
0x4485d0ff9500efd5fad82a8e80693defa3592582
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:
DIE

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

https://t.me/DIECOMMUNITY

REAL DIE TOKEN . CHINA - CHINESE DEV .

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @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");

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

    /**
     * @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");

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract DIE is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "$DIE CN";
    string private _symbol = unicode"死";
    uint8 private _decimals = 9;
    uint256 private _supply = 1000000000; 
    uint256 public taxForLiquidity = 1;
    uint256 public taxForValidator = 2;
    uint256 public maxTxAmount = 30000000 * 10**_decimals; // 3%
    uint256 public maxWalletAmount = 30000000 * 10**_decimals; // 3%
    address public validatorWallet = 0x9c94f96b6a8Bc704c4F694BE3560eafB5F9f75ee;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _validatorReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 500000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 10**_decimals;
    bool inSwapAndLiquify;

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[validatorWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _validatorReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_validatorReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _validatorReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(validatorWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 validatorShare = ((amount * taxForValidator) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (validatorShare + liquidityShare);
                _validatorReserves += validatorShare;

                super._transfer(from, address(this), (validatorShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeValidatorWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        validatorWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndValidator(uint256 _taxForLiquidity, uint256 _taxForValidator)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForValidator) <= 100, "ERC20: total tax must not be greater than 100");
        taxForLiquidity = _taxForLiquidity;
        taxForValidator = _taxForValidator;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    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":"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":"tokensIntoLiqudity","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForValidator","type":"uint256"}],"name":"changeTaxForLiquidityAndValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeValidatorWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForValidator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"validatorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600760c090815266122224a29021a760c91b60e05260069062000029908262000652565b50604080518082019091526003815262e6adbb60e81b602082015260079062000053908262000652565b506008805460ff19166009908117909155633b9aca0081556001600a9081556002600b5562000083919062000833565b62000093906301c9c3806200084b565b600c55600854620000a99060ff16600a62000833565b620000b9906301c9c3806200084b565b600d55600e80546001600160a01b031916739c94f96b6a8bc704c4f694be3560eafb5f9f75ee1790556000600f55600854620000fa9060ff16600a62000833565b62000109906207a1206200084b565b6011556008546200011f9060ff16600a62000833565b6200012e9062030d406200084b565b6012553480156200013e57600080fd5b50600680546200014e90620005c3565b80601f01602080910402602001604051908101604052809291908181526020018280546200017c90620005c3565b8015620001cd5780601f10620001a157610100808354040283529160200191620001cd565b820191906000526020600020905b815481529060010190602001808311620001af57829003601f168201915b505050505060078054620001e190620005c3565b80601f01602080910402602001604051908101604052809291908181526020018280546200020f90620005c3565b8015620002605780601f10620002345761010080835404028352916020019162000260565b820191906000526020600020905b8154815290600101906020018083116200024257829003601f168201915b5050505050816003908162000276919062000652565b50600462000285828262000652565b505050620002a26200029c6200049160201b60201c565b62000495565b600854620002d1903390620002bc9060ff16600a62000833565b600954620002cb91906200084b565b620004e7565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f91906200086d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200039d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c391906200086d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000411573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043791906200086d565b6001600160a01b0390811660a05290811660808190526000908152601060205260408082208054600160ff1991821681179092553384528284208054821683179055600e54909416835291208054909216179055620008ae565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000556919062000898565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d857607f821691505b602082108103620005f957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064d57600081815260208120601f850160051c81016020861015620006285750805b601f850160051c820191505b81811015620006495782815560010162000634565b5050505b505050565b81516001600160401b038111156200066e576200066e620005ad565b62000686816200067f8454620005c3565b84620005ff565b602080601f831160018114620006be5760008415620006a55750858301515b600019600386901b1c1916600185901b17855562000649565b600085815260208120601f198616915b82811015620006ef57888601518255948401946001909101908401620006ce565b50858210156200070e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007755781600019048211156200075957620007596200071e565b808516156200076757918102915b93841c939080029062000739565b509250929050565b6000826200078e575060016200082d565b816200079d575060006200082d565b8160018114620007b65760028114620007c157620007e1565b60019150506200082d565b60ff841115620007d557620007d56200071e565b50506001821b6200082d565b5060208310610133831016604e8410600b841016171562000806575081810a6200082d565b62000812838362000734565b80600019048211156200082957620008296200071e565b0290505b92915050565b60006200084460ff8416836200077d565b9392505050565b60008160001904831182151516156200086857620008686200071e565b500290565b6000602082840312156200088057600080fd5b81516001600160a01b03811681146200084457600080fd5b808201808211156200082d576200082d6200071e565b60805160a0516116f262000913600039600081816102fb01528181610a6801528181610aa301528181610aed0152610cbc0152600081816101fe01528181610f760152818161102f0152818161105e015281816111f3015261121a01526116f26000f3fe6080604052600436106101695760003560e01c806370a08231116100d1578063a457c2d71161008a578063aceeaeb611610064578063aceeaeb614610449578063dd62ed3e14610469578063f2fde38b14610489578063f345bd85146104a957600080fd5b8063a457c2d7146103f3578063a9059cbb14610413578063aa4bde281461043357600080fd5b806370a082311461033d578063715018a61461037357806381bfdcca1461038a5780638c0b5e22146103aa5780638da5cb5b146103c057806395d89b41146103de57600080fd5b806323b872dd1161012357806323b872dd146102775780632b620a9214610297578063313ce567146102ad57806339509351146102c957806349bd5a5e146102e9578063677daa571461031d57600080fd5b8062a806721461017557806306fdde03146101aa578063095ea7b3146101cc5780631694505e146101ec57806318160ddd146102385780631ba1a9161461025757600080fd5b3661017057005b600080fd5b34801561018157600080fd5b50610195610190366004611312565b6104bf565b60405190151581526020015b60405180910390f35b3480156101b657600080fd5b506101bf6104ee565b6040516101a19190611336565b3480156101d857600080fd5b506101956101e7366004611384565b610580565b3480156101f857600080fd5b506102207f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101a1565b34801561024457600080fd5b506002545b6040519081526020016101a1565b34801561026357600080fd5b50600e54610220906001600160a01b031681565b34801561028357600080fd5b506101956102923660046113b0565b61059a565b3480156102a357600080fd5b50610249600b5481565b3480156102b957600080fd5b50604051600981526020016101a1565b3480156102d557600080fd5b506101956102e4366004611384565b6105be565b3480156102f557600080fd5b506102207f000000000000000000000000000000000000000000000000000000000000000081565b34801561032957600080fd5b506101956103383660046113f1565b6105e0565b34801561034957600080fd5b50610249610358366004611312565b6001600160a01b031660009081526020819052604090205490565b34801561037f57600080fd5b506103886105f3565b005b34801561039657600080fd5b506101956103a53660046113f1565b610607565b3480156103b657600080fd5b50610249600c5481565b3480156103cc57600080fd5b506005546001600160a01b0316610220565b3480156103ea57600080fd5b506101bf61061a565b3480156103ff57600080fd5b5061019561040e366004611384565b610629565b34801561041f57600080fd5b5061019561042e366004611384565b6106a9565b34801561043f57600080fd5b50610249600d5481565b34801561045557600080fd5b5061019561046436600461140a565b6106b7565b34801561047557600080fd5b5061024961048436600461142c565b610740565b34801561049557600080fd5b506103886104a4366004611312565b61076b565b3480156104b557600080fd5b50610249600a5481565b60006104c96107e4565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6060600380546104fd90611465565b80601f016020809104026020016040519081016040528092919081815260200182805461052990611465565b80156105765780601f1061054b57610100808354040283529160200191610576565b820191906000526020600020905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b60003361058e81858561083e565b60019150505b92915050565b6000336105a8858285610962565b6105b38585856109dc565b506001949350505050565b60003361058e8185856105d18383610740565b6105db91906114b5565b61083e565b60006105ea6107e4565b50600c55600190565b6105fb6107e4565b6106056000610e22565b565b60006106116107e4565b50600d55600190565b6060600480546104fd90611465565b600033816106378286610740565b90508381101561069c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105b3828686840361083e565b60003361058e8185856109dc565b60006106c16107e4565b60646106cd83856114b5565b11156107315760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610693565b50600a91909155600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107736107e4565b6001600160a01b0381166107d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b6107e181610e22565b50565b6005546001600160a01b031633146106055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610693565b6001600160a01b0383166108a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b6001600160a01b0382166109015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610693565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061096e8484610740565b905060001981146109d657818110156109c95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610693565b6109d6848484840361083e565b50505050565b6001600160a01b038316610a025760405162461bcd60e51b8152600401610693906114c8565b6001600160a01b038216610a285760405162461bcd60e51b81526004016106939061150d565b80610a48846001600160a01b031660009081526020819052604090205490565b1015610a665760405162461bcd60e51b815260040161069390611550565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610ad757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610ae6575060135460ff16155b15610e12577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610bf757600f54306000908152602081905260408120549091610b4291611596565b90506011548110610b5857610b58601154610e74565b601254600f5410610bf557610b6e601254610f12565b601254600f6000828254610b829190611596565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610bf35760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610693565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610c3657506001600160a01b03831660009081526010602052604090205460ff165b15610c42575080610e07565b600c54821115610cba5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610693565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610d8657600d546001600160a01b038416600090815260208190526040902054610d1990846114b5565b1115610d865760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610693565b60006064600b5484610d9891906115a9565b610da291906115c8565b905060006064600a5485610db691906115a9565b610dc091906115c8565b9050610dcc81836114b5565b610dd69085611596565b925081600f6000828254610dea91906114b5565b90915550610e0490508630610dff84866114b5565b6110f4565b50505b6109d68484836110f4565b610e1d8383836110f4565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e8e6002836115c8565b90506000610e9c8284611596565b905047610ea883610f12565b6000610eb48247611596565b9050610ec083826111e0565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f5457610f546115ea565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190611600565b81600181518110611009576110096115ea565b60200260200101906001600160a01b031690816001600160a01b031681525050611054307f00000000000000000000000000000000000000000000000000000000000000008461083e565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306110944261012c6114b5565b6040518663ffffffff1660e01b81526004016110b495949392919061161d565b600060405180830381600087803b1580156110ce57600080fd5b505af11580156110e2573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b03831661111a5760405162461bcd60e51b8152600401610693906114c8565b6001600160a01b0382166111405760405162461bcd60e51b81526004016106939061150d565b6001600160a01b038316600090815260208190526040902054818110156111795760405162461bcd60e51b815260040161069390611550565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611218307f00000000000000000000000000000000000000000000000000000000000000008461083e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061125f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112ec919061168e565b50506013805460ff19169055505050565b6001600160a01b03811681146107e157600080fd5b60006020828403121561132457600080fd5b813561132f816112fd565b9392505050565b600060208083528351808285015260005b8181101561136357858101830151858201604001528201611347565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561139757600080fd5b82356113a2816112fd565b946020939093013593505050565b6000806000606084860312156113c557600080fd5b83356113d0816112fd565b925060208401356113e0816112fd565b929592945050506040919091013590565b60006020828403121561140357600080fd5b5035919050565b6000806040838503121561141d57600080fd5b50508035926020909101359150565b6000806040838503121561143f57600080fd5b823561144a816112fd565b9150602083013561145a816112fd565b809150509250929050565b600181811c9082168061147957607f821691505b60208210810361149957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105945761059461149f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b818103818111156105945761059461149f565b60008160001904831182151516156115c3576115c361149f565b500290565b6000826115e557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561161257600080fd5b815161132f816112fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561166d5784516001600160a01b031683529383019391830191600101611648565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156116a357600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122076ec118468c8a01968efc33ac58c613d454de08e67d706878ac84edb630f9d9464736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101695760003560e01c806370a08231116100d1578063a457c2d71161008a578063aceeaeb611610064578063aceeaeb614610449578063dd62ed3e14610469578063f2fde38b14610489578063f345bd85146104a957600080fd5b8063a457c2d7146103f3578063a9059cbb14610413578063aa4bde281461043357600080fd5b806370a082311461033d578063715018a61461037357806381bfdcca1461038a5780638c0b5e22146103aa5780638da5cb5b146103c057806395d89b41146103de57600080fd5b806323b872dd1161012357806323b872dd146102775780632b620a9214610297578063313ce567146102ad57806339509351146102c957806349bd5a5e146102e9578063677daa571461031d57600080fd5b8062a806721461017557806306fdde03146101aa578063095ea7b3146101cc5780631694505e146101ec57806318160ddd146102385780631ba1a9161461025757600080fd5b3661017057005b600080fd5b34801561018157600080fd5b50610195610190366004611312565b6104bf565b60405190151581526020015b60405180910390f35b3480156101b657600080fd5b506101bf6104ee565b6040516101a19190611336565b3480156101d857600080fd5b506101956101e7366004611384565b610580565b3480156101f857600080fd5b506102207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101a1565b34801561024457600080fd5b506002545b6040519081526020016101a1565b34801561026357600080fd5b50600e54610220906001600160a01b031681565b34801561028357600080fd5b506101956102923660046113b0565b61059a565b3480156102a357600080fd5b50610249600b5481565b3480156102b957600080fd5b50604051600981526020016101a1565b3480156102d557600080fd5b506101956102e4366004611384565b6105be565b3480156102f557600080fd5b506102207f0000000000000000000000008e1e97221e77d0799112fb9d921a9b66a6b372ae81565b34801561032957600080fd5b506101956103383660046113f1565b6105e0565b34801561034957600080fd5b50610249610358366004611312565b6001600160a01b031660009081526020819052604090205490565b34801561037f57600080fd5b506103886105f3565b005b34801561039657600080fd5b506101956103a53660046113f1565b610607565b3480156103b657600080fd5b50610249600c5481565b3480156103cc57600080fd5b506005546001600160a01b0316610220565b3480156103ea57600080fd5b506101bf61061a565b3480156103ff57600080fd5b5061019561040e366004611384565b610629565b34801561041f57600080fd5b5061019561042e366004611384565b6106a9565b34801561043f57600080fd5b50610249600d5481565b34801561045557600080fd5b5061019561046436600461140a565b6106b7565b34801561047557600080fd5b5061024961048436600461142c565b610740565b34801561049557600080fd5b506103886104a4366004611312565b61076b565b3480156104b557600080fd5b50610249600a5481565b60006104c96107e4565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6060600380546104fd90611465565b80601f016020809104026020016040519081016040528092919081815260200182805461052990611465565b80156105765780601f1061054b57610100808354040283529160200191610576565b820191906000526020600020905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b60003361058e81858561083e565b60019150505b92915050565b6000336105a8858285610962565b6105b38585856109dc565b506001949350505050565b60003361058e8185856105d18383610740565b6105db91906114b5565b61083e565b60006105ea6107e4565b50600c55600190565b6105fb6107e4565b6106056000610e22565b565b60006106116107e4565b50600d55600190565b6060600480546104fd90611465565b600033816106378286610740565b90508381101561069c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105b3828686840361083e565b60003361058e8185856109dc565b60006106c16107e4565b60646106cd83856114b5565b11156107315760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610693565b50600a91909155600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107736107e4565b6001600160a01b0381166107d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b6107e181610e22565b50565b6005546001600160a01b031633146106055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610693565b6001600160a01b0383166108a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b6001600160a01b0382166109015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610693565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061096e8484610740565b905060001981146109d657818110156109c95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610693565b6109d6848484840361083e565b50505050565b6001600160a01b038316610a025760405162461bcd60e51b8152600401610693906114c8565b6001600160a01b038216610a285760405162461bcd60e51b81526004016106939061150d565b80610a48846001600160a01b031660009081526020819052604090205490565b1015610a665760405162461bcd60e51b815260040161069390611550565b7f0000000000000000000000008e1e97221e77d0799112fb9d921a9b66a6b372ae6001600160a01b0316836001600160a01b03161480610ad757507f0000000000000000000000008e1e97221e77d0799112fb9d921a9b66a6b372ae6001600160a01b0316826001600160a01b0316145b8015610ae6575060135460ff16155b15610e12577f0000000000000000000000008e1e97221e77d0799112fb9d921a9b66a6b372ae6001600160a01b0316836001600160a01b031614610bf757600f54306000908152602081905260408120549091610b4291611596565b90506011548110610b5857610b58601154610e74565b601254600f5410610bf557610b6e601254610f12565b601254600f6000828254610b829190611596565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610bf35760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610693565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610c3657506001600160a01b03831660009081526010602052604090205460ff165b15610c42575080610e07565b600c54821115610cba5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610693565b7f0000000000000000000000008e1e97221e77d0799112fb9d921a9b66a6b372ae6001600160a01b0316846001600160a01b031603610d8657600d546001600160a01b038416600090815260208190526040902054610d1990846114b5565b1115610d865760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610693565b60006064600b5484610d9891906115a9565b610da291906115c8565b905060006064600a5485610db691906115a9565b610dc091906115c8565b9050610dcc81836114b5565b610dd69085611596565b925081600f6000828254610dea91906114b5565b90915550610e0490508630610dff84866114b5565b6110f4565b50505b6109d68484836110f4565b610e1d8383836110f4565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e8e6002836115c8565b90506000610e9c8284611596565b905047610ea883610f12565b6000610eb48247611596565b9050610ec083826111e0565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f5457610f546115ea565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190611600565b81600181518110611009576110096115ea565b60200260200101906001600160a01b031690816001600160a01b031681525050611054307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461083e565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306110944261012c6114b5565b6040518663ffffffff1660e01b81526004016110b495949392919061161d565b600060405180830381600087803b1580156110ce57600080fd5b505af11580156110e2573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b03831661111a5760405162461bcd60e51b8152600401610693906114c8565b6001600160a01b0382166111405760405162461bcd60e51b81526004016106939061150d565b6001600160a01b038316600090815260208190526040902054818110156111795760405162461bcd60e51b815260040161069390611550565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611218307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461083e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71982308560008061125f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112ec919061168e565b50506013805460ff19169055505050565b6001600160a01b03811681146107e157600080fd5b60006020828403121561132457600080fd5b813561132f816112fd565b9392505050565b600060208083528351808285015260005b8181101561136357858101830151858201604001528201611347565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561139757600080fd5b82356113a2816112fd565b946020939093013593505050565b6000806000606084860312156113c557600080fd5b83356113d0816112fd565b925060208401356113e0816112fd565b929592945050506040919091013590565b60006020828403121561140357600080fd5b5035919050565b6000806040838503121561141d57600080fd5b50508035926020909101359150565b6000806040838503121561143f57600080fd5b823561144a816112fd565b9150602083013561145a816112fd565b809150509250929050565b600181811c9082168061147957607f821691505b60208210810361149957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105945761059461149f565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b818103818111156105945761059461149f565b60008160001904831182151516156115c3576115c361149f565b500290565b6000826115e557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561161257600080fd5b815161132f816112fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561166d5784516001600160a01b031683529383019391830191600101611648565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156116a357600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122076ec118468c8a01968efc33ac58c613d454de08e67d706878ac84edb630f9d9464736f6c63430008100033

Deployed Bytecode Sourcemap

28227:7218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34427:182;;;;;;;;;;-1:-1:-1;34427:182:0;;;;;:::i;:::-;;:::i;:::-;;;567:14:1;;560:22;542:41;;530:2;515:18;34427:182:0;;;;;;;;17946:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20220:244::-;;;;;;;;;;-1:-1:-1;20220:244:0;;;;;:::i;:::-;;:::i;28898:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;28898:51:0;1467:229:1;19084:110:0;;;;;;;;;;-1:-1:-1;19174:12:0;;19084:110;;;1847:25:1;;;1835:2;1820:18;19084:110:0;1701:177:1;28729:75:0;;;;;;;;;;-1:-1:-1;28729:75:0;;;;-1:-1:-1;;;;;28729:75:0;;;21044:297;;;;;;;;;;-1:-1:-1;21044:297:0;;;;;:::i;:::-;;:::i;28552:34::-;;;;;;;;;;;;;;;;18927:92;;;;;;;;;;-1:-1:-1;18927:92:0;;19010:1;2694:36:1;;2682:2;2667:18;18927:92:0;2552:184:1;22760:272:0;;;;;;;;;;-1:-1:-1;22760:272:0;;;;;:::i;:::-;;:::i;28956:38::-;;;;;;;;;;;;;;;35017:182;;;;;;;;;;-1:-1:-1;35017:182:0;;;;;:::i;:::-;;:::i;18111:177::-;;;;;;;;;;-1:-1:-1;18111:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18262:18:0;18230:7;18262:18;;;;;;;;;;;;18111:177;15205:103;;;;;;;;;;;;;:::i;:::-;;35207:198;;;;;;;;;;-1:-1:-1;35207:198:0;;;;;:::i;:::-;;:::i;28593:53::-;;;;;;;;;;;;;;;;14557:87;;;;;;;;;;-1:-1:-1;14630:6:0;;-1:-1:-1;;;;;14630:6:0;14557:87;;17770:106;;;;;;;;;;;;;:::i;21844:507::-;;;;;;;;;;-1:-1:-1;21844:507:0;;;;;:::i;:::-;;:::i;19664:236::-;;;;;;;;;;-1:-1:-1;19664:236:0;;;;;:::i;:::-;;:::i;28659:57::-;;;;;;;;;;;;;;;;34617:392;;;;;;;;;;-1:-1:-1;34617:392:0;;;;;:::i;:::-;;:::i;19257:201::-;;;;;;;;;;-1:-1:-1;19257:201:0;;;;;:::i;:::-;;:::i;15463:238::-;;;;;;;;;;-1:-1:-1;15463:238:0;;;;;:::i;:::-;;:::i;28511:34::-;;;;;;;;;;;;;;;;34427:182;34530:4;14443:13;:11;:13::i;:::-;-1:-1:-1;34552:15:0::1;:27:::0;;-1:-1:-1;;;;;34552:27:0;::::1;-1:-1:-1::0;;;;;;34552:27:0;;::::1;;::::0;;;34427:182;;;:::o;17946:102::-;18002:13;18035:5;18028:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17946:102;:::o;20220:244::-;20341:4;13430:10;20402:32;13430:10;20418:7;20427:6;20402:8;:32::i;:::-;20452:4;20445:11;;;20220:244;;;;;:::o;21044:297::-;21177:4;13430:10;21235:38;21251:4;13430:10;21266:6;21235:15;:38::i;:::-;21284:27;21294:4;21300:2;21304:6;21284:9;:27::i;:::-;-1:-1:-1;21329:4:0;;21044:297;-1:-1:-1;;;;21044:297:0:o;22760:272::-;22877:4;13430:10;22938:64;13430:10;22954:7;22991:10;22963:25;13430:10;22954:7;22963:9;:25::i;:::-;:38;;;;:::i;:::-;22938:8;:64::i;35017:182::-;35119:4;14443:13;:11;:13::i;:::-;-1:-1:-1;35141:11:0::1;:26:::0;35187:4:::1;::::0;35017:182::o;15205:103::-;14443:13;:11;:13::i;:::-;15270:30:::1;15297:1;15270:18;:30::i;:::-;15205:103::o:0;35207:198::-;35317:4;14443:13;:11;:13::i;:::-;-1:-1:-1;35339:15:0::1;:34:::0;35393:4:::1;::::0;35207:198::o;17770:106::-;17828:13;17861:7;17854:14;;;;;:::i;21844:507::-;21966:4;13430:10;21966:4;22054:25;13430:10;22071:7;22054:9;:25::i;:::-;22027:52;;22132:15;22112:16;:35;;22090:122;;;;-1:-1:-1;;;22090:122:0;;4421:2:1;22090:122:0;;;4403:21:1;4460:2;4440:18;;;4433:30;4499:34;4479:18;;;4472:62;-1:-1:-1;;;4550:18:1;;;4543:35;4595:19;;22090:122:0;;;;;;;;;22248:60;22257:5;22264:7;22292:15;22273:16;:34;22248:8;:60::i;19664:236::-;19781:4;13430:10;19842:28;13430:10;19859:2;19863:6;19842:9;:28::i;34617:392::-;34765:4;14443:13;:11;:13::i;:::-;34834:3:::1;34796:33;34813:16:::0;34796;:33:::1;:::i;:::-;34795:42;;34787:100;;;::::0;-1:-1:-1;;;34787:100:0;;4827:2:1;34787:100:0::1;::::0;::::1;4809:21:1::0;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;-1:-1:-1;;;4956:18:1;;;4949:43;5009:19;;34787:100:0::1;4625:409:1::0;34787:100:0::1;-1:-1:-1::0;34898:15:0::1;:34:::0;;;;34943:15:::1;:34:::0;34997:4:::1;::::0;34617:392::o;19257:201::-;-1:-1:-1;;;;;19423:18:0;;;19391:7;19423:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19257:201::o;15463:238::-;14443:13;:11;:13::i;:::-;-1:-1:-1;;;;;15566:22:0;::::1;15544:110;;;::::0;-1:-1:-1;;;15544:110:0;;5241:2:1;15544:110:0::1;::::0;::::1;5223:21:1::0;5280:2;5260:18;;;5253:30;5319:34;5299:18;;;5292:62;-1:-1:-1;;;5370:18:1;;;5363:36;5416:19;;15544:110:0::1;5039:402:1::0;15544:110:0::1;15665:28;15684:8;15665:18;:28::i;:::-;15463:238:::0;:::o;14722:132::-;14630:6;;-1:-1:-1;;;;;14630:6:0;13430:10;14786:23;14778:68;;;;-1:-1:-1;;;14778:68:0;;5648:2:1;14778:68:0;;;5630:21:1;;;5667:18;;;5660:30;5726:34;5706:18;;;5699:62;5778:18;;14778:68:0;5446:356:1;25067:380:0;-1:-1:-1;;;;;25203:19:0;;25195:68;;;;-1:-1:-1;;;25195:68:0;;6009:2:1;25195:68:0;;;5991:21:1;6048:2;6028:18;;;6021:30;6087:34;6067:18;;;6060:62;-1:-1:-1;;;6138:18:1;;;6131:34;6182:19;;25195:68:0;5807:400:1;25195:68:0;-1:-1:-1;;;;;25282:21:0;;25274:68;;;;-1:-1:-1;;;25274:68:0;;6414:2:1;25274:68:0;;;6396:21:1;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;-1:-1:-1;;;6543:18:1;;;6536:32;6585:19;;25274:68:0;6212:398:1;25274:68:0;-1:-1:-1;;;;;25355:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25407:32;;1847:25:1;;;25407:32:0;;1820:18:1;25407:32:0;;;;;;;25067:380;;;:::o;25738:502::-;25873:24;25900:25;25910:5;25917:7;25900:9;:25::i;:::-;25873:52;;-1:-1:-1;;25940:16:0;:37;25936:297;;26040:6;26020:16;:26;;25994:117;;;;-1:-1:-1;;;25994:117:0;;6817:2:1;25994:117:0;;;6799:21:1;6856:2;6836:18;;;6829:30;6895:31;6875:18;;;6868:59;6944:18;;25994:117:0;6615:353:1;25994:117:0;26155:51;26164:5;26171:7;26199:6;26180:16;:25;26155:8;:51::i;:::-;25862:378;25738:502;;;:::o;30878:2149::-;-1:-1:-1;;;;;30976:18:0;;30968:68;;;;-1:-1:-1;;;30968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31055:16:0;;31047:64;;;;-1:-1:-1;;;31047:64:0;;;;;;;:::i;:::-;31149:6;31130:15;31140:4;-1:-1:-1;;;;;18262:18:0;18230:7;18262:18;;;;;;;;;;;;18111:177;31130:15;:25;;31122:76;;;;-1:-1:-1;;;31122:76:0;;;;;;;:::i;:::-;31224:13;-1:-1:-1;;;;;31216:21:0;:4;-1:-1:-1;;;;;31216:21:0;;:44;;;;31247:13;-1:-1:-1;;;;;31241:19:0;:2;-1:-1:-1;;;;;31241:19:0;;31216:44;31215:67;;;;-1:-1:-1;31266:16:0;;;;31265:17;31215:67;31211:1809;;;31311:13;-1:-1:-1;;;;;31303:21:0;:4;-1:-1:-1;;;;;31303:21:0;;31299:686;;31407:18;;31398:4;31345:32;18262:18;;;;;;;;;;;31345:32;;31380:45;;;:::i;:::-;31345:80;;31476:30;;31448:24;:58;31444:154;;31531:47;31547:30;;31531:15;:47::i;:::-;31644:24;;31621:18;;31620:48;31616:354;;31693:43;31711:24;;31693:17;:43::i;:::-;31781:24;;31759:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;31848:15:0;;31840:52;;31828:9;;-1:-1:-1;;;;;31848:15:0;;31870:21;31840:52;;;;;31828:9;31840:52;31828:9;31840:52;31870:21;31848:15;31840:52;;;;;;;31828:64;;31923:4;31915:35;;;;-1:-1:-1;;;31915:35:0;;8525:2:1;31915:35:0;;;8507:21:1;8564:2;8544:18;;;8537:30;-1:-1:-1;;;8583:18:1;;;8576:48;8641:18;;31915:35:0;8323:342:1;31915:35:0;31670:300;31616:354;31326:659;31299:686;-1:-1:-1;;;;;32042:24:0;;32001:22;32042:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32070:22:0;;;;;;:18;:22;;;;;;;;32042:50;32038:839;;;-1:-1:-1;32130:6:0;32038:839;;;32209:11;;32199:6;:21;;32191:91;;;;-1:-1:-1;;;32191:91:0;;8872:2:1;32191:91:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:34;8930:18;;;8923:62;9021:27;9001:18;;;8994:55;9066:19;;32191:91:0;8670:421:1;32191:91:0;32312:13;-1:-1:-1;;;;;32304:21:0;:4;-1:-1:-1;;;;;32304:21:0;;32301:178;;32385:15;;-1:-1:-1;;;;;18262:18:0;;18230:7;18262:18;;;;;;;;;;;32358:22;;:6;:22;:::i;:::-;32357:43;;32349:110;;;;-1:-1:-1;;;32349:110:0;;9298:2:1;32349:110:0;;;9280:21:1;9337:2;9317:18;;;9310:30;9376:34;9356:18;;;9349:62;-1:-1:-1;;;9427:18:1;;;9420:52;9489:19;;32349:110:0;9096:418:1;32349:110:0;32499:22;32554:3;32535:15;;32526:6;:24;;;;:::i;:::-;32525:32;;;;:::i;:::-;32499:59;;32577:22;32632:3;32613:15;;32604:6;:24;;;;:::i;:::-;32603:32;;;;:::i;:::-;32577:59;-1:-1:-1;32682:31:0;32577:59;32682:14;:31;:::i;:::-;32672:42;;:6;:42;:::i;:::-;32655:59;;32755:14;32733:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32790:71:0;;-1:-1:-1;32806:4:0;32820;32828:31;32845:14;32828;:31;:::i;:::-;32790:15;:71::i;:::-;32172:705;;32038:839;32891:41;32907:4;32913:2;32917:14;32891:15;:41::i;31211:1809::-;32975:33;32991:4;32997:2;33001:6;32975:15;:33::i;:::-;30878:2149;;;:::o;15861:191::-;15954:6;;;-1:-1:-1;;;;;15971:17:0;;;-1:-1:-1;;;;;;15971:17:0;;;;;;;16004:40;;15954:6;;;15971:17;15954:6;;16004:40;;15935:16;;16004:40;15924:128;15861:191;:::o;33035:474::-;29455:16;:23;;-1:-1:-1;;29455:23:0;29474:4;29455:23;;;:16;33137:24:::1;33160:1;33137:20:::0;:24:::1;:::i;:::-;33121:41:::0;-1:-1:-1;33173:17:0::1;33194:27;33121:41:::0;33194:20;:27:::1;:::i;:::-;33173:49:::0;-1:-1:-1;33260:21:0::1;33294:23;33312:4:::0;33294:17:::1;:23::i;:::-;33330:18;33352:38;33376:14:::0;33352:21:::1;:38;:::i;:::-;33330:61;;33404:36;33418:9;33429:10;33404:13;:36::i;:::-;33458:43;::::0;;10116:25:1;;;10172:2;10157:18;;10150:34;;;10200:18;;;10193:34;;;33458:43:0::1;::::0;10104:2:1;10089:18;33458:43:0::1;;;;;;;-1:-1:-1::0;;29501:16:0;:24;;-1:-1:-1;;29501:24:0;;;-1:-1:-1;;;33035:474:0:o;33517:496::-;29455:16;:23;;-1:-1:-1;;29455:23:0;29474:4;29455:23;;;33620:16:::1;::::0;;33634:1:::1;33620:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33620:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33620:16:0::1;33596:40;;33665:4;33647;33652:1;33647:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33647:23:0::1;;;-1:-1:-1::0;;;;;33647:23:0::1;;;::::0;::::1;33691:15;-1:-1:-1::0;;;;;33691:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33681:4;33686:1;33681:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33681:32:0::1;;;-1:-1:-1::0;;;;;33681:32:0::1;;;::::0;::::1;33726:62;33743:4;33758:15;33776:11;33726:8;:62::i;:::-;-1:-1:-1::0;;;;;33801:15:0::1;:66;;33882:11:::0;33908:1:::1;33924:4:::0;33951::::1;33972:21;:15;33990:3;33972:21;:::i;:::-;33801:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29501:16:0;:24;;-1:-1:-1;;29501:24:0;;;-1:-1:-1;;;;33517:496:0:o;26248:776::-;-1:-1:-1;;;;;26379:18:0;;26371:68;;;;-1:-1:-1;;;26371:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26458:16:0;;26450:64;;;;-1:-1:-1;;;26450:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26549:15:0;;26527:19;26549:15;;;;;;;;;;;26597:21;;;;26575:109;;;;-1:-1:-1;;;26575:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26720:15:0;;;:9;:15;;;;;;;;;;;26738:20;;;26720:38;;26938:13;;;;;;;;;;:23;;;;;;26990:26;;1847:25:1;;;26938:13:0;;26990:26;;1820:18:1;26990:26:0;;;;;;;26360:664;26248:776;;;:::o;34021:398::-;29455:16;:23;;-1:-1:-1;;29455:23:0;29474:4;29455:23;;;34138:62:::1;34155:4;34170:15;34188:11:::0;34138:8:::1;:62::i;:::-;34213:15;-1:-1:-1::0;;;;;34213:31:0::1;;34252:9;34285:4;34305:11;34331:1;34347::::0;34363:7:::1;14630:6:::0;;-1:-1:-1;;;;;14630:6:0;;14557:87;34363:7:::1;34213:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34213:198:0;;;-1:-1:-1;;;;;12102:15:1;;;34213:198:0::1;::::0;::::1;12084:34:1::0;12134:18;;;12127:34;;;;12177:18;;;12170:34;;;;12220:18;;;12213:34;12284:15;;;12263:19;;;12256:44;34385:15:0::1;12316:19:1::0;;;12309:35;12018:19;;34213:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29501:16:0;:24;;-1:-1:-1;;29501:24:0;;;-1:-1:-1;;;34021:398:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;:::-;386:5;150:247;-1:-1:-1;;;150:247:1:o;594:548::-;706:4;735:2;764;753:9;746:21;796:6;790:13;839:6;834:2;823:9;819:18;812:34;864:1;874:140;888:6;885:1;882:13;874:140;;;983:14;;;979:23;;973:30;949:17;;;968:2;945:26;938:66;903:10;;874:140;;;878:3;1063:1;1058:2;1049:6;1038:9;1034:22;1030:31;1023:42;1133:2;1126;1122:7;1117:2;1109:6;1105:15;1101:29;1090:9;1086:45;1082:54;1074:62;;;;594:548;;;;:::o;1147:315::-;1215:6;1223;1276:2;1264:9;1255:7;1251:23;1247:32;1244:52;;;1292:1;1289;1282:12;1244:52;1331:9;1318:23;1350:31;1375:5;1350:31;:::i;:::-;1400:5;1452:2;1437:18;;;;1424:32;;-1:-1:-1;;;1147:315:1:o;2091:456::-;2168:6;2176;2184;2237:2;2225:9;2216:7;2212:23;2208:32;2205:52;;;2253:1;2250;2243:12;2205:52;2292:9;2279:23;2311:31;2336:5;2311:31;:::i;:::-;2361:5;-1:-1:-1;2418:2:1;2403:18;;2390:32;2431:33;2390:32;2431:33;:::i;:::-;2091:456;;2483:7;;-1:-1:-1;;;2537:2:1;2522:18;;;;2509:32;;2091:456::o;2741:180::-;2800:6;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;-1:-1:-1;2892:23:1;;2741:180;-1:-1:-1;2741:180:1:o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:388::-;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3554:7;3544:17;;;3179:388;;;;;:::o;3572:380::-;3651:1;3647:12;;;;3694;;;3715:61;;3769:4;3761:6;3757:17;3747:27;;3715:61;3822:2;3814:6;3811:14;3791:18;3788:38;3785:161;;3868:10;3863:3;3859:20;3856:1;3849:31;3903:4;3900:1;3893:15;3931:4;3928:1;3921:15;3785:161;;3572:380;;;:::o;3957:127::-;4018:10;4013:3;4009:20;4006:1;3999:31;4049:4;4046:1;4039:15;4073:4;4070:1;4063:15;4089:125;4154:9;;;4175:10;;;4172:36;;;4188:18;;:::i;6973:401::-;7175:2;7157:21;;;7214:2;7194:18;;;7187:30;7253:34;7248:2;7233:18;;7226:62;-1:-1:-1;;;7319:2:1;7304:18;;7297:35;7364:3;7349:19;;6973:401::o;7379:399::-;7581:2;7563:21;;;7620:2;7600:18;;;7593:30;7659:34;7654:2;7639:18;;7632:62;-1:-1:-1;;;7725:2:1;7710:18;;7703:33;7768:3;7753:19;;7379:399::o;7783:402::-;7985:2;7967:21;;;8024:2;8004:18;;;7997:30;8063:34;8058:2;8043:18;;8036:62;-1:-1:-1;;;8129:2:1;8114:18;;8107:36;8175:3;8160:19;;7783:402::o;8190:128::-;8257:9;;;8278:11;;;8275:37;;;8292:18;;:::i;9519:168::-;9559:7;9625:1;9621;9617:6;9613:14;9610:1;9607:21;9602:1;9595:9;9588:17;9584:45;9581:71;;;9632:18;;:::i;:::-;-1:-1:-1;9672:9:1;;9519:168::o;9692:217::-;9732:1;9758;9748:132;;9802:10;9797:3;9793:20;9790:1;9783:31;9837:4;9834:1;9827:15;9865:4;9862:1;9855:15;9748:132;-1:-1:-1;9894:9:1;;9692:217::o;10370:127::-;10431:10;10426:3;10422:20;10419:1;10412:31;10462:4;10459:1;10452:15;10486:4;10483:1;10476:15;10502:251;10572:6;10625:2;10613:9;10604:7;10600:23;10596:32;10593:52;;;10641:1;10638;10631:12;10593:52;10673:9;10667:16;10692:31;10717:5;10692:31;:::i;10758:980::-;11020:4;11068:3;11057:9;11053:19;11099:6;11088:9;11081:25;11125:2;11163:6;11158:2;11147:9;11143:18;11136:34;11206:3;11201:2;11190:9;11186:18;11179:31;11230:6;11265;11259:13;11296:6;11288;11281:22;11334:3;11323:9;11319:19;11312:26;;11373:2;11365:6;11361:15;11347:29;;11394:1;11404:195;11418:6;11415:1;11412:13;11404:195;;;11483:13;;-1:-1:-1;;;;;11479:39:1;11467:52;;11574:15;;;;11539:12;;;;11515:1;11433:9;11404:195;;;-1:-1:-1;;;;;;;11655:32:1;;;;11650:2;11635:18;;11628:60;-1:-1:-1;;;11719:3:1;11704:19;11697:35;11616:3;10758:980;-1:-1:-1;;;10758:980:1:o;12355:306::-;12443:6;12451;12459;12512:2;12500:9;12491:7;12487:23;12483:32;12480:52;;;12528:1;12525;12518:12;12480:52;12557:9;12551:16;12541:26;;12607:2;12596:9;12592:18;12586:25;12576:35;;12651:2;12640:9;12636:18;12630:25;12620:35;;12355:306;;;;;:::o

Swarm Source

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