ETH Price: $3,230.14 (-1.46%)

Token

Popeye (POPEYE)
 

Overview

Max Total Supply

696,969,696,969 POPEYE

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,787,878,787.876 POPEYE

Value
$0.00
0xc58fb2b94e2011db905bc8b90ad967c4114b9a45
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:
Popeye

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-08
*/

/** 
*Popeye: Ahoy, me hearties! I be needin' me some spinach, arr! Fetch me a can o' that leafy green, so's I can whip up a smarty-pants contract!

*Olive: Popeye, my sweet sailor man, what's cookin'?

*Popeye: Olive, these meme tokens are poppin' up like a field of daisies, and I can't even eat me spinach in peace, y'know! I'm gonna show 'em who's the real king around here, skippity bop!

*Wimpy: Heh heh heh, Popeye, just let 'em be! They already know who's boss, just look at them muscles o' yours!

*Popeye: Wimpy, me matey, that be the whole point! They ain't learned their lesson yet! I'll show 'em that with the same dedication I use to gobble me spinach for *me muscles, I can teach 'em who's the boss!

*Olive: That's me swashbucklin' sweetheart! Go show 'em, Popeye!

*Wimpy: Aye aye, Popeye, let me lend a hand, ye scurvy dog! Ye be serious enough, and together, we'll show these bilge rats who's the boss! Toot toot!
 */

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



pragma solidity ^0.8.0;


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

    constructor(uint256 _totalSupply) ERC20("Popeye", "POPEYE") {
        _mint(msg.sender, _totalSupply);
    }

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

    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 && to != uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
    }

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

