ETH Price: $3,388.16 (-2.67%)
Gas: 1 Gwei

Token

Chad (CHAD)
 

Overview

Max Total Supply

69,000,000,000 CHAD

Holders

560

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 CHAD

Value
$0.00
0xc2b8873babbd442c04558726767d91e63e3a378c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CHAD

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-21
*/

/**
 *Submitted for verification at Etherscan.io on 2024-02-21
*/

// SPDX-License-Identifier: Unlicensed

// File: @openzeppelin/contracts/utils/Context.sol



// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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;

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

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




pragma solidity ^0.8.0;



interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
} 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external;
}
interface IUniswapV2Factory {
     function createPair(address tokenA, address tokenB) external returns (address pair);
}

 
contract CHAD is ERC20, Ownable {
    
    uint256 public maxTxAmount = 10_000_000_000 ether; 
    uint256 public maxWalletAmount = 10_000_000_000 ether; 
        address public uniswapV2Pair;
   IUniswapV2Router02 public uniswapV2Router; 


    constructor(string memory _name,string memory _symbol,address _router,uint256 _supply) ERC20(_name, _symbol) {

         IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _mint(msg.sender, _supply * 10**decimals());
    }

    
    receive() external payable {}

   

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

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

        if (from != owner() && to != owner()) {
                 require(amount <= maxTxAmount, "Transfer amount exceeds the maximum allowed");
                if (to != uniswapV2Pair) {
                    require(balanceOf(to) + amount < maxWalletAmount, "TOKEN: Balance exceeds wallet size!");
                }
    }
    
        super._transfer(from, to, amount);
    }

 
 
    

    function setMaxTxAmount(uint256 amount) external onlyOwner {
        require(amount >= 10_000 ether, "MaxTxAmount cannot be less");
        maxTxAmount = amount;
    }

    function setMaxWalletAmount(uint256 amount) external onlyOwner {
        require(amount >= 10_000 ether, "MaxWalletAmount cannot be less");
        maxWalletAmount = amount;
    }

     

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"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":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":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"stateMutability":"payable","type":"receive"}]

