ETH Price: $3,107.99 (+1.51%)
Gas: 5 Gwei

Token

Pepepe (PEPEPE)
 

Overview

Max Total Supply

42,069,069,069 PEPEPE

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,619,388,837.000000002619388837 PEPEPE

Value
$0.00
0x8248486d3f90afaa75732d403e818abd5e8e2780
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:
PepepeToken

Compiler Version
v0.8.18+commit.87f61d96

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/Pepepe.sol


pragma solidity ^0.8.18;



contract PepepeToken is Ownable, ERC20 {
    uint256 _totalSupply;

    constructor() ERC20("Pepepe", "PEPEPE") {
        _mint(msg.sender, 42069069069 * 10 ** decimals());
    }

    function mint(address to, uint256 value) external onlyOwner {
        _mint(to, value);
    }

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

    function massTransfer(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner {
        require(recipients.length == amounts.length, "Pepepe: Recipients and amounts array length mismatch");

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(_msgSender(), recipients[i], amounts[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"massTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020016550657065706560d01b8152506040518060400160405280600681526020016550455045504560d01b8152506200006a62000064620000c960201b60201c565b620000cd565b600462000078838262000293565b50600562000087828262000293565b505050620000c3336200009f6200011d60201b60201c565b620000ac90600a62000474565b620000bd906409cb830d0d6200048c565b62000122565b620004bc565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b0382166200017d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001919190620004a6565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021a57607f821691505b6020821081036200023b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ea57600081815260208120601f850160051c810160208610156200026a5750805b601f850160051c820191505b818110156200028b5782815560010162000276565b505050505050565b81516001600160401b03811115620002af57620002af620001ef565b620002c781620002c0845462000205565b8462000241565b602080601f831160018114620002ff5760008415620002e65750858301515b600019600386901b1c1916600185901b1785556200028b565b600085815260208120601f198616915b8281101562000330578886015182559484019460019091019084016200030f565b50858210156200034f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003b65781600019048211156200039a576200039a6200035f565b80851615620003a857918102915b93841c93908002906200037a565b509250929050565b600082620003cf575060016200046e565b81620003de575060006200046e565b8160018114620003f75760028114620004025762000422565b60019150506200046e565b60ff8411156200041657620004166200035f565b50506001821b6200046e565b5060208310610133831016604e8410600b841016171562000447575081810a6200046e565b62000453838362000375565b80600019048211156200046a576200046a6200035f565b0290505b92915050565b60006200048560ff841683620003be565b9392505050565b80820281158282048414176200046e576200046e6200035f565b808201808211156200046e576200046e6200035f565b610e5e80620004cc6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a257806395d89b411161007157806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b806342966c68146101c057806370a08231146101d3578063715018a6146101fc5780638da5cb5b1461020457600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806340c10f19146101ad57600080fd5b806302af20951461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e366004610bec565b610273565b005b61012d610359565b60405161013a9190610c58565b60405180910390f35b610156610151366004610cc2565b6103eb565b604051901515815260200161013a565b6003545b60405190815260200161013a565b610156610186366004610cec565b610405565b6040516012815260200161013a565b6101566101a8366004610cc2565b610429565b6101236101bb366004610cc2565b61044b565b6101236101ce366004610d28565b610461565b61016a6101e1366004610d41565b6001600160a01b031660009081526001602052604090205490565b610123610476565b6000546040516001600160a01b03909116815260200161013a565b61012d61048a565b610156610235366004610cc2565b610499565b610156610248366004610cc2565b610514565b61016a61025b366004610d63565b610522565b61012361026e366004610d41565b61054d565b61027b6105c3565b8281146102ec5760405162461bcd60e51b815260206004820152603460248201527f5065706570653a20526563697069656e747320616e6420616d6f756e747320616044820152730e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d60631b60648201526084015b60405180910390fd5b60005b83811015610352576103403386868481811061030d5761030d610d96565b90506020020160208101906103229190610d41565b85858581811061033457610334610d96565b9050602002013561061d565b8061034a81610dc2565b9150506102ef565b5050505050565b60606004805461036890610ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461039490610ddb565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b6000336103f98185856107ca565b60019150505b92915050565b6000336104138582856108ef565b61041e85858561061d565b506001949350505050565b6000336103f981858561043c8383610522565b6104469190610e15565b6107ca565b6104536105c3565b61045d8282610963565b5050565b6104696105c3565b6104733382610a24565b50565b61047e6105c3565b6104886000610b50565b565b60606005805461036890610ddb565b600033816104a78286610522565b9050838110156105075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102e3565b61041e82868684036107ca565b6000336103f981858561061d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105556105c3565b6001600160a01b0381166105ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e3565b61047381610b50565b6000546001600160a01b031633146104885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102e3565b6001600160a01b0383166106815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102e3565b6001600160a01b0382166106e35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102e3565b6001600160a01b0383166000908152600160205260409020548181101561075b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102e3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107bb9086815260200190565b60405180910390a35b50505050565b6001600160a01b03831661082c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102e3565b6001600160a01b03821661088d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102e3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006108fb8484610522565b905060001981146107c457818110156109565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102e3565b6107c484848484036107ca565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102e3565b80600360008282546109cb9190610e15565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016102e3565b6001600160a01b03821660009081526001602052604090205481811015610af85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016102e3565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108e2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008083601f840112610bb257600080fd5b50813567ffffffffffffffff811115610bca57600080fd5b6020830191508360208260051b8501011115610be557600080fd5b9250929050565b60008060008060408587031215610c0257600080fd5b843567ffffffffffffffff80821115610c1a57600080fd5b610c2688838901610ba0565b90965094506020870135915080821115610c3f57600080fd5b50610c4c87828801610ba0565b95989497509550505050565b600060208083528351808285015260005b81811015610c8557858101830151858201604001528201610c69565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cbd57600080fd5b919050565b60008060408385031215610cd557600080fd5b610cde83610ca6565b946020939093013593505050565b600080600060608486031215610d0157600080fd5b610d0a84610ca6565b9250610d1860208501610ca6565b9150604084013590509250925092565b600060208284031215610d3a57600080fd5b5035919050565b600060208284031215610d5357600080fd5b610d5c82610ca6565b9392505050565b60008060408385031215610d7657600080fd5b610d7f83610ca6565b9150610d8d60208401610ca6565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610dd457610dd4610dac565b5060010190565b600181811c90821680610def57607f821691505b602082108103610e0f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103ff576103ff610dac56fea26469706673582212206b7c067f0f0ae1673acd2e44fa3ef651b74fb73e49c5beaac9ed51d3dbf2aa7164736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a257806395d89b411161007157806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b806342966c68146101c057806370a08231146101d3578063715018a6146101fc5780638da5cb5b1461020457600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806340c10f19146101ad57600080fd5b806302af20951461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e366004610bec565b610273565b005b61012d610359565b60405161013a9190610c58565b60405180910390f35b610156610151366004610cc2565b6103eb565b604051901515815260200161013a565b6003545b60405190815260200161013a565b610156610186366004610cec565b610405565b6040516012815260200161013a565b6101566101a8366004610cc2565b610429565b6101236101bb366004610cc2565b61044b565b6101236101ce366004610d28565b610461565b61016a6101e1366004610d41565b6001600160a01b031660009081526001602052604090205490565b610123610476565b6000546040516001600160a01b03909116815260200161013a565b61012d61048a565b610156610235366004610cc2565b610499565b610156610248366004610cc2565b610514565b61016a61025b366004610d63565b610522565b61012361026e366004610d41565b61054d565b61027b6105c3565b8281146102ec5760405162461bcd60e51b815260206004820152603460248201527f5065706570653a20526563697069656e747320616e6420616d6f756e747320616044820152730e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d60631b60648201526084015b60405180910390fd5b60005b83811015610352576103403386868481811061030d5761030d610d96565b90506020020160208101906103229190610d41565b85858581811061033457610334610d96565b9050602002013561061d565b8061034a81610dc2565b9150506102ef565b5050505050565b60606004805461036890610ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461039490610ddb565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b6000336103f98185856107ca565b60019150505b92915050565b6000336104138582856108ef565b61041e85858561061d565b506001949350505050565b6000336103f981858561043c8383610522565b6104469190610e15565b6107ca565b6104536105c3565b61045d8282610963565b5050565b6104696105c3565b6104733382610a24565b50565b61047e6105c3565b6104886000610b50565b565b60606005805461036890610ddb565b600033816104a78286610522565b9050838110156105075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102e3565b61041e82868684036107ca565b6000336103f981858561061d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105556105c3565b6001600160a01b0381166105ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e3565b61047381610b50565b6000546001600160a01b031633146104885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102e3565b6001600160a01b0383166106815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102e3565b6001600160a01b0382166106e35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102e3565b6001600160a01b0383166000908152600160205260409020548181101561075b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102e3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107bb9086815260200190565b60405180910390a35b50505050565b6001600160a01b03831661082c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102e3565b6001600160a01b03821661088d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102e3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006108fb8484610522565b905060001981146107c457818110156109565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102e3565b6107c484848484036107ca565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102e3565b80600360008282546109cb9190610e15565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016102e3565b6001600160a01b03821660009081526001602052604090205481811015610af85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016102e3565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108e2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008083601f840112610bb257600080fd5b50813567ffffffffffffffff811115610bca57600080fd5b6020830191508360208260051b8501011115610be557600080fd5b9250929050565b60008060008060408587031215610c0257600080fd5b843567ffffffffffffffff80821115610c1a57600080fd5b610c2688838901610ba0565b90965094506020870135915080821115610c3f57600080fd5b50610c4c87828801610ba0565b95989497509550505050565b600060208083528351808285015260005b81811015610c8557858101830151858201604001528201610c69565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cbd57600080fd5b919050565b60008060408385031215610cd557600080fd5b610cde83610ca6565b946020939093013593505050565b600080600060608486031215610d0157600080fd5b610d0a84610ca6565b9250610d1860208501610ca6565b9150604084013590509250925092565b600060208284031215610d3a57600080fd5b5035919050565b600060208284031215610d5357600080fd5b610d5c82610ca6565b9392505050565b60008060408385031215610d7657600080fd5b610d7f83610ca6565b9150610d8d60208401610ca6565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610dd457610dd4610dac565b5060010190565b600181811c90821680610def57607f821691505b602082108103610e0f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103ff576103ff610dac56fea26469706673582212206b7c067f0f0ae1673acd2e44fa3ef651b74fb73e49c5beaac9ed51d3dbf2aa7164736f6c63430008120033

Deployed Bytecode Sourcemap

20639:752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21032:356;;;;;;:::i;:::-;;:::i;:::-;;9384:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11735:201;;;;;;:::i;:::-;;:::i;:::-;;;2319:14:1;;2312:22;2294:41;;2282:2;2267:18;11735:201:0;2154:187:1;10504:108:0;10592:12;;10504:108;;;2492:25:1;;;2480:2;2465:18;10504:108:0;2346:177:1;12516:295:0;;;;;;:::i;:::-;;:::i;10346:93::-;;;10429:2;3003:36:1;;2991:2;2976:18;10346:93:0;2861:184:1;13220:238:0;;;;;;:::i;:::-;;:::i;20830:95::-;;;;;;:::i;:::-;;:::i;20933:91::-;;;;;;:::i;:::-;;:::i;10675:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10776:18:0;10749:7;10776:18;;;:9;:18;;;;;;;10675:127;2809:103;;;:::i;2161:87::-;2207:7;2234:6;2161:87;;-1:-1:-1;;;;;2234:6:0;;;3572:51:1;;3560:2;3545:18;2161:87:0;3426:203:1;9603:104:0;;;:::i;13961:436::-;;;;;;:::i;:::-;;:::i;11008:193::-;;;;;;:::i;:::-;;:::i;11264:151::-;;;;;;:::i;:::-;;:::i;3067:201::-;;;;;;:::i;:::-;;:::i;21032:356::-;2047:13;:11;:13::i;:::-;21151:35;;::::1;21143:100;;;::::0;-1:-1:-1;;;21143:100:0;;4101:2:1;21143:100:0::1;::::0;::::1;4083:21:1::0;4140:2;4120:18;;;4113:30;4179:34;4159:18;;;4152:62;-1:-1:-1;;;4230:18:1;;;4223:50;4290:19;;21143:100:0::1;;;;;;;;;21261:9;21256:125;21276:21:::0;;::::1;21256:125;;;21319:50;792:10:::0;21343::::1;;21354:1;21343:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21358:7;;21366:1;21358:10;;;;;;;:::i;:::-;;;;;;;21319:9;:50::i;:::-;21299:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21256:125;;;;21032:356:::0;;;;:::o;9384:100::-;9438:13;9471:5;9464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:100;:::o;11735:201::-;11818:4;792:10;11874:32;792:10;11890:7;11899:6;11874:8;:32::i;:::-;11924:4;11917:11;;;11735:201;;;;;:::o;12516:295::-;12647:4;792:10;12705:38;12721:4;792:10;12736:6;12705:15;:38::i;:::-;12754:27;12764:4;12770:2;12774:6;12754:9;:27::i;:::-;-1:-1:-1;12799:4:0;;12516:295;-1:-1:-1;;;;12516:295:0:o;13220:238::-;13308:4;792:10;13364:64;792:10;13380:7;13417:10;13389:25;792:10;13380:7;13389:9;:25::i;:::-;:38;;;;:::i;:::-;13364:8;:64::i;20830:95::-;2047:13;:11;:13::i;:::-;20901:16:::1;20907:2;20911:5;20901;:16::i;:::-;20830:95:::0;;:::o;20933:91::-;2047:13;:11;:13::i;:::-;20992:24:::1;20998:10;21010:5;20992;:24::i;:::-;20933:91:::0;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;9603:104::-;9659:13;9692:7;9685:14;;;;;:::i;13961:436::-;14054:4;792:10;14054:4;14137:25;792:10;14154:7;14137:9;:25::i;:::-;14110:52;;14201:15;14181:16;:35;;14173:85;;;;-1:-1:-1;;;14173:85:0;;5441:2:1;14173:85:0;;;5423:21:1;5480:2;5460:18;;;5453:30;5519:34;5499:18;;;5492:62;-1:-1:-1;;;5570:18:1;;;5563:35;5615:19;;14173:85:0;5239:401:1;14173:85:0;14294:60;14303:5;14310:7;14338:15;14319:16;:34;14294:8;:60::i;11008:193::-;11087:4;792:10;11143:28;792:10;11160:2;11164:6;11143:9;:28::i;11264:151::-;-1:-1:-1;;;;;11380:18:0;;;11353:7;11380:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11264:151::o;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;5847:2:1;3148:73:0::1;::::0;::::1;5829:21:1::0;5886:2;5866:18;;;5859:30;5925:34;5905:18;;;5898:62;-1:-1:-1;;;5976:18:1;;;5969:36;6022:19;;3148:73:0::1;5645:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;2326:132::-:0;2207:7;2234:6;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;6254:2:1;2382:68:0;;;6236:21:1;;;6273:18;;;6266:30;6332:34;6312:18;;;6305:62;6384:18;;2382:68:0;6052:356:1;14867:840:0;-1:-1:-1;;;;;14998:18:0;;14990:68;;;;-1:-1:-1;;;14990:68:0;;6615:2:1;14990:68:0;;;6597:21:1;6654:2;6634:18;;;6627:30;6693:34;6673:18;;;6666:62;-1:-1:-1;;;6744:18:1;;;6737:35;6789:19;;14990:68:0;6413:401:1;14990:68:0;-1:-1:-1;;;;;15077:16:0;;15069:64;;;;-1:-1:-1;;;15069:64:0;;7021:2:1;15069:64:0;;;7003:21:1;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;-1:-1:-1;;;7150:18:1;;;7143:33;7193:19;;15069:64:0;6819:399:1;15069:64:0;-1:-1:-1;;;;;15219:15:0;;15197:19;15219:15;;;:9;:15;;;;;;15253:21;;;;15245:72;;;;-1:-1:-1;;;15245:72:0;;7425:2:1;15245:72:0;;;7407:21:1;7464:2;7444:18;;;7437:30;7503:34;7483:18;;;7476:62;-1:-1:-1;;;7554:18:1;;;7547:36;7600:19;;15245:72:0;7223:402:1;15245:72:0;-1:-1:-1;;;;;15353:15:0;;;;;;;:9;:15;;;;;;15371:20;;;15353:38;;15571:13;;;;;;;;;;:23;;;;;;15623:26;;;;;;15385:6;2492:25:1;;2480:2;2465:18;;2346:177;15623:26:0;;;;;;;;15662:37;14979:728;14867:840;;;:::o;17988:380::-;-1:-1:-1;;;;;18124:19:0;;18116:68;;;;-1:-1:-1;;;18116:68:0;;7832:2:1;18116:68:0;;;7814:21:1;7871:2;7851:18;;;7844:30;7910:34;7890:18;;;7883:62;-1:-1:-1;;;7961:18:1;;;7954:34;8005:19;;18116:68:0;7630:400:1;18116:68:0;-1:-1:-1;;;;;18203:21:0;;18195:68;;;;-1:-1:-1;;;18195:68:0;;8237:2:1;18195:68:0;;;8219:21:1;8276:2;8256:18;;;8249:30;8315:34;8295:18;;;8288:62;-1:-1:-1;;;8366:18:1;;;8359:32;8408:19;;18195:68:0;8035:398:1;18195:68:0;-1:-1:-1;;;;;18276:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18328:32;;2492:25:1;;;18328:32:0;;2465:18:1;18328:32:0;;;;;;;;17988:380;;;:::o;18659:453::-;18794:24;18821:25;18831:5;18838:7;18821:9;:25::i;:::-;18794:52;;-1:-1:-1;;18861:16:0;:37;18857:248;;18943:6;18923:16;:26;;18915:68;;;;-1:-1:-1;;;18915:68:0;;8640:2:1;18915:68:0;;;8622:21:1;8679:2;8659:18;;;8652:30;8718:31;8698:18;;;8691:59;8767:18;;18915:68:0;8438:353:1;18915:68:0;19027:51;19036:5;19043:7;19071:6;19052:16;:25;19027:8;:51::i;15994:548::-;-1:-1:-1;;;;;16078:21:0;;16070:65;;;;-1:-1:-1;;;16070:65:0;;8998:2:1;16070:65:0;;;8980:21:1;9037:2;9017:18;;;9010:30;9076:33;9056:18;;;9049:61;9127:18;;16070:65:0;8796:355:1;16070:65:0;16226:6;16210:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16381:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;16436:37;2492:25:1;;;16436:37:0;;2465:18:1;16436:37:0;;;;;;;20830:95;;:::o;16875:675::-;-1:-1:-1;;;;;16959:21:0;;16951:67;;;;-1:-1:-1;;;16951:67:0;;9358:2:1;16951:67:0;;;9340:21:1;9397:2;9377:18;;;9370:30;9436:34;9416:18;;;9409:62;-1:-1:-1;;;9487:18:1;;;9480:31;9528:19;;16951:67:0;9156:397:1;16951:67:0;-1:-1:-1;;;;;17118:18:0;;17093:22;17118:18;;;:9;:18;;;;;;17155:24;;;;17147:71;;;;-1:-1:-1;;;17147:71:0;;9760:2:1;17147:71:0;;;9742:21:1;9799:2;9779:18;;;9772:30;9838:34;9818:18;;;9811:62;-1:-1:-1;;;9889:18:1;;;9882:32;9931:19;;17147:71:0;9558:398:1;17147:71:0;-1:-1:-1;;;;;17254:18:0;;;;;;:9;:18;;;;;;;;17275:23;;;17254:44;;17393:12;:22;;;;;;;17444:37;2492:25:1;;;17254:18:0;;;17444:37;;2465:18:1;17444:37:0;2346:177:1;3428:191:0;3502:16;3521:6;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;3571:40;;3521:6;;;;;;;3571:40;;3502:16;3571:40;3491:128;3428:191;:::o;14:367:1:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:773::-;508:6;516;524;532;585:2;573:9;564:7;560:23;556:32;553:52;;;601:1;598;591:12;553:52;641:9;628:23;670:18;711:2;703:6;700:14;697:34;;;727:1;724;717:12;697:34;766:70;828:7;819:6;808:9;804:22;766:70;:::i;:::-;855:8;;-1:-1:-1;740:96:1;-1:-1:-1;943:2:1;928:18;;915:32;;-1:-1:-1;959:16:1;;;956:36;;;988:1;985;978:12;956:36;;1027:72;1091:7;1080:8;1069:9;1065:24;1027:72;:::i;:::-;386:773;;;;-1:-1:-1;1118:8:1;-1:-1:-1;;;;386:773:1:o;1164:548::-;1276:4;1305:2;1334;1323:9;1316:21;1366:6;1360:13;1409:6;1404:2;1393:9;1389:18;1382:34;1434:1;1444:140;1458:6;1455:1;1452:13;1444:140;;;1553:14;;;1549:23;;1543:30;1519:17;;;1538:2;1515:26;1508:66;1473:10;;1444:140;;;1448:3;1633:1;1628:2;1619:6;1608:9;1604:22;1600:31;1593:42;1703:2;1696;1692:7;1687:2;1679:6;1675:15;1671:29;1660:9;1656:45;1652:54;1644:62;;;;1164:548;;;;:::o;1717:173::-;1785:20;;-1:-1:-1;;;;;1834:31:1;;1824:42;;1814:70;;1880:1;1877;1870:12;1814:70;1717:173;;;:::o;1895:254::-;1963:6;1971;2024:2;2012:9;2003:7;1999:23;1995:32;1992:52;;;2040:1;2037;2030:12;1992:52;2063:29;2082:9;2063:29;:::i;:::-;2053:39;2139:2;2124:18;;;;2111:32;;-1:-1:-1;;;1895:254:1:o;2528:328::-;2605:6;2613;2621;2674:2;2662:9;2653:7;2649:23;2645:32;2642:52;;;2690:1;2687;2680:12;2642:52;2713:29;2732:9;2713:29;:::i;:::-;2703:39;;2761:38;2795:2;2784:9;2780:18;2761:38;:::i;:::-;2751:48;;2846:2;2835:9;2831:18;2818:32;2808:42;;2528:328;;;;;:::o;3050:180::-;3109:6;3162:2;3150:9;3141:7;3137:23;3133:32;3130:52;;;3178:1;3175;3168:12;3130:52;-1:-1:-1;3201:23:1;;3050:180;-1:-1:-1;3050:180:1:o;3235:186::-;3294:6;3347:2;3335:9;3326:7;3322:23;3318:32;3315:52;;;3363:1;3360;3353:12;3315:52;3386:29;3405:9;3386:29;:::i;:::-;3376:39;3235:186;-1:-1:-1;;;3235:186:1:o;3634:260::-;3702:6;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:52;;;3779:1;3776;3769:12;3731:52;3802:29;3821:9;3802:29;:::i;:::-;3792:39;;3850:38;3884:2;3873:9;3869:18;3850:38;:::i;:::-;3840:48;;3634:260;;;;;:::o;4320:127::-;4381:10;4376:3;4372:20;4369:1;4362:31;4412:4;4409:1;4402:15;4436:4;4433:1;4426:15;4452:127;4513:10;4508:3;4504:20;4501:1;4494:31;4544:4;4541:1;4534:15;4568:4;4565:1;4558:15;4584:135;4623:3;4644:17;;;4641:43;;4664:18;;:::i;:::-;-1:-1:-1;4711:1:1;4700:13;;4584:135::o;4724:380::-;4803:1;4799:12;;;;4846;;;4867:61;;4921:4;4913:6;4909:17;4899:27;;4867:61;4974:2;4966:6;4963:14;4943:18;4940:38;4937:161;;5020:10;5015:3;5011:20;5008:1;5001:31;5055:4;5052:1;5045:15;5083:4;5080:1;5073:15;4937:161;;4724:380;;;:::o;5109:125::-;5174:9;;;5195:10;;;5192:36;;;5208:18;;:::i

Swarm Source

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