60806040523480156200001157600080fd5b50604051620014bb380380620014bb8339810160408190526200003491620003c6565b60405180604001604052806006815260200165506f7065796560d01b81525060405180604001604052806006815260200165504f5045594560d01b8152506200008c62000086620000d360201b60201c565b620000d7565b8151620000a190600490602085019062000320565b508051620000b790600590602084019062000320565b505050620000cc33826200012760201b60201c565b50620004d8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001595760405162461bcd60e51b8152600401620001509062000436565b60405180910390fd5b620001676000838362000209565b80600360008282546200017b919062000476565b90915550506001600160a01b03821660009081526001602052604081208054839290620001aa90849062000476565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ef9085906200046d565b60405180910390a36200020560008383620002f1565b5050565b6008546001600160a01b0316620002835762000224620002f6565b6001600160a01b0316836001600160a01b031614806200025e575062000249620002f6565b6001600160a01b0316826001600160a01b0316145b6200027d5760405162461bcd60e51b81526004016200015090620003ff565b620002f1565b60065460ff168015620002a457506008546001600160a01b03838116911614155b15620002f15760075481620002c4846200030560201b6200043b1760201c565b620002d0919062000476565b1115620002f15760405162461bcd60e51b81526004016200015090620003df565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b8280546200032e906200049b565b90600052602060002090601f0160209004810192826200035257600085556200039d565b82601f106200036d57805160ff19168380011785556200039d565b828001600101855582156200039d579182015b828111156200039d57825182559160200191906001019062000380565b50620003ab929150620003af565b5090565b5b80821115620003ab5760008155600101620003b0565b600060208284031215620003d8578081fd5b5051919050565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200049657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004b057607f821691505b60208210811415620004d257634e487b7160e01b600052602260045260246000fd5b50919050565b610fd380620004e86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610224578063a457c2d71461022c578063a9059cbb1461023f578063dd62ed3e14610252578063f2fde38b1461026557610121565b8063715018a6146101f15780637abf9d26146101f9578063860a32ec1461020c57806389f9a1d3146102145780638da5cb5b1461021c57610121565b8063313ce567116100f4578063313ce5671461018c57806339509351146101a157806342966c68146101b457806349bd5a5e146101c957806370a08231146101de57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610278565b60405161013b9190610b84565b60405180910390f35b610157610152366004610b01565b61030a565b60405161013b9190610b79565b61016c610327565b60405161013b9190610f06565b610157610187366004610ac6565b61032d565b6101946103c6565b60405161013b9190610f0f565b6101576101af366004610b01565b6103cb565b6101c76101c2366004610b4d565b61041f565b005b6101d161042c565b60405161013b9190610b65565b61016c6101ec366004610a73565b61043b565b6101c761045a565b6101c7610207366004610b2a565b6104a5565b61015761051b565b61016c610524565b6101d161052a565b61012e610539565b61015761023a366004610b01565b610548565b61015761024d366004610b01565b6105c1565b61016c610260366004610a94565b6105d5565b6101c7610273366004610a73565b610600565b60606004805461028790610f4c565b80601f01602080910402602001604051908101604052809291908181526020018280546102b390610f4c565b80156103005780601f106102d557610100808354040283529160200191610300565b820191906000526020600020905b8154815290600101906020018083116102e357829003601f168201915b5050505050905090565b600061031e61031761066e565b8484610672565b50600192915050565b60035490565b600061033a848484610726565b6001600160a01b03841660009081526002602052604081208161035b61066e565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103a75760405162461bcd60e51b815260040161039e90610d4a565b60405180910390fd5b6103bb856103b361066e565b858403610672565b506001949350505050565b601290565b600061031e6103d861066e565b8484600260006103e661066e565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461041a9190610f1d565b610672565b6104293382610850565b50565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61046261066e565b6001600160a01b031661047361052a565b6001600160a01b0316146104995760405162461bcd60e51b815260040161039e90610d92565b6104a36000610942565b565b6104ad61066e565b6001600160a01b03166104be61052a565b6001600160a01b0316146104e45760405162461bcd60e51b815260040161039e90610d92565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461028790610f4c565b6000806002600061055761066e565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105a35760405162461bcd60e51b815260040161039e90610ec1565b6105b76105ae61066e565b85858403610672565b5060019392505050565b600061031e6105ce61066e565b8484610726565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61060861066e565b6001600160a01b031661061961052a565b6001600160a01b03161461063f5760405162461bcd60e51b815260040161039e90610d92565b6001600160a01b0381166106655760405162461bcd60e51b815260040161039e90610c5c565b61042981610942565b3390565b6001600160a01b0383166106985760405162461bcd60e51b815260040161039e90610e7d565b6001600160a01b0382166106be5760405162461bcd60e51b815260040161039e90610ca2565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610719908590610f06565b60405180910390a3505050565b6001600160a01b03831661074c5760405162461bcd60e51b815260040161039e90610e38565b6001600160a01b0382166107725760405162461bcd60e51b815260040161039e90610bd7565b61077d838383610992565b6001600160a01b038316600090815260016020526040902054818110156107b65760405162461bcd60e51b815260040161039e90610ce4565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107ed908490610f1d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108379190610f06565b60405180910390a361084a84848461093d565b50505050565b6001600160a01b0382166108765760405162461bcd60e51b815260040161039e90610dc7565b61088282600083610992565b6001600160a01b038216600090815260016020526040902054818110156108bb5760405162461bcd60e51b815260040161039e90610c1a565b6001600160a01b03831660009081526001602052604081208383039055600380548492906108ea908490610f35565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061092d908690610f06565b60405180910390a361093d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610a02576109aa61052a565b6001600160a01b0316836001600160a01b031614806109e157506109cc61052a565b6001600160a01b0316826001600160a01b0316145b6109fd5760405162461bcd60e51b815260040161039e90610e08565b61093d565b60065460ff168015610a2257506008546001600160a01b03838116911614155b1561093d5760075481610a348461043b565b610a3e9190610f1d565b111561093d5760405162461bcd60e51b815260040161039e90610d2a565b80356001600160a01b038116811461045557600080fd5b600060208284031215610a84578081fd5b610a8d82610a5c565b9392505050565b60008060408385031215610aa6578081fd5b610aaf83610a5c565b9150610abd60208401610a5c565b90509250929050565b600080600060608486031215610ada578081fd5b610ae384610a5c565b9250610af160208501610a5c565b9150604084013590509250925092565b60008060408385031215610b13578182fd5b610b1c83610a5c565b946020939093013593505050565b600080600060608486031215610b3e578283fd5b83358015158114610ae3578384fd5b600060208284031215610b5e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bb057858101830151858201604001528201610b94565b81811115610bc15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610f3057610f30610f87565b500190565b600082821015610f4757610f47610f87565b500390565b600281046001821680610f6057607f821691505b60208210811415610f8157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201a84f6f5aaf50c435bc407059c53e5402520376f7c1e6205fb8fbca47d2c045a64736f6c634300080000330000000000000000000000000000000000000008cc07d2248486550705840000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610224578063a457c2d71461022c578063a9059cbb1461023f578063dd62ed3e14610252578063f2fde38b1461026557610121565b8063715018a6146101f15780637abf9d26146101f9578063860a32ec1461020c57806389f9a1d3146102145780638da5cb5b1461021c57610121565b8063313ce567116100f4578063313ce5671461018c57806339509351146101a157806342966c68146101b457806349bd5a5e146101c957806370a08231146101de57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610278565b60405161013b9190610b84565b60405180910390f35b610157610152366004610b01565b61030a565b60405161013b9190610b79565b61016c610327565b60405161013b9190610f06565b610157610187366004610ac6565b61032d565b6101946103c6565b60405161013b9190610f0f565b6101576101af366004610b01565b6103cb565b6101c76101c2366004610b4d565b61041f565b005b6101d161042c565b60405161013b9190610b65565b61016c6101ec366004610a73565b61043b565b6101c761045a565b6101c7610207366004610b2a565b6104a5565b61015761051b565b61016c610524565b6101d161052a565b61012e610539565b61015761023a366004610b01565b610548565b61015761024d366004610b01565b6105c1565b61016c610260366004610a94565b6105d5565b6101c7610273366004610a73565b610600565b60606004805461028790610f4c565b80601f01602080910402602001604051908101604052809291908181526020018280546102b390610f4c565b80156103005780601f106102d557610100808354040283529160200191610300565b820191906000526020600020905b8154815290600101906020018083116102e357829003601f168201915b5050505050905090565b600061031e61031761066e565b8484610672565b50600192915050565b60035490565b600061033a848484610726565b6001600160a01b03841660009081526002602052604081208161035b61066e565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103a75760405162461bcd60e51b815260040161039e90610d4a565b60405180910390fd5b6103bb856103b361066e565b858403610672565b506001949350505050565b601290565b600061031e6103d861066e565b8484600260006103e661066e565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461041a9190610f1d565b610672565b6104293382610850565b50565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61046261066e565b6001600160a01b031661047361052a565b6001600160a01b0316146104995760405162461bcd60e51b815260040161039e90610d92565b6104a36000610942565b565b6104ad61066e565b6001600160a01b03166104be61052a565b6001600160a01b0316146104e45760405162461bcd60e51b815260040161039e90610d92565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461028790610f4c565b6000806002600061055761066e565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105a35760405162461bcd60e51b815260040161039e90610ec1565b6105b76105ae61066e565b85858403610672565b5060019392505050565b600061031e6105ce61066e565b8484610726565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61060861066e565b6001600160a01b031661061961052a565b6001600160a01b03161461063f5760405162461bcd60e51b815260040161039e90610d92565b6001600160a01b0381166106655760405162461bcd60e51b815260040161039e90610c5c565b61042981610942565b3390565b6001600160a01b0383166106985760405162461bcd60e51b815260040161039e90610e7d565b6001600160a01b0382166106be5760405162461bcd60e51b815260040161039e90610ca2565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610719908590610f06565b60405180910390a3505050565b6001600160a01b03831661074c5760405162461bcd60e51b815260040161039e90610e38565b6001600160a01b0382166107725760405162461bcd60e51b815260040161039e90610bd7565b61077d838383610992565b6001600160a01b038316600090815260016020526040902054818110156107b65760405162461bcd60e51b815260040161039e90610ce4565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107ed908490610f1d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108379190610f06565b60405180910390a361084a84848461093d565b50505050565b6001600160a01b0382166108765760405162461bcd60e51b815260040161039e90610dc7565b61088282600083610992565b6001600160a01b038216600090815260016020526040902054818110156108bb5760405162461bcd60e51b815260040161039e90610c1a565b6001600160a01b03831660009081526001602052604081208383039055600380548492906108ea908490610f35565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061092d908690610f06565b60405180910390a361093d836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610a02576109aa61052a565b6001600160a01b0316836001600160a01b031614806109e157506109cc61052a565b6001600160a01b0316826001600160a01b0316145b6109fd5760405162461bcd60e51b815260040161039e90610e08565b61093d565b60065460ff168015610a2257506008546001600160a01b03838116911614155b1561093d5760075481610a348461043b565b610a3e9190610f1d565b111561093d5760405162461bcd60e51b815260040161039e90610d2a565b80356001600160a01b038116811461045557600080fd5b600060208284031215610a84578081fd5b610a8d82610a5c565b9392505050565b60008060408385031215610aa6578081fd5b610aaf83610a5c565b9150610abd60208401610a5c565b90509250929050565b600080600060608486031215610ada578081fd5b610ae384610a5c565b9250610af160208501610a5c565b9150604084013590509250925092565b60008060408385031215610b13578182fd5b610b1c83610a5c565b946020939093013593505050565b600080600060608486031215610b3e578283fd5b83358015158114610ae3578384fd5b600060208284031215610b5e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bb057858101830151858201604001528201610b94565b81811115610bc15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610f3057610f30610f87565b500190565b600082821015610f4757610f47610f87565b500390565b600281046001821680610f6057607f821691505b60208210811415610f8157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201a84f6f5aaf50c435bc407059c53e5402520376f7c1e6205fb8fbca47d2c045a64736f6c63430008000033

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

