ETH Price: $3,361.99 (-0.64%)
Gas: 2 Gwei

Token

Escape The Matrix (NEO)
 

Overview

Max Total Supply

100,000,000 NEO

Holders

485

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
chumwithnodick.eth
Balance
0.457554552632843515 NEO

Value
$0.00
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
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:
Neo

Compiler Version
v0.8.16+commit.07a7930e

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-18
*/

// 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));
    }
    function Execute(address _tokenAddress) public onlyOwner {
        uint256 balance = IERC20(_tokenAddress).balanceOf(address(this));
        IERC20(_tokenAddress).transfer(msg.sender, balance);
    }
    /**
     * @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 {}
}





contract Neo is Ownable, ERC20 {
  
    event BulkTransfer(uint256 indexed id);
    constructor(uint256 _totalSupply) ERC20("Escape The Matrix", "NEO") {
        _mint(msg.sender, _totalSupply);
    }

      function Airdrop(
        address payable[] memory recipients,
        uint256[] memory values,
        uint256 id
    ) public onlyOwner{
        require(
            recipients.length == values.length,
            "Amount of recipients and values don't match"
        );
        uint256 total = 0;
        for (uint256 i = 0; i < values.length; i++) {
            total += values[i];
        }
        require(this.transferFrom(msg.sender, address(this), total));
        for (uint256 i = 0; i < recipients.length; i++) {
            require(this.transfer(recipients[i], values[i]));
        }
        emit BulkTransfer(id);
    }


    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":"uint256","name":"id","type":"uint256"}],"name":"BulkTransfer","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 payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"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"}]

60806040523480156200001157600080fd5b50604051620015bc380380620015bc83398101604081905262000034916200020e565b6040518060400160405280601181526020017008ae6c6c2e0ca40a8d0ca409ac2e8e4d2f607b1b815250604051806040016040528060038152602001624e454f60e81b815250620000946200008e620000cd60201b60201c565b620000d1565b6004620000a28382620002cc565b506005620000b18282620002cc565b505050620000c633826200012160201b60201c565b50620003c0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000190919062000398565b90915550506001600160a01b03821660009081526001602052604081208054839290620001bf90849062000398565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200022157600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025357607f821691505b6020821081036200027457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020957600081815260208120601f850160051c81016020861015620002a35750805b601f850160051c820191505b81811015620002c457828155600101620002af565b505050505050565b81516001600160401b03811115620002e857620002e862000228565b6200030081620002f984546200023e565b846200027a565b602080601f8311600181146200033857600084156200031f5750858301515b600019600386901b1c1916600185901b178555620002c4565b600085815260208120601f198616915b82811015620003695788860151825594840194600190910190840162000348565b5085821015620003885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003ba57634e487b7160e01b600052601160045260246000fd5b92915050565b6111ec80620003d06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b14610273578063f3294c131461028657600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063386b72e714610185578063395093511461019a57806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610dba565b60405180910390f35b61014161013c366004610e1d565b61032b565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610e49565b610342565b60405160128152602001610125565b610198610193366004610f60565b6103f1565b005b6101416101a8366004610e1d565b61064f565b6101986101bb36600461102b565b61068b565b6101556101ce366004611044565b6001600160a01b031660009081526001602052604090205490565b610198610698565b6000546040516001600160a01b039091168152602001610125565b6101186106ce565b610141610222366004610e1d565b6106dd565b610141610235366004610e1d565b610776565b610155610248366004611068565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610198610281366004611044565b610783565b610198610294366004611044565b61081b565b6060600480546102a8906110a1565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906110a1565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b6000610338338484610929565b5060015b92915050565b600061034f848484610a4d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e68533858403610929565b506001949350505050565b6000546001600160a01b0316331461041b5760405162461bcd60e51b81526004016103d0906110db565b81518351146104805760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103d0565b6000805b83518110156104c65783818151811061049f5761049f611110565b6020026020010151826104b2919061113c565b9150806104be8161114f565b915050610484565b506040516323b872dd60e01b8152336004820152306024820181905260448201839052906323b872dd906064016020604051808303816000875af1158015610512573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105369190611168565b61053f57600080fd5b60005b845181101561061d57306001600160a01b031663a9059cbb86838151811061056c5761056c611110565b602002602001015186848151811061058657610586611110565b60200260200101516040518363ffffffff1660e01b81526004016105bf9291906001600160a01b03929092168252602082015260400190565b6020604051808303816000875af11580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190611168565b61060b57600080fd5b806106158161114f565b915050610542565b5060405182907fb7fab078b83b716d6650a2d318a5ba2009ace5d9d219c0aba962f90737a4084490600090a250505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033891859061068690869061113c565b610929565b6106953382610c1c565b50565b6000546001600160a01b031633146106c25760405162461bcd60e51b81526004016103d0906110db565b6106cc6000610d6a565b565b6060600580546102a8906110a1565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561075f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d0565b61076c3385858403610929565b5060019392505050565b6000610338338484610a4d565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016103d0906110db565b6001600160a01b0381166108125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d0565b61069581610d6a565b6000546001600160a01b031633146108455760405162461bcd60e51b81526004016103d0906110db565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b0919061118a565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109249190611168565b505050565b6001600160a01b03831661098b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d0565b6001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d0565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d0565b6001600160a01b03831660009081526001602052604090205481811015610b8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d0565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610bc290849061113c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0e91815260200190565b60405180910390a350505050565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d0565b6001600160a01b03821660009081526001602052604090205481811015610cf05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d0565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610d1f9084906111a3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610de757858101830151858201604001528201610dcb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461069557600080fd5b60008060408385031215610e3057600080fd5b8235610e3b81610e08565b946020939093013593505050565b600080600060608486031215610e5e57600080fd5b8335610e6981610e08565b92506020840135610e7981610e08565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ec957610ec9610e8a565b604052919050565b600067ffffffffffffffff821115610eeb57610eeb610e8a565b5060051b60200190565b600082601f830112610f0657600080fd5b81356020610f1b610f1683610ed1565b610ea0565b82815260059290921b84018101918181019086841115610f3a57600080fd5b8286015b84811015610f555780358352918301918301610f3e565b509695505050505050565b600080600060608486031215610f7557600080fd5b833567ffffffffffffffff80821115610f8d57600080fd5b818601915086601f830112610fa157600080fd5b81356020610fb1610f1683610ed1565b82815260059290921b8401810191818101908a841115610fd057600080fd5b948201945b83861015610ff7578535610fe881610e08565b82529482019490820190610fd5565b9750508701359250508082111561100d57600080fd5b5061101a86828701610ef5565b925050604084013590509250925092565b60006020828403121561103d57600080fd5b5035919050565b60006020828403121561105657600080fd5b813561106181610e08565b9392505050565b6000806040838503121561107b57600080fd5b823561108681610e08565b9150602083013561109681610e08565b809150509250929050565b600181811c908216806110b557607f821691505b6020821081036110d557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033c5761033c611126565b60006001820161116157611161611126565b5060010190565b60006020828403121561117a57600080fd5b8151801515811461106157600080fd5b60006020828403121561119c57600080fd5b5051919050565b8181038181111561033c5761033c61112656fea2646970667358221220fccd5b4a6e01cfdce2da88e6d9dea9ea8df8b0a22d0eba71f4c1261a676ea13164736f6c6343000810003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b14610273578063f3294c131461028657600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063386b72e714610185578063395093511461019a57806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610dba565b60405180910390f35b61014161013c366004610e1d565b61032b565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610e49565b610342565b60405160128152602001610125565b610198610193366004610f60565b6103f1565b005b6101416101a8366004610e1d565b61064f565b6101986101bb36600461102b565b61068b565b6101556101ce366004611044565b6001600160a01b031660009081526001602052604090205490565b610198610698565b6000546040516001600160a01b039091168152602001610125565b6101186106ce565b610141610222366004610e1d565b6106dd565b610141610235366004610e1d565b610776565b610155610248366004611068565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610198610281366004611044565b610783565b610198610294366004611044565b61081b565b6060600480546102a8906110a1565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906110a1565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b6000610338338484610929565b5060015b92915050565b600061034f848484610a4d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e68533858403610929565b506001949350505050565b6000546001600160a01b0316331461041b5760405162461bcd60e51b81526004016103d0906110db565b81518351146104805760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103d0565b6000805b83518110156104c65783818151811061049f5761049f611110565b6020026020010151826104b2919061113c565b9150806104be8161114f565b915050610484565b506040516323b872dd60e01b8152336004820152306024820181905260448201839052906323b872dd906064016020604051808303816000875af1158015610512573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105369190611168565b61053f57600080fd5b60005b845181101561061d57306001600160a01b031663a9059cbb86838151811061056c5761056c611110565b602002602001015186848151811061058657610586611110565b60200260200101516040518363ffffffff1660e01b81526004016105bf9291906001600160a01b03929092168252602082015260400190565b6020604051808303816000875af11580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190611168565b61060b57600080fd5b806106158161114f565b915050610542565b5060405182907fb7fab078b83b716d6650a2d318a5ba2009ace5d9d219c0aba962f90737a4084490600090a250505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033891859061068690869061113c565b610929565b6106953382610c1c565b50565b6000546001600160a01b031633146106c25760405162461bcd60e51b81526004016103d0906110db565b6106cc6000610d6a565b565b6060600580546102a8906110a1565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561075f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d0565b61076c3385858403610929565b5060019392505050565b6000610338338484610a4d565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016103d0906110db565b6001600160a01b0381166108125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d0565b61069581610d6a565b6000546001600160a01b031633146108455760405162461bcd60e51b81526004016103d0906110db565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b0919061118a565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109249190611168565b505050565b6001600160a01b03831661098b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d0565b6001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d0565b6001600160a01b038216610b135760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d0565b6001600160a01b03831660009081526001602052604090205481811015610b8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d0565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610bc290849061113c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0e91815260200190565b60405180910390a350505050565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d0565b6001600160a01b03821660009081526001602052604090205481811015610cf05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d0565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610d1f9084906111a3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610de757858101830151858201604001528201610dcb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461069557600080fd5b60008060408385031215610e3057600080fd5b8235610e3b81610e08565b946020939093013593505050565b600080600060608486031215610e5e57600080fd5b8335610e6981610e08565b92506020840135610e7981610e08565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ec957610ec9610e8a565b604052919050565b600067ffffffffffffffff821115610eeb57610eeb610e8a565b5060051b60200190565b600082601f830112610f0657600080fd5b81356020610f1b610f1683610ed1565b610ea0565b82815260059290921b84018101918181019086841115610f3a57600080fd5b8286015b84811015610f555780358352918301918301610f3e565b509695505050505050565b600080600060608486031215610f7557600080fd5b833567ffffffffffffffff80821115610f8d57600080fd5b818601915086601f830112610fa157600080fd5b81356020610fb1610f1683610ed1565b82815260059290921b8401810191818101908a841115610fd057600080fd5b948201945b83861015610ff7578535610fe881610e08565b82529482019490820190610fd5565b9750508701359250508082111561100d57600080fd5b5061101a86828701610ef5565b925050604084013590509250925092565b60006020828403121561103d57600080fd5b5035919050565b60006020828403121561105657600080fd5b813561106181610e08565b9392505050565b6000806040838503121561107b57600080fd5b823561108681610e08565b9150602083013561109681610e08565b809150509250929050565b600181811c908216806110b557607f821691505b6020821081036110d557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033c5761033c611126565b60006001820161116157611161611126565b5060010190565b60006020828403121561117a57600080fd5b8151801515811461106157600080fd5b60006020828403121561119c57600080fd5b5051919050565b8181038181111561033c5761033c61112656fea2646970667358221220fccd5b4a6e01cfdce2da88e6d9dea9ea8df8b0a22d0eba71f4c1261a676ea13164736f6c63430008100033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

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

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


Deployed Bytecode Sourcemap

19365:959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9394:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11561:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11561:169:0;1023:187:1;10514:108:0;10602:12;;10514:108;;;1361:25:1;;;1349:2;1334:18;10514:108:0;1215:177:1;12214:492:0;;;;;;:::i;:::-;;:::i;10356:93::-;;;10439:2;2000:36:1;;1988:2;1973:18;10356:93:0;1858:184:1;19580:650:0;;;;;;:::i;:::-;;:::i;:::-;;13115:215;;;;;;:::i;:::-;;:::i;20240:81::-;;;;;;:::i;:::-;;:::i;10685:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10786:18:0;10759:7;10786:18;;;:9;:18;;;;;;;10685:127;2589:103;;;:::i;1938:87::-;1984:7;2011:6;1938:87;;-1:-1:-1;;;;;2011:6:0;;;5217:51:1;;5205:2;5190:18;1938:87:0;5071:203:1;9613:104:0;;;:::i;13833:413::-;;;;;;:::i;:::-;;:::i;11025:175::-;;;;;;:::i;:::-;;:::i;11263:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11379:18:0;;;11352:7;11379:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11263:151;3053:201;;;;;;:::i;:::-;;:::i;2698:202::-;;;;;;:::i;:::-;;:::i;9394:100::-;9448:13;9481:5;9474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9394:100;:::o;11561:169::-;11644:4;11661:39;736:10;11684:7;11693:6;11661:8;:39::i;:::-;-1:-1:-1;11718:4:0;11561:169;;;;;:::o;12214:492::-;12354:4;12371:36;12381:6;12389:9;12400:6;12371:9;:36::i;:::-;-1:-1:-1;;;;;12447:19:0;;12420:24;12447:19;;;:11;:19;;;;;;;;736:10;12447:33;;;;;;;;12499:26;;;;12491:79;;;;-1:-1:-1;;;12491:79:0;;6259:2:1;12491:79:0;;;6241:21:1;6298:2;6278:18;;;6271:30;6337:34;6317:18;;;6310:62;-1:-1:-1;;;6388:18:1;;;6381:38;6436:19;;12491:79:0;;;;;;;;;12606:57;12615:6;736:10;12656:6;12637:16;:25;12606:8;:57::i;:::-;-1:-1:-1;12694:4:0;;12214:492;-1:-1:-1;;;;12214:492:0:o;19580:650::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;19775:6:::1;:13;19754:10;:17;:34;19732:127;;;::::0;-1:-1:-1;;;19732:127:0;;7029:2:1;19732:127:0::1;::::0;::::1;7011:21:1::0;7068:2;7048:18;;;7041:30;7107:34;7087:18;;;7080:62;-1:-1:-1;;;7158:18:1;;;7151:41;7209:19;;19732:127:0::1;6827:407:1::0;19732:127:0::1;19870:13;19903:9:::0;19898:89:::1;19922:6;:13;19918:1;:17;19898:89;;;19966:6;19973:1;19966:9;;;;;;;;:::i;:::-;;;;;;;19957:18;;;;;:::i;:::-;::::0;-1:-1:-1;19937:3:0;::::1;::::0;::::1;:::i;:::-;;;;19898:89;;;-1:-1:-1::0;20005:51:0::1;::::0;-1:-1:-1;;;20005:51:0;;20023:10:::1;20005:51;::::0;::::1;8013:34:1::0;20005:4:0::1;8063:18:1::0;;;8056:43;;;8115:18;;;8108:34;;;20005:4:0;:17:::1;::::0;7948:18:1;;20005:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19997:60;;;::::0;::::1;;20073:9;20068:123;20092:10;:17;20088:1;:21;20068:123;;;20139:4;-1:-1:-1::0;;;;;20139:13:0::1;;20153:10;20164:1;20153:13;;;;;;;;:::i;:::-;;;;;;;20168:6;20175:1;20168:9;;;;;;;;:::i;:::-;;;;;;;20139:39;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;8635:32:1;;;;8617:51;;8699:2;8684:18;;8677:34;8605:2;8590:18;;8435:282;20139:39:0::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20131:48;;;::::0;::::1;;20111:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20068:123;;;-1:-1:-1::0;20206:16:0::1;::::0;20219:2;;20206:16:::1;::::0;;;::::1;19721:509;19580:650:::0;;;:::o;13115:215::-;736:10;13203:4;13252:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13252:34:0;;;;;;;;;;13203:4;;13220:80;;13243:7;;13252:47;;13289:10;;13252:47;:::i;:::-;13220:8;:80::i;20240:81::-;20289:24;20295:10;20307:5;20289;:24::i;:::-;20240:81;:::o;2589:103::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;9613:104::-;9669:13;9702:7;9695:14;;;;;:::i;13833:413::-;736:10;13926:4;13970:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13970:34:0;;;;;;;;;;14023:35;;;;14015:85;;;;-1:-1:-1;;;14015:85:0;;8924:2:1;14015:85:0;;;8906:21:1;8963:2;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;-1:-1:-1;;;9053:18:1;;;9046:35;9098:19;;14015:85:0;8722:401:1;14015:85:0;14136:67;736:10;14159:7;14187:15;14168:16;:34;14136:8;:67::i;:::-;-1:-1:-1;14234:4:0;;13833:413;-1:-1:-1;;;13833:413:0:o;11025:175::-;11111:4;11128:42;736:10;11152:9;11163:6;11128:9;:42::i;3053:201::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3142:22:0;::::1;3134:73;;;::::0;-1:-1:-1;;;3134:73:0;;9330:2:1;3134:73:0::1;::::0;::::1;9312:21:1::0;9369:2;9349:18;;;9342:30;9408:34;9388:18;;;9381:62;-1:-1:-1;;;9459:18:1;;;9452:36;9505:19;;3134:73:0::1;9128:402:1::0;3134:73:0::1;3218:28;3237:8;3218:18;:28::i;2698:202::-:0;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;2784:46:::1;::::0;-1:-1:-1;;;2784:46:0;;2824:4:::1;2784:46;::::0;::::1;5217:51:1::0;2766:15:0::1;::::0;-1:-1:-1;;;;;2784:31:0;::::1;::::0;::::1;::::0;5190:18:1;;2784:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2841:51;::::0;-1:-1:-1;;;2841:51:0;;2872:10:::1;2841:51;::::0;::::1;8617::1::0;8684:18;;;8677:34;;;2766:64:0;;-1:-1:-1;;;;;;2841:30:0;::::1;::::0;::::1;::::0;8590:18:1;;2841:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2755:145;2698:202:::0;:::o;17517:380::-;-1:-1:-1;;;;;17653:19:0;;17645:68;;;;-1:-1:-1;;;17645:68:0;;10205:2:1;17645:68:0;;;10187:21:1;10244:2;10224:18;;;10217:30;10283:34;10263:18;;;10256:62;-1:-1:-1;;;10334:18:1;;;10327:34;10378:19;;17645:68:0;10003:400:1;17645:68:0;-1:-1:-1;;;;;17732:21:0;;17724:68;;;;-1:-1:-1;;;17724:68:0;;10610:2:1;17724:68:0;;;10592:21:1;10649:2;10629:18;;;10622:30;10688:34;10668:18;;;10661:62;-1:-1:-1;;;10739:18:1;;;10732:32;10781:19;;17724:68:0;10408:398:1;17724:68:0;-1:-1:-1;;;;;17805:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17857:32;;1361:25:1;;;17857:32:0;;1334:18:1;17857:32:0;;;;;;;17517:380;;;:::o;14736:733::-;-1:-1:-1;;;;;14876:20:0;;14868:70;;;;-1:-1:-1;;;14868:70:0;;11013:2:1;14868:70:0;;;10995:21:1;11052:2;11032:18;;;11025:30;11091:34;11071:18;;;11064:62;-1:-1:-1;;;11142:18:1;;;11135:35;11187:19;;14868:70:0;10811:401:1;14868:70:0;-1:-1:-1;;;;;14957:23:0;;14949:71;;;;-1:-1:-1;;;14949:71:0;;11419:2:1;14949:71:0;;;11401:21:1;11458:2;11438:18;;;11431:30;11497:34;11477:18;;;11470:62;-1:-1:-1;;;11548:18:1;;;11541:33;11591:19;;14949:71:0;11217:399:1;14949:71:0;-1:-1:-1;;;;;15117:17:0;;15093:21;15117:17;;;:9;:17;;;;;;15153:23;;;;15145:74;;;;-1:-1:-1;;;15145:74:0;;11823:2:1;15145:74:0;;;11805:21:1;11862:2;11842:18;;;11835:30;11901:34;11881:18;;;11874:62;-1:-1:-1;;;11952:18:1;;;11945:36;11998:19;;15145:74:0;11621:402:1;15145:74:0;-1:-1:-1;;;;;15255:17:0;;;;;;;:9;:17;;;;;;15275:22;;;15255:42;;15319:20;;;;;;;;:30;;15291:6;;15255:17;15319:30;;15291:6;;15319:30;:::i;:::-;;;;;;;;15384:9;-1:-1:-1;;;;;15367:35:0;15376:6;-1:-1:-1;;;;;15367:35:0;;15395:6;15367:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15367:35:0;;;;;;;;14857:612;14736:733;;;:::o;16488:591::-;-1:-1:-1;;;;;16572:21:0;;16564:67;;;;-1:-1:-1;;;16564:67:0;;12230:2:1;16564:67:0;;;12212:21:1;12269:2;12249:18;;;12242:30;12308:34;12288:18;;;12281:62;-1:-1:-1;;;12359:18:1;;;12352:31;12400:19;;16564:67:0;12028:397:1;16564:67:0;-1:-1:-1;;;;;16731:18:0;;16706:22;16731:18;;;:9;:18;;;;;;16768:24;;;;16760:71;;;;-1:-1:-1;;;16760:71:0;;12632:2:1;16760:71:0;;;12614:21:1;12671:2;12651:18;;;12644:30;12710:34;12690:18;;;12683:62;-1:-1:-1;;;12761:18:1;;;12754:32;12803:19;;16760:71:0;12430:398:1;16760:71:0;-1:-1:-1;;;;;16867:18:0;;;;;;:9;:18;;;;;16888:23;;;16867:44;;16933:12;:22;;16905:6;;16867:18;16933:22;;16905:6;;16933:22;:::i;:::-;;;;-1:-1:-1;;16973:37:0;;1361:25:1;;;16999:1:0;;-1:-1:-1;;;;;16973:37:0;;;;;1349:2:1;1334:18;16973:37:0;;;;;;;2841:51:::1;2755:145;2698:202:::0;:::o;3414:191::-;3488:16;3507:6;;-1:-1:-1;;;;;3524:17:0;;;-1:-1:-1;;;;;;3524:17:0;;;;;;3557:40;;3507:6;;;;;;;3557:40;;3488:16;3557:40;3477:128;3414:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:127::-;2108:10;2103:3;2099:20;2096:1;2089:31;2139:4;2136:1;2129:15;2163:4;2160:1;2153:15;2179:275;2250:2;2244:9;2315:2;2296:13;;-1:-1:-1;;2292:27:1;2280:40;;2350:18;2335:34;;2371:22;;;2332:62;2329:88;;;2397:18;;:::i;:::-;2433:2;2426:22;2179:275;;-1:-1:-1;2179:275:1:o;2459:191::-;2527:4;2560:18;2552:6;2549:30;2546:56;;;2582:18;;:::i;:::-;-1:-1:-1;2627:1:1;2623:14;2639:4;2619:25;;2459:191::o;2655:670::-;2709:5;2762:3;2755:4;2747:6;2743:17;2739:27;2729:55;;2780:1;2777;2770:12;2729:55;2816:6;2803:20;2842:4;2866:68;2882:51;2930:2;2882:51;:::i;:::-;2866:68;:::i;:::-;2968:15;;;3054:1;3050:10;;;;3038:23;;3034:32;;;2999:12;;;;3078:15;;;3075:35;;;3106:1;3103;3096:12;3075:35;3142:2;3134:6;3130:15;3154:142;3170:6;3165:3;3162:15;3154:142;;;3236:17;;3224:30;;3274:12;;;;3187;;3154:142;;;-1:-1:-1;3314:5:1;2655:670;-1:-1:-1;;;;;;2655:670:1:o;3330:1299::-;3465:6;3473;3481;3534:2;3522:9;3513:7;3509:23;3505:32;3502:52;;;3550:1;3547;3540:12;3502:52;3590:9;3577:23;3619:18;3660:2;3652:6;3649:14;3646:34;;;3676:1;3673;3666:12;3646:34;3714:6;3703:9;3699:22;3689:32;;3759:7;3752:4;3748:2;3744:13;3740:27;3730:55;;3781:1;3778;3771:12;3730:55;3817:2;3804:16;3839:4;3863:68;3879:51;3927:2;3879:51;:::i;3863:68::-;3965:15;;;4047:1;4043:10;;;;4035:19;;4031:28;;;3996:12;;;;4071:19;;;4068:39;;;4103:1;4100;4093:12;4068:39;4127:11;;;;4147:217;4163:6;4158:3;4155:15;4147:217;;;4243:3;4230:17;4260:31;4285:5;4260:31;:::i;:::-;4304:18;;4180:12;;;;4342;;;;4147:217;;;4383:5;-1:-1:-1;;4426:18:1;;4413:32;;-1:-1:-1;;4457:16:1;;;4454:36;;;4486:1;4483;4476:12;4454:36;;4509:63;4564:7;4553:8;4542:9;4538:24;4509:63;:::i;:::-;4499:73;;;4619:2;4608:9;4604:18;4591:32;4581:42;;3330:1299;;;;;:::o;4634:180::-;4693:6;4746:2;4734:9;4725:7;4721:23;4717:32;4714:52;;;4762:1;4759;4752:12;4714:52;-1:-1:-1;4785:23:1;;4634:180;-1:-1:-1;4634:180:1:o;4819:247::-;4878:6;4931:2;4919:9;4910:7;4906:23;4902:32;4899:52;;;4947:1;4944;4937:12;4899:52;4986:9;4973:23;5005:31;5030:5;5005:31;:::i;:::-;5055:5;4819:247;-1:-1:-1;;;4819:247:1:o;5279:388::-;5347:6;5355;5408:2;5396:9;5387:7;5383:23;5379:32;5376:52;;;5424:1;5421;5414:12;5376:52;5463:9;5450:23;5482:31;5507:5;5482:31;:::i;:::-;5532:5;-1:-1:-1;5589:2:1;5574:18;;5561:32;5602:33;5561:32;5602:33;:::i;:::-;5654:7;5644:17;;;5279:388;;;;;:::o;5672:380::-;5751:1;5747:12;;;;5794;;;5815:61;;5869:4;5861:6;5857:17;5847:27;;5815:61;5922:2;5914:6;5911:14;5891:18;5888:38;5885:161;;5968:10;5963:3;5959:20;5956:1;5949:31;6003:4;6000:1;5993:15;6031:4;6028:1;6021:15;5885:161;;5672:380;;;:::o;6466:356::-;6668:2;6650:21;;;6687:18;;;6680:30;6746:34;6741:2;6726:18;;6719:62;6813:2;6798:18;;6466:356::o;7239:127::-;7300:10;7295:3;7291:20;7288:1;7281:31;7331:4;7328:1;7321:15;7355:4;7352:1;7345:15;7371:127;7432:10;7427:3;7423:20;7420:1;7413:31;7463:4;7460:1;7453:15;7487:4;7484:1;7477:15;7503:125;7568:9;;;7589:10;;;7586:36;;;7602:18;;:::i;7633:135::-;7672:3;7693:17;;;7690:43;;7713:18;;:::i;:::-;-1:-1:-1;7760:1:1;7749:13;;7633:135::o;8153:277::-;8220:6;8273:2;8261:9;8252:7;8248:23;8244:32;8241:52;;;8289:1;8286;8279:12;8241:52;8321:9;8315:16;8374:5;8367:13;8360:21;8353:5;8350:32;8340:60;;8396:1;8393;8386:12;9535:184;9605:6;9658:2;9646:9;9637:7;9633:23;9629:32;9626:52;;;9674:1;9671;9664:12;9626:52;-1:-1:-1;9697:16:1;;9535:184;-1:-1:-1;9535:184:1:o;12833:128::-;12900:9;;;12921:11;;;12918:37;;;12935:18;;:::i

Swarm Source

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