ETH Price: $3,479.65 (-1.09%)
Gas: 6 Gwei

Token

My Name Is Jeff (JEFF)
 

Overview

Max Total Supply

555,555,555,555 JEFF

Holders

349

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
214,879,015.361123365868431345 JEFF

Value
$0.00
0xa14aec51bc07991d01a596eda0fa801775e31631
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:
JEFF

Compiler Version
v0.8.15+commit.e14f2714

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

/*


   _____           _______                          .___              ____.       _____  _____ 
  /     \ ___.__.  \      \ _____    _____   ____   |   | ______     |    | _____/ ____\/ ____\
 /  \ /  <   |  |  /   |   \\__  \  /     \_/ __ \  |   |/  ___/     |    |/ __ \   __\\   __\ 
/    Y    \___  | /    |    \/ __ \|  Y Y  \  ___/  |   |\___ \  /\__|    \  ___/|  |   |  |   
\____|__  / ____| \____|__  (____  /__|_|  /\___  > |___/____  > \________|\___  >__|   |__|   
        \/\/              \/     \/      \/     \/           \/                \/              

*/
// 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 JEFF is Ownable, ERC20 {
  
    event BulkTransfer(uint256 indexed id);
    constructor(uint256 _totalSupply) ERC20("My Name Is Jeff", "JEFF") {
        _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"}]

60806040523480156200001157600080fd5b50604051620015c9380380620015c983398101604081905262000034916200020d565b6040518060400160405280600f81526020016e26bc902730b6b29024b9902532b33360891b815250604051806040016040528060048152602001632522a32360e11b815250620000936200008d620000cc60201b60201c565b620000d0565b6004620000a18382620002cb565b506005620000b08282620002cb565b505050620000c533826200012060201b60201c565b50620003be565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018f919062000397565b90915550506001600160a01b03821660009081526001602052604081208054839290620001be90849062000397565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200022057600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025257607f821691505b6020821081036200027357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020857600081815260208120601f850160051c81016020861015620002a25750805b601f850160051c820191505b81811015620002c357828155600101620002ae565b505050505050565b81516001600160401b03811115620002e757620002e762000227565b620002ff81620002f884546200023d565b8462000279565b602080601f8311600181146200033757600084156200031e5750858301515b600019600386901b1c1916600185901b178555620002c3565b600085815260208120601f198616915b82811015620003685788860151825594840194600190910190840162000347565b5085821015620003875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115620003b957634e487b7160e01b600052601160045260246000fd5b500190565b6111fb80620003ce6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b14610273578063f3294c131461028657600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063386b72e714610185578063395093511461019a57806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610db9565b60405180910390f35b61014161013c366004610e23565b61032b565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610e4f565b610341565b60405160128152602001610125565b610198610193366004610f66565b6103f0565b005b6101416101a8366004610e23565b61064e565b6101986101bb366004611031565b61068a565b6101556101ce36600461104a565b6001600160a01b031660009081526001602052604090205490565b610198610697565b6000546040516001600160a01b039091168152602001610125565b6101186106cd565b610141610222366004610e23565b6106dc565b610141610235366004610e23565b610775565b61015561024836600461106e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019861028136600461104a565b610782565b61019861029436600461104a565b61081a565b6060600480546102a8906110a7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906110a7565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b6000610338338484610928565b50600192915050565b600061034e848484610a4c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e58533858403610928565b506001949350505050565b6000546001600160a01b0316331461041a5760405162461bcd60e51b81526004016103cf906110e1565b815183511461047f5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103cf565b6000805b83518110156104c55783818151811061049e5761049e611116565b6020026020010151826104b19190611142565b9150806104bd8161115a565b915050610483565b506040516323b872dd60e01b8152336004820152306024820181905260448201839052906323b872dd906064016020604051808303816000875af1158015610511573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105359190611173565b61053e57600080fd5b60005b845181101561061c57306001600160a01b031663a9059cbb86838151811061056b5761056b611116565b602002602001015186848151811061058557610585611116565b60200260200101516040518363ffffffff1660e01b81526004016105be9291906001600160a01b03929092168252602082015260400190565b6020604051808303816000875af11580156105dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106019190611173565b61060a57600080fd5b806106148161115a565b915050610541565b5060405182907fb7fab078b83b716d6650a2d318a5ba2009ace5d9d219c0aba962f90737a4084490600090a250505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610338918590610685908690611142565b610928565b6106943382610c1b565b50565b6000546001600160a01b031633146106c15760405162461bcd60e51b81526004016103cf906110e1565b6106cb6000610d69565b565b6060600580546102a8906110a7565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561075e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cf565b61076b3385858403610928565b5060019392505050565b6000610338338484610a4c565b6000546001600160a01b031633146107ac5760405162461bcd60e51b81526004016103cf906110e1565b6001600160a01b0381166108115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cf565b61069481610d69565b6000546001600160a01b031633146108445760405162461bcd60e51b81526004016103cf906110e1565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af9190611195565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156108ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109239190611173565b505050565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cf565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cf565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cf565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cf565b6001600160a01b03831660009081526001602052604090205481811015610b8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cf565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610bc1908490611142565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0d91815260200190565b60405180910390a350505050565b6001600160a01b038216610c7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103cf565b6001600160a01b03821660009081526001602052604090205481811015610cef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103cf565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610d1e9084906111ae565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610de657858101830151858201604001528201610dca565b81811115610df8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461069457600080fd5b60008060408385031215610e3657600080fd5b8235610e4181610e0e565b946020939093013593505050565b600080600060608486031215610e6457600080fd5b8335610e6f81610e0e565b92506020840135610e7f81610e0e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ecf57610ecf610e90565b604052919050565b600067ffffffffffffffff821115610ef157610ef1610e90565b5060051b60200190565b600082601f830112610f0c57600080fd5b81356020610f21610f1c83610ed7565b610ea6565b82815260059290921b84018101918181019086841115610f4057600080fd5b8286015b84811015610f5b5780358352918301918301610f44565b509695505050505050565b600080600060608486031215610f7b57600080fd5b833567ffffffffffffffff80821115610f9357600080fd5b818601915086601f830112610fa757600080fd5b81356020610fb7610f1c83610ed7565b82815260059290921b8401810191818101908a841115610fd657600080fd5b948201945b83861015610ffd578535610fee81610e0e565b82529482019490820190610fdb565b9750508701359250508082111561101357600080fd5b5061102086828701610efb565b925050604084013590509250925092565b60006020828403121561104357600080fd5b5035919050565b60006020828403121561105c57600080fd5b813561106781610e0e565b9392505050565b6000806040838503121561108157600080fd5b823561108c81610e0e565b9150602083013561109c81610e0e565b809150509250929050565b600181811c908216806110bb57607f821691505b6020821081036110db57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156111555761115561112c565b500190565b60006001820161116c5761116c61112c565b5060010190565b60006020828403121561118557600080fd5b8151801515811461106757600080fd5b6000602082840312156111a757600080fd5b5051919050565b6000828210156111c0576111c061112c565b50039056fea264697066735822122067626e4021e1024afea9e22ed4ac8aa80cdd12822c432f43f669537c0cbe2a1f64736f6c634300080f003300000000000000000000000000000000000000070318c8e574c41eac8dac0000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b14610273578063f3294c131461028657600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063386b72e714610185578063395093511461019a57806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610db9565b60405180910390f35b61014161013c366004610e23565b61032b565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610e4f565b610341565b60405160128152602001610125565b610198610193366004610f66565b6103f0565b005b6101416101a8366004610e23565b61064e565b6101986101bb366004611031565b61068a565b6101556101ce36600461104a565b6001600160a01b031660009081526001602052604090205490565b610198610697565b6000546040516001600160a01b039091168152602001610125565b6101186106cd565b610141610222366004610e23565b6106dc565b610141610235366004610e23565b610775565b61015561024836600461106e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019861028136600461104a565b610782565b61019861029436600461104a565b61081a565b6060600480546102a8906110a7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906110a7565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b6000610338338484610928565b50600192915050565b600061034e848484610a4c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e58533858403610928565b506001949350505050565b6000546001600160a01b0316331461041a5760405162461bcd60e51b81526004016103cf906110e1565b815183511461047f5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103cf565b6000805b83518110156104c55783818151811061049e5761049e611116565b6020026020010151826104b19190611142565b9150806104bd8161115a565b915050610483565b506040516323b872dd60e01b8152336004820152306024820181905260448201839052906323b872dd906064016020604051808303816000875af1158015610511573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105359190611173565b61053e57600080fd5b60005b845181101561061c57306001600160a01b031663a9059cbb86838151811061056b5761056b611116565b602002602001015186848151811061058557610585611116565b60200260200101516040518363ffffffff1660e01b81526004016105be9291906001600160a01b03929092168252602082015260400190565b6020604051808303816000875af11580156105dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106019190611173565b61060a57600080fd5b806106148161115a565b915050610541565b5060405182907fb7fab078b83b716d6650a2d318a5ba2009ace5d9d219c0aba962f90737a4084490600090a250505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610338918590610685908690611142565b610928565b6106943382610c1b565b50565b6000546001600160a01b031633146106c15760405162461bcd60e51b81526004016103cf906110e1565b6106cb6000610d69565b565b6060600580546102a8906110a7565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561075e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cf565b61076b3385858403610928565b5060019392505050565b6000610338338484610a4c565b6000546001600160a01b031633146107ac5760405162461bcd60e51b81526004016103cf906110e1565b6001600160a01b0381166108115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cf565b61069481610d69565b6000546001600160a01b031633146108445760405162461bcd60e51b81526004016103cf906110e1565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af9190611195565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156108ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109239190611173565b505050565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cf565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cf565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cf565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cf565b6001600160a01b03831660009081526001602052604090205481811015610b8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cf565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610bc1908490611142565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0d91815260200190565b60405180910390a350505050565b6001600160a01b038216610c7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103cf565b6001600160a01b03821660009081526001602052604090205481811015610cef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103cf565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610d1e9084906111ae565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610de657858101830151858201604001528201610dca565b81811115610df8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461069457600080fd5b60008060408385031215610e3657600080fd5b8235610e4181610e0e565b946020939093013593505050565b600080600060608486031215610e6457600080fd5b8335610e6f81610e0e565b92506020840135610e7f81610e0e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610ecf57610ecf610e90565b604052919050565b600067ffffffffffffffff821115610ef157610ef1610e90565b5060051b60200190565b600082601f830112610f0c57600080fd5b81356020610f21610f1c83610ed7565b610ea6565b82815260059290921b84018101918181019086841115610f4057600080fd5b8286015b84811015610f5b5780358352918301918301610f44565b509695505050505050565b600080600060608486031215610f7b57600080fd5b833567ffffffffffffffff80821115610f9357600080fd5b818601915086601f830112610fa757600080fd5b81356020610fb7610f1c83610ed7565b82815260059290921b8401810191818101908a841115610fd657600080fd5b948201945b83861015610ffd578535610fee81610e0e565b82529482019490820190610fdb565b9750508701359250508082111561101357600080fd5b5061102086828701610efb565b925050604084013590509250925092565b60006020828403121561104357600080fd5b5035919050565b60006020828403121561105c57600080fd5b813561106781610e0e565b9392505050565b6000806040838503121561108157600080fd5b823561108c81610e0e565b9150602083013561109c81610e0e565b809150509250929050565b600181811c908216806110bb57607f821691505b6020821081036110db57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156111555761115561112c565b500190565b60006001820161116c5761116c61112c565b5060010190565b60006020828403121561118557600080fd5b8151801515811461106757600080fd5b6000602082840312156111a757600080fd5b5051919050565b6000828210156111c0576111c061112c565b50039056fea264697066735822122067626e4021e1024afea9e22ed4ac8aa80cdd12822c432f43f669537c0cbe2a1f64736f6c634300080f0033

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

00000000000000000000000000000000000000070318c8e574c41eac8dac0000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000070318c8e574c41eac8dac0000


Deployed Bytecode Sourcemap

19961:959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12157:169;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12157:169:0;1072:187:1;11110:108:0;11198:12;;11110:108;;;1410:25:1;;;1398:2;1383:18;11110:108:0;1264:177:1;12810:492:0;;;;;;:::i;:::-;;:::i;10952:93::-;;;11035:2;2049:36:1;;2037:2;2022:18;10952:93:0;1907:184:1;20176:650:0;;;;;;:::i;:::-;;:::i;:::-;;13711:215;;;;;;:::i;:::-;;:::i;20836:81::-;;;;;;:::i;:::-;;:::i;11281:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11382:18:0;11355:7;11382:18;;;:9;:18;;;;;;;11281:127;3185:103;;;:::i;2534:87::-;2580:7;2607:6;2534:87;;-1:-1:-1;;;;;2607:6:0;;;5266:51:1;;5254:2;5239:18;2534:87:0;5120:203:1;10209:104:0;;;:::i;14429:413::-;;;;;;:::i;:::-;;:::i;11621:175::-;;;;;;:::i;:::-;;:::i;11859:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11975:18:0;;;11948:7;11975:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11859:151;3649:201;;;;;;:::i;:::-;;:::i;3294:202::-;;;;;;:::i;:::-;;:::i;9990:100::-;10044:13;10077:5;10070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:100;:::o;12157:169::-;12240:4;12257:39;1332:10;12280:7;12289:6;12257:8;:39::i;:::-;-1:-1:-1;12314:4:0;12157:169;;;;:::o;12810:492::-;12950:4;12967:36;12977:6;12985:9;12996:6;12967:9;:36::i;:::-;-1:-1:-1;;;;;13043:19:0;;13016:24;13043:19;;;:11;:19;;;;;;;;1332:10;13043:33;;;;;;;;13095:26;;;;13087:79;;;;-1:-1:-1;;;13087:79:0;;6308:2:1;13087:79:0;;;6290:21:1;6347:2;6327:18;;;6320:30;6386:34;6366:18;;;6359:62;-1:-1:-1;;;6437:18:1;;;6430:38;6485:19;;13087:79:0;;;;;;;;;13202:57;13211:6;1332:10;13252:6;13233:16;:25;13202:8;:57::i;:::-;-1:-1:-1;13290:4:0;;12810:492;-1:-1:-1;;;;12810:492:0:o;20176:650::-;2580:7;2607:6;-1:-1:-1;;;;;2607:6:0;1332:10;2754:23;2746:68;;;;-1:-1:-1;;;2746:68:0;;;;;;;:::i;:::-;20371:6:::1;:13;20350:10;:17;:34;20328:127;;;::::0;-1:-1:-1;;;20328:127:0;;7078:2:1;20328:127:0::1;::::0;::::1;7060:21:1::0;7117:2;7097:18;;;7090:30;7156:34;7136:18;;;7129:62;-1:-1:-1;;;7207:18:1;;;7200:41;7258:19;;20328:127:0::1;6876:407:1::0;20328:127:0::1;20466:13;20499:9:::0;20494:89:::1;20518:6;:13;20514:1;:17;20494:89;;;20562:6;20569:1;20562:9;;;;;;;;:::i;:::-;;;;;;;20553:18;;;;;:::i;:::-;::::0;-1:-1:-1;20533:3:0;::::1;::::0;::::1;:::i;:::-;;;;20494:89;;;-1:-1:-1::0;20601:51:0::1;::::0;-1:-1:-1;;;20601:51:0;;20619:10:::1;20601:51;::::0;::::1;8065:34:1::0;20601:4:0::1;8115:18:1::0;;;8108:43;;;8167:18;;;8160:34;;;20601:4:0;:17:::1;::::0;8000:18:1;;20601:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20593:60;;;::::0;::::1;;20669:9;20664:123;20688:10;:17;20684:1;:21;20664:123;;;20735:4;-1:-1:-1::0;;;;;20735:13:0::1;;20749:10;20760:1;20749:13;;;;;;;;:::i;:::-;;;;;;;20764:6;20771:1;20764:9;;;;;;;;:::i;:::-;;;;;;;20735:39;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;8687:32:1;;;;8669:51;;8751:2;8736:18;;8729:34;8657:2;8642:18;;8487:282;20735:39:0::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20727:48;;;::::0;::::1;;20707:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20664:123;;;-1:-1:-1::0;20802:16:0::1;::::0;20815:2;;20802:16:::1;::::0;;;::::1;20317:509;20176:650:::0;;;:::o;13711:215::-;1332:10;13799:4;13848:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13848:34:0;;;;;;;;;;13799:4;;13816:80;;13839:7;;13848:47;;13885:10;;13848:47;:::i;:::-;13816:8;:80::i;20836:81::-;20885:24;20891:10;20903:5;20885;:24::i;:::-;20836:81;:::o;3185:103::-;2580:7;2607:6;-1:-1:-1;;;;;2607:6:0;1332:10;2754:23;2746:68;;;;-1:-1:-1;;;2746:68:0;;;;;;;:::i;:::-;3250:30:::1;3277:1;3250:18;:30::i;:::-;3185:103::o:0;10209:104::-;10265:13;10298:7;10291:14;;;;;:::i;14429:413::-;1332:10;14522:4;14566:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14566:34:0;;;;;;;;;;14619:35;;;;14611:85;;;;-1:-1:-1;;;14611:85:0;;8976:2:1;14611:85:0;;;8958:21:1;9015:2;8995:18;;;8988:30;9054:34;9034:18;;;9027:62;-1:-1:-1;;;9105:18:1;;;9098:35;9150:19;;14611:85:0;8774:401:1;14611:85:0;14732:67;1332:10;14755:7;14783:15;14764:16;:34;14732:8;:67::i;:::-;-1:-1:-1;14830:4:0;;14429:413;-1:-1:-1;;;14429:413:0:o;11621:175::-;11707:4;11724:42;1332:10;11748:9;11759:6;11724:9;:42::i;3649:201::-;2580:7;2607:6;-1:-1:-1;;;;;2607:6:0;1332:10;2754:23;2746:68;;;;-1:-1:-1;;;2746:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3738:22:0;::::1;3730:73;;;::::0;-1:-1:-1;;;3730:73:0;;9382:2:1;3730:73:0::1;::::0;::::1;9364:21:1::0;9421:2;9401:18;;;9394:30;9460:34;9440:18;;;9433:62;-1:-1:-1;;;9511:18:1;;;9504:36;9557:19;;3730:73:0::1;9180:402:1::0;3730:73:0::1;3814:28;3833:8;3814:18;:28::i;3294:202::-:0;2580:7;2607:6;-1:-1:-1;;;;;2607:6:0;1332:10;2754:23;2746:68;;;;-1:-1:-1;;;2746:68:0;;;;;;;:::i;:::-;3380:46:::1;::::0;-1:-1:-1;;;3380:46:0;;3420:4:::1;3380:46;::::0;::::1;5266:51:1::0;3362:15:0::1;::::0;-1:-1:-1;;;;;3380:31:0;::::1;::::0;::::1;::::0;5239:18:1;;3380:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3437:51;::::0;-1:-1:-1;;;3437:51:0;;3468:10:::1;3437:51;::::0;::::1;8669::1::0;8736:18;;;8729:34;;;3362:64:0;;-1:-1:-1;;;;;;3437:30:0;::::1;::::0;::::1;::::0;8642:18:1;;3437:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3351:145;3294:202:::0;:::o;18113:380::-;-1:-1:-1;;;;;18249:19:0;;18241:68;;;;-1:-1:-1;;;18241:68:0;;10257:2:1;18241:68:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:34;10315:18;;;10308:62;-1:-1:-1;;;10386:18:1;;;10379:34;10430:19;;18241:68:0;10055:400:1;18241:68:0;-1:-1:-1;;;;;18328:21:0;;18320:68;;;;-1:-1:-1;;;18320:68:0;;10662:2:1;18320:68:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740:34;10720:18;;;10713:62;-1:-1:-1;;;10791:18:1;;;10784:32;10833:19;;18320:68:0;10460:398:1;18320:68:0;-1:-1:-1;;;;;18401:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18453:32;;1410:25:1;;;18453:32:0;;1383:18:1;18453:32:0;;;;;;;18113:380;;;:::o;15332:733::-;-1:-1:-1;;;;;15472:20:0;;15464:70;;;;-1:-1:-1;;;15464:70:0;;11065:2:1;15464:70:0;;;11047:21:1;11104:2;11084:18;;;11077:30;11143:34;11123:18;;;11116:62;-1:-1:-1;;;11194:18:1;;;11187:35;11239:19;;15464:70:0;10863:401:1;15464:70:0;-1:-1:-1;;;;;15553:23:0;;15545:71;;;;-1:-1:-1;;;15545:71:0;;11471:2:1;15545:71:0;;;11453:21:1;11510:2;11490:18;;;11483:30;11549:34;11529:18;;;11522:62;-1:-1:-1;;;11600:18:1;;;11593:33;11643:19;;15545:71:0;11269:399:1;15545:71:0;-1:-1:-1;;;;;15713:17:0;;15689:21;15713:17;;;:9;:17;;;;;;15749:23;;;;15741:74;;;;-1:-1:-1;;;15741:74:0;;11875:2:1;15741:74:0;;;11857:21:1;11914:2;11894:18;;;11887:30;11953:34;11933:18;;;11926:62;-1:-1:-1;;;12004:18:1;;;11997:36;12050:19;;15741:74:0;11673:402:1;15741:74:0;-1:-1:-1;;;;;15851:17:0;;;;;;;:9;:17;;;;;;15871:22;;;15851:42;;15915:20;;;;;;;;:30;;15887:6;;15851:17;15915:30;;15887:6;;15915:30;:::i;:::-;;;;;;;;15980:9;-1:-1:-1;;;;;15963:35:0;15972:6;-1:-1:-1;;;;;15963:35:0;;15991:6;15963:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;15963:35:0;;;;;;;;15453:612;15332:733;;;:::o;17084:591::-;-1:-1:-1;;;;;17168:21:0;;17160:67;;;;-1:-1:-1;;;17160:67:0;;12282:2:1;17160:67:0;;;12264:21:1;12321:2;12301:18;;;12294:30;12360:34;12340:18;;;12333:62;-1:-1:-1;;;12411:18:1;;;12404:31;12452:19;;17160:67:0;12080:397:1;17160:67:0;-1:-1:-1;;;;;17327:18:0;;17302:22;17327:18;;;:9;:18;;;;;;17364:24;;;;17356:71;;;;-1:-1:-1;;;17356:71:0;;12684:2:1;17356:71:0;;;12666:21:1;12723:2;12703:18;;;12696:30;12762:34;12742:18;;;12735:62;-1:-1:-1;;;12813:18:1;;;12806:32;12855:19;;17356:71:0;12482:398:1;17356:71:0;-1:-1:-1;;;;;17463:18:0;;;;;;:9;:18;;;;;17484:23;;;17463:44;;17529:12;:22;;17501:6;;17463:18;17529:22;;17501:6;;17529:22;:::i;:::-;;;;-1:-1:-1;;17569:37:0;;1410:25:1;;;17595:1:0;;-1:-1:-1;;;;;17569:37:0;;;;;1398:2:1;1383:18;17569:37:0;;;;;;;3437:51:::1;3351:145;3294:202:::0;:::o;4010:191::-;4084:16;4103:6;;-1:-1:-1;;;;;4120:17:0;;;-1:-1:-1;;;;;;4120:17:0;;;;;;4153:40;;4103:6;;;;;;;4153:40;;4084:16;4153:40;4073:128;4010:191;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2096:127::-;2157:10;2152:3;2148:20;2145:1;2138:31;2188:4;2185:1;2178:15;2212:4;2209:1;2202:15;2228:275;2299:2;2293:9;2364:2;2345:13;;-1:-1:-1;;2341:27:1;2329:40;;2399:18;2384:34;;2420:22;;;2381:62;2378:88;;;2446:18;;:::i;:::-;2482:2;2475:22;2228:275;;-1:-1:-1;2228:275:1:o;2508:191::-;2576:4;2609:18;2601:6;2598:30;2595:56;;;2631:18;;:::i;:::-;-1:-1:-1;2676:1:1;2672:14;2688:4;2668:25;;2508:191::o;2704:670::-;2758:5;2811:3;2804:4;2796:6;2792:17;2788:27;2778:55;;2829:1;2826;2819:12;2778:55;2865:6;2852:20;2891:4;2915:68;2931:51;2979:2;2931:51;:::i;:::-;2915:68;:::i;:::-;3017:15;;;3103:1;3099:10;;;;3087:23;;3083:32;;;3048:12;;;;3127:15;;;3124:35;;;3155:1;3152;3145:12;3124:35;3191:2;3183:6;3179:15;3203:142;3219:6;3214:3;3211:15;3203:142;;;3285:17;;3273:30;;3323:12;;;;3236;;3203:142;;;-1:-1:-1;3363:5:1;2704:670;-1:-1:-1;;;;;;2704:670:1:o;3379:1299::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;3639:9;3626:23;3668:18;3709:2;3701:6;3698:14;3695:34;;;3725:1;3722;3715:12;3695:34;3763:6;3752:9;3748:22;3738:32;;3808:7;3801:4;3797:2;3793:13;3789:27;3779:55;;3830:1;3827;3820:12;3779:55;3866:2;3853:16;3888:4;3912:68;3928:51;3976:2;3928:51;:::i;3912:68::-;4014:15;;;4096:1;4092:10;;;;4084:19;;4080:28;;;4045:12;;;;4120:19;;;4117:39;;;4152:1;4149;4142:12;4117:39;4176:11;;;;4196:217;4212:6;4207:3;4204:15;4196:217;;;4292:3;4279:17;4309:31;4334:5;4309:31;:::i;:::-;4353:18;;4229:12;;;;4391;;;;4196:217;;;4432:5;-1:-1:-1;;4475:18:1;;4462:32;;-1:-1:-1;;4506:16:1;;;4503:36;;;4535:1;4532;4525:12;4503:36;;4558:63;4613:7;4602:8;4591:9;4587:24;4558:63;:::i;:::-;4548:73;;;4668:2;4657:9;4653:18;4640:32;4630:42;;3379:1299;;;;;:::o;4683:180::-;4742:6;4795:2;4783:9;4774:7;4770:23;4766:32;4763:52;;;4811:1;4808;4801:12;4763:52;-1:-1:-1;4834:23:1;;4683:180;-1:-1:-1;4683:180:1:o;4868:247::-;4927:6;4980:2;4968:9;4959:7;4955:23;4951:32;4948:52;;;4996:1;4993;4986:12;4948:52;5035:9;5022:23;5054:31;5079:5;5054:31;:::i;:::-;5104:5;4868:247;-1:-1:-1;;;4868:247:1:o;5328:388::-;5396:6;5404;5457:2;5445:9;5436:7;5432:23;5428:32;5425:52;;;5473:1;5470;5463:12;5425:52;5512:9;5499:23;5531:31;5556:5;5531:31;:::i;:::-;5581:5;-1:-1:-1;5638:2:1;5623:18;;5610:32;5651:33;5610:32;5651:33;:::i;:::-;5703:7;5693:17;;;5328:388;;;;;:::o;5721:380::-;5800:1;5796:12;;;;5843;;;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5971:2;5963:6;5960:14;5940:18;5937:38;5934:161;;6017:10;6012:3;6008:20;6005:1;5998:31;6052:4;6049:1;6042:15;6080:4;6077:1;6070:15;5934:161;;5721:380;;;:::o;6515:356::-;6717:2;6699:21;;;6736:18;;;6729:30;6795:34;6790:2;6775:18;;6768:62;6862:2;6847:18;;6515:356::o;7288:127::-;7349:10;7344:3;7340:20;7337:1;7330:31;7380:4;7377:1;7370:15;7404:4;7401:1;7394:15;7420:127;7481:10;7476:3;7472:20;7469:1;7462:31;7512:4;7509:1;7502:15;7536:4;7533:1;7526:15;7552:128;7592:3;7623:1;7619:6;7616:1;7613:13;7610:39;;;7629:18;;:::i;:::-;-1:-1:-1;7665:9:1;;7552:128::o;7685:135::-;7724:3;7745:17;;;7742:43;;7765:18;;:::i;:::-;-1:-1:-1;7812:1:1;7801:13;;7685:135::o;8205:277::-;8272:6;8325:2;8313:9;8304:7;8300:23;8296:32;8293:52;;;8341:1;8338;8331:12;8293:52;8373:9;8367:16;8426:5;8419:13;8412:21;8405:5;8402:32;8392:60;;8448:1;8445;8438:12;9587:184;9657:6;9710:2;9698:9;9689:7;9685:23;9681:32;9678:52;;;9726:1;9723;9716:12;9678:52;-1:-1:-1;9749:16:1;;9587:184;-1:-1:-1;9587:184:1:o;12885:125::-;12925:4;12953:1;12950;12947:8;12944:34;;;12958:18;;:::i;:::-;-1:-1:-1;12995:9:1;;12885:125::o

Swarm Source

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