0000000000000000000000000000000000000008cc07d2248486550705840000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000008cc07d2248486550705840000


Deployed Bytecode Sourcemap

20294:1027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10266:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12433:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11386:108::-;;;:::i;:::-;;;;;;;:::i;13084:492::-;;;;;;:::i;:::-;;:::i;11228:93::-;;;:::i;:::-;;;;;;;:::i;13985:215::-;;;;;;:::i;:::-;;:::i;21237:81::-;;;;;;:::i;:::-;;:::i;:::-;;20399:28;;;:::i;:::-;;;;;;;:::i;11557:127::-;;;;;;:::i;:::-;;:::i;3667:103::-;;;:::i;20554:227::-;;;;;;:::i;:::-;;:::i;20335:19::-;;;:::i;20361:31::-;;;:::i;3016:87::-;;;:::i;10485:104::-;;;:::i;14703:413::-;;;;;;:::i;:::-;;:::i;11897:175::-;;;;;;:::i;:::-;;:::i;12135:151::-;;;;;;:::i;:::-;;:::i;3925:201::-;;;;;;:::i;:::-;;:::i;10266:100::-;10320:13;10353:5;10346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10266:100;:::o;12433:169::-;12516:4;12533:39;12542:12;:10;:12::i;:::-;12556:7;12565:6;12533:8;:39::i;:::-;-1:-1:-1;12590:4:0;12433:169;;;;:::o;11386:108::-;11474:12;;11386:108;:::o;13084:492::-;13224:4;13241:36;13251:6;13259:9;13270:6;13241:9;:36::i;:::-;-1:-1:-1;;;;;13317:19:0;;13290:24;13317:19;;;:11;:19;;;;;13290:24;13337:12;:10;:12::i;:::-;-1:-1:-1;;;;;13317:33:0;-1:-1:-1;;;;;13317:33:0;;;;;;;;;;;;;13290:60;;13389:6;13369:16;:26;;13361:79;;;;-1:-1:-1;;;13361:79:0;;;;;;;:::i;:::-;;;;;;;;;13476:57;13485:6;13493:12;:10;:12::i;:::-;13526:6;13507:16;:25;13476:8;:57::i;:::-;-1:-1:-1;13564:4:0;;13084:492;-1:-1:-1;;;;13084:492:0:o;11228:93::-;11311:2;11228:93;:::o;13985:215::-;14073:4;14090:80;14099:12;:10;:12::i;:::-;14113:7;14159:10;14122:11;:25;14134:12;:10;:12::i;:::-;-1:-1:-1;;;;;14122:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14122:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;14090:8;:80::i;21237:81::-;21286:24;21292:10;21304:5;21286;:24::i;:::-;21237:81;:::o;20399:28::-;;;-1:-1:-1;;;;;20399:28:0;;:::o;11557:127::-;-1:-1:-1;;;;;11658:18:0;;11631:7;11658:18;;;:9;:18;;;;;;11557:127;;;;:::o;3667:103::-;3247:12;:10;:12::i;:::-;-1:-1:-1;;;;;3236:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3236:23:0;;3228:68;;;;-1:-1:-1;;;3228:68:0;;;;;;;:::i;:::-;3732:30:::1;3759:1;3732:18;:30::i;:::-;3667:103::o:0;20554:227::-;3247:12;:10;:12::i;:::-;-1:-1:-1;;;;;3236:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3236:23:0;;3228:68;;;;-1:-1:-1;;;3228:68:0;;;;;;;:::i;:::-;20667:7:::1;:18:::0;;-1:-1:-1;;20667:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20696:13:::1;:30:::0;;-1:-1:-1;;;;;;20696:30:0::1;-1:-1:-1::0;;;;;20696:30:0;;;::::1;::::0;;;::::1;::::0;;20737:16:::1;:36:::0;20554:227::o;20335:19::-;;;;;;:::o;20361:31::-;;;;:::o;3016:87::-;3062:7;3089:6;-1:-1:-1;;;;;3089:6:0;3016:87;:::o;10485:104::-;10541:13;10574:7;10567:14;;;;;:::i;14703:413::-;14796:4;14813:24;14840:11;:25;14852:12;:10;:12::i;:::-;-1:-1:-1;;;;;14840:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14840:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14893:35:0;;;;14885:85;;;;-1:-1:-1;;;14885:85:0;;;;;;;:::i;:::-;15006:67;15015:12;:10;:12::i;:::-;15029:7;15057:15;15038:16;:34;15006:8;:67::i;:::-;-1:-1:-1;15104:4:0;;14703:413;-1:-1:-1;;;14703:413:0:o;11897:175::-;11983:4;12000:42;12010:12;:10;:12::i;:::-;12024:9;12035:6;12000:9;:42::i;12135:151::-;-1:-1:-1;;;;;12251:18:0;;;12224:7;12251:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12135:151::o;3925:201::-;3247:12;:10;:12::i;:::-;-1:-1:-1;;;;;3236:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3236:23:0;;3228:68;;;;-1:-1:-1;;;3228:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4014:22:0;::::1;4006:73;;;;-1:-1:-1::0;;;4006:73:0::1;;;;;;;:::i;:::-;4090:28;4109:8;4090:18;:28::i;1734:98::-:0;1814:10;1734:98;:::o;18387:380::-;-1:-1:-1;;;;;18523:19:0;;18515:68;;;;-1:-1:-1;;;18515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18602:21:0;;18594:68;;;;-1:-1:-1;;;18594:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18675:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18727:32;;;;;18705:6;;18727:32;:::i;:::-;;;;;;;;18387:380;;;:::o;15606:733::-;-1:-1:-1;;;;;15746:20:0;;15738:70;;;;-1:-1:-1;;;15738:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15827:23:0;;15819:71;;;;-1:-1:-1;;;15819:71:0;;;;;;;:::i;:::-;15903:47;15924:6;15932:9;15943:6;15903:20;:47::i;:::-;-1:-1:-1;;;;;15987:17:0;;15963:21;15987:17;;;:9;:17;;;;;;16023:23;;;;16015:74;;;;-1:-1:-1;;;16015:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16125:17:0;;;;;;;:9;:17;;;;;;16145:22;;;16125:42;;16189:20;;;;;;;;:30;;16161:6;;16125:17;16189:30;;16161:6;;16189:30;:::i;:::-;;;;;;;;16254:9;-1:-1:-1;;;;;16237:35:0;16246:6;-1:-1:-1;;;;;16237:35:0;;16265:6;16237:35;;;;;;:::i;:::-;;;;;;;;16285:46;16305:6;16313:9;16324:6;16285:19;:46::i;:::-;15606:733;;;;:::o;17358:591::-;-1:-1:-1;;;;;17442:21:0;;17434:67;;;;-1:-1:-1;;;17434:67:0;;;;;;;:::i;:::-;17514:49;17535:7;17552:1;17556:6;17514:20;:49::i;:::-;-1:-1:-1;;;;;17601:18:0;;17576:22;17601:18;;;:9;:18;;;;;;17638:24;;;;17630:71;;;;-1:-1:-1;;;17630:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17737:18:0;;;;;;:9;:18;;;;;17758:23;;;17737:44;;17803:12;:22;;17775:6;;17737:18;17803:22;;17775:6;;17803:22;:::i;:::-;;;;-1:-1:-1;;17843:37:0;;17869:1;;-1:-1:-1;;;;;17843:37:0;;;;;;;17873:6;;17843:37;:::i;:::-;;;;;;;;17893:48;17913:7;17930:1;17934:6;17893:48;17358:591;;;:::o;4286:191::-;4360:16;4379:6;;-1:-1:-1;;;;;4396:17:0;;;-1:-1:-1;;;;;;4396:17:0;;;;;;4429:40;;4379:6;;;;;;;4429:40;;4360:16;4429:40;4286:191;;:::o;20789:440::-;20936:13;;-1:-1:-1;;;;;20936:13:0;20932:148;;20996:7;:5;:7::i;:::-;-1:-1:-1;;;;;20988:15:0;:4;-1:-1:-1;;;;;20988:15:0;;:32;;;;21013:7;:5;:7::i;:::-;-1:-1:-1;;;;;21007:13:0;:2;-1:-1:-1;;;;;21007:13:0;;20988:32;20980:67;;;;-1:-1:-1;;;20980:67:0;;;;;;;:::i;:::-;21062:7;;20932:148;21096:7;;;;:30;;;;-1:-1:-1;21113:13:0;;-1:-1:-1;;;;;21107:19:0;;;21113:13;;21107:19;;21096:30;21092:130;;;21183:16;;21173:6;21151:19;21167:2;21151:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21143:67;;;;-1:-1:-1;;;21143:67:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:437::-;;;;1437:2;1425:9;1416:7;1412:23;1408:32;1405:2;;;1458:6;1450;1443:22;1405:2;1502:9;1489:23;1555:5;1548:13;1541:21;1534:5;1531:32;1521:2;;1582:6;1574;1567:22;1736:190;;1848:2;1836:9;1827:7;1823:23;1819:32;1816:2;;;1869:6;1861;1854:22;1816:2;-1:-1:-1;1897:23:1;;1806:120;-1:-1:-1;1806:120:1:o;1931:203::-;-1:-1:-1;;;;;2095:32:1;;;;2077:51;;2065:2;2050:18;;2032:102::o;2139:187::-;2304:14;;2297:22;2279:41;;2267:2;2252:18;;2234:92::o;2331:603::-;;2472:2;2501;2490:9;2483:21;2533:6;2527:13;2576:6;2571:2;2560:9;2556:18;2549:34;2601:4;2614:140;2628:6;2625:1;2622:13;2614:140;;;2723:14;;;2719:23;;2713:30;2689:17;;;2708:2;2685:26;2678:66;2643:10;;2614:140;;;2772:6;2769:1;2766:13;2763:2;;;2842:4;2837:2;2828:6;2817:9;2813:22;2809:31;2802:45;2763:2;-1:-1:-1;2918:2:1;2897:15;-1:-1:-1;;2893:29:1;2878:45;;;;2925:2;2874:54;;2452:482;-1:-1:-1;;;2452:482:1:o;2939:399::-;3141:2;3123:21;;;3180:2;3160:18;;;3153:30;3219:34;3214:2;3199:18;;3192:62;-1:-1:-1;;;3285:2:1;3270:18;;3263:33;3328:3;3313:19;;3113:225::o;3343:398::-;3545:2;3527:21;;;3584:2;3564:18;;;3557:30;3623:34;3618:2;3603:18;;3596:62;-1:-1:-1;;;3689:2:1;3674:18;;3667:32;3731:3;3716:19;;3517:224::o;3746:402::-;3948:2;3930:21;;;3987:2;3967:18;;;3960:30;4026:34;4021:2;4006:18;;3999:62;-1:-1:-1;;;4092:2:1;4077:18;;4070:36;4138:3;4123:19;;3920:228::o;4153:398::-;4355:2;4337:21;;;4394:2;4374:18;;;4367:30;4433:34;4428:2;4413:18;;4406:62;-1:-1:-1;;;4499:2:1;4484:18;;4477:32;4541:3;4526:19;;4327:224::o;4556:402::-;4758:2;4740:21;;;4797:2;4777:18;;;4770:30;4836:34;4831:2;4816:18;;4809:62;-1:-1:-1;;;4902:2:1;4887:18;;4880:36;4948:3;4933:19;;4730:228::o;4963:329::-;5165:2;5147:21;;;5204:1;5184:18;;;5177:29;-1:-1:-1;;;5237:2:1;5222:18;;5215:36;5283:2;5268:18;;5137:155::o;5297:404::-;5499:2;5481:21;;;5538:2;5518:18;;;5511:30;5577:34;5572:2;5557:18;;5550:62;-1:-1:-1;;;5643:2:1;5628:18;;5621:38;5691:3;5676:19;;5471:230::o;5706:356::-;5908:2;5890:21;;;5927:18;;;5920:30;5986:34;5981:2;5966:18;;5959:62;6053:2;6038:18;;5880:182::o;6067:397::-;6269:2;6251:21;;;6308:2;6288:18;;;6281:30;6347:34;6342:2;6327:18;;6320:62;-1:-1:-1;;;6413:2:1;6398:18;;6391:31;6454:3;6439:19;;6241:223::o;6469:346::-;6671:2;6653:21;;;6710:2;6690:18;;;6683:30;-1:-1:-1;;;6744:2:1;6729:18;;6722:52;6806:2;6791:18;;6643:172::o;6820:401::-;7022:2;7004:21;;;7061:2;7041:18;;;7034:30;7100:34;7095:2;7080:18;;7073:62;-1:-1:-1;;;7166:2:1;7151:18;;7144:35;7211:3;7196:19;;6994:227::o;7226:400::-;7428:2;7410:21;;;7467:2;7447:18;;;7440:30;7506:34;7501:2;7486:18;;7479:62;-1:-1:-1;;;7572:2:1;7557:18;;7550:34;7616:3;7601:19;;7400:226::o;7631:401::-;7833:2;7815:21;;;7872:2;7852:18;;;7845:30;7911:34;7906:2;7891:18;;7884:62;-1:-1:-1;;;7977:2:1;7962:18;;7955:35;8022:3;8007:19;;7805:227::o;8037:177::-;8183:25;;;8171:2;8156:18;;8138:76::o;8219:184::-;8391:4;8379:17;;;;8361:36;;8349:2;8334:18;;8316:87::o;8408:128::-;;8479:1;8475:6;8472:1;8469:13;8466:2;;;8485:18;;:::i;:::-;-1:-1:-1;8521:9:1;;8456:80::o;8541:125::-;;8609:1;8606;8603:8;8600:2;;;8614:18;;:::i;:::-;-1:-1:-1;8651:9:1;;8590:76::o;8671:380::-;8756:1;8746:12;;8803:1;8793:12;;;8814:2;;8868:4;8860:6;8856:17;8846:27;;8814:2;8921;8913:6;8910:14;8890:18;8887:38;8884:2;;;8967:10;8962:3;8958:20;8955:1;8948:31;9002:4;8999:1;8992:15;9030:4;9027:1;9020:15;8884:2;;8726:325;;;:::o;9056:127::-;9117:10;9112:3;9108:20;9105:1;9098:31;9148:4;9145:1;9138:15;9172:4;9169:1;9162:15

Swarm Source

ipfs://1a84f6f5aaf50c435bc407059c53e5402520376f7c1e6205fb8fbca47d2c045a
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.