ETH Price: $2,954.72 (-5.32%)
Gas: 7 Gwei

Token

Foo Foo (FOOFOO)
 

Overview

Max Total Supply

100,000,000 FOOFOO

Holders

104

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000028903744 FOOFOO

Value
$0.00
0xb8c33E113066e6cC102f616646a6F62Fa055208e
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:
foofoo

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-23
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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/foofoo.sol



pragma solidity ^0.8.0;


contract foofoo is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("Foo Foo", "FOOFOO") {
        _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, "Max wallet");
        }
    }

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

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"},{"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":"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"}]

608060405234801561000f575f80fd5b5060405161134938038061134983398101604081905261002e9161033d565b60405180604001604052806007815260200166466f6f20466f6f60c81b81525060405180604001604052806006815260200165464f4f464f4f60d01b81525061008361007e6100b560201b60201c565b6100b9565b600461008f83826103eb565b50600561009c82826103eb565b5050506100af338261010860201b60201c565b506104ca565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166101635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b61016e5f83836101f4565b8060035f82825461017f91906104a5565b90915550506001600160a01b0382165f90815260016020526040812080548392906101ab9084906104a5565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6009546001600160a01b031661027c575f546001600160a01b038481169116148061022b57505f546001600160a01b038381169116145b6102775760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640161015a565b505050565b60065460ff16801561029b57506009546001600160a01b038481169116145b1561027757600754816102c2846001600160a01b03165f9081526001602052604090205490565b6102cc91906104a5565b111580156103045750600854816102f7846001600160a01b03165f9081526001602052604090205490565b61030191906104a5565b10155b6102775760405162461bcd60e51b815260206004820152600a60248201526913585e081dd85b1b195d60b21b604482015260640161015a565b5f6020828403121561034d575f80fd5b5051919050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061037c57607f821691505b60208210810361039a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561027757805f5260205f20601f840160051c810160208510156103c55750805b601f840160051c820191505b818110156103e4575f81556001016103d1565b5050505050565b81516001600160401b0381111561040457610404610354565b610418816104128454610368565b846103a0565b6020601f82116001811461044a575f83156104335750848201515b5f19600385901b1c1916600184901b1784556103e4565b5f84815260208120601f198516915b828110156104795787850151825560209485019460019092019101610459565b508482101561049657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156104c457634e487b7160e01b5f52601160045260245ffd5b92915050565b610e72806104d75f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c806370a08231116100a957806395d89b411161006e57806395d89b4114610265578063a457c2d71461026d578063a9059cbb14610280578063dd62ed3e14610293578063f2fde38b146102cb575f80fd5b806370a082311461020f578063715018a614610237578063860a32ec1461023f57806389f9a1d31461024c5780638da5cb5b14610255575f80fd5b8063313ce567116100ef578063313ce5671461019a57806339509351146101a95780633aa633aa146101bc57806342966c68146101d157806349bd5a5e146101e4575f80fd5b806306fdde031461012b578063095ea7b31461014957806318160ddd1461016c5780631ab99e121461017e57806323b872dd14610187575b5f80fd5b6101336102de565b6040516101409190610c36565b60405180910390f35b61015c610157366004610c86565b61036e565b6040519015158152602001610140565b6003545b604051908152602001610140565b61017060085481565b61015c610195366004610cae565b610384565b60405160128152602001610140565b61015c6101b7366004610c86565b610431565b6101cf6101ca366004610ce8565b61046c565b005b6101cf6101df366004610d2d565b6104d0565b6009546101f7906001600160a01b031681565b6040516001600160a01b039091168152602001610140565b61017061021d366004610d44565b6001600160a01b03165f9081526001602052604090205490565b6101cf6104dd565b60065461015c9060ff1681565b61017060075481565b5f546001600160a01b03166101f7565b610133610511565b61015c61027b366004610c86565b610520565b61015c61028e366004610c86565b6105b8565b6101706102a1366004610d64565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101cf6102d9366004610d44565b6105c4565b6060600480546102ed90610d95565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610d95565b80156103645780601f1061033b57610100808354040283529160200191610364565b820191905f5260205f20905b81548152906001019060200180831161034757829003601f168201915b5050505050905090565b5f61037a33848461065b565b5060015b92915050565b5f61039084848461077f565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610426853385840361065b565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161037a918590610467908690610de1565b61065b565b5f546001600160a01b031633146104955760405162461bcd60e51b815260040161041090610df4565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6104da3382610957565b50565b5f546001600160a01b031633146105065760405162461bcd60e51b815260040161041090610df4565b61050f5f610aaa565b565b6060600580546102ed90610d95565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610410565b6105ae338585840361065b565b5060019392505050565b5f61037a33848461077f565b5f546001600160a01b031633146105ed5760405162461bcd60e51b815260040161041090610df4565b6001600160a01b0381166106525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610410565b6104da81610aaa565b6001600160a01b0383166106bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610410565b6001600160a01b03821661071e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610410565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610410565b6001600160a01b0382166108455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610410565b610850838383610af9565b6001600160a01b0383165f90815260016020526040902054818110156108c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610410565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906108fd908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094991815260200190565b60405180910390a350505050565b6001600160a01b0382166109b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610410565b6109c2825f83610af9565b6001600160a01b0382165f9081526001602052604090205481811015610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610410565b6001600160a01b0383165f908152600160205260408120838303905560038054849290610a63908490610e29565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610772565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610b75575f546001600160a01b0384811691161480610b3057505f546001600160a01b038381169116145b610aa55760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610410565b60065460ff168015610b9457506009546001600160a01b038481169116145b15610aa55760075481610bbb846001600160a01b03165f9081526001602052604090205490565b610bc59190610de1565b11158015610bfd575060085481610bf0846001600160a01b03165f9081526001602052604090205490565b610bfa9190610de1565b10155b610aa55760405162461bcd60e51b815260206004820152600a60248201526913585e081dd85b1b195d60b21b6044820152606401610410565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610c81575f80fd5b919050565b5f8060408385031215610c97575f80fd5b610ca083610c6b565b946020939093013593505050565b5f805f60608486031215610cc0575f80fd5b610cc984610c6b565b9250610cd760208501610c6b565b929592945050506040919091013590565b5f805f8060808587031215610cfb575f80fd5b84358015158114610d0a575f80fd5b9350610d1860208601610c6b565b93969395505050506040820135916060013590565b5f60208284031215610d3d575f80fd5b5035919050565b5f60208284031215610d54575f80fd5b610d5d82610c6b565b9392505050565b5f8060408385031215610d75575f80fd5b610d7e83610c6b565b9150610d8c60208401610c6b565b90509250929050565b600181811c90821680610da957607f821691505b602082108103610dc757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561037e5761037e610dcd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561037e5761037e610dcd56fea26469706673582212203fd2049929f46d4c3544a3de23d1245ce29e31848721f822737c8334220f7fce64736f6c634300081a003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c806370a08231116100a957806395d89b411161006e57806395d89b4114610265578063a457c2d71461026d578063a9059cbb14610280578063dd62ed3e14610293578063f2fde38b146102cb575f80fd5b806370a082311461020f578063715018a614610237578063860a32ec1461023f57806389f9a1d31461024c5780638da5cb5b14610255575f80fd5b8063313ce567116100ef578063313ce5671461019a57806339509351146101a95780633aa633aa146101bc57806342966c68146101d157806349bd5a5e146101e4575f80fd5b806306fdde031461012b578063095ea7b31461014957806318160ddd1461016c5780631ab99e121461017e57806323b872dd14610187575b5f80fd5b6101336102de565b6040516101409190610c36565b60405180910390f35b61015c610157366004610c86565b61036e565b6040519015158152602001610140565b6003545b604051908152602001610140565b61017060085481565b61015c610195366004610cae565b610384565b60405160128152602001610140565b61015c6101b7366004610c86565b610431565b6101cf6101ca366004610ce8565b61046c565b005b6101cf6101df366004610d2d565b6104d0565b6009546101f7906001600160a01b031681565b6040516001600160a01b039091168152602001610140565b61017061021d366004610d44565b6001600160a01b03165f9081526001602052604090205490565b6101cf6104dd565b60065461015c9060ff1681565b61017060075481565b5f546001600160a01b03166101f7565b610133610511565b61015c61027b366004610c86565b610520565b61015c61028e366004610c86565b6105b8565b6101706102a1366004610d64565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101cf6102d9366004610d44565b6105c4565b6060600480546102ed90610d95565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610d95565b80156103645780601f1061033b57610100808354040283529160200191610364565b820191905f5260205f20905b81548152906001019060200180831161034757829003601f168201915b5050505050905090565b5f61037a33848461065b565b5060015b92915050565b5f61039084848461077f565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610426853385840361065b565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161037a918590610467908690610de1565b61065b565b5f546001600160a01b031633146104955760405162461bcd60e51b815260040161041090610df4565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6104da3382610957565b50565b5f546001600160a01b031633146105065760405162461bcd60e51b815260040161041090610df4565b61050f5f610aaa565b565b6060600580546102ed90610d95565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610410565b6105ae338585840361065b565b5060019392505050565b5f61037a33848461077f565b5f546001600160a01b031633146105ed5760405162461bcd60e51b815260040161041090610df4565b6001600160a01b0381166106525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610410565b6104da81610aaa565b6001600160a01b0383166106bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610410565b6001600160a01b03821661071e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610410565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610410565b6001600160a01b0382166108455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610410565b610850838383610af9565b6001600160a01b0383165f90815260016020526040902054818110156108c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610410565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906108fd908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094991815260200190565b60405180910390a350505050565b6001600160a01b0382166109b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610410565b6109c2825f83610af9565b6001600160a01b0382165f9081526001602052604090205481811015610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610410565b6001600160a01b0383165f908152600160205260408120838303905560038054849290610a63908490610e29565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610772565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610b75575f546001600160a01b0384811691161480610b3057505f546001600160a01b038381169116145b610aa55760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610410565b60065460ff168015610b9457506009546001600160a01b038481169116145b15610aa55760075481610bbb846001600160a01b03165f9081526001602052604090205490565b610bc59190610de1565b11158015610bfd575060085481610bf0846001600160a01b03165f9081526001602052604090205490565b610bfa9190610de1565b10155b610aa55760405162461bcd60e51b815260206004820152600a60248201526913585e081dd85b1b195d60b21b6044820152606401610410565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610c81575f80fd5b919050565b5f8060408385031215610c97575f80fd5b610ca083610c6b565b946020939093013593505050565b5f805f60608486031215610cc0575f80fd5b610cc984610c6b565b9250610cd760208501610c6b565b929592945050506040919091013590565b5f805f8060808587031215610cfb575f80fd5b84358015158114610d0a575f80fd5b9350610d1860208601610c6b565b93969395505050506040820135916060013590565b5f60208284031215610d3d575f80fd5b5035919050565b5f60208284031215610d54575f80fd5b610d5d82610c6b565b9392505050565b5f8060408385031215610d75575f80fd5b610d7e83610c6b565b9150610d8c60208401610c6b565b90509250929050565b600181811c90821680610da957607f821691505b602082108103610dc757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561037e5761037e610dcd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561037e5761037e610dcd56fea26469706673582212203fd2049929f46d4c3544a3de23d1245ce29e31848721f822737c8334220f7fce64736f6c634300081a0033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Deployed Bytecode Sourcemap