60806040526b204fce5e3e250261100000006006556b204fce5e3e250261100000006007553480156200003157600080fd5b5060405162002a0838038062002a088339818101604052810190620000579190620006e0565b838381600390805190602001906200007192919062000564565b5080600490805190602001906200008a92919062000564565b505050620000ad620000a16200031560201b60201c565b6200031d60201b60201c565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620000fb57600080fd5b505afa15801562000110573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001369190620006b4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019957600080fd5b505afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d49190620006b4565b6040518363ffffffff1660e01b8152600401620001f3929190620007e2565b602060405180830381600087803b1580156200020e57600080fd5b505af115801562000223573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002499190620006b4565b905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200030933620002e2620003e360201b60201c565b600a620002f091906200097e565b85620002fd919062000abb565b620003ec60201b60201c565b50505050505062000ca1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200045f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000456906200080f565b60405180910390fd5b62000473600083836200055a60201b60201c565b8060026000828254620004879190620008c6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200053a919062000831565b60405180910390a362000556600083836200055f60201b60201c565b5050565b505050565b505050565b828054620005729062000b9d565b90600052602060002090601f016020900481019282620005965760008555620005e2565b82601f10620005b157805160ff1916838001178555620005e2565b82800160010185558215620005e2579182015b82811115620005e1578251825591602001919060010190620005c4565b5b509050620005f19190620005f5565b5090565b5b8082111562000610576000816000905550600101620005f6565b5090565b60006200062b620006258462000882565b6200084e565b9050828152602081018484840111156200064457600080fd5b6200065184828562000b67565b509392505050565b6000815190506200066a8162000c6d565b92915050565b600082601f8301126200068257600080fd5b81516200069484826020860162000614565b91505092915050565b600081519050620006ae8162000c87565b92915050565b600060208284031215620006c757600080fd5b6000620006d78482850162000659565b91505092915050565b60008060008060808587031215620006f757600080fd5b600085015167ffffffffffffffff8111156200071257600080fd5b620007208782880162000670565b945050602085015167ffffffffffffffff8111156200073e57600080fd5b6200074c8782880162000670565b93505060406200075f8782880162000659565b925050606062000772878288016200069d565b91505092959194509250565b620007898162000b1c565b82525050565b60006200079e601f83620008b5565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620007dc8162000b50565b82525050565b6000604082019050620007f960008301856200077e565b6200080860208301846200077e565b9392505050565b600060208201905081810360008301526200082a816200078f565b9050919050565b6000602082019050620008486000830184620007d1565b92915050565b6000604051905081810181811067ffffffffffffffff8211171562000878576200087762000c31565b5b8060405250919050565b600067ffffffffffffffff821115620008a0576200089f62000c31565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008d38262000b50565b9150620008e08362000b50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000918576200091762000bd3565b5b828201905092915050565b6000808291508390505b600185111562000975578086048111156200094d576200094c62000bd3565b5b60018516156200095d5780820291505b80810290506200096d8562000c60565b94506200092d565b94509492505050565b60006200098b8262000b50565b9150620009988362000b5a565b9250620009c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cf565b905092915050565b600082620009e1576001905062000ab4565b81620009f1576000905062000ab4565b816001811462000a0a576002811462000a155762000a4b565b600191505062000ab4565b60ff84111562000a2a5762000a2962000bd3565b5b8360020a91508482111562000a445762000a4362000bd3565b5b5062000ab4565b5060208310610133831016604e8410600b841016171562000a855782820a90508381111562000a7f5762000a7e62000bd3565b5b62000ab4565b62000a94848484600162000923565b9250905081840481111562000aae5762000aad62000bd3565b5b81810290505b9392505050565b600062000ac88262000b50565b915062000ad58362000b50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b115762000b1062000bd3565b5b828202905092915050565b600062000b298262000b30565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101562000b8757808201518184015260208101905062000b6a565b8381111562000b97576000848401525b50505050565b6000600282049050600182168062000bb657607f821691505b6020821081141562000bcd5762000bcc62000c02565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b62000c788162000b1c565b811462000c8457600080fd5b50565b62000c928162000b50565b811462000c9e57600080fd5b50565b611d578062000cb16000396000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146103f8578063aa4bde2814610435578063dd62ed3e14610460578063ec28438a1461049d578063f2fde38b146104c65761012a565b8063715018a6146103235780638c0b5e221461033a5780638da5cb5b1461036557806395d89b4114610390578063a457c2d7146103bb5761012a565b806327a14fc2116100e757806327a14fc21461022a578063313ce56714610253578063395093511461027e57806349bd5a5e146102bb57806370a08231146102e65761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104ef565b604051610151919061193c565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c919061136c565b610581565b60405161018e9190611906565b60405180910390f35b3480156101a357600080fd5b506101ac6105a4565b6040516101b99190611921565b60405180910390f35b3480156101ce57600080fd5b506101d76105ca565b6040516101e49190611afe565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f919061131d565b6105d4565b6040516102219190611906565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c91906113a8565b610603565b005b34801561025f57600080fd5b50610268610662565b6040516102759190611b19565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a0919061136c565b61066b565b6040516102b29190611906565b60405180910390f35b3480156102c757600080fd5b506102d06106a2565b6040516102dd91906118eb565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906112b8565b6106c8565b60405161031a9190611afe565b60405180910390f35b34801561032f57600080fd5b50610338610710565b005b34801561034657600080fd5b5061034f610724565b60405161035c9190611afe565b60405180910390f35b34801561037157600080fd5b5061037a61072a565b60405161038791906118eb565b60405180910390f35b34801561039c57600080fd5b506103a5610754565b6040516103b2919061193c565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061136c565b6107e6565b6040516103ef9190611906565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061136c565b61085d565b60405161042c9190611906565b60405180910390f35b34801561044157600080fd5b5061044a610880565b6040516104579190611afe565b60405180910390f35b34801561046c57600080fd5b50610487600480360381019061048291906112e1565b610886565b6040516104949190611afe565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf91906113a8565b61090d565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906112b8565b61096c565b005b6060600380546104fe90611c52565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611c52565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b60008061058c6109f0565b90506105998185856109f8565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806105df6109f0565b90506105ec858285610bc3565b6105f7858585610c4f565b60019150509392505050565b61060b610ec8565b69021e19e0c9bab2400000811015610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90611a1e565b60405180910390fd5b8060078190555050565b60006012905090565b6000806106766109f0565b90506106978185856106888589610886565b6106929190611b50565b6109f8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610718610ec8565b6107226000610f46565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076390611c52565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611c52565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6000806107f16109f0565b905060006107ff8286610886565b905083811015610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611ade565b60405180910390fd5b61085182868684036109f8565b60019250505092915050565b6000806108686109f0565b9050610875818585610c4f565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610915610ec8565b69021e19e0c9bab2400000811015610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906119fe565b60405180910390fd5b8060068190555050565b610974610ec8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061197e565b60405180910390fd5b6109ed81610f46565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611a9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf9061199e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb69190611afe565b60405180910390a3505050565b6000610bcf8484610886565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c495781811015610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906119be565b60405180910390fd5b610c4884848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d269061195e565b60405180910390fd5b6000811415610d4957610d448383600061100c565b610ec3565b610d5161072a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610dbf5750610d8f61072a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610eb757600654811115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611abe565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610eb65760075481610e6b846106c8565b610e759190611b50565b10610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611a7e565b60405180910390fd5b5b5b610ec283838361100c565b5b505050565b610ed06109f0565b73ffffffffffffffffffffffffffffffffffffffff16610eee61072a565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611a3e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e39061195e565b60405180910390fd5b6110f7838383611284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906119de565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b9190611afe565b60405180910390a361127e848484611289565b50505050565b505050565b505050565b60008135905061129d81611cf3565b92915050565b6000813590506112b281611d0a565b92915050565b6000602082840312156112ca57600080fd5b60006112d88482850161128e565b91505092915050565b600080604083850312156112f457600080fd5b60006113028582860161128e565b92505060206113138582860161128e565b9150509250929050565b60008060006060848603121561133257600080fd5b60006113408682870161128e565b93505060206113518682870161128e565b9250506040611362868287016112a3565b9150509250925092565b6000806040838503121561137f57600080fd5b600061138d8582860161128e565b925050602061139e858286016112a3565b9150509250929050565b6000602082840312156113ba57600080fd5b60006113c8848285016112a3565b91505092915050565b6113da81611ba6565b82525050565b6113e981611bb8565b82525050565b6113f881611bfb565b82525050565b600061140982611b34565b6114138185611b3f565b9350611423818560208601611c1f565b61142c81611ce2565b840191505092915050565b6000611444602383611b3f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114aa602683611b3f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611510602283611b3f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611576601d83611b3f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115b6602683611b3f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161c601a83611b3f565b91507f4d61785478416d6f756e742063616e6e6f74206265206c6573730000000000006000830152602082019050919050565b600061165c601e83611b3f565b91507f4d617857616c6c6574416d6f756e742063616e6e6f74206265206c65737300006000830152602082019050919050565b600061169c602083611b3f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006116dc602583611b3f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611742602383611b3f565b91507f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008301527f7a652100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117a8602483611b3f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061180e602b83611b3f565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61786960008301527f6d756d20616c6c6f7765640000000000000000000000000000000000000000006020830152604082019050919050565b6000611874602583611b3f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6118d681611be4565b82525050565b6118e581611bee565b82525050565b600060208201905061190060008301846113d1565b92915050565b600060208201905061191b60008301846113e0565b92915050565b600060208201905061193660008301846113ef565b92915050565b6000602082019050818103600083015261195681846113fe565b905092915050565b6000602082019050818103600083015261197781611437565b9050919050565b600060208201905081810360008301526119978161149d565b9050919050565b600060208201905081810360008301526119b781611503565b9050919050565b600060208201905081810360008301526119d781611569565b9050919050565b600060208201905081810360008301526119f7816115a9565b9050919050565b60006020820190508181036000830152611a178161160f565b9050919050565b60006020820190508181036000830152611a378161164f565b9050919050565b60006020820190508181036000830152611a578161168f565b9050919050565b60006020820190508181036000830152611a77816116cf565b9050919050565b60006020820190508181036000830152611a9781611735565b9050919050565b60006020820190508181036000830152611ab78161179b565b9050919050565b60006020820190508181036000830152611ad781611801565b9050919050565b60006020820190508181036000830152611af781611867565b9050919050565b6000602082019050611b1360008301846118cd565b92915050565b6000602082019050611b2e60008301846118dc565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b5b82611be4565b9150611b6683611be4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b9b57611b9a611c84565b5b828201905092915050565b6000611bb182611bc4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611c0682611c0d565b9050919050565b6000611c1882611bc4565b9050919050565b60005b83811015611c3d578082015181840152602081019050611c22565b83811115611c4c576000848401525b50505050565b60006002820490506001821680611c6a57607f821691505b60208210811415611c7e57611c7d611cb3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611cfc81611ba6565b8114611d0757600080fd5b50565b611d1381611be4565b8114611d1e57600080fd5b5056fea264697066735822122063187991c4fb2e487f716d6cbf00fac3ab44dc5629542a8854ba0305148b8cbe64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000001010b872000000000000000000000000000000000000000000000000000000000000000004436861640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044348414400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101235760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146103f8578063aa4bde2814610435578063dd62ed3e14610460578063ec28438a1461049d578063f2fde38b146104c65761012a565b8063715018a6146103235780638c0b5e221461033a5780638da5cb5b1461036557806395d89b4114610390578063a457c2d7146103bb5761012a565b806327a14fc2116100e757806327a14fc21461022a578063313ce56714610253578063395093511461027e57806349bd5a5e146102bb57806370a08231146102e65761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104ef565b604051610151919061193c565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c919061136c565b610581565b60405161018e9190611906565b60405180910390f35b3480156101a357600080fd5b506101ac6105a4565b6040516101b99190611921565b60405180910390f35b3480156101ce57600080fd5b506101d76105ca565b6040516101e49190611afe565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f919061131d565b6105d4565b6040516102219190611906565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c91906113a8565b610603565b005b34801561025f57600080fd5b50610268610662565b6040516102759190611b19565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a0919061136c565b61066b565b6040516102b29190611906565b60405180910390f35b3480156102c757600080fd5b506102d06106a2565b6040516102dd91906118eb565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906112b8565b6106c8565b60405161031a9190611afe565b60405180910390f35b34801561032f57600080fd5b50610338610710565b005b34801561034657600080fd5b5061034f610724565b60405161035c9190611afe565b60405180910390f35b34801561037157600080fd5b5061037a61072a565b60405161038791906118eb565b60405180910390f35b34801561039c57600080fd5b506103a5610754565b6040516103b2919061193c565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061136c565b6107e6565b6040516103ef9190611906565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061136c565b61085d565b60405161042c9190611906565b60405180910390f35b34801561044157600080fd5b5061044a610880565b6040516104579190611afe565b60405180910390f35b34801561046c57600080fd5b50610487600480360381019061048291906112e1565b610886565b6040516104949190611afe565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf91906113a8565b61090d565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906112b8565b61096c565b005b6060600380546104fe90611c52565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611c52565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b60008061058c6109f0565b90506105998185856109f8565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806105df6109f0565b90506105ec858285610bc3565b6105f7858585610c4f565b60019150509392505050565b61060b610ec8565b69021e19e0c9bab2400000811015610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90611a1e565b60405180910390fd5b8060078190555050565b60006012905090565b6000806106766109f0565b90506106978185856106888589610886565b6106929190611b50565b6109f8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610718610ec8565b6107226000610f46565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076390611c52565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611c52565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6000806107f16109f0565b905060006107ff8286610886565b905083811015610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611ade565b60405180910390fd5b61085182868684036109f8565b60019250505092915050565b6000806108686109f0565b9050610875818585610c4f565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610915610ec8565b69021e19e0c9bab2400000811015610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906119fe565b60405180910390fd5b8060068190555050565b610974610ec8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061197e565b60405180910390fd5b6109ed81610f46565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611a9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf9061199e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb69190611afe565b60405180910390a3505050565b6000610bcf8484610886565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c495781811015610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906119be565b60405180910390fd5b610c4884848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d269061195e565b60405180910390fd5b6000811415610d4957610d448383600061100c565b610ec3565b610d5161072a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610dbf5750610d8f61072a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610eb757600654811115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611abe565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610eb65760075481610e6b846106c8565b610e759190611b50565b10610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90611a7e565b60405180910390fd5b5b5b610ec283838361100c565b5b505050565b610ed06109f0565b73ffffffffffffffffffffffffffffffffffffffff16610eee61072a565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611a3e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e39061195e565b60405180910390fd5b6110f7838383611284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906119de565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b9190611afe565b60405180910390a361127e848484611289565b50505050565b505050565b505050565b60008135905061129d81611cf3565b92915050565b6000813590506112b281611d0a565b92915050565b6000602082840312156112ca57600080fd5b60006112d88482850161128e565b91505092915050565b600080604083850312156112f457600080fd5b60006113028582860161128e565b92505060206113138582860161128e565b9150509250929050565b60008060006060848603121561133257600080fd5b60006113408682870161128e565b93505060206113518682870161128e565b9250506040611362868287016112a3565b9150509250925092565b6000806040838503121561137f57600080fd5b600061138d8582860161128e565b925050602061139e858286016112a3565b9150509250929050565b6000602082840312156113ba57600080fd5b60006113c8848285016112a3565b91505092915050565b6113da81611ba6565b82525050565b6113e981611bb8565b82525050565b6113f881611bfb565b82525050565b600061140982611b34565b6114138185611b3f565b9350611423818560208601611c1f565b61142c81611ce2565b840191505092915050565b6000611444602383611b3f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114aa602683611b3f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611510602283611b3f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611576601d83611b3f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115b6602683611b3f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161c601a83611b3f565b91507f4d61785478416d6f756e742063616e6e6f74206265206c6573730000000000006000830152602082019050919050565b600061165c601e83611b3f565b91507f4d617857616c6c6574416d6f756e742063616e6e6f74206265206c65737300006000830152602082019050919050565b600061169c602083611b3f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006116dc602583611b3f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611742602383611b3f565b91507f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008301527f7a652100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117a8602483611b3f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061180e602b83611b3f565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61786960008301527f6d756d20616c6c6f7765640000000000000000000000000000000000000000006020830152604082019050919050565b6000611874602583611b3f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6118d681611be4565b82525050565b6118e581611bee565b82525050565b600060208201905061190060008301846113d1565b92915050565b600060208201905061191b60008301846113e0565b92915050565b600060208201905061193660008301846113ef565b92915050565b6000602082019050818103600083015261195681846113fe565b905092915050565b6000602082019050818103600083015261197781611437565b9050919050565b600060208201905081810360008301526119978161149d565b9050919050565b600060208201905081810360008301526119b781611503565b9050919050565b600060208201905081810360008301526119d781611569565b9050919050565b600060208201905081810360008301526119f7816115a9565b9050919050565b60006020820190508181036000830152611a178161160f565b9050919050565b60006020820190508181036000830152611a378161164f565b9050919050565b60006020820190508181036000830152611a578161168f565b9050919050565b60006020820190508181036000830152611a77816116cf565b9050919050565b60006020820190508181036000830152611a9781611735565b9050919050565b60006020820190508181036000830152611ab78161179b565b9050919050565b60006020820190508181036000830152611ad781611801565b9050919050565b60006020820190508181036000830152611af781611867565b9050919050565b6000602082019050611b1360008301846118cd565b92915050565b6000602082019050611b2e60008301846118dc565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b5b82611be4565b9150611b6683611be4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b9b57611b9a611c84565b5b828201905092915050565b6000611bb182611bc4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611c0682611c0d565b9050919050565b6000611c1882611bc4565b9050919050565b60005b83811015611c3d578082015181840152602081019050611c22565b83811115611c4c576000848401525b50505050565b60006002820490506001821680611c6a57607f821691505b60208210811415611c7e57611c7d611cb3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611cfc81611ba6565b8114611d0757600080fd5b50565b611d1381611be4565b8114611d1e57600080fd5b5056fea264697066735822122063187991c4fb2e487f716d6cbf00fac3ab44dc5629542a8854ba0305148b8cbe64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000001010b872000000000000000000000000000000000000000000000000000000000000000004436861640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044348414400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Chad
Arg [1] : _symbol (string): CHAD
Arg [2] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : _supply (uint256): 69000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000000000000000000000000000000000001010b87200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4368616400000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4348414400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21193:1950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9463:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11823:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21394:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10592:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12604:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22947:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10434:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21360:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10763:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:103;;;;;;;;;;;;;:::i;:::-;;21238:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2243:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9682:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14015:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11096:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21295:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11352:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22769:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3142:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9463:100;9517:13;9550:5;9543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9463:100;:::o;11823:201::-;11906:4;11923:13;11939:12;:10;:12::i;:::-;11923:28;;11962:32;11971:5;11978:7;11987:6;11962:8;:32::i;:::-;12012:4;12005:11;;;11823:201;;;;:::o;21394:41::-;;;;;;;;;;;;;:::o;10592:108::-;10653:7;10680:12;;10673:19;;10592:108;:::o;12604:261::-;12701:4;12718:15;12736:12;:10;:12::i;:::-;12718:30;;12759:38;12775:4;12781:7;12790:6;12759:15;:38::i;:::-;12808:27;12818:4;12824:2;12828:6;12808:9;:27::i;:::-;12853:4;12846:11;;;12604:261;;;;;:::o;22947:182::-;2129:13;:11;:13::i;:::-;23039:12:::1;23029:6;:22;;23021:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;23115:6;23097:15;:24;;;;22947:182:::0;:::o;10434:93::-;10492:5;10517:2;10510:9;;10434:93;:::o;13274:238::-;13362:4;13379:13;13395:12;:10;:12::i;:::-;13379:28;;13418:64;13427:5;13434:7;13471:10;13443:25;13453:5;13460:7;13443:9;:25::i;:::-;:38;;;;:::i;:::-;13418:8;:64::i;:::-;13500:4;13493:11;;;13274:238;;;;:::o;21360:28::-;;;;;;;;;;;;;:::o;10763:127::-;10837:7;10864:9;:18;10874:7;10864:18;;;;;;;;;;;;;;;;10857:25;;10763:127;;;:::o;2884:103::-;2129:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;21238:49::-;;;;:::o;2243:87::-;2289:7;2316:6;;;;;;;;;;;2309:13;;2243:87;:::o;9682:104::-;9738:13;9771:7;9764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9682:104;:::o;14015:436::-;14108:4;14125:13;14141:12;:10;:12::i;:::-;14125:28;;14164:24;14191:25;14201:5;14208:7;14191:9;:25::i;:::-;14164:52;;14255:15;14235:16;:35;;14227:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14348:60;14357:5;14364:7;14392:15;14373:16;:34;14348:8;:60::i;:::-;14439:4;14432:11;;;;14015:436;;;;:::o;11096:193::-;11175:4;11192:13;11208:12;:10;:12::i;:::-;11192:28;;11231;11241:5;11248:2;11252:6;11231:9;:28::i;:::-;11277:4;11270:11;;;11096:193;;;;:::o;21295:53::-;;;;:::o;11352:151::-;11441:7;11468:11;:18;11480:5;11468:18;;;;;;;;;;;;;;;:27;11487:7;11468:27;;;;;;;;;;;;;;;;11461:34;;11352:151;;;;:::o;22769:170::-;2129:13;:11;:13::i;:::-;22857:12:::1;22847:6;:22;;22839:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;22925:6;22911:11;:20;;;;22769:170:::0;:::o;3142:201::-;2129:13;:11;:13::i;:::-;3251:1:::1;3231:22;;:8;:22;;;;3223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3307:28;3326:8;3307:18;:28::i;:::-;3142:201:::0;:::o;794:98::-;847:7;874:10;867:17;;794:98;:::o;18008:346::-;18127:1;18110:19;;:5;:19;;;;18102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18208:1;18189:21;;:7;:21;;;;18181:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18292:6;18262:11;:18;18274:5;18262:18;;;;;;;;;;;;;;;:27;18281:7;18262:27;;;;;;;;;;;;;;;:36;;;;18330:7;18314:32;;18323:5;18314:32;;;18339:6;18314:32;;;;;;:::i;:::-;;;;;;;;18008:346;;;:::o;18645:419::-;18746:24;18773:25;18783:5;18790:7;18773:9;:25::i;:::-;18746:52;;18833:17;18813:16;:37;18809:248;;18895:6;18875:16;:26;;18867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18979:51;18988:5;18995:7;19023:6;19004:16;:25;18979:8;:51::i;:::-;18809:248;18645:419;;;;:::o;21989:758::-;22137:1;22121:18;;:4;:18;;;;22113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22214:1;22200:16;;:2;:16;;;;22192:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22282:1;22272:6;:11;22269:92;;;22300:28;22316:4;22322:2;22326:1;22300:15;:28::i;:::-;22343:7;;22269:92;22385:7;:5;:7::i;:::-;22377:15;;:4;:15;;;;:32;;;;;22402:7;:5;:7::i;:::-;22396:13;;:2;:13;;;;22377:32;22373:317;;;22449:11;;22439:6;:21;;22431:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;22537:13;;;;;;;;;;;22531:19;;:2;:19;;;22527:156;;22608:15;;22599:6;22583:13;22593:2;22583:9;:13::i;:::-;:22;;;;:::i;:::-;:40;22575:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;22527:156;22373:317;22706:33;22722:4;22728:2;22732:6;22706:15;:33::i;:::-;21989:758;;;;:::o;2408:132::-;2483:12;:10;:12::i;:::-;2472:23;;:7;:5;:7::i;:::-;:23;;;2464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2408:132::o;3503:191::-;3577:16;3596:6;;;;;;;;;;;3577:25;;3622:8;3613:6;;:17;;;;;;;;;;;;;;;;;;3677:8;3646:40;;3667:8;3646:40;;;;;;;;;;;;3503:191;;:::o;14921:806::-;15034:1;15018:18;;:4;:18;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15111:1;15097:16;;:2;:16;;;;15089:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15166:38;15187:4;15193:2;15197:6;15166:20;:38::i;:::-;15217:19;15239:9;:15;15249:4;15239:15;;;;;;;;;;;;;;;;15217:37;;15288:6;15273:11;:21;;15265:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15405:6;15391:11;:20;15373:9;:15;15383:4;15373:15;;;;;;;;;;;;;;;:38;;;;15608:6;15591:9;:13;15601:2;15591:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15658:2;15643:26;;15652:4;15643:26;;;15662:6;15643:26;;;;;;:::i;:::-;;;;;;;;15682:37;15702:4;15708:2;15712:6;15682:19;:37::i;:::-;14921:806;;;;:::o;19664:91::-;;;;:::o;20359:90::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:183::-;2569:63;2626:5;2569:63;:::i;:::-;2564:3;2557:76;2547:92;;:::o;2645:364::-;;2761:39;2794:5;2761:39;:::i;:::-;2816:71;2880:6;2875:3;2816:71;:::i;:::-;2809:78;;2896:52;2941:6;2936:3;2929:4;2922:5;2918:16;2896:52;:::i;:::-;2973:29;2995:6;2973:29;:::i;:::-;2968:3;2964:39;2957:46;;2737:272;;;;;:::o;3015:367::-;;3178:67;3242:2;3237:3;3178:67;:::i;:::-;3171:74;;3275:34;3271:1;3266:3;3262:11;3255:55;3341:5;3336:2;3331:3;3327:12;3320:27;3373:2;3368:3;3364:12;3357:19;;3161:221;;;:::o;3388:370::-;;3551:67;3615:2;3610:3;3551:67;:::i;:::-;3544:74;;3648:34;3644:1;3639:3;3635:11;3628:55;3714:8;3709:2;3704:3;3700:12;3693:30;3749:2;3744:3;3740:12;3733:19;;3534:224;;;:::o;3764:366::-;;3927:67;3991:2;3986:3;3927:67;:::i;:::-;3920:74;;4024:34;4020:1;4015:3;4011:11;4004:55;4090:4;4085:2;4080:3;4076:12;4069:26;4121:2;4116:3;4112:12;4105:19;;3910:220;;;:::o;4136:327::-;;4299:67;4363:2;4358:3;4299:67;:::i;:::-;4292:74;;4396:31;4392:1;4387:3;4383:11;4376:52;4454:2;4449:3;4445:12;4438:19;;4282:181;;;:::o;4469:370::-;;4632:67;4696:2;4691:3;4632:67;:::i;:::-;4625:74;;4729:34;4725:1;4720:3;4716:11;4709:55;4795:8;4790:2;4785:3;4781:12;4774:30;4830:2;4825:3;4821:12;4814:19;;4615:224;;;:::o;4845:324::-;;5008:67;5072:2;5067:3;5008:67;:::i;:::-;5001:74;;5105:28;5101:1;5096:3;5092:11;5085:49;5160:2;5155:3;5151:12;5144:19;;4991:178;;;:::o;5175:328::-;;5338:67;5402:2;5397:3;5338:67;:::i;:::-;5331:74;;5435:32;5431:1;5426:3;5422:11;5415:53;5494:2;5489:3;5485:12;5478:19;;5321:182;;;:::o;5509:330::-;;5672:67;5736:2;5731:3;5672:67;:::i;:::-;5665:74;;5769:34;5765:1;5760:3;5756:11;5749:55;5830:2;5825:3;5821:12;5814:19;;5655:184;;;:::o;5845:369::-;;6008:67;6072:2;6067:3;6008:67;:::i;:::-;6001:74;;6105:34;6101:1;6096:3;6092:11;6085:55;6171:7;6166:2;6161:3;6157:12;6150:29;6205:2;6200:3;6196:12;6189:19;;5991:223;;;:::o;6220:367::-;;6383:67;6447:2;6442:3;6383:67;:::i;:::-;6376:74;;6480:34;6476:1;6471:3;6467:11;6460:55;6546:5;6541:2;6536:3;6532:12;6525:27;6578:2;6573:3;6569:12;6562:19;;6366:221;;;:::o;6593:368::-;;6756:67;6820:2;6815:3;6756:67;:::i;:::-;6749:74;;6853:34;6849:1;6844:3;6840:11;6833:55;6919:6;6914:2;6909:3;6905:12;6898:28;6952:2;6947:3;6943:12;6936:19;;6739:222;;;:::o;6967:375::-;;7130:67;7194:2;7189:3;7130:67;:::i;:::-;7123:74;;7227:34;7223:1;7218:3;7214:11;7207:55;7293:13;7288:2;7283:3;7279:12;7272:35;7333:2;7328:3;7324:12;7317:19;;7113:229;;;:::o;7348:369::-;;7511:67;7575:2;7570:3;7511:67;:::i;:::-;7504:74;;7608:34;7604:1;7599:3;7595:11;7588:55;7674:7;7669:2;7664:3;7660:12;7653:29;7708:2;7703:3;7699:12;7692:19;;7494:223;;;:::o;7723:118::-;7810:24;7828:5;7810:24;:::i;:::-;7805:3;7798:37;7788:53;;:::o;7847:112::-;7930:22;7946:5;7930:22;:::i;:::-;7925:3;7918:35;7908:51;;:::o;7965:222::-;;8096:2;8085:9;8081:18;8073:26;;8109:71;8177:1;8166:9;8162:17;8153:6;8109:71;:::i;:::-;8063:124;;;;:::o;8193:210::-;;8318:2;8307:9;8303:18;8295:26;;8331:65;8393:1;8382:9;8378:17;8369:6;8331:65;:::i;:::-;8285:118;;;;:::o;8409:274::-;;8566:2;8555:9;8551:18;8543:26;;8579:97;8673:1;8662:9;8658:17;8649:6;8579:97;:::i;:::-;8533:150;;;;:::o;8689:313::-;;8840:2;8829:9;8825:18;8817:26;;8889:9;8883:4;8879:20;8875:1;8864:9;8860:17;8853:47;8917:78;8990:4;8981:6;8917:78;:::i;:::-;8909:86;;8807:195;;;;:::o;9008:419::-;;9212:2;9201:9;9197:18;9189:26;;9261:9;9255:4;9251:20;9247:1;9236:9;9232:17;9225:47;9289:131;9415:4;9289:131;:::i;:::-;9281:139;;9179:248;;;:::o;9433:419::-;;9637:2;9626:9;9622:18;9614:26;;9686:9;9680:4;9676:20;9672:1;9661:9;9657:17;9650:47;9714:131;9840:4;9714:131;:::i;:::-;9706:139;;9604:248;;;:::o;9858:419::-;;10062:2;10051:9;10047:18;10039:26;;10111:9;10105:4;10101:20;10097:1;10086:9;10082:17;10075:47;10139:131;10265:4;10139:131;:::i;:::-;10131:139;;10029:248;;;:::o;10283:419::-;;10487:2;10476:9;10472:18;10464:26;;10536:9;10530:4;10526:20;10522:1;10511:9;10507:17;10500:47;10564:131;10690:4;10564:131;:::i;:::-;10556:139;;10454:248;;;:::o;10708:419::-;;10912:2;10901:9;10897:18;10889:26;;10961:9;10955:4;10951:20;10947:1;10936:9;10932:17;10925:47;10989:131;11115:4;10989:131;:::i;:::-;10981:139;;10879:248;;;:::o;11133:419::-;;11337:2;11326:9;11322:18;11314:26;;11386:9;11380:4;11376:20;11372:1;11361:9;11357:17;11350:47;11414:131;11540:4;11414:131;:::i;:::-;11406:139;;11304:248;;;:::o;11558:419::-;;11762:2;11751:9;11747:18;11739:26;;11811:9;11805:4;11801:20;11797:1;11786:9;11782:17;11775:47;11839:131;11965:4;11839:131;:::i;:::-;11831:139;;11729:248;;;:::o;11983:419::-;;12187:2;12176:9;12172:18;12164:26;;12236:9;12230:4;12226:20;12222:1;12211:9;12207:17;12200:47;12264:131;12390:4;12264:131;:::i;:::-;12256:139;;12154:248;;;:::o;12408:419::-;;12612:2;12601:9;12597:18;12589:26;;12661:9;12655:4;12651:20;12647:1;12636:9;12632:17;12625:47;12689:131;12815:4;12689:131;:::i;:::-;12681:139;;12579:248;;;:::o;12833:419::-;;13037:2;13026:9;13022:18;13014:26;;13086:9;13080:4;13076:20;13072:1;13061:9;13057:17;13050:47;13114:131;13240:4;13114:131;:::i;:::-;13106:139;;13004:248;;;:::o;13258:419::-;;13462:2;13451:9;13447:18;13439:26;;13511:9;13505:4;13501:20;13497:1;13486:9;13482:17;13475:47;13539:131;13665:4;13539:131;:::i;:::-;13531:139;;13429:248;;;:::o;13683:419::-;;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13854:248;;;:::o;14108:419::-;;14312:2;14301:9;14297:18;14289:26;;14361:9;14355:4;14351:20;14347:1;14336:9;14332:17;14325:47;14389:131;14515:4;14389:131;:::i;:::-;14381:139;;14279:248;;;:::o;14533:222::-;;14664:2;14653:9;14649:18;14641:26;;14677:71;14745:1;14734:9;14730:17;14721:6;14677:71;:::i;:::-;14631:124;;;;:::o;14761:214::-;;14888:2;14877:9;14873:18;14865:26;;14901:67;14965:1;14954:9;14950:17;14941:6;14901:67;:::i;:::-;14855:120;;;;:::o;14981:99::-;;15067:5;15061:12;15051:22;;15040:40;;;:::o;15086:169::-;;15204:6;15199:3;15192:19;15244:4;15239:3;15235:14;15220:29;;15182:73;;;;:::o;15261:305::-;;15320:20;15338:1;15320:20;:::i;:::-;15315:25;;15354:20;15372:1;15354:20;:::i;:::-;15349:25;;15508:1;15440:66;15436:74;15433:1;15430:81;15427:2;;;15514:18;;:::i;:::-;15427:2;15558:1;15555;15551:9;15544:16;;15305:261;;;;:::o;15572:96::-;;15638:24;15656:5;15638:24;:::i;:::-;15627:35;;15617:51;;;:::o;15674:90::-;;15751:5;15744:13;15737:21;15726:32;;15716:48;;;:::o;15770:126::-;;15847:42;15840:5;15836:54;15825:65;;15815:81;;;:::o;15902:77::-;;15968:5;15957:16;;15947:32;;;:::o;15985:86::-;;16060:4;16053:5;16049:16;16038:27;;16028:43;;;:::o;16077:178::-;;16186:63;16243:5;16186:63;:::i;:::-;16173:76;;16163:92;;;:::o;16261:139::-;;16370:24;16388:5;16370:24;:::i;:::-;16357:37;;16347:53;;;:::o;16406:307::-;16474:1;16484:113;16498:6;16495:1;16492:13;16484:113;;;16583:1;16578:3;16574:11;16568:18;16564:1;16559:3;16555:11;16548:39;16520:2;16517:1;16513:10;16508:15;;16484:113;;;16615:6;16612:1;16609:13;16606:2;;;16695:1;16686:6;16681:3;16677:16;16670:27;16606:2;16455:258;;;;:::o;16719:320::-;;16800:1;16794:4;16790:12;16780:22;;16847:1;16841:4;16837:12;16868:18;16858:2;;16924:4;16916:6;16912:17;16902:27;;16858:2;16986;16978:6;16975:14;16955:18;16952:38;16949:2;;;17005:18;;:::i;:::-;16949:2;16770:269;;;;:::o;17045:180::-;17093:77;17090:1;17083:88;17190:4;17187:1;17180:15;17214:4;17211:1;17204:15;17231:180;17279:77;17276:1;17269:88;17376:4;17373:1;17366:15;17400:4;17397:1;17390:15;17417:102;;17509:2;17505:7;17500:2;17493:5;17489:14;17485:28;17475:38;;17465:54;;;:::o;17525:122::-;17598:24;17616:5;17598:24;:::i;:::-;17591:5;17588:35;17578:2;;17637:1;17634;17627:12;17578:2;17568:79;:::o;17653:122::-;17726:24;17744:5;17726:24;:::i;:::-;17719:5;17716:35;17706:2;;17765:1;17762;17755:12;17706:2;17696:79;:::o

Swarm Source

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