ETH Price: $3,446.21 (-2.55%)
Gas: 2 Gwei

Token

Dogenerator (PUG)
 

Overview

Max Total Supply

9,180,268,487.654357405 PUG

Holders

68

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PugToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-21
*/

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

// SPDX-License-Identifier: MIT

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/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/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/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 guidelines: functions revert instead
 * of 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 defaut 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 { }
}

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



pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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



pragma solidity ^0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity ^0.8.0;




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/access/AccessControlEnumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: @openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol



pragma solidity ^0.8.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: contracts/PugToken.sol



pragma solidity ^0.8.4;


contract PugToken is ERC20PresetMinterPauser {
    constructor(string memory _name, string memory _symbol) ERC20PresetMinterPauser(_name, _symbol) {
        _mint(msg.sender, 25e23);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620022ab380380620022ab833981016040819052620000349162000547565b81818181816005908051906020019062000050929190620003ee565b50805162000066906006906020840190620003ee565b50506007805460ff191690555062000080600033620000fa565b620000ac7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000fa565b620000d87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000fa565b50620000f29050336a02116545850052128000006200013d565b505062000626565b6200011182826200023460201b62000a501760201c565b60008281526001602090815260409091206200013891839062000a5a62000244821b17901c565b505050565b6001600160a01b038216620001995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a76000838362000264565b8060046000828254620001bb9190620005ae565b90915550506001600160a01b03821660009081526002602052604081208054839290620001ea908490620005ae565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200024082826200027c565b5050565b60006200025b836001600160a01b0384166200031c565b90505b92915050565b620001388383836200036e60201b62000a6f1760201c565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000240576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002d83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000365575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200025e565b5060006200025e565b620003868383836200013860201b620006461760201c565b60075460ff1615620001385760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840162000190565b828054620003fc90620005d3565b90600052602060002090601f0160209004810192826200042057600085556200046b565b82601f106200043b57805160ff19168380011785556200046b565b828001600101855582156200046b579182015b828111156200046b5782518255916020019190600101906200044e565b50620004799291506200047d565b5090565b5b808211156200047957600081556001016200047e565b600082601f830112620004a5578081fd5b81516001600160401b0380821115620004c257620004c262000610565b604051601f8301601f19908116603f01168101908282118183101715620004ed57620004ed62000610565b8160405283815260209250868385880101111562000509578485fd5b8491505b838210156200052c57858201830151818301840152908201906200050d565b838211156200053d57848385830101525b9695505050505050565b600080604083850312156200055a578182fd5b82516001600160401b038082111562000571578384fd5b6200057f8683870162000494565b9350602085015191508082111562000595578283fd5b50620005a48582860162000494565b9150509250929050565b60008219821115620005ce57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620005e857607f821691505b602082108114156200060a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c7580620006366000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103d3578063d547741f146103fa578063dd62ed3e1461040d578063e63ab1e91461044657600080fd5b8063a457c2d71461039a578063a9059cbb146103ad578063ca15c873146103c057600080fd5b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b411461038a578063a217fddf1461039257600080fd5b806370a08231146102e457806379cc67901461030d5780638456cb591461032057600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d957600080fd5b8063313ce5671461027657806336568abe14610285578063395093511461029857600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611a7d565b61046d565b60405190151581526020015b60405180910390f35b6101f96104b1565b6040516101e89190611b26565b6101dc6102143660046119f9565b610543565b6004545b6040519081526020016101e8565b6101dc6102393660046119be565b610559565b61021d61024c366004611a22565b60009081526020819052604090206001015490565b61027461026f366004611a3a565b610624565b005b604051601281526020016101e8565b610274610293366004611a3a565b61064b565b6101dc6102a63660046119f9565b61066d565b6102746106a4565b6102746102c13660046119f9565b61074a565b6102746102d4366004611a22565b6107f4565b60075460ff166101dc565b61021d6102f2366004611972565b6001600160a01b031660009081526002602052604090205490565b61027461031b3660046119f9565b610801565b61027461089d565b61033b610336366004611a5c565b610941565b6040516001600160a01b0390911681526020016101e8565b6101dc610361366004611a3a565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6101f9610960565b61021d600081565b6101dc6103a83660046119f9565b61096f565b6101dc6103bb3660046119f9565b610a22565b61021d6103ce366004611a22565b610a2f565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610274610408366004611a3a565b610a46565b61021d61041b36600461198c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b031982167f5a05180f0000000000000000000000000000000000000000000000000000000014806104ab57506104ab82610ae8565b92915050565b6060600580546104c090611bee565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90611bee565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610550338484610b4f565b50600192915050565b6000610566848484610ca8565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61061985336106148685611b90565b610b4f565b506001949350505050565b61062e8282610ed4565b60008281526001602052604090206106469082610a5a565b505050565b6106558282610efa565b60008281526001602052604090206106469082610f82565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610550918590610614908690611b59565b6106ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6107405760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105fc565b610748610f97565b565b6107747f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610361565b6107e65760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f7665206d696e74657220726f6c6520746f206d696e740000000000000000000060648201526084016105fc565b6107f08282611033565b5050565b6107fe338261111e565b50565b600061080d833361041b565b9050818110156108845760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105fc565b61089383336106148585611b90565b610646838361111e565b6108c77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6109395760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105fc565b6107486112b0565b60008281526001602052604081206109599083611338565b9392505050565b6060600680546104c090611bee565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105fc565b610a1833856106148685611b90565b5060019392505050565b6000610550338484610ca8565b60008181526001602052604081206104ab90611344565b610655828261134e565b6107f08282611374565b6000610959836001600160a01b038416611412565b60075460ff16156106465760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016105fc565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806104ab57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104ab565b6001600160a01b038316610bca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b038216610c465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d245760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b038216610da05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b610dab838383611461565b6001600160a01b03831660009081526002602052604090205481811015610e3a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105fc565b610e448282611b90565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610e7a908490611b59565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec691815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610ef0813361146c565b6106468383611374565b6001600160a01b0381163314610f785760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105fc565b6107f082826114ea565b6000610959836001600160a01b038416611569565b60075460ff16610fe95760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105fc565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105fc565b61109560008383611461565b80600460008282546110a79190611b59565b90915550506001600160a01b038216600090815260026020526040812080548392906110d4908490611b59565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661119a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6111a682600083611461565b6001600160a01b038216600090815260026020526040902054818110156112355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b61123f8282611b90565b6001600160a01b0384166000908152600260205260408120919091556004805484929061126d908490611b90565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c9b565b60075460ff16156113035760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105fc565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110163390565b60006109598383611680565b60006104ab825490565b60008281526020819052604090206001015461136a813361146c565b61064683836114ea565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166107f0576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113ce3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611459575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104ab565b5060006104ab565b610646838383610a6f565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166107f0576114a8816001600160a01b0316601461172f565b6114b383602061172f565b6040516020016114c4929190611aa5565b60408051601f198184030181529082905262461bcd60e51b82526105fc91600401611b26565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16156107f0576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561167657600061158d600183611b90565b85549091506000906115a190600190611b90565b905060008660000182815481106115c857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115f957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526001890190915260409020849055865487908061163a57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104ab565b60009150506104ab565b815460009082106116f95760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b82600001828154811061171c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6060600061173e836002611b71565b611749906002611b59565b67ffffffffffffffff81111561176f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611799576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117de57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061183757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061185b846002611b71565b611866906001611b59565b90505b6001811115611907577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106118b557634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106118d957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361190081611bd7565b9050611869565b5083156109595760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105fc565b80356001600160a01b038116811461196d57600080fd5b919050565b600060208284031215611983578081fd5b61095982611956565b6000806040838503121561199e578081fd5b6119a783611956565b91506119b560208401611956565b90509250929050565b6000806000606084860312156119d2578081fd5b6119db84611956565b92506119e960208501611956565b9150604084013590509250925092565b60008060408385031215611a0b578182fd5b611a1483611956565b946020939093013593505050565b600060208284031215611a33578081fd5b5035919050565b60008060408385031215611a4c578182fd5b823591506119b560208401611956565b60008060408385031215611a6e578182fd5b50508035926020909101359150565b600060208284031215611a8e578081fd5b81356001600160e01b031981168114610959578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611add816017850160208801611ba7565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611b1a816028840160208801611ba7565b01602801949350505050565b6020815260008251806020840152611b45816040850160208701611ba7565b601f01601f19169190910160400192915050565b60008219821115611b6c57611b6c611c29565b500190565b6000816000190483118215151615611b8b57611b8b611c29565b500290565b600082821015611ba257611ba2611c29565b500390565b60005b83811015611bc2578181015183820152602001611baa565b83811115611bd1576000848401525b50505050565b600081611be657611be6611c29565b506000190190565b600181811c90821680611c0257607f821691505b60208210811415611c2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d19ddf78a3650857250616b6017a09d7ff5944d7d9b90a51ffa656e8ed0c617364736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b446f67656e657261746f7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035055470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103d3578063d547741f146103fa578063dd62ed3e1461040d578063e63ab1e91461044657600080fd5b8063a457c2d71461039a578063a9059cbb146103ad578063ca15c873146103c057600080fd5b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b411461038a578063a217fddf1461039257600080fd5b806370a08231146102e457806379cc67901461030d5780638456cb591461032057600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d957600080fd5b8063313ce5671461027657806336568abe14610285578063395093511461029857600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611a7d565b61046d565b60405190151581526020015b60405180910390f35b6101f96104b1565b6040516101e89190611b26565b6101dc6102143660046119f9565b610543565b6004545b6040519081526020016101e8565b6101dc6102393660046119be565b610559565b61021d61024c366004611a22565b60009081526020819052604090206001015490565b61027461026f366004611a3a565b610624565b005b604051601281526020016101e8565b610274610293366004611a3a565b61064b565b6101dc6102a63660046119f9565b61066d565b6102746106a4565b6102746102c13660046119f9565b61074a565b6102746102d4366004611a22565b6107f4565b60075460ff166101dc565b61021d6102f2366004611972565b6001600160a01b031660009081526002602052604090205490565b61027461031b3660046119f9565b610801565b61027461089d565b61033b610336366004611a5c565b610941565b6040516001600160a01b0390911681526020016101e8565b6101dc610361366004611a3a565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6101f9610960565b61021d600081565b6101dc6103a83660046119f9565b61096f565b6101dc6103bb3660046119f9565b610a22565b61021d6103ce366004611a22565b610a2f565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610274610408366004611a3a565b610a46565b61021d61041b36600461198c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b031982167f5a05180f0000000000000000000000000000000000000000000000000000000014806104ab57506104ab82610ae8565b92915050565b6060600580546104c090611bee565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90611bee565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610550338484610b4f565b50600192915050565b6000610566848484610ca8565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156106055760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61061985336106148685611b90565b610b4f565b506001949350505050565b61062e8282610ed4565b60008281526001602052604090206106469082610a5a565b505050565b6106558282610efa565b60008281526001602052604090206106469082610f82565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610550918590610614908690611b59565b6106ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6107405760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105fc565b610748610f97565b565b6107747f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610361565b6107e65760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f7665206d696e74657220726f6c6520746f206d696e740000000000000000000060648201526084016105fc565b6107f08282611033565b5050565b6107fe338261111e565b50565b600061080d833361041b565b9050818110156108845760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105fc565b61089383336106148585611b90565b610646838361111e565b6108c77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6109395760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105fc565b6107486112b0565b60008281526001602052604081206109599083611338565b9392505050565b6060600680546104c090611bee565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105fc565b610a1833856106148685611b90565b5060019392505050565b6000610550338484610ca8565b60008181526001602052604081206104ab90611344565b610655828261134e565b6107f08282611374565b6000610959836001600160a01b038416611412565b60075460ff16156106465760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016105fc565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806104ab57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104ab565b6001600160a01b038316610bca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b038216610c465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d245760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105fc565b6001600160a01b038216610da05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b610dab838383611461565b6001600160a01b03831660009081526002602052604090205481811015610e3a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105fc565b610e448282611b90565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610e7a908490611b59565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec691815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610ef0813361146c565b6106468383611374565b6001600160a01b0381163314610f785760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105fc565b6107f082826114ea565b6000610959836001600160a01b038416611569565b60075460ff16610fe95760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105fc565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105fc565b61109560008383611461565b80600460008282546110a79190611b59565b90915550506001600160a01b038216600090815260026020526040812080548392906110d4908490611b59565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661119a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b6111a682600083611461565b6001600160a01b038216600090815260026020526040902054818110156112355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b61123f8282611b90565b6001600160a01b0384166000908152600260205260408120919091556004805484929061126d908490611b90565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c9b565b60075460ff16156113035760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105fc565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110163390565b60006109598383611680565b60006104ab825490565b60008281526020819052604090206001015461136a813361146c565b61064683836114ea565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166107f0576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556113ce3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611459575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104ab565b5060006104ab565b610646838383610a6f565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166107f0576114a8816001600160a01b0316601461172f565b6114b383602061172f565b6040516020016114c4929190611aa5565b60408051601f198184030181529082905262461bcd60e51b82526105fc91600401611b26565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16156107f0576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561167657600061158d600183611b90565b85549091506000906115a190600190611b90565b905060008660000182815481106115c857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115f957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526001890190915260409020849055865487908061163a57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104ab565b60009150506104ab565b815460009082106116f95760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016105fc565b82600001828154811061171c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6060600061173e836002611b71565b611749906002611b59565b67ffffffffffffffff81111561176f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611799576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117de57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061183757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061185b846002611b71565b611866906001611b59565b90505b6001811115611907577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106118b557634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106118d957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361190081611bd7565b9050611869565b5083156109595760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105fc565b80356001600160a01b038116811461196d57600080fd5b919050565b600060208284031215611983578081fd5b61095982611956565b6000806040838503121561199e578081fd5b6119a783611956565b91506119b560208401611956565b90509250929050565b6000806000606084860312156119d2578081fd5b6119db84611956565b92506119e960208501611956565b9150604084013590509250925092565b60008060408385031215611a0b578182fd5b611a1483611956565b946020939093013593505050565b600060208284031215611a33578081fd5b5035919050565b60008060408385031215611a4c578182fd5b823591506119b560208401611956565b60008060408385031215611a6e578182fd5b50508035926020909101359150565b600060208284031215611a8e578081fd5b81356001600160e01b031981168114610959578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611add816017850160208801611ba7565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611b1a816028840160208801611ba7565b01602801949350505050565b6020815260008251806020840152611b45816040850160208701611ba7565b601f01601f19169190910160400192915050565b60008219821115611b6c57611b6c611c29565b500190565b6000816000190483118215151615611b8b57611b8b611c29565b500290565b600082821015611ba257611ba2611c29565b500390565b60005b83811015611bc2578181015183820152602001611baa565b83811115611bd1576000848401525b50505050565b600081611be657611be6611c29565b506000190190565b600181811c90821680611c0257607f821691505b60208210811415611c2357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d19ddf78a3650857250616b6017a09d7ff5944d7d9b90a51ffa656e8ed0c617364736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b446f67656e657261746f7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035055470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dogenerator
Arg [1] : _symbol (string): PUG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 446f67656e657261746f72000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5055470000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47785:194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42625:227;;;;;;:::i;:::-;;:::i;:::-;;;3769:14:1;;3762:22;3744:41;;3732:2;3717:18;42625:227:0;;;;;;;;6531:100;;;:::i;:::-;;;;;;;:::i;8698:169::-;;;;;;:::i;:::-;;:::i;7651:108::-;7739:12;;7651:108;;;3942:25:1;;;3930:2;3915:18;7651:108:0;3897:76:1;9349:422:0;;;;;;:::i;:::-;;:::i;28937:123::-;;;;;;:::i;:::-;29003:7;29030:12;;;;;;;;;;:22;;;;28937:123;43996:165;;;;;;:::i;:::-;;:::i;:::-;;7493:93;;;7576:2;12658:36:1;;12646:2;12631:18;7493:93:0;12613:87:1;44519:174:0;;;;;;:::i;:::-;;:::i;10180:215::-;;;;;;:::i;:::-;;:::i;47341:178::-;;;:::i;46532:205::-;;;;;;:::i;:::-;;:::i;15793:91::-;;;;;;:::i;:::-;;:::i;17617:86::-;17688:7;;;;17617:86;;7822:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7923:18:0;7896:7;7923:18;;;:9;:18;;;;;;;7822:127;16203:332;;;;;;:::i;:::-;;:::i;46951:172::-;;;:::i;43451:145::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3537:55:1;;;3519:74;;3507:2;3492:18;43451:145:0;3474:125:1;27935:139:0;;;;;;:::i;:::-;28013:4;28037:12;;;;;;;;;;;-1:-1:-1;;;;;28037:29:0;;;;;;;;;;;;;;;27935:139;6750:104;;;:::i;25900:49::-;;25945:4;25900:49;;10898:377;;;;;;:::i;:::-;;:::i;8162:175::-;;;;;;:::i;:::-;;:::i;43770:134::-;;;;;;:::i;:::-;;:::i;45774:62::-;;45812:24;45774:62;;44254:170;;;;;;:::i;:::-;;:::i;8400:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8516:18:0;;;8489:7;8516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8400:151;45843:62;;45881:24;45843:62;;42625:227;42710:4;-1:-1:-1;;;;;;42734:57:0;;42749:42;42734:57;;:110;;;42808:36;42832:11;42808:23;:36::i;:::-;42727:117;42625:227;-1:-1:-1;;42625:227:0:o;6531:100::-;6585:13;6618:5;6611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6531:100;:::o;8698:169::-;8781:4;8798:39;4198:10;8821:7;8830:6;8798:8;:39::i;:::-;-1:-1:-1;8855:4:0;8698:169;;;;:::o;9349:422::-;9455:4;9472:36;9482:6;9490:9;9501:6;9472:9;:36::i;:::-;-1:-1:-1;;;;;9548:19:0;;9521:24;9548:19;;;:11;:19;;;;;;;;4198:10;9548:33;;;;;;;;9600:26;;;;9592:79;;;;-1:-1:-1;;;9592:79:0;;8069:2:1;9592:79:0;;;8051:21:1;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;8218:10;8198:18;;;8191:38;8246:19;;9592:79:0;;;;;;;;;9682:57;9691:6;4198:10;9713:25;9732:6;9713:16;:25;:::i;:::-;9682:8;:57::i;:::-;-1:-1:-1;9759:4:0;;9349:422;-1:-1:-1;;;;9349:422:0:o;43996:165::-;44081:30;44097:4;44103:7;44081:15;:30::i;:::-;44122:18;;;;:12;:18;;;;;:31;;44145:7;44122:22;:31::i;:::-;;43996:165;;:::o;44519:174::-;44607:33;44626:4;44632:7;44607:18;:33::i;:::-;44651:18;;;;:12;:18;;;;;:34;;44677:7;44651:25;:34::i;10180:215::-;4198:10;10268:4;10317:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10317:34:0;;;;;;;;;;10268:4;;10285:80;;10308:7;;10317:47;;10354:10;;10317:47;:::i;47341:178::-;47394:34;45881:24;4198:10;27935:139;:::i;47394:34::-;47386:104;;;;-1:-1:-1;;;47386:104:0;;6488:2:1;47386:104:0;;;6470:21:1;6527:2;6507:18;;;6500:30;6566:34;6546:18;;;6539:62;6637:27;6617:18;;;6610:55;6682:19;;47386:104:0;6460:247:1;47386:104:0;47501:10;:8;:10::i;:::-;47341:178::o;46532:205::-;46608:34;45812:24;4198:10;27935:139;:::i;46608:34::-;46600:101;;;;-1:-1:-1;;;46600:101:0;;8478:2:1;46600:101:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;8627:24;8607:18;;;8600:52;8669:19;;46600:101:0;8450:244:1;46600:101:0;46712:17;46718:2;46722:6;46712:5;:17::i;:::-;46532:205;;:::o;15793:91::-;15849:27;4198:10;15869:6;15849:5;:27::i;:::-;15793:91;:::o;16203:332::-;16280:24;16307:32;16317:7;4198:10;8400:151;:::i;16307:32::-;16280:59;;16378:6;16358:16;:26;;16350:75;;;;-1:-1:-1;;;16350:75:0;;8901:2:1;16350:75:0;;;8883:21:1;8940:2;8920:18;;;8913:30;8979:34;8959:18;;;8952:62;9050:6;9030:18;;;9023:34;9074:19;;16350:75:0;8873:226:1;16350:75:0;16436:58;16445:7;4198:10;16468:25;16487:6;16468:16;:25;:::i;16436:58::-;16505:22;16511:7;16520:6;16505:5;:22::i;46951:172::-;47002:34;45881:24;4198:10;27935:139;:::i;47002:34::-;46994:102;;;;-1:-1:-1;;;46994:102:0;;10519:2:1;46994:102:0;;;10501:21:1;10558:2;10538:18;;;10531:30;10597:34;10577:18;;;10570:62;10668:25;10648:18;;;10641:53;10711:19;;46994:102:0;10491:245:1;46994:102:0;47107:8;:6;:8::i;43451:145::-;43533:7;43560:18;;;:12;:18;;;;;:28;;43582:5;43560:21;:28::i;:::-;43553:35;43451:145;-1:-1:-1;;;43451:145:0:o;6750:104::-;6806:13;6839:7;6832:14;;;;;:::i;10898:377::-;4198:10;10991:4;11035:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11035:34:0;;;;;;;;;;11088:35;;;;11080:85;;;;-1:-1:-1;;;11080:85:0;;10943:2:1;11080:85:0;;;10925:21:1;10982:2;10962:18;;;10955:30;11021:34;11001:18;;;10994:62;11092:7;11072:18;;;11065:35;11117:19;;11080:85:0;10915:227:1;11080:85:0;11176:67;4198:10;11199:7;11208:34;11227:15;11208:16;:34;:::i;11176:67::-;-1:-1:-1;11263:4:0;;10898:377;-1:-1:-1;;;10898:377:0:o;8162:175::-;8248:4;8265:42;4198:10;8289:9;8300:6;8265:9;:42::i;43770:134::-;43842:7;43869:18;;;:12;:18;;;;;:27;;:25;:27::i;44254:170::-;44340:31;44357:4;44363:7;44340:16;:31::i;31171:112::-;31250:25;31261:4;31267:7;31250:10;:25::i;38759:152::-;38829:4;38853:50;38858:3;-1:-1:-1;;;;;38878:23:0;;38853:4;:50::i;19396:238::-;17688:7;;;;19570:9;19562:64;;;;-1:-1:-1;;;19562:64:0;;12125:2:1;19562:64:0;;;12107:21:1;12164:2;12144:18;;;12137:30;12203:34;12183:18;;;12176:62;12274:12;12254:18;;;12247:40;12304:19;;19562:64:0;12097:232:1;27626:217:0;27711:4;-1:-1:-1;;;;;;27735:47:0;;27750:32;27735:47;;:100;;-1:-1:-1;23476:25:0;-1:-1:-1;;;;;;23461:40:0;;;27799:36;23352:157;14254:346;-1:-1:-1;;;;;14356:19:0;;14348:68;;;;-1:-1:-1;;;14348:68:0;;10114:2:1;14348:68:0;;;10096:21:1;10153:2;10133:18;;;10126:30;10192:34;10172:18;;;10165:62;10263:6;10243:18;;;10236:34;10287:19;;14348:68:0;10086:226:1;14348:68:0;-1:-1:-1;;;;;14435:21:0;;14427:68;;;;-1:-1:-1;;;14427:68:0;;6914:2:1;14427:68:0;;;6896:21:1;6953:2;6933:18;;;6926:30;6992:34;6972:18;;;6965:62;7063:4;7043:18;;;7036:32;7085:19;;14427:68:0;6886:224:1;14427:68:0;-1:-1:-1;;;;;14508:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14560:32;;3942:25:1;;;14560:32:0;;3915:18:1;14560:32:0;;;;;;;;14254:346;;;:::o;11765:604::-;-1:-1:-1;;;;;11871:20:0;;11863:70;;;;-1:-1:-1;;;11863:70:0;;9708:2:1;11863:70:0;;;9690:21:1;9747:2;9727:18;;;9720:30;9786:34;9766:18;;;9759:62;9857:7;9837:18;;;9830:35;9882:19;;11863:70:0;9680:227:1;11863:70:0;-1:-1:-1;;;;;11952:23:0;;11944:71;;;;-1:-1:-1;;;11944:71:0;;5332:2:1;11944:71:0;;;5314:21:1;5371:2;5351:18;;;5344:30;5410:34;5390:18;;;5383:62;5481:5;5461:18;;;5454:33;5504:19;;11944:71:0;5304:225:1;11944:71:0;12028:47;12049:6;12057:9;12068:6;12028:20;:47::i;:::-;-1:-1:-1;;;;;12112:17:0;;12088:21;12112:17;;;:9;:17;;;;;;12148:23;;;;12140:74;;;;-1:-1:-1;;;12140:74:0;;7317:2:1;12140:74:0;;;7299:21:1;7356:2;7336:18;;;7329:30;7395:34;7375:18;;;7368:62;7466:8;7446:18;;;7439:36;7492:19;;12140:74:0;7289:228:1;12140:74:0;12245:22;12261:6;12245:13;:22;:::i;:::-;-1:-1:-1;;;;;12225:17:0;;;;;;;:9;:17;;;;;;:42;;;;12278:20;;;;;;;;:30;;12302:6;;12225:17;12278:30;;12302:6;;12278:30;:::i;:::-;;;;;;;;12343:9;-1:-1:-1;;;;;12326:35:0;12335:6;-1:-1:-1;;;;;12326:35:0;;12354:6;12326:35;;;;3942:25:1;;3930:2;3915:18;;3897:76;12326:35:0;;;;;;;;11765:604;;;;:::o;29322:147::-;29003:7;29030:12;;;;;;;;;;:22;;;27504:30;27515:4;4198:10;27504;:30::i;:::-;29436:25:::1;29447:4;29453:7;29436:10;:25::i;30370:218::-:0;-1:-1:-1;;;;;30466:23:0;;4198:10;30466:23;30458:83;;;;-1:-1:-1;;;30458:83:0;;11349:2:1;30458:83:0;;;11331:21:1;11388:2;11368:18;;;11361:30;11427:34;11407:18;;;11400:62;11498:17;11478:18;;;11471:45;11533:19;;30458:83:0;11321:237:1;30458:83:0;30554:26;30566:4;30572:7;30554:11;:26::i;39087:158::-;39160:4;39184:53;39192:3;-1:-1:-1;;;;;39212:23:0;;39184:7;:53::i;18676:120::-;17688:7;;;;18212:41;;;;-1:-1:-1;;;18212:41:0;;5736:2:1;18212:41:0;;;5718:21:1;5775:2;5755:18;;;5748:30;5814:22;5794:18;;;5787:50;5854:18;;18212:41:0;5708:170:1;18212:41:0;18735:7:::1;:15:::0;;-1:-1:-1;;18735:15:0::1;::::0;;18766:22:::1;4198:10:::0;18775:12:::1;18766:22;::::0;-1:-1:-1;;;;;3537:55:1;;;3519:74;;3507:2;3492:18;18766:22:0::1;;;;;;;18676:120::o:0;12651:338::-;-1:-1:-1;;;;;12735:21:0;;12727:65;;;;-1:-1:-1;;;12727:65:0;;11765:2:1;12727:65:0;;;11747:21:1;11804:2;11784:18;;;11777:30;11843:33;11823:18;;;11816:61;11894:18;;12727:65:0;11737:181:1;12727:65:0;12805:49;12834:1;12838:7;12847:6;12805:20;:49::i;:::-;12883:6;12867:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12900:18:0;;;;;;:9;:18;;;;;:28;;12922:6;;12900:18;:28;;12922:6;;12900:28;:::i;:::-;;;;-1:-1:-1;;12944:37:0;;3942:25:1;;;-1:-1:-1;;;;;12944:37:0;;;12961:1;;12944:37;;3930:2:1;3915:18;12944:37:0;;;;;;;12651:338;;:::o;13322:494::-;-1:-1:-1;;;;;13406:21:0;;13398:67;;;;-1:-1:-1;;;13398:67:0;;9306:2:1;13398:67:0;;;9288:21:1;9345:2;9325:18;;;9318:30;9384:34;9364:18;;;9357:62;9455:3;9435:18;;;9428:31;9476:19;;13398:67:0;9278:223:1;13398:67:0;13478:49;13499:7;13516:1;13520:6;13478:20;:49::i;:::-;-1:-1:-1;;;;;13565:18:0;;13540:22;13565:18;;;:9;:18;;;;;;13602:24;;;;13594:71;;;;-1:-1:-1;;;13594:71:0;;6085:2:1;13594:71:0;;;6067:21:1;6124:2;6104:18;;;6097:30;6163:34;6143:18;;;6136:62;6234:4;6214:18;;;6207:32;6256:19;;13594:71:0;6057:224:1;13594:71:0;13697:23;13714:6;13697:14;:23;:::i;:::-;-1:-1:-1;;;;;13676:18:0;;;;;;:9;:18;;;;;:44;;;;13731:12;:22;;13747:6;;13676:18;13731:22;;13747:6;;13731:22;:::i;:::-;;;;-1:-1:-1;;13771:37:0;;3942:25:1;;;13797:1:0;;-1:-1:-1;;;;;13771:37:0;;;;;3930:2:1;3915:18;13771:37:0;3897:76:1;18417:118:0;17688:7;;;;17942:9;17934:38;;;;-1:-1:-1;;;17934:38:0;;7724:2:1;17934:38:0;;;7706:21:1;7763:2;7743:18;;;7736:30;7802:18;7782;;;7775:46;7838:18;;17934:38:0;7696:166:1;17934:38:0;18477:7:::1;:14:::0;;-1:-1:-1;;18477:14:0::1;18487:4;18477:14;::::0;;18507:20:::1;18514:12;4198:10:::0;;4118:98;40045:158;40119:7;40170:22;40174:3;40186:5;40170:3;:22::i;39584:117::-;39647:7;39674:19;39682:3;36341:18;;36258:109;29714:149;29003:7;29030:12;;;;;;;;;;:22;;;27504:30;27515:4;4198:10;27504;:30::i;:::-;29829:26:::1;29841:4;29847:7;29829:11;:26::i;31618:229::-:0;28013:4;28037:12;;;;;;;;;;;-1:-1:-1;;;;;28037:29:0;;;;;;;;;;;;31688:152;;31732:6;:12;;;;;;;;;;;-1:-1:-1;;;;;31732:29:0;;;;;;;;;:36;;-1:-1:-1;;31732:36:0;31764:4;31732:36;;;31815:12;4198:10;;4118:98;31815:12;-1:-1:-1;;;;;31788:40:0;31806:7;-1:-1:-1;;;;;31788:40:0;31800:4;31788:40;;;;;;;;;;31618:229;;:::o;33814:414::-;33877:4;36140:19;;;:12;;;:19;;;;;;33894:327;;-1:-1:-1;33937:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;34120:18;;34098:19;;;:12;;;:19;;;;;;:40;;;;34153:11;;33894:327;-1:-1:-1;34204:5:0;34197:12;;47527:183;47658:44;47685:4;47691:2;47695:6;47658:26;:44::i;28364:384::-;28013:4;28037:12;;;;;;;;;;;-1:-1:-1;;;;;28037:29:0;;;;;;;;;;;;28440:301;;28576:41;28604:7;-1:-1:-1;;;;;28576:41:0;28614:2;28576:19;:41::i;:::-;28674:38;28702:4;28709:2;28674:19;:38::i;:::-;28497:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28497:230:0;;;;;;;;;;-1:-1:-1;;;28483:246:0;;;;;;;:::i;31855:230::-;28013:4;28037:12;;;;;;;;;;;-1:-1:-1;;;;;28037:29:0;;;;;;;;;;;;31926:152;;;32001:5;31969:12;;;;;;;;;;;-1:-1:-1;;;;;31969:29:0;;;;;;;;;;:37;;-1:-1:-1;;31969:37:0;;;32026:40;4198:10;;31969:12;;32026:40;;32001:5;32026:40;31855:230;;:::o;34404:1553::-;34470:4;34609:19;;;:12;;;:19;;;;;;34645:15;;34641:1309;;35007:21;35031:14;35044:1;35031:10;:14;:::i;:::-;35080:18;;35007:38;;-1:-1:-1;35060:17:0;;35080:22;;35101:1;;35080:22;:::i;:::-;35060:42;;35347:17;35367:3;:11;;35379:9;35367:22;;;;;;-1:-1:-1;;;35367:22:0;;;;;;;;;;;;;;;;;35347:42;;35513:9;35484:3;:11;;35496:13;35484:26;;;;;;-1:-1:-1;;;35484:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;35590:23;;;:12;;;:23;;;;;;:36;;;35751:17;;35590:3;;35751:17;;;-1:-1:-1;;;35751:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;35846:3;:12;;:19;35859:5;35846:19;;;;;;;;;;;35839:26;;;35889:4;35882:11;;;;;;;;34641:1309;35933:5;35926:12;;;;;36711:204;36806:18;;36778:7;;36806:26;-1:-1:-1;36798:73:0;;;;-1:-1:-1;;;36798:73:0;;4568:2:1;36798:73:0;;;4550:21:1;4607:2;4587:18;;;4580:30;4646:34;4626:18;;;4619:62;4717:4;4697:18;;;4690:32;4739:19;;36798:73:0;4540:224:1;36798:73:0;36889:3;:11;;36901:5;36889:18;;;;;;-1:-1:-1;;;36889:18:0;;;;;;;;;;;;;;;;;36882:25;;36711:204;;;;:::o;21249:447::-;21324:13;21350:19;21382:10;21386:6;21382:1;:10;:::i;:::-;:14;;21395:1;21382:14;:::i;:::-;21372:25;;;;;;-1:-1:-1;;;21372:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21372:25:0;;21350:47;;21408:15;:6;21415:1;21408:9;;;;;;-1:-1:-1;;;21408:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;21408:15:0;;;;;;;;;21434;:6;21441:1;21434:9;;;;;;-1:-1:-1;;;21434:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;21434:15:0;;;;;;;;-1:-1:-1;21465:9:0;21477:10;21481:6;21477:1;:10;:::i;:::-;:14;;21490:1;21477:14;:::i;:::-;21465:26;;21460:131;21497:1;21493;:5;21460:131;;;21532:8;21541:5;21549:3;21541:11;21532:21;;;;;-1:-1:-1;;;21532:21:0;;;;;;;;;;;;21520:6;21527:1;21520:9;;;;;;-1:-1:-1;;;21520:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;21520:33:0;;;;;;;;-1:-1:-1;21578:1:0;21568:11;;;;;21500:3;;;:::i;:::-;;;21460:131;;;-1:-1:-1;21609:10:0;;21601:55;;;;-1:-1:-1;;;21601:55:0;;4971:2:1;21601:55:0;;;4953:21:1;;;4990:18;;;4983:30;5049:34;5029:18;;;5022:62;5101:18;;21601:55:0;4943:182:1;14:196;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1303:190::-;1362:6;1415:2;1403:9;1394:7;1390:23;1386:32;1383:2;;;1436:6;1428;1421:22;1383:2;-1:-1:-1;1464:23:1;;1373:120;-1:-1:-1;1373:120:1:o;1498:264::-;1566:6;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:2;;;1648:6;1640;1633:22;1595:2;1689:9;1676:23;1666:33;;1718:38;1752:2;1741:9;1737:18;1718:38;:::i;1767:258::-;1835:6;1843;1896:2;1884:9;1875:7;1871:23;1867:32;1864:2;;;1917:6;1909;1902:22;1864:2;-1:-1:-1;;1945:23:1;;;2015:2;2000:18;;;1987:32;;-1:-1:-1;1854:171:1:o;2030:352::-;2088:6;2141:2;2129:9;2120:7;2116:23;2112:32;2109:2;;;2162:6;2154;2147:22;2109:2;2206:9;2193:23;-1:-1:-1;;;;;;2249:5:1;2245:78;2238:5;2235:89;2225:2;;2343:6;2335;2328:22;2582:786;2993:25;2988:3;2981:38;2963:3;3048:6;3042:13;3064:62;3119:6;3114:2;3109:3;3105:12;3098:4;3090:6;3086:17;3064:62;:::i;:::-;3190:19;3185:2;3145:16;;;3177:11;;;3170:40;3235:13;;3257:63;3235:13;3306:2;3298:11;;3291:4;3279:17;;3257:63;:::i;:::-;3340:17;3359:2;3336:26;;2971:397;-1:-1:-1;;;;2971:397:1:o;3978:383::-;4127:2;4116:9;4109:21;4090:4;4159:6;4153:13;4202:6;4197:2;4186:9;4182:18;4175:34;4218:66;4277:6;4272:2;4261:9;4257:18;4252:2;4244:6;4240:15;4218:66;:::i;:::-;4345:2;4324:15;-1:-1:-1;;4320:29:1;4305:45;;;;4352:2;4301:54;;4099:262;-1:-1:-1;;4099:262:1:o;12705:128::-;12745:3;12776:1;12772:6;12769:1;12766:13;12763:2;;;12782:18;;:::i;:::-;-1:-1:-1;12818:9:1;;12753:80::o;12838:168::-;12878:7;12944:1;12940;12936:6;12932:14;12929:1;12926:21;12921:1;12914:9;12907:17;12903:45;12900:2;;;12951:18;;:::i;:::-;-1:-1:-1;12991:9:1;;12890:116::o;13011:125::-;13051:4;13079:1;13076;13073:8;13070:2;;;13084:18;;:::i;:::-;-1:-1:-1;13121:9:1;;13060:76::o;13141:258::-;13213:1;13223:113;13237:6;13234:1;13231:13;13223:113;;;13313:11;;;13307:18;13294:11;;;13287:39;13259:2;13252:10;13223:113;;;13354:6;13351:1;13348:13;13345:2;;;13389:1;13380:6;13375:3;13371:16;13364:27;13345:2;;13194:205;;;:::o;13404:136::-;13443:3;13471:5;13461:2;;13480:18;;:::i;:::-;-1:-1:-1;;;13516:18:1;;13451:89::o;13545:437::-;13624:1;13620:12;;;;13667;;;13688:2;;13742:4;13734:6;13730:17;13720:27;;13688:2;13795;13787:6;13784:14;13764:18;13761:38;13758:2;;;-1:-1:-1;;;13829:1:1;13822:88;13933:4;13930:1;13923:15;13961:4;13958:1;13951:15;13758:2;;13600:382;;;:::o;13987:184::-;-1:-1:-1;;;14036:1:1;14029:88;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15

Swarm Source

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