ETH Price: $3,438.47 (-1.22%)
Gas: 11 Gwei

Token

GigaChad (GIGACHAD)
 

Overview

Max Total Supply

420,690,000,000 GIGACHAD

Holders

224

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
539,777,144.683641045925689004 GIGACHAD

Value
$0.00
0xa497e73f7398bd0443bf9ae8a51a62d83930986b
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:
GigaChadToken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-20
*/

/*
    https://gigachads.vip
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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 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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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.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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _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 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 contracts/PepeToken.sol



pragma solidity ^0.8.0;


contract GigaChadToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    event TransferForeignToken(address token, uint256 amount);

    constructor(uint256 _totalSupply) ERC20("GigaChad", "GIGACHAD") {
        _mint(msg.sender, _totalSupply);
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function airdrop(address from, address[] calldata addresses, uint256 tokens) external onlyOwner {
        require(addresses.length < 2001,"GAS Error: max airdrop limit is 2000 addresses"); // to prevent overflow
        uint256 SCCC = tokens* 10**18 * addresses.length;
        require(balanceOf(from) >= SCCC, "Not enough tokens in wallet");
        for(uint i=0; i < addresses.length; i++){
            _transfer(from,addresses[i],(tokens* 10**18));
            }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200185b3803806200185b833981016040819052620000349162000427565b6040518060400160405280600881526020016711da59d850da185960c21b8152506040518060400160405280600881526020016711d251d050d2105160c21b815250620000906200008a620000d760201b60201c565b620000db565b8151620000a590600490602085019062000381565b508051620000bb90600590602084019062000381565b505050620000d033826200012b60201b60201c565b50620004a5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001956000838362000222565b8060036000828254620001a9919062000441565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d890849062000441565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6009546001600160a01b0316620002b0576000546001600160a01b03848116911614806200025d57506000546001600160a01b038381169116145b620002ab5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200017e565b505050565b60065460ff168015620002d057506009546001600160a01b038481169116145b15620002ab5760075481620002f0846200036660201b620005251760201c565b620002fc919062000441565b111580156200032f57506008548162000320846200036660201b620005251760201c565b6200032c919062000441565b10155b620002ab5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200017e565b6001600160a01b031660009081526001602052604090205490565b8280546200038f9062000468565b90600052602060002090601f016020900481019282620003b35760008555620003fe565b82601f10620003ce57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fe578251825591602001919060010190620003e1565b506200040c92915062000410565b5090565b5b808211156200040c576000815560010162000411565b6000602082840312156200043a57600080fd5b5051919050565b600082198211156200046357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200047d57607f821691505b602082108114156200049f57634e487b7160e01b600052602260045260246000fd5b50919050565b6113a680620004b56000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a1ac727f1161007c578063a1ac727f14610293578063a457c2d7146102a6578063a9059cbb146102b9578063dd62ed3e146102cc578063f2fde38b14610305578063f5648a4f1461031857600080fd5b8063715018a6146102495780638366e79a14610251578063860a32ec1461026457806389f9a1d3146102715780638da5cb5b1461027a57806395d89b411461028b57600080fd5b8063313ce56711610115578063313ce567146101c157806339509351146101d05780633aa633aa146101e357806342966c68146101f857806349bd5a5e1461020b57806370a082311461023657600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ab99e12146101a557806323b872dd146101ae575b600080fd5b61015a610320565b6040516101679190611012565b60405180910390f35b61018361017e366004611083565b6103b2565b6040519015158152602001610167565b6003545b604051908152602001610167565b61019760085481565b6101836101bc3660046110ad565b6103c8565b60405160128152602001610167565b6101836101de366004611083565b610477565b6101f66101f13660046110f7565b6104b3565b005b6101f661020636600461113b565b610518565b60095461021e906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b610197610244366004611154565b610525565b6101f6610540565b61018361025f366004611176565b610576565b6006546101839060ff1681565b61019760075481565b6000546001600160a01b031661021e565b61015a610725565b6101f66102a13660046111a9565b610734565b6101836102b4366004611083565b6108a6565b6101836102c7366004611083565b61093f565b6101976102da366004611176565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f6610313366004611154565b61094c565b6101f66109e4565b60606004805461032f90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90611235565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf338484610a5b565b50600192915050565b60006103d5848484610b80565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561045f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046c8533858403610a5b565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf9185906104ae908690611286565b610a5b565b6000546001600160a01b031633146104dd5760405162461bcd60e51b81526004016104569061129e565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6105223382610d5a565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461056a5760405162461bcd60e51b81526004016104569061129e565b6105746000610eb1565b565b600080546001600160a01b031633146105a15760405162461bcd60e51b81526004016104569061129e565b6001600160a01b0383166105f75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610456565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561063e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066291906112d3565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156106b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d991906112ec565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60606005805461032f90611235565b6000546001600160a01b0316331461075e5760405162461bcd60e51b81526004016104569061129e565b6107d182106107c65760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b6064820152608401610456565b6000826107db83670de0b6b3a7640000611309565b6107e59190611309565b9050806107f186610525565b101561083f5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c657400000000006044820152606401610456565b60005b8381101561089e5761088c8686868481811061086057610860611328565b90506020020160208101906108759190611154565b61088786670de0b6b3a7640000611309565b610b80565b806108968161133e565b915050610842565b505050505050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156109285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610456565b6109353385858403610a5b565b5060019392505050565b60006103bf338484610b80565b6000546001600160a01b031633146109765760405162461bcd60e51b81526004016104569061129e565b6001600160a01b0381166109db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61052281610eb1565b6000546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016104569061129e565b604051600090339047908381818185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b50505050565b6001600160a01b038316610abd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b6001600160a01b038216610b1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610456565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610be45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610456565b6001600160a01b038216610c465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610456565b610c51838383610f01565b6001600160a01b03831660009081526001602052604090205481811015610cc95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610456565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d00908490611286565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4c91815260200190565b60405180910390a350505050565b6001600160a01b038216610dba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610456565b610dc682600083610f01565b6001600160a01b03821660009081526001602052604090205481811015610e3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610456565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610e69908490611359565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b73565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610f7f576000546001600160a01b0384811691161480610f3a57506000546001600160a01b038381169116145b610eac5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610456565b60065460ff168015610f9e57506009546001600160a01b038481169116145b15610eac5760075481610fb084610525565b610fba9190611286565b11158015610fdd575060085481610fd084610525565b610fda9190611286565b10155b610eac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610456565b600060208083528351808285015260005b8181101561103f57858101830151858201604001528201611023565b81811115611051576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461107e57600080fd5b919050565b6000806040838503121561109657600080fd5b61109f83611067565b946020939093013593505050565b6000806000606084860312156110c257600080fd5b6110cb84611067565b92506110d960208501611067565b9150604084013590509250925092565b801515811461052257600080fd5b6000806000806080858703121561110d57600080fd5b8435611118816110e9565b935061112660208601611067565b93969395505050506040820135916060013590565b60006020828403121561114d57600080fd5b5035919050565b60006020828403121561116657600080fd5b61116f82611067565b9392505050565b6000806040838503121561118957600080fd5b61119283611067565b91506111a060208401611067565b90509250929050565b600080600080606085870312156111bf57600080fd5b6111c885611067565b9350602085013567ffffffffffffffff808211156111e557600080fd5b818701915087601f8301126111f957600080fd5b81358181111561120857600080fd5b8860208260051b850101111561121d57600080fd5b95986020929092019750949560400135945092505050565b600181811c9082168061124957607f821691505b6020821081141561126a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561129957611299611270565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156112e557600080fd5b5051919050565b6000602082840312156112fe57600080fd5b815161116f816110e9565b600081600019048311821515161561132357611323611270565b500290565b634e487b7160e01b600052603260045260246000fd5b600060001982141561135257611352611270565b5060010190565b60008282101561136b5761136b611270565b50039056fea26469706673582212205564d062e4537f6d63b66a2c63bd0514ac664f5ce9fcf43d1b0e223c7f715ae564736f6c634300080c003300000000000000000000000000000000000000054f529ca52576bc6892000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a1ac727f1161007c578063a1ac727f14610293578063a457c2d7146102a6578063a9059cbb146102b9578063dd62ed3e146102cc578063f2fde38b14610305578063f5648a4f1461031857600080fd5b8063715018a6146102495780638366e79a14610251578063860a32ec1461026457806389f9a1d3146102715780638da5cb5b1461027a57806395d89b411461028b57600080fd5b8063313ce56711610115578063313ce567146101c157806339509351146101d05780633aa633aa146101e357806342966c68146101f857806349bd5a5e1461020b57806370a082311461023657600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631ab99e12146101a557806323b872dd146101ae575b600080fd5b61015a610320565b6040516101679190611012565b60405180910390f35b61018361017e366004611083565b6103b2565b6040519015158152602001610167565b6003545b604051908152602001610167565b61019760085481565b6101836101bc3660046110ad565b6103c8565b60405160128152602001610167565b6101836101de366004611083565b610477565b6101f66101f13660046110f7565b6104b3565b005b6101f661020636600461113b565b610518565b60095461021e906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b610197610244366004611154565b610525565b6101f6610540565b61018361025f366004611176565b610576565b6006546101839060ff1681565b61019760075481565b6000546001600160a01b031661021e565b61015a610725565b6101f66102a13660046111a9565b610734565b6101836102b4366004611083565b6108a6565b6101836102c7366004611083565b61093f565b6101976102da366004611176565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f6610313366004611154565b61094c565b6101f66109e4565b60606004805461032f90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90611235565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf338484610a5b565b50600192915050565b60006103d5848484610b80565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561045f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046c8533858403610a5b565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf9185906104ae908690611286565b610a5b565b6000546001600160a01b031633146104dd5760405162461bcd60e51b81526004016104569061129e565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6105223382610d5a565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461056a5760405162461bcd60e51b81526004016104569061129e565b6105746000610eb1565b565b600080546001600160a01b031633146105a15760405162461bcd60e51b81526004016104569061129e565b6001600160a01b0383166105f75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610456565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561063e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066291906112d3565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af11580156106b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d991906112ec565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60606005805461032f90611235565b6000546001600160a01b0316331461075e5760405162461bcd60e51b81526004016104569061129e565b6107d182106107c65760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b6064820152608401610456565b6000826107db83670de0b6b3a7640000611309565b6107e59190611309565b9050806107f186610525565b101561083f5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e7320696e2077616c6c657400000000006044820152606401610456565b60005b8381101561089e5761088c8686868481811061086057610860611328565b90506020020160208101906108759190611154565b61088786670de0b6b3a7640000611309565b610b80565b806108968161133e565b915050610842565b505050505050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156109285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610456565b6109353385858403610a5b565b5060019392505050565b60006103bf338484610b80565b6000546001600160a01b031633146109765760405162461bcd60e51b81526004016104569061129e565b6001600160a01b0381166109db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61052281610eb1565b6000546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016104569061129e565b604051600090339047908381818185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b50505050565b6001600160a01b038316610abd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b6001600160a01b038216610b1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610456565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610be45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610456565b6001600160a01b038216610c465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610456565b610c51838383610f01565b6001600160a01b03831660009081526001602052604090205481811015610cc95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610456565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d00908490611286565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4c91815260200190565b60405180910390a350505050565b6001600160a01b038216610dba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610456565b610dc682600083610f01565b6001600160a01b03821660009081526001602052604090205481811015610e3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610456565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610e69908490611359565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b73565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610f7f576000546001600160a01b0384811691161480610f3a57506000546001600160a01b038381169116145b610eac5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610456565b60065460ff168015610f9e57506009546001600160a01b038481169116145b15610eac5760075481610fb084610525565b610fba9190611286565b11158015610fdd575060085481610fd084610525565b610fda9190611286565b10155b610eac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610456565b600060208083528351808285015260005b8181101561103f57858101830151858201604001528201611023565b81811115611051576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461107e57600080fd5b919050565b6000806040838503121561109657600080fd5b61109f83611067565b946020939093013593505050565b6000806000606084860312156110c257600080fd5b6110cb84611067565b92506110d960208501611067565b9150604084013590509250925092565b801515811461052257600080fd5b6000806000806080858703121561110d57600080fd5b8435611118816110e9565b935061112660208601611067565b93969395505050506040820135916060013590565b60006020828403121561114d57600080fd5b5035919050565b60006020828403121561116657600080fd5b61116f82611067565b9392505050565b6000806040838503121561118957600080fd5b61119283611067565b91506111a060208401611067565b90509250929050565b600080600080606085870312156111bf57600080fd5b6111c885611067565b9350602085013567ffffffffffffffff808211156111e557600080fd5b818701915087601f8301126111f957600080fd5b81358181111561120857600080fd5b8860208260051b850101111561121d57600080fd5b95986020929092019750949560400135945092505050565b600181811c9082168061124957607f821691505b6020821081141561126a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561129957611299611270565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156112e557600080fd5b5051919050565b6000602082840312156112fe57600080fd5b815161116f816110e9565b600081600019048311821515161561132357611323611270565b500290565b634e487b7160e01b600052603260045260246000fd5b600060001982141561135257611352611270565b5060010190565b60008282101561136b5761136b611270565b50039056fea26469706673582212205564d062e4537f6d63b66a2c63bd0514ac664f5ce9fcf43d1b0e223c7f715ae564736f6c634300080c0033

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

00000000000000000000000000000000000000054f529ca52576bc6892000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000054f529ca52576bc6892000000


Deployed Bytecode Sourcemap

19254:2375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9223:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11390:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11390:169:0;1053:187:1;10343:108:0;10431:12;;10343:108;;;1391:25:1;;;1379:2;1364:18;10343:108:0;1245:177:1;19366:31:0;;;;;;12041:492;;;;;;:::i;:::-;;:::i;10185:93::-;;;10268:2;1902:36:1;;1890:2;1875:18;10185:93:0;1760:184:1;12942:215:0;;;;;;:::i;:::-;;:::i;19627:301::-;;;;;;:::i;:::-;;:::i;:::-;;20926:81;;;;;;:::i;:::-;;:::i;19404:28::-;;;;;-1:-1:-1;;;;;19404:28:0;;;;;;-1:-1:-1;;;;;2878:32:1;;;2860:51;;2848:2;2833:18;19404:28:0;2714:203:1;10514:127:0;;;;;;:::i;:::-;;:::i;2624:103::-;;;:::i;21015:381::-;;;;;;:::i;:::-;;:::i;19302:19::-;;;;;;;;;19328:31;;;;;;1973:87;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;1973:87;;9442:104;;;:::i;20440:478::-;;;;;;:::i;:::-;;:::i;13660:413::-;;;;;;:::i;:::-;;:::i;10854:175::-;;;;;;:::i;:::-;;:::i;11092:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11208:18:0;;;11181:7;11208:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11092:151;2882:201;;;;;;:::i;:::-;;:::i;21466:160::-;;;:::i;9223:100::-;9277:13;9310:5;9303:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9223:100;:::o;11390:169::-;11473:4;11490:39;771:10;11513:7;11522:6;11490:8;:39::i;:::-;-1:-1:-1;11547:4:0;11390:169;;;;:::o;12041:492::-;12181:4;12198:36;12208:6;12216:9;12227:6;12198:9;:36::i;:::-;-1:-1:-1;;;;;12274:19:0;;12247:24;12274:19;;;:11;:19;;;;;;;;771:10;12274:33;;;;;;;;12326:26;;;;12318:79;;;;-1:-1:-1;;;12318:79:0;;4727:2:1;12318:79:0;;;4709:21:1;4766:2;4746:18;;;4739:30;4805:34;4785:18;;;4778:62;-1:-1:-1;;;4856:18:1;;;4849:38;4904:19;;12318:79:0;;;;;;;;;12433:57;12442:6;771:10;12483:6;12464:16;:25;12433:8;:57::i;:::-;-1:-1:-1;12521:4:0;;12041:492;-1:-1:-1;;;;12041:492:0:o;12942:215::-;771:10;13030:4;13079:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13079:34:0;;;;;;;;;;13030:4;;13047:80;;13070:7;;13079:47;;13116:10;;13079:47;:::i;:::-;13047:8;:80::i;19627:301::-;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;19767:7:::1;:18:::0;;-1:-1:-1;;19767:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19796:13:::1;:30:::0;;-1:-1:-1;;;;;;19796:30:0::1;-1:-1:-1::0;;;;;19796:30:0;;;::::1;::::0;;;::::1;::::0;;;19837:16:::1;:36:::0;19884:16:::1;:36:::0;19627:301::o;20926:81::-;20975:24;20981:10;20993:5;20975;:24::i;:::-;20926:81;:::o;10514:127::-;-1:-1:-1;;;;;10615:18:0;10588:7;10615:18;;;:9;:18;;;;;;;10514:127::o;2624:103::-;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;2689:30:::1;2716:1;2689:18;:30::i;:::-;2624:103::o:0;21015:381::-;21102:10;2046:6;;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21133:20:0;::::1;21125:59;;;::::0;-1:-1:-1;;;21125:59:0;;5762:2:1;21125:59:0::1;::::0;::::1;5744:21:1::0;5801:2;5781:18;;;5774:30;5840:28;5820:18;;;5813:56;5886:18;;21125:59:0::1;5560:350:1::0;21125:59:0::1;21222:39;::::0;-1:-1:-1;;;21222:39:0;;21255:4:::1;21222:39;::::0;::::1;2860:51:1::0;21195:24:0::1;::::0;-1:-1:-1;;;;;21222:24:0;::::1;::::0;::::1;::::0;2833:18:1;;21222:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21280:46;::::0;-1:-1:-1;;;21280:46:0;;-1:-1:-1;;;;;6296:32:1;;;21280:46:0::1;::::0;::::1;6278:51:1::0;6345:18;;;6338:34;;;21195:66:0;;-1:-1:-1;21280:23:0;;::::1;::::0;::::1;::::0;6251:18:1;;21280:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21342;::::0;;-1:-1:-1;;;;;6296:32:1;;6278:51;;6360:2;6345:18;;6338:34;;;21272:54:0;;-1:-1:-1;21342:46:0::1;::::0;6251:18:1;21342:46:0::1;;;;;;;21114:282;21015:381:::0;;;;:::o;9442:104::-;9498:13;9531:7;9524:14;;;;;:::i;20440:478::-;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;20574:4:::1;20555:23:::0;::::1;20547:81;;;::::0;-1:-1:-1;;;20547:81:0;;6835:2:1;20547:81:0::1;::::0;::::1;6817:21:1::0;6874:2;6854:18;;;6847:30;6913:34;6893:18;;;6886:62;-1:-1:-1;;;6964:18:1;;;6957:44;7018:19;;20547:81:0::1;6633:410:1::0;20547:81:0::1;20662:12;20694:9:::0;20677:14:::1;:6:::0;20685::::1;20677:14;:::i;:::-;:33;;;;:::i;:::-;20662:48;;20748:4;20729:15;20739:4;20729:9;:15::i;:::-;:23;;20721:63;;;::::0;-1:-1:-1;;;20721:63:0;;7423:2:1;20721:63:0::1;::::0;::::1;7405:21:1::0;7462:2;7442:18;;;7435:30;7501:29;7481:18;;;7474:57;7548:18;;20721:63:0::1;7221:351:1::0;20721:63:0::1;20799:6;20795:116;20809:20:::0;;::::1;20795:116;;;20850:45;20860:4;20865:9;;20875:1;20865:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;20879:14;:6:::0;20887::::1;20879:14;:::i;:::-;20850:9;:45::i;:::-;20831:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20795:116;;;;20536:382;20440:478:::0;;;;:::o;13660:413::-;771:10;13753:4;13797:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13797:34:0;;;;;;;;;;13850:35;;;;13842:85;;;;-1:-1:-1;;;13842:85:0;;8051:2:1;13842:85:0;;;8033:21:1;8090:2;8070:18;;;8063:30;8129:34;8109:18;;;8102:62;-1:-1:-1;;;8180:18:1;;;8173:35;8225:19;;13842:85:0;7849:401:1;13842:85:0;13963:67;771:10;13986:7;14014:15;13995:16;:34;13963:8;:67::i;:::-;-1:-1:-1;14061:4:0;;13660:413;-1:-1:-1;;;13660:413:0:o;10854:175::-;10940:4;10957:42;771:10;10981:9;10992:6;10957:9;:42::i;2882:201::-;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2971:22:0;::::1;2963:73;;;::::0;-1:-1:-1;;;2963:73:0;;8457:2:1;2963:73:0::1;::::0;::::1;8439:21:1::0;8496:2;8476:18;;;8469:30;8535:34;8515:18;;;8508:62;-1:-1:-1;;;8586:18:1;;;8579:36;8632:19;;2963:73:0::1;8255:402:1::0;2963:73:0::1;3047:28;3066:8;3047:18;:28::i;21466:160::-:0;2019:7;2046:6;-1:-1:-1;;;;;2046:6:0;771:10;2193:23;2185:68;;;;-1:-1:-1;;;2185:68:0;;;;;;;:::i;:::-;21560:58:::1;::::0;21524:12:::1;::::0;21568:10:::1;::::0;21592:21:::1;::::0;21524:12;21560:58;21524:12;21560:58;21592:21;21568:10;21560:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;21466:160:0:o;17344:380::-;-1:-1:-1;;;;;17480:19:0;;17472:68;;;;-1:-1:-1;;;17472:68:0;;9074:2:1;17472:68:0;;;9056:21:1;9113:2;9093:18;;;9086:30;9152:34;9132:18;;;9125:62;-1:-1:-1;;;9203:18:1;;;9196:34;9247:19;;17472:68:0;8872:400:1;17472:68:0;-1:-1:-1;;;;;17559:21:0;;17551:68;;;;-1:-1:-1;;;17551:68:0;;9479:2:1;17551:68:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:32;9650:19;;17551:68:0;9277:398:1;17551:68:0;-1:-1:-1;;;;;17632:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17684:32;;1391:25:1;;;17684:32:0;;1364:18:1;17684:32:0;;;;;;;;17344:380;;;:::o;14563:733::-;-1:-1:-1;;;;;14703:20:0;;14695:70;;;;-1:-1:-1;;;14695:70:0;;9882:2:1;14695:70:0;;;9864:21:1;9921:2;9901:18;;;9894:30;9960:34;9940:18;;;9933:62;-1:-1:-1;;;10011:18:1;;;10004:35;10056:19;;14695:70:0;9680:401:1;14695:70:0;-1:-1:-1;;;;;14784:23:0;;14776:71;;;;-1:-1:-1;;;14776:71:0;;10288:2:1;14776:71:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366:34;10346:18;;;10339:62;-1:-1:-1;;;10417:18:1;;;10410:33;10460:19;;14776:71:0;10086:399:1;14776:71:0;14860:47;14881:6;14889:9;14900:6;14860:20;:47::i;:::-;-1:-1:-1;;;;;14944:17:0;;14920:21;14944:17;;;:9;:17;;;;;;14980:23;;;;14972:74;;;;-1:-1:-1;;;14972:74:0;;10692:2:1;14972:74:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:36;10867:19;;14972:74:0;10490:402:1;14972:74:0;-1:-1:-1;;;;;15082:17:0;;;;;;;:9;:17;;;;;;15102:22;;;15082:42;;15146:20;;;;;;;;:30;;15118:6;;15082:17;15146:30;;15118:6;;15146:30;:::i;:::-;;;;;;;;15211:9;-1:-1:-1;;;;;15194:35:0;15203:6;-1:-1:-1;;;;;15194:35:0;;15222:6;15194:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15194:35:0;;;;;;;;14684:612;14563:733;;;:::o;16315:591::-;-1:-1:-1;;;;;16399:21:0;;16391:67;;;;-1:-1:-1;;;16391:67:0;;11099:2:1;16391:67:0;;;11081:21:1;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;11228:18:1;;;11221:31;11269:19;;16391:67:0;10897:397:1;16391:67:0;16471:49;16492:7;16509:1;16513:6;16471:20;:49::i;:::-;-1:-1:-1;;;;;16558:18:0;;16533:22;16558:18;;;:9;:18;;;;;;16595:24;;;;16587:71;;;;-1:-1:-1;;;16587:71:0;;11501:2:1;16587:71:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;-1:-1:-1;;;11630:18:1;;;11623:32;11672:19;;16587:71:0;11299:398:1;16587:71:0;-1:-1:-1;;;;;16694:18:0;;;;;;:9;:18;;;;;16715:23;;;16694:44;;16760:12;:22;;16732:6;;16694:18;16760:22;;16732:6;;16760:22;:::i;:::-;;;;-1:-1:-1;;16800:37:0;;1391:25:1;;;16826:1:0;;-1:-1:-1;;;;;16800:37:0;;;;;1379:2:1;1364:18;16800:37:0;1245:177:1;16850:48:0;16380:526;16315:591;;:::o;3243:191::-;3317:16;3336:6;;-1:-1:-1;;;;;3353:17:0;;;-1:-1:-1;;;;;;3353:17:0;;;;;;3386:40;;3336:6;;;;;;;3386:40;;3317:16;3386:40;3306:128;3243:191;:::o;19936:496::-;20085:13;;-1:-1:-1;;;;;20085:13:0;20081:148;;2019:7;2046:6;-1:-1:-1;;;;;20137:15:0;;;2046:6;;20137:15;;:32;;-1:-1:-1;2019:7:0;2046:6;-1:-1:-1;;;;;20156:13:0;;;2046:6;;20156:13;20137:32;20129:67;;;;-1:-1:-1;;;20129:67:0;;12034:2:1;20129:67:0;;;12016:21:1;12073:2;12053:18;;;12046:30;-1:-1:-1;;;12092:18:1;;;12085:52;12154:18;;20129:67:0;11832:346:1;20081:148:0;20245:7;;;;:32;;;;-1:-1:-1;20264:13:0;;-1:-1:-1;;;;;20256:21:0;;;20264:13;;20256:21;20245:32;20241:184;;;20334:16;;20324:6;20302:19;20318:2;20302:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20386:16;;20376:6;20354:19;20370:2;20354:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20302:100;20294:119;;;;-1:-1:-1;;;20294:119:0;;12385:2:1;20294:119:0;;;12367:21:1;12424:1;12404:18;;;12397:29;-1:-1:-1;;;12442:18:1;;;12435:36;12488:18;;20294:119:0;12183:329:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:118::-;2035:5;2028:13;2021:21;2014:5;2011:32;2001:60;;2057:1;2054;2047:12;2072:452;2155:6;2163;2171;2179;2232:3;2220:9;2211:7;2207:23;2203:33;2200:53;;;2249:1;2246;2239:12;2200:53;2288:9;2275:23;2307:28;2329:5;2307:28;:::i;:::-;2354:5;-1:-1:-1;2378:38:1;2412:2;2397:18;;2378:38;:::i;:::-;2072:452;;2368:48;;-1:-1:-1;;;;2463:2:1;2448:18;;2435:32;;2514:2;2499:18;2486:32;;2072:452::o;2529:180::-;2588:6;2641:2;2629:9;2620:7;2616:23;2612:32;2609:52;;;2657:1;2654;2647:12;2609:52;-1:-1:-1;2680:23:1;;2529:180;-1:-1:-1;2529:180:1:o;2922:186::-;2981:6;3034:2;3022:9;3013:7;3009:23;3005:32;3002:52;;;3050:1;3047;3040:12;3002:52;3073:29;3092:9;3073:29;:::i;:::-;3063:39;2922:186;-1:-1:-1;;;2922:186:1:o;3113:260::-;3181:6;3189;3242:2;3230:9;3221:7;3217:23;3213:32;3210:52;;;3258:1;3255;3248:12;3210:52;3281:29;3300:9;3281:29;:::i;:::-;3271:39;;3329:38;3363:2;3352:9;3348:18;3329:38;:::i;:::-;3319:48;;3113:260;;;;;:::o;3378:757::-;3482:6;3490;3498;3506;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3598:29;3617:9;3598:29;:::i;:::-;3588:39;;3678:2;3667:9;3663:18;3650:32;3701:18;3742:2;3734:6;3731:14;3728:34;;;3758:1;3755;3748:12;3728:34;3796:6;3785:9;3781:22;3771:32;;3841:7;3834:4;3830:2;3826:13;3822:27;3812:55;;3863:1;3860;3853:12;3812:55;3903:2;3890:16;3929:2;3921:6;3918:14;3915:34;;;3945:1;3942;3935:12;3915:34;3998:7;3993:2;3983:6;3980:1;3976:14;3972:2;3968:23;3964:32;3961:45;3958:65;;;4019:1;4016;4009:12;3958:65;3378:757;;4050:2;4042:11;;;;;-1:-1:-1;4072:6:1;;4125:2;4110:18;4097:32;;-1:-1:-1;3378:757:1;-1:-1:-1;;;3378:757:1:o;4140:380::-;4219:1;4215:12;;;;4262;;;4283:61;;4337:4;4329:6;4325:17;4315:27;;4283:61;4390:2;4382:6;4379:14;4359:18;4356:38;4353:161;;;4436:10;4431:3;4427:20;4424:1;4417:31;4471:4;4468:1;4461:15;4499:4;4496:1;4489:15;4353:161;;4140:380;;;:::o;4934:127::-;4995:10;4990:3;4986:20;4983:1;4976:31;5026:4;5023:1;5016:15;5050:4;5047:1;5040:15;5066:128;5106:3;5137:1;5133:6;5130:1;5127:13;5124:39;;;5143:18;;:::i;:::-;-1:-1:-1;5179:9:1;;5066:128::o;5199:356::-;5401:2;5383:21;;;5420:18;;;5413:30;5479:34;5474:2;5459:18;;5452:62;5546:2;5531:18;;5199:356::o;5915:184::-;5985:6;6038:2;6026:9;6017:7;6013:23;6009:32;6006:52;;;6054:1;6051;6044:12;6006:52;-1:-1:-1;6077:16:1;;5915:184;-1:-1:-1;5915:184:1:o;6383:245::-;6450:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:52;;;6519:1;6516;6509:12;6471:52;6551:9;6545:16;6570:28;6592:5;6570:28;:::i;7048:168::-;7088:7;7154:1;7150;7146:6;7142:14;7139:1;7136:21;7131:1;7124:9;7117:17;7113:45;7110:71;;;7161:18;;:::i;:::-;-1:-1:-1;7201:9:1;;7048:168::o;7577:127::-;7638:10;7633:3;7629:20;7626:1;7619:31;7669:4;7666:1;7659:15;7693:4;7690:1;7683:15;7709:135;7748:3;-1:-1:-1;;7769:17:1;;7766:43;;;7789:18;;:::i;:::-;-1:-1:-1;7836:1:1;7825:13;;7709:135::o;11702:125::-;11742:4;11770:1;11767;11764:8;11761:34;;;11775:18;;:::i;:::-;-1:-1:-1;11812:9:1;;11702:125::o

Swarm Source

ipfs://5564d062e4537f6d63b66a2c63bd0514ac664f5ce9fcf43d1b0e223c7f715ae5
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.