19340:1202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:169;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;11479:169:0;920:187:1;10432:108:0;10520:12;;10432:108;;;1258:25:1;;;1246:2;1231:18;10432:108:0;1112:177:1;19445:31:0;;;;;;12130:492;;;;;;:::i;:::-;;:::i;10274:93::-;;;10357:2;1815:36:1;;1803:2;1788:18;10274:93:0;1673:184:1;13031:215:0;;;;;;:::i;:::-;;:::i;19641:301::-;;;;;;:::i;:::-;;:::i;:::-;;20458:81;;;;;;:::i;:::-;;:::i;19483:28::-;;;;;-1:-1:-1;;;;;19483:28:0;;;;;;-1:-1:-1;;;;;2850:32:1;;;2832:51;;2820:2;2805:18;19483:28:0;2686:203:1;10603:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10704:18:0;10677:7;10704:18;;;:9;:18;;;;;;;10603:127;2713:103;;;:::i;19381:19::-;;;;;;;;;19407:31;;;;;;2062:87;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;2062:87;;9531:104;;;:::i;13749:413::-;;;;;;:::i;:::-;;:::i;10943:175::-;;;;;;:::i;:::-;;:::i;11181:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11297:18:0;;;11270:7;11297:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11181:151;2971:201;;;;;;:::i;:::-;;:::i;9312:100::-;9366:13;9399:5;9392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;:::o;11479:169::-;11562:4;11579:39;860:10;11602:7;11611:6;11579:8;:39::i;:::-;-1:-1:-1;11636:4:0;11479:169;;;;;:::o;12130:492::-;12270:4;12287:36;12297:6;12305:9;12316:6;12287:9;:36::i;:::-;-1:-1:-1;;;;;12363:19:0;;12336:24;12363:19;;;:11;:19;;;;;;;;860:10;12363:33;;;;;;;;12415:26;;;;12407:79;;;;-1:-1:-1;;;12407:79:0;;3937:2:1;12407:79:0;;;3919:21:1;3976:2;3956:18;;;3949:30;4015:34;3995:18;;;3988:62;-1:-1:-1;;;4066:18:1;;;4059:38;4114:19;;12407:79:0;;;;;;;;;12522:57;12531:6;860:10;12572:6;12553:16;:25;12522:8;:57::i;:::-;-1:-1:-1;12610:4:0;;12130:492;-1:-1:-1;;;;12130:492:0:o;13031:215::-;860:10;13119:4;13168:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13168:34:0;;;;;;;;;;13119:4;;13136:80;;13159:7;;13168:47;;13205:10;;13168:47;:::i;:::-;13136:8;:80::i;19641:301::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;19781:7:::1;:18:::0;;-1:-1:-1;;19781:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19810:13:::1;:30:::0;;-1:-1:-1;;;;;;19810:30:0::1;-1:-1:-1::0;;;;;19810:30:0;;;::::1;::::0;;;::::1;::::0;;;19851:16:::1;:36:::0;19898:16:::1;:36:::0;19641:301::o;20458:81::-;20507:24;20513:10;20525:5;20507;:24::i;:::-;20458:81;:::o;2713:103::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;2778:30:::1;2805:1;2778:18;:30::i;:::-;2713:103::o:0;9531:104::-;9587:13;9620:7;9613:14;;;;;:::i;13749:413::-;860:10;13842:4;13886:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13886:34:0;;;;;;;;;;13939:35;;;;13931:85;;;;-1:-1:-1;;;13931:85:0;;4969:2:1;13931:85:0;;;4951:21:1;5008:2;4988:18;;;4981:30;5047:34;5027:18;;;5020:62;-1:-1:-1;;;5098:18:1;;;5091:35;5143:19;;13931:85:0;4767:401:1;13931:85:0;14052:67;860:10;14075:7;14103:15;14084:16;:34;14052:8;:67::i;:::-;-1:-1:-1;14150:4:0;;13749:413;-1:-1:-1;;;13749:413:0:o;10943:175::-;11029:4;11046:42;860:10;11070:9;11081:6;11046:9;:42::i;2971:201::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3060:22:0;::::1;3052:73;;;::::0;-1:-1:-1;;;3052:73:0;;5375:2:1;3052:73:0::1;::::0;::::1;5357:21:1::0;5414:2;5394:18;;;5387:30;5453:34;5433:18;;;5426:62;-1:-1:-1;;;5504:18:1;;;5497:36;5550:19;;3052:73:0::1;5173:402:1::0;3052:73:0::1;3136:28;3155:8;3136:18;:28::i;17433:380::-:0;-1:-1:-1;;;;;17569:19:0;;17561:68;;;;-1:-1:-1;;;17561:68:0;;5782:2:1;17561:68:0;;;5764:21:1;5821:2;5801:18;;;5794:30;5860:34;5840:18;;;5833:62;-1:-1:-1;;;5911:18:1;;;5904:34;5955:19;;17561:68:0;5580:400:1;17561:68:0;-1:-1:-1;;;;;17648:21:0;;17640:68;;;;-1:-1:-1;;;17640:68:0;;6187:2:1;17640:68:0;;;6169:21:1;6226:2;6206:18;;;6199:30;6265:34;6245:18;;;6238:62;-1:-1:-1;;;6316:18:1;;;6309:32;6358:19;;17640:68:0;5985:398:1;17640:68:0;-1:-1:-1;;;;;17721:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17773:32;;1258:25:1;;;17773:32:0;;1231:18:1;17773:32:0;;;;;;;;17433:380;;;:::o;14652:733::-;-1:-1:-1;;;;;14792:20:0;;14784:70;;;;-1:-1:-1;;;14784:70:0;;6590:2:1;14784:70:0;;;6572:21:1;6629:2;6609:18;;;6602:30;6668:34;6648:18;;;6641:62;-1:-1:-1;;;6719:18:1;;;6712:35;6764:19;;14784:70:0;6388:401:1;14784:70:0;-1:-1:-1;;;;;14873:23:0;;14865:71;;;;-1:-1:-1;;;14865:71:0;;6996:2:1;14865:71:0;;;6978:21:1;7035:2;7015:18;;;7008:30;7074:34;7054:18;;;7047:62;-1:-1:-1;;;7125:18:1;;;7118:33;7168:19;;14865:71:0;6794:399:1;14865:71:0;14949:47;14970:6;14978:9;14989:6;14949:20;:47::i;:::-;-1:-1:-1;;;;;15033:17:0;;15009:21;15033:17;;;:9;:17;;;;;;15069:23;;;;15061:74;;;;-1:-1:-1;;;15061:74:0;;7400:2:1;15061:74:0;;;7382:21:1;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:36;7575:19;;15061:74:0;7198:402:1;15061:74:0;-1:-1:-1;;;;;15171:17:0;;;;;;;:9;:17;;;;;;15191:22;;;15171:42;;15235:20;;;;;;;;:30;;15207:6;;15171:17;15235:30;;15207:6;;15235:30;:::i;:::-;;;;;;;;15300:9;-1:-1:-1;;;;;15283:35:0;15292:6;-1:-1:-1;;;;;15283:35:0;;15311:6;15283:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;15283:35:0;;;;;;;;14773:612;14652:733;;;:::o;16404:591::-;-1:-1:-1;;;;;16488:21:0;;16480:67;;;;-1:-1:-1;;;16480:67:0;;7807:2:1;16480:67:0;;;7789:21:1;7846:2;7826:18;;;7819:30;7885:34;7865:18;;;7858:62;-1:-1:-1;;;7936:18:1;;;7929:31;7977:19;;16480:67:0;7605:397:1;16480:67:0;16560:49;16581:7;16598:1;16602:6;16560:20;:49::i;:::-;-1:-1:-1;;;;;16647:18:0;;16622:22;16647:18;;;:9;:18;;;;;;16684:24;;;;16676:71;;;;-1:-1:-1;;;16676:71:0;;8209:2:1;16676:71:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:32;8380:19;;16676:71:0;8007:398:1;16676:71:0;-1:-1:-1;;;;;16783:18:0;;;;;;:9;:18;;;;;16804:23;;;16783:44;;16849:12;:22;;16821:6;;16783:18;16849:22;;16821:6;;16849:22;:::i;:::-;;;;-1:-1:-1;;16889:37:0;;1258:25:1;;;16915:1:0;;-1:-1:-1;;;;;16889:37:0;;;;;1246:2:1;1231:18;16889:37:0;1112:177:1;16939:48:0;16469:526;16404:591;;:::o;3332:191::-;3406:16;3425:6;;-1:-1:-1;;;;;3442:17:0;;;-1:-1:-1;;;;;;3442:17:0;;;;;;3475:40;;3425:6;;;;;;;3475:40;;3406:16;3475:40;3395:128;3332:191;:::o;19950:500::-;20099:13;;-1:-1:-1;;;;;20099:13:0;20095:148;;2108:7;2135:6;-1:-1:-1;;;;;20151:15:0;;;2135:6;;20151:15;;:32;;-1:-1:-1;2108:7:0;2135:6;-1:-1:-1;;;;;20170:13:0;;;2135:6;;20170:13;20151:32;20143:67;;;;-1:-1:-1;;;20143:67:0;;8745:2:1;20143:67:0;;;8727:21:1;8784:2;8764:18;;;8757:30;-1:-1:-1;;;8803:18:1;;;8796:52;8865:18;;20143:67:0;8543:346:1;20095:148:0;20259:7;;;;:32;;;;-1:-1:-1;20278:13:0;;-1:-1:-1;;;;;20270:21:0;;;20278:13;;20270:21;20259:32;20255:188;;;20348:16;;20338:6;20316:19;20332:2;-1:-1:-1;;;;;10704:18:0;10677:7;10704:18;;;:9;:18;;;;;;;10603:127;20316:19;:28;;;;:::i;:::-;:48;;:100;;;;;20400:16;;20390:6;20368:19;20384:2;-1:-1:-1;;;;;10704:18:0;10677:7;10704:18;;;:9;:18;;;;;;;10603:127;20368:19;:28;;;;:::i;:::-;:48;;20316:100;20308:123;;;;-1:-1:-1;;;20308:123:0;;9096:2:1;20308:123:0;;;9078:21:1;9135:2;9115:18;;;9108:30;-1:-1:-1;;;9154:18:1;;;9147:40;9204:18;;20308:123:0;8894:334:1;14:418;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:588::-;1945:6;1953;1961;1969;2022:3;2010:9;2001:7;1997:23;1993:33;1990:53;;;2039:1;2036;2029:12;1990:53;2078:9;2065:23;2131:5;2124:13;2117:21;2110:5;2107:32;2097:60;;2153:1;2150;2143:12;2097:60;2176:5;-1:-1:-1;2200:38:1;2234:2;2219:18;;2200:38;:::i;:::-;1862:588;;2190:48;;-1:-1:-1;;;;2311:2:1;2296:18;;2283:32;;2414:2;2399:18;2386:32;;1862:588::o;2455:226::-;2514:6;2567:2;2555:9;2546:7;2542:23;2538:32;2535:52;;;2583:1;2580;2573:12;2535:52;-1:-1:-1;2628:23:1;;2455:226;-1:-1:-1;2455:226:1:o;2894:186::-;2953:6;3006:2;2994:9;2985:7;2981:23;2977:32;2974:52;;;3022:1;3019;3012:12;2974:52;3045:29;3064:9;3045:29;:::i;:::-;3035:39;2894:186;-1:-1:-1;;;2894:186:1:o;3085:260::-;3153:6;3161;3214:2;3202:9;3193:7;3189:23;3185:32;3182:52;;;3230:1;3227;3220:12;3182:52;3253:29;3272:9;3253:29;:::i;:::-;3243:39;;3301:38;3335:2;3324:9;3320:18;3301:38;:::i;:::-;3291:48;;3085:260;;;;;:::o;3350:380::-;3429:1;3425:12;;;;3472;;;3493:61;;3547:4;3539:6;3535:17;3525:27;;3493:61;3600:2;3592:6;3589:14;3569:18;3566:38;3563:161;;3646:10;3641:3;3637:20;3634:1;3627:31;3681:4;3678:1;3671:15;3709:4;3706:1;3699:15;3563:161;;3350:380;;;:::o;4144:127::-;4205:10;4200:3;4196:20;4193:1;4186:31;4236:4;4233:1;4226:15;4260:4;4257:1;4250:15;4276:125;4341:9;;;4362:10;;;4359:36;;;4375:18;;:::i;4406:356::-;4608:2;4590:21;;;4627:18;;;4620:30;4686:34;4681:2;4666:18;;4659:62;4753:2;4738:18;;4406:356::o;8410:128::-;8477:9;;;8498:11;;;8495:37;;;8512:18;;:::i

Swarm Source

ipfs://3fd2049929f46d4c3544a3de23d1245ce29e31848721f822737c8334220f7fce
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.