ETH Price: $2,538.44 (-3.32%)
Gas: 1 Gwei

Token

Black Shibaverse (BLACK)
 

Overview

Max Total Supply

10,000,000,000 BLACK

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.049999763742058355 BLACK

Value
$0.00
0x97bafecb09d44afa1886e7d0e378e5aa3007e69c
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:
BlackShibaVerse

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

/**
 * Website : BlackShibaverse.io
 */

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface UniswaV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

contract BlackShibaVerse is ERC20, Ownable {
    // 10, 000, 000, 000
    uint256 private constant _totalSupply = 1e10 * 1e18;
    uint256 public constant maxWallet = 2;
    uint256 public constant taxPercent = 5;
    address public constant devWallet =
        0x81C13d0b718711CBb8816f3f6f610f340b6D86FB;
    address public immutable pair;
    bool public isLaunched = false;
    UniswapV2Router public immutable uniswapV2Router;
    mapping(address => bool) private whitelisted;
    bool swapping = false;

    constructor() ERC20("Black Shibaverse", "BLACK") {
        uniswapV2Router = UniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        pair = UniswaV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(this)] = true;
        whitelisted[devWallet] = true;
        whitelisted[address(uniswapV2Router)] = true;
        _mint(devWallet, _totalSupply);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function setWhitelistStatus(address _wallet, bool _status)
        external
        onlyOwner
    {
        whitelisted[_wallet] = _status;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (!whitelisted[from] && !whitelisted[to] && to != pair) {
            require(
                balanceOf(to) + amount <= (_totalSupply * maxWallet) / 100,
                "Max Wallet Amount is 2%"
            );
        }
        uint256 tax = 0;
        if (
            !whitelisted[from] &&
            !whitelisted[to] &&
            (from == pair || to == pair)
        ) {
            tax = (amount * taxPercent) / 100;
            super._transfer(from, address(this), tax);
            amount = amount - tax;
        }
        if (tax > 0 && isLaunched && to == pair && !swapping) {
            swapping = true;
            SendTaxesToDevWallet();
            swapping = false;
        }

        isLaunched = true;
        super._transfer(from, to, amount);
    }

    function SendTaxesToDevWallet() internal {
        uint256 amount = balanceOf(address(this));
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), amount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0, // accept any amount of Tokens
            path,
            devWallet,
            block.timestamp
        );
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.zeppelin.solutions/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;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _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;
        }
        _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 {}
}

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":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":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercent","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":"uniswapV2Router","outputs":[{"internalType":"contract UniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040526000600560146101000a81548160ff0219169083151502179055506000600760006101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601081526020017f426c61636b2053686962617665727365000000000000000000000000000000008152506040518060400160405280600581526020017f424c41434b0000000000000000000000000000000000000000000000000000008152508160039081620000c5919062000956565b508060049081620000d7919062000956565b505050620000fa620000ee6200048c60201b60201c565b6200049460201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060a05173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000190573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b6919062000aa7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060a05173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000220573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000246919062000aa7565b6040518363ffffffff1660e01b81526004016200026592919062000aea565b6020604051808303816000875af115801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000aa7565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660007381c13d0b718711cbb8816f3f6f610f340b6d86fb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016006600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004867381c13d0b718711cbb8816f3f6f610f340b6d86fb6b204fce5e3e250261100000006200055a60201b60201c565b62000c32565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c39062000b78565b60405180910390fd5b620005e060008383620006d260201b60201c565b8060026000828254620005f4919062000bc9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200064b919062000bc9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006b2919062000c15565b60405180910390a3620006ce60008383620006d760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200075e57607f821691505b60208210810362000774576200077362000716565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007de7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200079f565b620007ea86836200079f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000837620008316200082b8462000802565b6200080c565b62000802565b9050919050565b6000819050919050565b620008538362000816565b6200086b62000862826200083e565b848454620007ac565b825550505050565b600090565b6200088262000873565b6200088f81848462000848565b505050565b5b81811015620008b757620008ab60008262000878565b60018101905062000895565b5050565b601f8211156200090657620008d0816200077a565b620008db846200078f565b81016020851015620008eb578190505b62000903620008fa856200078f565b83018262000894565b50505b505050565b600082821c905092915050565b60006200092b600019846008026200090b565b1980831691505092915050565b600062000946838362000918565b9150826002028217905092915050565b6200096182620006dc565b67ffffffffffffffff8111156200097d576200097c620006e7565b5b62000989825462000745565b62000996828285620008bb565b600060209050601f831160018114620009ce5760008415620009b9578287015190505b620009c5858262000938565b86555062000a35565b601f198416620009de866200077a565b60005b8281101562000a0857848901518255600182019150602085019450602081019050620009e1565b8683101562000a28578489015162000a24601f89168262000918565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a6f8262000a42565b9050919050565b62000a818162000a62565b811462000a8d57600080fd5b50565b60008151905062000aa18162000a76565b92915050565b60006020828403121562000ac05762000abf62000a3d565b5b600062000ad08482850162000a90565b91505092915050565b62000ae48162000a62565b82525050565b600060408201905062000b01600083018562000ad9565b62000b10602083018462000ad9565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b60601f8362000b17565b915062000b6d8262000b28565b602082019050919050565b6000602082019050818103600083015262000b938162000b51565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bd68262000802565b915062000be38362000802565b925082820190508082111562000bfe5762000bfd62000b9a565b5b92915050565b62000c0f8162000802565b82525050565b600060208201905062000c2c600083018462000c04565b92915050565b60805160a0516123d462000c89600039600081816105e10152818161152201528181611603015261162a01526000818161090701528181610dd901528181610f5701528181610fac015261105a01526123d46000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461036b578063a8aa1b311461039b578063a9059cbb146103b9578063dd62ed3e146103e9578063f2fde38b14610419578063f8b45b051461043557610142565b8063715018a6146102e95780637541f41c146102f35780638da5cb5b146103115780638ea5220f1461032f57806395d89b411461034d57610142565b80631950c2181161010a5780631950c218146101ed57806323b872dd1461021d578063307aebc91461024d578063313ce5671461026b578063395093511461028957806370a08231146102b957610142565b806306fdde0314610147578063095ea7b3146101655780630c424284146101955780631694505e146101b157806318160ddd146101cf575b600080fd5b61014f610453565b60405161015c919061176e565b60405180910390f35b61017f600480360381019061017a9190611829565b6104e5565b60405161018c9190611884565b60405180910390f35b6101af60048036038101906101aa91906118cb565b610508565b005b6101b96105df565b6040516101c6919061196a565b60405180910390f35b6101d7610603565b6040516101e49190611994565b60405180910390f35b610207600480360381019061020291906119af565b61060d565b6040516102149190611884565b60405180910390f35b610237600480360381019061023291906119dc565b610663565b6040516102449190611884565b60405180910390f35b610255610692565b6040516102629190611884565b60405180910390f35b6102736106a5565b6040516102809190611a4b565b60405180910390f35b6102a3600480360381019061029e9190611829565b6106ae565b6040516102b09190611884565b60405180910390f35b6102d360048036038101906102ce91906119af565b6106e5565b6040516102e09190611994565b60405180910390f35b6102f161072d565b005b6102fb6107b5565b6040516103089190611994565b60405180910390f35b6103196107ba565b6040516103269190611a75565b60405180910390f35b6103376107e4565b6040516103449190611a75565b60405180910390f35b6103556107fc565b604051610362919061176e565b60405180910390f35b61038560048036038101906103809190611829565b61088e565b6040516103929190611884565b60405180910390f35b6103a3610905565b6040516103b09190611a75565b60405180910390f35b6103d360048036038101906103ce9190611829565b610929565b6040516103e09190611884565b60405180910390f35b61040360048036038101906103fe9190611a90565b61094c565b6040516104109190611994565b60405180910390f35b610433600480360381019061042e91906119af565b6109d3565b005b61043d610aca565b60405161044a9190611994565b60405180910390f35b60606003805461046290611aff565b80601f016020809104026020016040519081016040528092919081815260200182805461048e90611aff565b80156104db5780601f106104b0576101008083540402835291602001916104db565b820191906000526020600020905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6000806104f0610acf565b90506104fd818585610ad7565b600191505092915050565b610510610acf565b73ffffffffffffffffffffffffffffffffffffffff1661052e6107ba565b73ffffffffffffffffffffffffffffffffffffffff1614610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b90611b7c565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061066e610acf565b905061067b858285610ca0565b610686858585610d2c565b60019150509392505050565b600560149054906101000a900460ff1681565b60006012905090565b6000806106b9610acf565b90506106da8185856106cb858961094c565b6106d59190611bcb565b610ad7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610735610acf565b73ffffffffffffffffffffffffffffffffffffffff166107536107ba565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611b7c565b60405180910390fd5b6107b36000611131565b565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7381c13d0b718711cbb8816f3f6f610f340b6d86fb81565b60606004805461080b90611aff565b80601f016020809104026020016040519081016040528092919081815260200182805461083790611aff565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b600080610899610acf565b905060006108a7828661094c565b9050838110156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390611c71565b60405180910390fd5b6108f98286868403610ad7565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610934610acf565b9050610941818585610d2c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109db610acf565b73ffffffffffffffffffffffffffffffffffffffff166109f96107ba565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611d03565b60405180910390fd5b610ac781611131565b50565b600281565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90611d95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611e27565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c939190611994565b60405180910390a3505050565b6000610cac848461094c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d265781811015610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611e93565b60405180910390fd5b610d258484848403610ad7565b5b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610dd05750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610e2857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610ea857606460026b204fce5e3e25026110000000610e489190611eb3565b610e529190611f24565b81610e5c846106e5565b610e669190611bcb565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90611fa1565b60405180910390fd5b5b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610f4e5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ffb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ffa57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b5b1561103557606460058361100f9190611eb3565b6110199190611f24565b90506110268430836111f7565b80826110329190611fc1565b91505b6000811180156110515750600560149054906101000a900460ff165b80156110a857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156110c15750600760009054906101000a900460ff16155b15611105576001600760006101000a81548160ff0219169083151502179055506110e9611476565b6000600760006101000a81548160ff0219169083151502179055505b6001600560146101000a81548160ff02191690831515021790555061112b8484846111f7565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612067565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906120f9565b60405180910390fd5b6112e08383836116d4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d9061218b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f99190611bcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145d9190611994565b60405180910390a36114708484846116d9565b50505050565b6000611481306106e5565b90506000600267ffffffffffffffff8111156114a05761149f6121ab565b5b6040519080825280602002602001820160405280156114ce5781602001602082028036833780820191505090505b50905030816000815181106114e6576114e56121da565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af919061221e565b816001815181106115c3576115c26121da565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611628307f000000000000000000000000000000000000000000000000000000000000000084610ad7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847381c13d0b718711cbb8816f3f6f610f340b6d86fb426040518663ffffffff1660e01b815260040161169e959493929190612344565b600060405180830381600087803b1580156116b857600080fd5b505af11580156116cc573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611740826116de565b61174a81856116e9565b935061175a8185602086016116fa565b61176381611724565b840191505092915050565b600060208201905081810360008301526117888184611735565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c082611795565b9050919050565b6117d0816117b5565b81146117db57600080fd5b50565b6000813590506117ed816117c7565b92915050565b6000819050919050565b611806816117f3565b811461181157600080fd5b50565b600081359050611823816117fd565b92915050565b600080604083850312156118405761183f611790565b5b600061184e858286016117de565b925050602061185f85828601611814565b9150509250929050565b60008115159050919050565b61187e81611869565b82525050565b60006020820190506118996000830184611875565b92915050565b6118a881611869565b81146118b357600080fd5b50565b6000813590506118c58161189f565b92915050565b600080604083850312156118e2576118e1611790565b5b60006118f0858286016117de565b9250506020611901858286016118b6565b9150509250929050565b6000819050919050565b600061193061192b61192684611795565b61190b565b611795565b9050919050565b600061194282611915565b9050919050565b600061195482611937565b9050919050565b61196481611949565b82525050565b600060208201905061197f600083018461195b565b92915050565b61198e816117f3565b82525050565b60006020820190506119a96000830184611985565b92915050565b6000602082840312156119c5576119c4611790565b5b60006119d3848285016117de565b91505092915050565b6000806000606084860312156119f5576119f4611790565b5b6000611a03868287016117de565b9350506020611a14868287016117de565b9250506040611a2586828701611814565b9150509250925092565b600060ff82169050919050565b611a4581611a2f565b82525050565b6000602082019050611a606000830184611a3c565b92915050565b611a6f816117b5565b82525050565b6000602082019050611a8a6000830184611a66565b92915050565b60008060408385031215611aa757611aa6611790565b5b6000611ab5858286016117de565b9250506020611ac6858286016117de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1757607f821691505b602082108103611b2a57611b29611ad0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b666020836116e9565b9150611b7182611b30565b602082019050919050565b60006020820190508181036000830152611b9581611b59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bd6826117f3565b9150611be1836117f3565b9250828201905080821115611bf957611bf8611b9c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c5b6025836116e9565b9150611c6682611bff565b604082019050919050565b60006020820190508181036000830152611c8a81611c4e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ced6026836116e9565b9150611cf882611c91565b604082019050919050565b60006020820190508181036000830152611d1c81611ce0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f6024836116e9565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e116022836116e9565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e7d601d836116e9565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b6000611ebe826117f3565b9150611ec9836117f3565b9250828202611ed7816117f3565b91508282048414831517611eee57611eed611b9c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f2f826117f3565b9150611f3a836117f3565b925082611f4a57611f49611ef5565b5b828204905092915050565b7f4d61782057616c6c657420416d6f756e74206973203225000000000000000000600082015250565b6000611f8b6017836116e9565b9150611f9682611f55565b602082019050919050565b60006020820190508181036000830152611fba81611f7e565b9050919050565b6000611fcc826117f3565b9150611fd7836117f3565b9250828203905081811115611fef57611fee611b9c565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120516025836116e9565b915061205c82611ff5565b604082019050919050565b6000602082019050818103600083015261208081612044565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120e36023836116e9565b91506120ee82612087565b604082019050919050565b60006020820190508181036000830152612112816120d6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121756026836116e9565b915061218082612119565b604082019050919050565b600060208201905081810360008301526121a481612168565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612218816117c7565b92915050565b60006020828403121561223457612233611790565b5b600061224284828501612209565b91505092915050565b6000819050919050565b600061227061226b6122668461224b565b61190b565b6117f3565b9050919050565b61228081612255565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122bb816117b5565b82525050565b60006122cd83836122b2565b60208301905092915050565b6000602082019050919050565b60006122f182612286565b6122fb8185612291565b9350612306836122a2565b8060005b8381101561233757815161231e88826122c1565b9750612329836122d9565b92505060018101905061230a565b5085935050505092915050565b600060a0820190506123596000830188611985565b6123666020830187612277565b818103604083015261237881866122e6565b90506123876060830185611a66565b6123946080830184611985565b969550505050505056fea26469706673582212209cd1173e1ccf01e8e8b7eedc7d3dbc7a2dfe59f2a2b43b2348a72b36b11c89d664736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461036b578063a8aa1b311461039b578063a9059cbb146103b9578063dd62ed3e146103e9578063f2fde38b14610419578063f8b45b051461043557610142565b8063715018a6146102e95780637541f41c146102f35780638da5cb5b146103115780638ea5220f1461032f57806395d89b411461034d57610142565b80631950c2181161010a5780631950c218146101ed57806323b872dd1461021d578063307aebc91461024d578063313ce5671461026b578063395093511461028957806370a08231146102b957610142565b806306fdde0314610147578063095ea7b3146101655780630c424284146101955780631694505e146101b157806318160ddd146101cf575b600080fd5b61014f610453565b60405161015c919061176e565b60405180910390f35b61017f600480360381019061017a9190611829565b6104e5565b60405161018c9190611884565b60405180910390f35b6101af60048036038101906101aa91906118cb565b610508565b005b6101b96105df565b6040516101c6919061196a565b60405180910390f35b6101d7610603565b6040516101e49190611994565b60405180910390f35b610207600480360381019061020291906119af565b61060d565b6040516102149190611884565b60405180910390f35b610237600480360381019061023291906119dc565b610663565b6040516102449190611884565b60405180910390f35b610255610692565b6040516102629190611884565b60405180910390f35b6102736106a5565b6040516102809190611a4b565b60405180910390f35b6102a3600480360381019061029e9190611829565b6106ae565b6040516102b09190611884565b60405180910390f35b6102d360048036038101906102ce91906119af565b6106e5565b6040516102e09190611994565b60405180910390f35b6102f161072d565b005b6102fb6107b5565b6040516103089190611994565b60405180910390f35b6103196107ba565b6040516103269190611a75565b60405180910390f35b6103376107e4565b6040516103449190611a75565b60405180910390f35b6103556107fc565b604051610362919061176e565b60405180910390f35b61038560048036038101906103809190611829565b61088e565b6040516103929190611884565b60405180910390f35b6103a3610905565b6040516103b09190611a75565b60405180910390f35b6103d360048036038101906103ce9190611829565b610929565b6040516103e09190611884565b60405180910390f35b61040360048036038101906103fe9190611a90565b61094c565b6040516104109190611994565b60405180910390f35b610433600480360381019061042e91906119af565b6109d3565b005b61043d610aca565b60405161044a9190611994565b60405180910390f35b60606003805461046290611aff565b80601f016020809104026020016040519081016040528092919081815260200182805461048e90611aff565b80156104db5780601f106104b0576101008083540402835291602001916104db565b820191906000526020600020905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6000806104f0610acf565b90506104fd818585610ad7565b600191505092915050565b610510610acf565b73ffffffffffffffffffffffffffffffffffffffff1661052e6107ba565b73ffffffffffffffffffffffffffffffffffffffff1614610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b90611b7c565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061066e610acf565b905061067b858285610ca0565b610686858585610d2c565b60019150509392505050565b600560149054906101000a900460ff1681565b60006012905090565b6000806106b9610acf565b90506106da8185856106cb858961094c565b6106d59190611bcb565b610ad7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610735610acf565b73ffffffffffffffffffffffffffffffffffffffff166107536107ba565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611b7c565b60405180910390fd5b6107b36000611131565b565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7381c13d0b718711cbb8816f3f6f610f340b6d86fb81565b60606004805461080b90611aff565b80601f016020809104026020016040519081016040528092919081815260200182805461083790611aff565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b600080610899610acf565b905060006108a7828661094c565b9050838110156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390611c71565b60405180910390fd5b6108f98286868403610ad7565b60019250505092915050565b7f000000000000000000000000577e34ee322aae2e0cbfb04a62797e81fee7ec1381565b600080610934610acf565b9050610941818585610d2c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109db610acf565b73ffffffffffffffffffffffffffffffffffffffff166109f96107ba565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611d03565b60405180910390fd5b610ac781611131565b50565b600281565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90611d95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611e27565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c939190611994565b60405180910390a3505050565b6000610cac848461094c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d265781811015610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611e93565b60405180910390fd5b610d258484848403610ad7565b5b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610dd05750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610e2857507f000000000000000000000000577e34ee322aae2e0cbfb04a62797e81fee7ec1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610ea857606460026b204fce5e3e25026110000000610e489190611eb3565b610e529190611f24565b81610e5c846106e5565b610e669190611bcb565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90611fa1565b60405180910390fd5b5b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610f4e5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ffb57507f000000000000000000000000577e34ee322aae2e0cbfb04a62797e81fee7ec1373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ffa57507f000000000000000000000000577e34ee322aae2e0cbfb04a62797e81fee7ec1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b5b1561103557606460058361100f9190611eb3565b6110199190611f24565b90506110268430836111f7565b80826110329190611fc1565b91505b6000811180156110515750600560149054906101000a900460ff165b80156110a857507f000000000000000000000000577e34ee322aae2e0cbfb04a62797e81fee7ec1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156110c15750600760009054906101000a900460ff16155b15611105576001600760006101000a81548160ff0219169083151502179055506110e9611476565b6000600760006101000a81548160ff0219169083151502179055505b6001600560146101000a81548160ff02191690831515021790555061112b8484846111f7565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612067565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906120f9565b60405180910390fd5b6112e08383836116d4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d9061218b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f99190611bcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145d9190611994565b60405180910390a36114708484846116d9565b50505050565b6000611481306106e5565b90506000600267ffffffffffffffff8111156114a05761149f6121ab565b5b6040519080825280602002602001820160405280156114ce5781602001602082028036833780820191505090505b50905030816000815181106114e6576114e56121da565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af919061221e565b816001815181106115c3576115c26121da565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611628307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ad7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847381c13d0b718711cbb8816f3f6f610f340b6d86fb426040518663ffffffff1660e01b815260040161169e959493929190612344565b600060405180830381600087803b1580156116b857600080fd5b505af11580156116cc573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611740826116de565b61174a81856116e9565b935061175a8185602086016116fa565b61176381611724565b840191505092915050565b600060208201905081810360008301526117888184611735565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c082611795565b9050919050565b6117d0816117b5565b81146117db57600080fd5b50565b6000813590506117ed816117c7565b92915050565b6000819050919050565b611806816117f3565b811461181157600080fd5b50565b600081359050611823816117fd565b92915050565b600080604083850312156118405761183f611790565b5b600061184e858286016117de565b925050602061185f85828601611814565b9150509250929050565b60008115159050919050565b61187e81611869565b82525050565b60006020820190506118996000830184611875565b92915050565b6118a881611869565b81146118b357600080fd5b50565b6000813590506118c58161189f565b92915050565b600080604083850312156118e2576118e1611790565b5b60006118f0858286016117de565b9250506020611901858286016118b6565b9150509250929050565b6000819050919050565b600061193061192b61192684611795565b61190b565b611795565b9050919050565b600061194282611915565b9050919050565b600061195482611937565b9050919050565b61196481611949565b82525050565b600060208201905061197f600083018461195b565b92915050565b61198e816117f3565b82525050565b60006020820190506119a96000830184611985565b92915050565b6000602082840312156119c5576119c4611790565b5b60006119d3848285016117de565b91505092915050565b6000806000606084860312156119f5576119f4611790565b5b6000611a03868287016117de565b9350506020611a14868287016117de565b9250506040611a2586828701611814565b9150509250925092565b600060ff82169050919050565b611a4581611a2f565b82525050565b6000602082019050611a606000830184611a3c565b92915050565b611a6f816117b5565b82525050565b6000602082019050611a8a6000830184611a66565b92915050565b60008060408385031215611aa757611aa6611790565b5b6000611ab5858286016117de565b9250506020611ac6858286016117de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1757607f821691505b602082108103611b2a57611b29611ad0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b666020836116e9565b9150611b7182611b30565b602082019050919050565b60006020820190508181036000830152611b9581611b59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bd6826117f3565b9150611be1836117f3565b9250828201905080821115611bf957611bf8611b9c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c5b6025836116e9565b9150611c6682611bff565b604082019050919050565b60006020820190508181036000830152611c8a81611c4e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ced6026836116e9565b9150611cf882611c91565b604082019050919050565b60006020820190508181036000830152611d1c81611ce0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f6024836116e9565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e116022836116e9565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e7d601d836116e9565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b6000611ebe826117f3565b9150611ec9836117f3565b9250828202611ed7816117f3565b91508282048414831517611eee57611eed611b9c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f2f826117f3565b9150611f3a836117f3565b925082611f4a57611f49611ef5565b5b828204905092915050565b7f4d61782057616c6c657420416d6f756e74206973203225000000000000000000600082015250565b6000611f8b6017836116e9565b9150611f9682611f55565b602082019050919050565b60006020820190508181036000830152611fba81611f7e565b9050919050565b6000611fcc826117f3565b9150611fd7836117f3565b9250828203905081811115611fef57611fee611b9c565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120516025836116e9565b915061205c82611ff5565b604082019050919050565b6000602082019050818103600083015261208081612044565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120e36023836116e9565b91506120ee82612087565b604082019050919050565b60006020820190508181036000830152612112816120d6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121756026836116e9565b915061218082612119565b604082019050919050565b600060208201905081810360008301526121a481612168565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612218816117c7565b92915050565b60006020828403121561223457612233611790565b5b600061224284828501612209565b91505092915050565b6000819050919050565b600061227061226b6122668461224b565b61190b565b6117f3565b9050919050565b61228081612255565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122bb816117b5565b82525050565b60006122cd83836122b2565b60208301905092915050565b6000602082019050919050565b60006122f182612286565b6122fb8185612291565b9350612306836122a2565b8060005b8381101561233757815161231e88826122c1565b9750612329836122d9565b92505060018101905061230a565b5085935050505092915050565b600060a0820190506123596000830188611985565b6123666020830187612277565b818103604083015261237881866122e6565b90506123876060830185611a66565b6123946080830184611985565b969550505050505056fea26469706673582212209cd1173e1ccf01e8e8b7eedc7d3dbc7a2dfe59f2a2b43b2348a72b36b11c89d664736f6c63430008110033

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.