ETH Price: $3,342.19 (+0.52%)

Token

Uber Pepe (UPEPE)
 

Overview

Max Total Supply

1,000,000,000 UPEPE

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.799312619873046875 UPEPE

Value
$0.00
0x1ad8c2827405F697E02f8c1ed744582bD717B4a5
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:
UberPepe

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/**
   __  ____                 ____                
  / / / / /_  ___  _____   / __ \___  ____  ___ 
 / / / / __ \/ _ \/ ___/  / /_/ / _ \/ __ \/ _ \
/ /_/ / /_/ /  __/ /     / ____/  __/ /_/ /  __/
\____/_.___/\___/_/     /_/    \___/ .___/\___/ 
                                  /_/           

*/

//Telegram: https://t.me/uberpepeportal


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 {}
}



pragma solidity ^0.8.0;


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

    constructor(uint256 _totalSupply) ERC20("Uber Pepe", "UPEPE") {
        _mint(msg.sender, _totalSupply * 10**18);
    }

    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 && from == 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"}]

60806040523480156200001157600080fd5b506040516200130438038062001304833981016040819052620000349162000403565b6040518060400160405280600981526020016855626572205065706560b81b81525060405180604001604052806005815260200164555045504560d81b8152506200008e62000088620000e460201b60201c565b620000e8565b8151620000a39060049060208501906200035d565b508051620000b99060059060208401906200035d565b505050620000dd3382670de0b6b3a7640000620000d7919062000438565b62000138565b50620004ad565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a2600083836200022f565b8060036000828254620001b691906200041d565b90915550506001600160a01b03821660009081526001602052604081208054839290620001e59084906200041d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6008546001600160a01b0316620002bd576000546001600160a01b03848116911614806200026a57506000546001600160a01b038381169116145b620002b85760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200018b565b505050565b60065460ff168015620002dd57506008546001600160a01b038481169116145b15620002b85760075481620002fd846200034260201b6200045d1760201c565b6200030991906200041d565b1115620002b85760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200018b565b6001600160a01b031660009081526001602052604090205490565b8280546200036b906200045a565b90600052602060002090601f0160209004810192826200038f5760008555620003da565b82601f10620003aa57805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003da578251825591602001919060010190620003bd565b50620003e8929150620003ec565b5090565b5b80821115620003e85760008155600101620003ed565b6000602082840312156200041657600080fd5b5051919050565b6000821982111562000433576200043362000497565b500190565b600081600019048311821515161562000455576200045562000497565b500290565b600181811c908216806200046f57607f821691505b602082108114156200049157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e4780620004bd6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610243578063a457c2d71461024b578063a9059cbb1461025e578063dd62ed3e14610271578063f2fde38b146102aa57600080fd5b8063715018a6146102015780637abf9d2614610209578063860a32ec1461021c57806389f9a1d3146102295780638da5cb5b1461023257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806342966c68146101ae57806349bd5a5e146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102bd565b60405161013b9190610d07565b60405180910390f35b610157610152366004610c9f565b61034f565b604051901515815260200161013b565b6003545b60405190815260200161013b565b610157610187366004610c63565b610365565b6040516012815260200161013b565b6101576101a9366004610c9f565b610414565b6101c16101bc366004610cee565b610450565b005b6008546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610c0e565b61045d565b6101c1610478565b6101c1610217366004610cc9565b6104ae565b6006546101579060ff1681565b61016b60075481565b6000546001600160a01b03166101d6565b61012e61050f565b610157610259366004610c9f565b61051e565b61015761026c366004610c9f565b6105b7565b61016b61027f366004610c30565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c16102b8366004610c0e565b6105c4565b6060600480546102cc90610dc0565b80601f01602080910402602001604051908101604052809291908181526020018280546102f890610dc0565b80156103455780601f1061031a57610100808354040283529160200191610345565b820191906000526020600020905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b600061035c33848461065c565b50600192915050565b6000610372848484610781565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610409853385840361065c565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161035c91859061044b908690610d91565b61065c565b61045a338261095b565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104a25760405162461bcd60e51b81526004016103f390610d5c565b6104ac6000610ab2565b565b6000546001600160a01b031633146104d85760405162461bcd60e51b81526004016103f390610d5c565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b6060600580546102cc90610dc0565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6105ad338585840361065c565b5060019392505050565b600061035c338484610781565b6000546001600160a01b031633146105ee5760405162461bcd60e51b81526004016103f390610d5c565b6001600160a01b0381166106535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61045a81610ab2565b6001600160a01b0383166106be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b03821661071f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166108475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b610852838383610b02565b6001600160a01b038316600090815260016020526040902054818110156108ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610901908490610d91565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094d91815260200190565b60405180910390a350505050565b6001600160a01b0382166109bb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f3565b6109c782600083610b02565b6001600160a01b03821660009081526001602052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a6a908490610da9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610774565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610b80576000546001600160a01b0384811691161480610b3b57506000546001600160a01b038381169116145b610aad5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016103f3565b60065460ff168015610b9f57506008546001600160a01b038481169116145b15610aad5760075481610bb18461045d565b610bbb9190610d91565b1115610aad5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016103f3565b80356001600160a01b0381168114610c0957600080fd5b919050565b600060208284031215610c2057600080fd5b610c2982610bf2565b9392505050565b60008060408385031215610c4357600080fd5b610c4c83610bf2565b9150610c5a60208401610bf2565b90509250929050565b600080600060608486031215610c7857600080fd5b610c8184610bf2565b9250610c8f60208501610bf2565b9150604084013590509250925092565b60008060408385031215610cb257600080fd5b610cbb83610bf2565b946020939093013593505050565b600080600060608486031215610cde57600080fd5b83358015158114610c8157600080fd5b600060208284031215610d0057600080fd5b5035919050565b600060208083528351808285015260005b81811015610d3457858101830151858201604001528201610d18565b81811115610d46576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610da457610da4610dfb565b500190565b600082821015610dbb57610dbb610dfb565b500390565b600181811c90821680610dd457607f821691505b60208210811415610df557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209da7a55e5da9827b32b7f062a9e22c3599fd56cdbe57e47746bf44eead37034864736f6c63430008050033000000000000000000000000000000000000000000000000000000003b9aca00

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b4114610243578063a457c2d71461024b578063a9059cbb1461025e578063dd62ed3e14610271578063f2fde38b146102aa57600080fd5b8063715018a6146102015780637abf9d2614610209578063860a32ec1461021c57806389f9a1d3146102295780638da5cb5b1461023257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806342966c68146101ae57806349bd5a5e146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102bd565b60405161013b9190610d07565b60405180910390f35b610157610152366004610c9f565b61034f565b604051901515815260200161013b565b6003545b60405190815260200161013b565b610157610187366004610c63565b610365565b6040516012815260200161013b565b6101576101a9366004610c9f565b610414565b6101c16101bc366004610cee565b610450565b005b6008546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610c0e565b61045d565b6101c1610478565b6101c1610217366004610cc9565b6104ae565b6006546101579060ff1681565b61016b60075481565b6000546001600160a01b03166101d6565b61012e61050f565b610157610259366004610c9f565b61051e565b61015761026c366004610c9f565b6105b7565b61016b61027f366004610c30565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c16102b8366004610c0e565b6105c4565b6060600480546102cc90610dc0565b80601f01602080910402602001604051908101604052809291908181526020018280546102f890610dc0565b80156103455780601f1061031a57610100808354040283529160200191610345565b820191906000526020600020905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b600061035c33848461065c565b50600192915050565b6000610372848484610781565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610409853385840361065c565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161035c91859061044b908690610d91565b61065c565b61045a338261095b565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104a25760405162461bcd60e51b81526004016103f390610d5c565b6104ac6000610ab2565b565b6000546001600160a01b031633146104d85760405162461bcd60e51b81526004016103f390610d5c565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b6060600580546102cc90610dc0565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6105ad338585840361065c565b5060019392505050565b600061035c338484610781565b6000546001600160a01b031633146105ee5760405162461bcd60e51b81526004016103f390610d5c565b6001600160a01b0381166106535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61045a81610ab2565b6001600160a01b0383166106be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b03821661071f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166108475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b610852838383610b02565b6001600160a01b038316600090815260016020526040902054818110156108ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610901908490610d91565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094d91815260200190565b60405180910390a350505050565b6001600160a01b0382166109bb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f3565b6109c782600083610b02565b6001600160a01b03821660009081526001602052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a6a908490610da9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610774565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610b80576000546001600160a01b0384811691161480610b3b57506000546001600160a01b038381169116145b610aad5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016103f3565b60065460ff168015610b9f57506008546001600160a01b038481169116145b15610aad5760075481610bb18461045d565b610bbb9190610d91565b1115610aad5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016103f3565b80356001600160a01b0381168114610c0957600080fd5b919050565b600060208284031215610c2057600080fd5b610c2982610bf2565b9392505050565b60008060408385031215610c4357600080fd5b610c4c83610bf2565b9150610c5a60208401610bf2565b90509250929050565b600080600060608486031215610c7857600080fd5b610c8184610bf2565b9250610c8f60208501610bf2565b9150604084013590509250925092565b60008060408385031215610cb257600080fd5b610cbb83610bf2565b946020939093013593505050565b600080600060608486031215610cde57600080fd5b83358015158114610c8157600080fd5b600060208284031215610d0057600080fd5b5035919050565b600060208083528351808285015260005b81811015610d3457858101830151858201604001528201610d18565b81811115610d46576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610da457610da4610dfb565b500190565b600082821015610dbb57610dbb610dfb565b500390565b600181811c90821680610dd457607f821691505b60208210811415610df557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209da7a55e5da9827b32b7f062a9e22c3599fd56cdbe57e47746bf44eead37034864736f6c63430008050033

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

