ETH Price: $2,503.25 (-5.97%)

Token

( (DEL))
 

Overview

Max Total Supply

417,424.11922212322222212 DEL

Holders

40 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH (-15.84%)

Onchain Market Cap

$605.59

Circulating Supply Market Cap

$16,134,159.22

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jaredfromsubway: MEV Bot
Balance
0.000000000000131329 DEL

Value
$0.00 ( ~0 Eth) [0.0000%]
0x6b75d8af000000e20b7a7ddf000ba900b4009a80
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$2,851.04
Market Capitalization:$16,134,159.22
Circulating Supply:11,121,003,896.00 DEL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : DERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.4;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

contract DERC20 is ERC20Pausable, AccessControl {
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    address private owner;
    string private _name;

    mapping(address => bool) public isBlockListed;

    event AddedBlockList(address user);
    event RemovedBlockList(address user);

    constructor(string memory symbol) ERC20("", symbol) {
        owner = msg.sender;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(ADMIN_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
        _setupRole(BURNER_ROLE, msg.sender);
        _setRoleAdmin(MINTER_ROLE, ADMIN_ROLE);
        _setRoleAdmin(BURNER_ROLE, ADMIN_ROLE);
        _setRoleAdmin(PAUSER_ROLE, ADMIN_ROLE);
    }

    /**
     * @dev Returns the owner of the token.
     * Binance Smart Chain BEP20 compatibility
     */
    function getOwner() external view returns (address) {
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Mint token
     *
     * Requirements
     *
     * - `to` recipient address.
     * - `amount` amount of tokens.
     */
    function mint(address to, uint256 amount) external {
        require(
            hasRole(MINTER_ROLE, msg.sender),
            "You should have a minter role"
        );
        _mint(to, amount);
    }

    /**
     * @dev Burn token
     *
     * Requirements
     *
     * - `from` address of user.
     * - `amount` amount of tokens.
     */
    function burn(address from, uint256 amount) external {
        require(
            hasRole(BURNER_ROLE, msg.sender),
            "You should have a burner role"
        );
        _burn(from, amount);
    }

    /**
     * @dev Pause token
     */
    function pause() external {
        require(
            hasRole(PAUSER_ROLE, msg.sender),
            "You should have a pauser role"
        );
        super._pause();
    }

    /**
     * @dev Pause token
     */
    function unpause() external {
        require(
            hasRole(PAUSER_ROLE, msg.sender),
            "You should have a pauser role"
        );
        super._unpause();
    }

    /**
     * @dev Add user address to blocklist
     *
     * Requirements
     *
     * - `user` address of user.
     */
    function addBlockList(address user) external {
        require(
            hasRole(ADMIN_ROLE, msg.sender),
            "You should have an admin role"
        );
        isBlockListed[user] = true;
        emit AddedBlockList(user);
    }

    /**
     * @dev Remove user address from blocklist
     *
     * Requirements
     *
     * - `user` address of user.
     */
    function removeBlockList(address user) external {
        require(
            hasRole(ADMIN_ROLE, msg.sender),
            "You should have an admin role"
        );
        isBlockListed[user] = false;

        emit RemovedBlockList(user);
    }

    /**
     * @dev Update name of token
     *
     * Requirements
     *
     * - `name_` name of token
     */
    function updateName(string memory name_) external {
        require(
            hasRole(ADMIN_ROLE, msg.sender),
            "You should have an admin role"
        );
        _name = name_;
    }

    /**
     * @dev check blocklist when token minted, burned or transfered
     *
     * Requirements
     *
     * - `from` source address
     * - `to` destination address
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        ERC20Pausable._beforeTokenTransfer(from, to, amount);
        require(isBlockListed[from] == false, "Address from is blocklisted");
        require(isBlockListed[to] == false, "Address to is blocklisted");
    }
}

File 2 of 11 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../security/Pausable.sol";

/**
 * @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 3 of 11 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @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 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 5 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 6 of 11 : 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 7 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT

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 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

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 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"AddedBlockList","type":"event"},{"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":false,"internalType":"address","name":"user","type":"address"}],"name":"RemovedBlockList","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":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"user","type":"address"}],"name":"addBlockList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"","type":"address"}],"name":"isBlockListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"user","type":"address"}],"name":"removeBlockList","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"updateName","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001ff538038062001ff5833981016040819052620000349162000354565b6040805160208101918290526000808252909183916200005791600391620002ae565b5080516200006d906004906020840190620002ae565b50506005805460ff1916905550600780546001600160a01b031916339081179091556200009d90600090620001a6565b620000b860008051602062001fd583398151915233620001a6565b620000d360008051602062001fb583398151915233620001a6565b620000ff7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620001a6565b6200012960008051602062001fb583398151915260008051602062001fd5833981519152620001b6565b620001647f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84860008051602062001fd5833981519152620001b6565b6200019f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a60008051602062001fd5833981519152620001b6565b506200047d565b620001b282826200020a565b5050565b600082815260066020526040902060010154819060405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526006602052604090912060010155565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001b25760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200026a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002bc906200042a565b90600052602060002090601f016020900481019282620002e057600085556200032b565b82601f10620002fb57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032b5782518255916020019190600101906200030e565b50620003399291506200033d565b5090565b5b808211156200033957600081556001016200033e565b6000602080838503121562000367578182fd5b82516001600160401b03808211156200037e578384fd5b818501915085601f83011262000392578384fd5b815181811115620003a757620003a762000467565b604051601f8201601f19908116603f01168101908382118183101715620003d257620003d262000467565b816040528281528886848701011115620003ea578687fd5b8693505b828410156200040d5784840186015181850187015292850192620003ee565b828411156200041e57868684830101525b98975050505050505050565b600181811c908216806200043f57607f821691505b602082108114156200046157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b28806200048d6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806375b238fc1161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f14610451578063dd62ed3e14610464578063e63ab1e91461049d578063f3ece9f4146104c457600080fd5b8063a457c2d7146103e1578063a9059cbb146103f4578063b2c1e0de14610407578063d53913931461042a57600080fd5b806391d14854116100de57806391d14854146103ab57806395d89b41146103be5780639dc29fac146103c6578063a217fddf146103d957600080fd5b806375b238fc146103605780638456cb591461037557806384da92a71461037d578063893d20e81461039057600080fd5b8063313ce5671161018757806340c10f191161015657806340c10f191461030657806359b0d931146103195780635c975abb1461032c57806370a082311461033757600080fd5b8063313ce567146102c957806336568abe146102d857806339509351146102eb5780633f4ba83a146102fe57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a578063282c51f31461028d5780632f2ff15d146102b457600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611825565b6104d7565b60405190151581526020015b60405180910390f35b61022561050e565b604051610214919061196c565b6102086102403660046117c2565b6105a0565b6002545b604051908152602001610214565b610208610265366004611787565b6105b6565b6102496102783660046117eb565b60009081526006602052604090206001015490565b6102497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102c76102c2366004611803565b61066c565b005b60405160128152602001610214565b6102c76102e6366004611803565b610697565b6102086102f93660046117c2565b610715565b6102c761074c565b6102c76103143660046117c2565b6107cc565b6102c761032736600461173b565b61084c565b60055460ff16610208565b61024961034536600461173b565b6001600160a01b031660009081526020819052604090205490565b610249600080516020611ad383398151915281565b6102c76108d8565b6102c761038b36600461184d565b610956565b6007546040516001600160a01b039091168152602001610214565b6102086103b9366004611803565b61099d565b6102256109c8565b6102c76103d43660046117c2565b6109d7565b610249600081565b6102086103ef3660046117c2565b610a57565b6102086104023660046117c2565b610af2565b61020861041536600461173b565b60096020526000908152604090205460ff1681565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c761045f366004611803565b610aff565b610249610472366004611755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102c76104d236600461173b565b610b25565b60006001600160e01b03198216637965db0b60e01b148061050857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606008805461051d90611a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611a6b565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610bad565b50600192915050565b60006105c3848484610cd2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610661853361065c8685611a0d565b610bad565b506001949350505050565b6000828152600660205260409020600101546106888133610eb5565b6106928383610f19565b505050565b6001600160a01b03811633146107075760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610644565b6107118282610f9f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061065c9086906119d6565b6107767f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b6107c25760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611006565b565b6107f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361099d565b6108425760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206d696e74657220726f6c650000006044820152606401610644565b6107118282611099565b610864600080516020611ad38339815191523361099d565b6108805760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f64f3db07cedf69b1588bdddf3689a1c99e7e1af2049db54db4d76e10836636c391015b60405180910390a150565b6109027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b61094e5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611184565b61096e600080516020611ad38339815191523361099d565b61098a5760405162461bcd60e51b81526004016106449061199f565b8051610711906008906020840190611686565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461051d90611a6b565b610a017f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483361099d565b610a4d5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206275726e657220726f6c650000006044820152606401610644565b61071182826111ff565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610644565b610ae8338561065c8685611a0d565b5060019392505050565b60006105ad338484610cd2565b600082815260066020526040902060010154610b1b8133610eb5565b6106928383610f9f565b610b3d600080516020611ad38339815191523361099d565b610b595760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f21d3d97349e331a2f8311b5ea84fc5316e4f6e2b39272964198931507316883091016108cd565b6001600160a01b038316610c0f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610644565b6001600160a01b038216610c705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610644565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610644565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610644565b610da383838361135a565b6001600160a01b03831660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610644565b610e258282611a0d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e5b9084906119d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea791815260200190565b60405180910390a350505050565b610ebf828261099d565b61071157610ed7816001600160a01b03166014611437565b610ee2836020611437565b604051602001610ef39291906118f7565b60408051601f198184030181529082905262461bcd60e51b82526106449160040161196c565b610f23828261099d565b6107115760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610f5b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fa9828261099d565b156107115760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff1661104f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610644565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b6110fb6000838361135a565b806002600082825461110d91906119d6565b90915550506001600160a01b0382166000908152602081905260408120805483929061113a9084906119d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156111ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610644565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861107c3390565b6001600160a01b03821661125f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610644565b61126b8260008361135a565b6001600160a01b038216600090815260208190526040902054818110156112df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610644565b6112e98282611a0d565b6001600160a01b03841660009081526020819052604081209190915560028054849290611317908490611a0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc5565b611365838383611620565b6001600160a01b03831660009081526009602052604090205460ff16156113ce5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732066726f6d20697320626c6f636b6c697374656400000000006044820152606401610644565b6001600160a01b03821660009081526009602052604090205460ff16156106925760405162461bcd60e51b815260206004820152601960248201527f4164647265737320746f20697320626c6f636b6c6973746564000000000000006044820152606401610644565b606060006114468360026119ee565b6114519060026119d6565b67ffffffffffffffff81111561147757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a1576020820181803683370190505b509050600360fc1b816000815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061150757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061152b8460026119ee565b6115369060016119d6565b90505b60018111156115ca576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061157857634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061159c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936115c381611a54565b9050611539565b5083156116195760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610644565b9392505050565b60055460ff16156106925760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610644565b82805461169290611a6b565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b80356001600160a01b038116811461173657600080fd5b919050565b60006020828403121561174c578081fd5b6116198261171f565b60008060408385031215611767578081fd5b6117708361171f565b915061177e6020840161171f565b90509250929050565b60008060006060848603121561179b578081fd5b6117a48461171f565b92506117b26020850161171f565b9150604084013590509250925092565b600080604083850312156117d4578182fd5b6117dd8361171f565b946020939093013593505050565b6000602082840312156117fc578081fd5b5035919050565b60008060408385031215611815578182fd5b8235915061177e6020840161171f565b600060208284031215611836578081fd5b81356001600160e01b031981168114611619578182fd5b60006020828403121561185e578081fd5b813567ffffffffffffffff80821115611875578283fd5b818401915084601f830112611888578283fd5b81358181111561189a5761189a611abc565b604051601f8201601f19908116603f011681019083821181831017156118c2576118c2611abc565b816040528281528760208487010111156118da578586fd5b826020860160208301379182016020019490945295945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161192f816017850160208801611a24565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611960816028840160208801611a24565b01602801949350505050565b602081526000825180602084015261198b816040850160208701611a24565b601f01601f19169190910160400192915050565b6020808252601d908201527f596f752073686f756c64206861766520616e2061646d696e20726f6c65000000604082015260600190565b600082198211156119e9576119e9611aa6565b500190565b6000816000190483118215151615611a0857611a08611aa6565b500290565b600082821015611a1f57611a1f611aa6565b500390565b60005b83811015611a3f578181015183820152602001611a27565b83811115611a4e576000848401525b50505050565b600081611a6357611a63611aa6565b506000190190565b600181811c90821680611a7f57607f821691505b60208210811415611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122009487b43c4dd17660d2fe34bd9258c3f7a32b7c9f4a18173ef9f0ba08b5bec1464736f6c634300080400339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217750000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000344454c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806375b238fc1161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f14610451578063dd62ed3e14610464578063e63ab1e91461049d578063f3ece9f4146104c457600080fd5b8063a457c2d7146103e1578063a9059cbb146103f4578063b2c1e0de14610407578063d53913931461042a57600080fd5b806391d14854116100de57806391d14854146103ab57806395d89b41146103be5780639dc29fac146103c6578063a217fddf146103d957600080fd5b806375b238fc146103605780638456cb591461037557806384da92a71461037d578063893d20e81461039057600080fd5b8063313ce5671161018757806340c10f191161015657806340c10f191461030657806359b0d931146103195780635c975abb1461032c57806370a082311461033757600080fd5b8063313ce567146102c957806336568abe146102d857806339509351146102eb5780633f4ba83a146102fe57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a578063282c51f31461028d5780632f2ff15d146102b457600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611825565b6104d7565b60405190151581526020015b60405180910390f35b61022561050e565b604051610214919061196c565b6102086102403660046117c2565b6105a0565b6002545b604051908152602001610214565b610208610265366004611787565b6105b6565b6102496102783660046117eb565b60009081526006602052604090206001015490565b6102497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102c76102c2366004611803565b61066c565b005b60405160128152602001610214565b6102c76102e6366004611803565b610697565b6102086102f93660046117c2565b610715565b6102c761074c565b6102c76103143660046117c2565b6107cc565b6102c761032736600461173b565b61084c565b60055460ff16610208565b61024961034536600461173b565b6001600160a01b031660009081526020819052604090205490565b610249600080516020611ad383398151915281565b6102c76108d8565b6102c761038b36600461184d565b610956565b6007546040516001600160a01b039091168152602001610214565b6102086103b9366004611803565b61099d565b6102256109c8565b6102c76103d43660046117c2565b6109d7565b610249600081565b6102086103ef3660046117c2565b610a57565b6102086104023660046117c2565b610af2565b61020861041536600461173b565b60096020526000908152604090205460ff1681565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c761045f366004611803565b610aff565b610249610472366004611755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102c76104d236600461173b565b610b25565b60006001600160e01b03198216637965db0b60e01b148061050857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606008805461051d90611a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611a6b565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610bad565b50600192915050565b60006105c3848484610cd2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610661853361065c8685611a0d565b610bad565b506001949350505050565b6000828152600660205260409020600101546106888133610eb5565b6106928383610f19565b505050565b6001600160a01b03811633146107075760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610644565b6107118282610f9f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061065c9086906119d6565b6107767f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b6107c25760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611006565b565b6107f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361099d565b6108425760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206d696e74657220726f6c650000006044820152606401610644565b6107118282611099565b610864600080516020611ad38339815191523361099d565b6108805760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f64f3db07cedf69b1588bdddf3689a1c99e7e1af2049db54db4d76e10836636c391015b60405180910390a150565b6109027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b61094e5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611184565b61096e600080516020611ad38339815191523361099d565b61098a5760405162461bcd60e51b81526004016106449061199f565b8051610711906008906020840190611686565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461051d90611a6b565b610a017f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483361099d565b610a4d5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206275726e657220726f6c650000006044820152606401610644565b61071182826111ff565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610644565b610ae8338561065c8685611a0d565b5060019392505050565b60006105ad338484610cd2565b600082815260066020526040902060010154610b1b8133610eb5565b6106928383610f9f565b610b3d600080516020611ad38339815191523361099d565b610b595760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f21d3d97349e331a2f8311b5ea84fc5316e4f6e2b39272964198931507316883091016108cd565b6001600160a01b038316610c0f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610644565b6001600160a01b038216610c705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610644565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610644565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610644565b610da383838361135a565b6001600160a01b03831660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610644565b610e258282611a0d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e5b9084906119d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea791815260200190565b60405180910390a350505050565b610ebf828261099d565b61071157610ed7816001600160a01b03166014611437565b610ee2836020611437565b604051602001610ef39291906118f7565b60408051601f198184030181529082905262461bcd60e51b82526106449160040161196c565b610f23828261099d565b6107115760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610f5b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fa9828261099d565b156107115760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff1661104f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610644565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b6110fb6000838361135a565b806002600082825461110d91906119d6565b90915550506001600160a01b0382166000908152602081905260408120805483929061113a9084906119d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156111ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610644565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861107c3390565b6001600160a01b03821661125f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610644565b61126b8260008361135a565b6001600160a01b038216600090815260208190526040902054818110156112df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610644565b6112e98282611a0d565b6001600160a01b03841660009081526020819052604081209190915560028054849290611317908490611a0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc5565b611365838383611620565b6001600160a01b03831660009081526009602052604090205460ff16156113ce5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732066726f6d20697320626c6f636b6c697374656400000000006044820152606401610644565b6001600160a01b03821660009081526009602052604090205460ff16156106925760405162461bcd60e51b815260206004820152601960248201527f4164647265737320746f20697320626c6f636b6c6973746564000000000000006044820152606401610644565b606060006114468360026119ee565b6114519060026119d6565b67ffffffffffffffff81111561147757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a1576020820181803683370190505b509050600360fc1b816000815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061150757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061152b8460026119ee565b6115369060016119d6565b90505b60018111156115ca576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061157857634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061159c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936115c381611a54565b9050611539565b5083156116195760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610644565b9392505050565b60055460ff16156106925760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610644565b82805461169290611a6b565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b80356001600160a01b038116811461173657600080fd5b919050565b60006020828403121561174c578081fd5b6116198261171f565b60008060408385031215611767578081fd5b6117708361171f565b915061177e6020840161171f565b90509250929050565b60008060006060848603121561179b578081fd5b6117a48461171f565b92506117b26020850161171f565b9150604084013590509250925092565b600080604083850312156117d4578182fd5b6117dd8361171f565b946020939093013593505050565b6000602082840312156117fc578081fd5b5035919050565b60008060408385031215611815578182fd5b8235915061177e6020840161171f565b600060208284031215611836578081fd5b81356001600160e01b031981168114611619578182fd5b60006020828403121561185e578081fd5b813567ffffffffffffffff80821115611875578283fd5b818401915084601f830112611888578283fd5b81358181111561189a5761189a611abc565b604051601f8201601f19908116603f011681019083821181831017156118c2576118c2611abc565b816040528281528760208487010111156118da578586fd5b826020860160208301379182016020019490945295945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161192f816017850160208801611a24565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611960816028840160208801611a24565b01602801949350505050565b602081526000825180602084015261198b816040850160208701611a24565b601f01601f19169190910160400192915050565b6020808252601d908201527f596f752073686f756c64206861766520616e2061646d696e20726f6c65000000604082015260600190565b600082198211156119e9576119e9611aa6565b500190565b6000816000190483118215151615611a0857611a08611aa6565b500290565b600082821015611a1f57611a1f611aa6565b500390565b60005b83811015611a3f578181015183820152602001611a27565b83811115611a4e576000848401525b50505050565b600081611a6357611a63611aa6565b506000190190565b600181811c90821680611a7f57607f821691505b60208210811415611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122009487b43c4dd17660d2fe34bd9258c3f7a32b7c9f4a18173ef9f0ba08b5bec1464736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000344454c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : symbol (string): DEL

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 44454c0000000000000000000000000000000000000000000000000000000000


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.