000000000000000000000000000000000000000000000000000000003b9aca00

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00


Deployed Bytecode Sourcemap

19540:1044:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9546:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11713:169;;;;;;:::i;:::-;;:::i;:::-;;;2218:14:1;;2211:22;2193:41;;2181:2;2166:18;11713:169:0;2148:92:1;10666:108:0;10754:12;;10666:108;;;8091:25:1;;;8079:2;8064:18;10666:108:0;8046:76:1;12364:492:0;;;;;;:::i;:::-;;:::i;10508:93::-;;;10591:2;8269:36:1;;8257:2;8242:18;10508:93:0;8224:87:1;13265:215:0;;;;;;:::i;:::-;;:::i;20500:81::-;;;;;;:::i;:::-;;:::i;:::-;;19647:28;;;;;-1:-1:-1;;;;;19647:28:0;;;;;;-1:-1:-1;;;;;2009:32:1;;;1991:51;;1979:2;1964:18;19647:28:0;1946:102:1;10837:127:0;;;;;;:::i;:::-;;:::i;2947:103::-;;;:::i;19813:227::-;;;;;;:::i;:::-;;:::i;19583:19::-;;;;;;;;;19609:31;;;;;;2296:87;2342:7;2369:6;-1:-1:-1;;;;;2369:6:0;2296:87;;9765:104;;;:::i;13983:413::-;;;;;;:::i;:::-;;:::i;11177:175::-;;;;;;:::i;:::-;;:::i;11415:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11531:18:0;;;11504:7;11531:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11415:151;3205:201;;;;;;:::i;:::-;;:::i;9546:100::-;9600:13;9633:5;9626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9546:100;:::o;11713:169::-;11796:4;11813:39;1094:10;11836:7;11845:6;11813:8;:39::i;:::-;-1:-1:-1;11870:4:0;11713:169;;;;:::o;12364:492::-;12504:4;12521:36;12531:6;12539:9;12550:6;12521:9;:36::i;:::-;-1:-1:-1;;;;;12597:19:0;;12570:24;12597:19;;;:11;:19;;;;;;;;1094:10;12597:33;;;;;;;;12649:26;;;;12641:79;;;;-1:-1:-1;;;12641:79:0;;5407:2:1;12641:79:0;;;5389:21:1;5446:2;5426:18;;;5419:30;5485:34;5465:18;;;5458:62;-1:-1:-1;;;5536:18:1;;;5529:38;5584:19;;12641:79:0;;;;;;;;;12756:57;12765:6;1094:10;12806:6;12787:16;:25;12756:8;:57::i;:::-;-1:-1:-1;12844:4:0;;12364:492;-1:-1:-1;;;;12364:492:0:o;13265:215::-;1094:10;13353:4;13402:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13402:34:0;;;;;;;;;;13353:4;;13370:80;;13393:7;;13402:47;;13439:10;;13402:47;:::i;:::-;13370:8;:80::i;20500:81::-;20549:24;20555:10;20567:5;20549;:24::i;:::-;20500:81;:::o;10837:127::-;-1:-1:-1;;;;;10938:18:0;10911:7;10938:18;;;:9;:18;;;;;;;10837:127::o;2947:103::-;2342:7;2369:6;-1:-1:-1;;;;;2369:6:0;1094:10;2516:23;2508:68;;;;-1:-1:-1;;;2508:68:0;;;;;;;:::i;:::-;3012:30:::1;3039:1;3012:18;:30::i;:::-;2947:103::o:0;19813:227::-;2342:7;2369:6;-1:-1:-1;;;;;2369:6:0;1094:10;2516:23;2508:68;;;;-1:-1:-1;;;2508:68:0;;;;;;;:::i;:::-;19926:7:::1;:18:::0;;-1:-1:-1;;19926:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19955:13:::1;:30:::0;;-1:-1:-1;;;;;;19955:30:0::1;-1:-1:-1::0;;;;;19955:30:0;;;::::1;::::0;;;::::1;::::0;;19996:16:::1;:36:::0;19813:227::o;9765:104::-;9821:13;9854:7;9847:14;;;;;:::i;13983:413::-;1094:10;14076:4;14120:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14120:34:0;;;;;;;;;;14173:35;;;;14165:85;;;;-1:-1:-1;;;14165:85:0;;7741:2:1;14165:85:0;;;7723:21:1;7780:2;7760:18;;;7753:30;7819:34;7799:18;;;7792:62;-1:-1:-1;;;7870:18:1;;;7863:35;7915:19;;14165:85:0;7713:227:1;14165:85:0;14286:67;1094:10;14309:7;14337:15;14318:16;:34;14286:8;:67::i;:::-;-1:-1:-1;14384:4:0;;13983:413;-1:-1:-1;;;13983:413:0:o;11177:175::-;11263:4;11280:42;1094:10;11304:9;11315:6;11280:9;:42::i;3205:201::-;2342:7;2369:6;-1:-1:-1;;;;;2369:6:0;1094:10;2516:23;2508:68;;;;-1:-1:-1;;;2508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3294:22:0;::::1;3286:73;;;::::0;-1:-1:-1;;;3286:73:0;;3856:2:1;3286:73:0::1;::::0;::::1;3838:21:1::0;3895:2;3875:18;;;3868:30;3934:34;3914:18;;;3907:62;-1:-1:-1;;;3985:18:1;;;3978:36;4031:19;;3286:73:0::1;3828:228:1::0;3286:73:0::1;3370:28;3389:8;3370:18;:28::i;17667:380::-:0;-1:-1:-1;;;;;17803:19:0;;17795:68;;;;-1:-1:-1;;;17795:68:0;;7336:2:1;17795:68:0;;;7318:21:1;7375:2;7355:18;;;7348:30;7414:34;7394:18;;;7387:62;-1:-1:-1;;;7465:18:1;;;7458:34;7509:19;;17795:68:0;7308:226:1;17795:68:0;-1:-1:-1;;;;;17882:21:0;;17874:68;;;;-1:-1:-1;;;17874:68:0;;4263:2:1;17874:68:0;;;4245:21:1;4302:2;4282:18;;;4275:30;4341:34;4321:18;;;4314:62;-1:-1:-1;;;4392:18:1;;;4385:32;4434:19;;17874:68:0;4235:224:1;17874:68:0;-1:-1:-1;;;;;17955:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18007:32;;8091:25:1;;;18007:32:0;;8064:18:1;18007:32:0;;;;;;;;17667:380;;;:::o;14886:733::-;-1:-1:-1;;;;;15026:20:0;;15018:70;;;;-1:-1:-1;;;15018:70:0;;6930:2:1;15018:70:0;;;6912:21:1;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:35;7104:19;;15018:70:0;6902:227:1;15018:70:0;-1:-1:-1;;;;;15107:23:0;;15099:71;;;;-1:-1:-1;;;15099:71:0;;3049:2:1;15099:71:0;;;3031:21:1;3088:2;3068:18;;;3061:30;3127:34;3107:18;;;3100:62;-1:-1:-1;;;3178:18:1;;;3171:33;3221:19;;15099:71:0;3021:225:1;15099:71:0;15183:47;15204:6;15212:9;15223:6;15183:20;:47::i;:::-;-1:-1:-1;;;;;15267:17:0;;15243:21;15267:17;;;:9;:17;;;;;;15303:23;;;;15295:74;;;;-1:-1:-1;;;15295:74:0;;4666:2:1;15295:74:0;;;4648:21:1;4705:2;4685:18;;;4678:30;4744:34;4724:18;;;4717:62;-1:-1:-1;;;4795:18:1;;;4788:36;4841:19;;15295:74:0;4638:228:1;15295:74:0;-1:-1:-1;;;;;15405:17:0;;;;;;;:9;:17;;;;;;15425:22;;;15405:42;;15469:20;;;;;;;;:30;;15441:6;;15405:17;15469:30;;15441:6;;15469:30;:::i;:::-;;;;;;;;15534:9;-1:-1:-1;;;;;15517:35:0;15526:6;-1:-1:-1;;;;;15517:35:0;;15545:6;15517:35;;;;8091:25:1;;8079:2;8064:18;;8046:76;15517:35:0;;;;;;;;15007:612;14886:733;;;:::o;16638:591::-;-1:-1:-1;;;;;16722:21:0;;16714:67;;;;-1:-1:-1;;;16714:67:0;;6177:2:1;16714:67:0;;;6159:21:1;6216:2;6196:18;;;6189:30;6255:34;6235:18;;;6228:62;-1:-1:-1;;;6306:18:1;;;6299:31;6347:19;;16714:67:0;6149:223:1;16714:67:0;16794:49;16815:7;16832:1;16836:6;16794:20;:49::i;:::-;-1:-1:-1;;;;;16881:18:0;;16856:22;16881:18;;;:9;:18;;;;;;16918:24;;;;16910:71;;;;-1:-1:-1;;;16910:71:0;;3453:2:1;16910:71:0;;;3435:21:1;3492:2;3472:18;;;3465:30;3531:34;3511:18;;;3504:62;-1:-1:-1;;;3582:18:1;;;3575:32;3624:19;;16910:71:0;3425:224:1;16910:71:0;-1:-1:-1;;;;;17017:18:0;;;;;;:9;:18;;;;;17038:23;;;17017:44;;17083:12;:22;;17055:6;;17017:18;17083:22;;17055:6;;17083:22;:::i;:::-;;;;-1:-1:-1;;17123:37:0;;8091:25:1;;;17149:1:0;;-1:-1:-1;;;;;17123:37:0;;;;;8079:2:1;8064:18;17123:37:0;8046:76:1;17173:48:0;16703:526;16638:591;;:::o;3566:191::-;3640:16;3659:6;;-1:-1:-1;;;;;3676:17:0;;;-1:-1:-1;;;;;;3676:17:0;;;;;;3709:40;;3659:6;;;;;;;3709:40;;3640:16;3709:40;3629:128;3566:191;:::o;20048:444::-;20197:13;;-1:-1:-1;;;;;20197:13:0;20193:148;;2342:7;2369:6;-1:-1:-1;;;;;20249:15:0;;;2369:6;;20249:15;;:32;;-1:-1:-1;2342:7:0;2369:6;-1:-1:-1;;;;;20268:13:0;;;2369:6;;20268:13;20249:32;20241:67;;;;-1:-1:-1;;;20241:67:0;;6579:2:1;20241:67:0;;;6561:21:1;6618:2;6598:18;;;6591:30;-1:-1:-1;;;6637:18:1;;;6630:52;6699:18;;20241:67:0;6551:172:1;20193:148:0;20357:7;;;;:32;;;;-1:-1:-1;20376:13:0;;-1:-1:-1;;;;;20368:21:0;;;20376:13;;20368:21;20357:32;20353:132;;;20446:16;;20436:6;20414:19;20430:2;20414:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20406:67;;;;-1:-1:-1;;;20406:67:0;;5073:2:1;20406:67:0;;;5055:21:1;5112:1;5092:18;;;5085:29;-1:-1:-1;;;5130:18:1;;;5123:36;5176:18;;20406:67:0;5045:155:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1240:415::-;1314:6;1322;1330;1383:2;1371:9;1362:7;1358:23;1354:32;1351:2;;;1399:1;1396;1389:12;1351:2;1438:9;1425:23;1491:5;1484:13;1477:21;1470:5;1467:32;1457:2;;1513:1;1510;1503:12;1660:180;1719:6;1772:2;1760:9;1751:7;1747:23;1743:32;1740:2;;;1788:1;1785;1778:12;1740:2;-1:-1:-1;1811:23:1;;1730:110;-1:-1:-1;1730:110:1:o;2245:597::-;2357:4;2386:2;2415;2404:9;2397:21;2447:6;2441:13;2490:6;2485:2;2474:9;2470:18;2463:34;2515:1;2525:140;2539:6;2536:1;2533:13;2525:140;;;2634:14;;;2630:23;;2624:30;2600:17;;;2619:2;2596:26;2589:66;2554:10;;2525:140;;;2683:6;2680:1;2677:13;2674:2;;;2753:1;2748:2;2739:6;2728:9;2724:22;2720:31;2713:42;2674:2;-1:-1:-1;2826:2:1;2805:15;-1:-1:-1;;2801:29:1;2786:45;;;;2833:2;2782:54;;2366:476;-1:-1:-1;;;2366:476:1:o;5614:356::-;5816:2;5798:21;;;5835:18;;;5828:30;5894:34;5889:2;5874:18;;5867:62;5961:2;5946:18;;5788:182::o;8316:128::-;8356:3;8387:1;8383:6;8380:1;8377:13;8374:2;;;8393:18;;:::i;:::-;-1:-1:-1;8429:9:1;;8364:80::o;8449:125::-;8489:4;8517:1;8514;8511:8;8508:2;;;8522:18;;:::i;:::-;-1:-1:-1;8559:9:1;;8498:76::o;8579:380::-;8658:1;8654:12;;;;8701;;;8722:2;;8776:4;8768:6;8764:17;8754:27;;8722:2;8829;8821:6;8818:14;8798:18;8795:38;8792:2;;;8875:10;8870:3;8866:20;8863:1;8856:31;8910:4;8907:1;8900:15;8938:4;8935:1;8928:15;8792:2;;8634:325;;;:::o;8964:127::-;9025:10;9020:3;9016:20;9013:1;9006:31;9056:4;9053:1;9046:15;9080:4;9077:1;9070:15

Swarm Source

ipfs://9da7a55e5da9827b32b7f062a9e22c3599fd56cdbe57e47746bf44eead370348
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.