BNB Price: $695.61 (-2.02%)
Gas: 1 GWei
 

Overview

Max Total Supply

42,252,777.777777KART

Holders

12,769 (0.00%)

Market

Price

$0.0046 @ 0.000007 BNB

Onchain Market Cap

$192,570.25

Circulating Supply Market Cap

$189,595.45

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
USD Coin: USDC Token
Balance
50 KART

Value
$0.23 ( ~0.000330645433068987 BNB) [0.0001%]
0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dragon Kart is a 3D Play-to-Earn battle racing game built on BSC, the characters in the game are taken from a Pikalong comics series by a Vietnamese well-known artist Thang Fly.

Market

Volume (24H):$0.00
Market Capitalization:$189,595.45
Circulating Supply:41,600,061.00 KART
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
DragonKart

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : DragonKart.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.8;

import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";

contract DragonKart is
    AccessControlEnumerable,
    ERC20Burnable,
    ERC20Pausable,
    ERC20Capped
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    constructor(string memory name_, string memory symbol_)
        ERC20(name_, symbol_)
        ERC20Capped(100000000 * 10**18)
    {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function mint(address to_, uint256 amount_) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "Token: must have minter role to mint"
        );
        require(amount_ > 0, "mint: Invalid amount");
        _mint(to_, amount_);
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount)
        internal
        override(ERC20, ERC20Capped)
    {
        ERC20Capped._mint(account, amount);
    }

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

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

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20, ERC20Pausable) {
        ERC20Pausable._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 17 : AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";

/**
 * @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(AccessControl, IAccessControl) {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

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

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        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 3 of 17 : IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @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) external view returns (address);

    /**
     * @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) external view returns (uint256);
}

File 4 of 17 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @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) external;

    /**
     * @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) external;

    /**
     * @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) external;
}

File 5 of 17 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @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 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]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _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]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    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 {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, 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 6 of 17 : 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) {
        return msg.data;
    }
}

File 7 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 17 : 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 9 of 17 : 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);
}

File 10 of 17 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

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;

            if (lastIndex != toDeleteIndex) {
                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) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 11 of 17 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @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");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 12 of 17 : 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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

File 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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 16 of 17 : 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 17 of 17 : ERC20Capped.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

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

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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60a06040523480156200001157600080fd5b5060405162001f4f38038062001f4f833981016040819052620000349162000417565b6a52b7d2dcc80cd2e4000000828281600590805190602001906200005a929190620002a4565b50805162000070906006906020840190620002a4565b50506007805460ff191690555080620000cf5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b608052620000df6000336200013f565b6200010b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200013f565b620001377f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200013f565b5050620004be565b6200015682826200018260201b62000a201760201c565b60008281526001602090815260409091206200017d91839062000a2a62000192821b17901c565b505050565b6200018e8282620001b2565b5050565b6000620001a9836001600160a01b03841662000252565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200018e576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200020e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546200029b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001ac565b506000620001ac565b828054620002b29062000481565b90600052602060002090601f016020900481019282620002d6576000855562000321565b82601f10620002f157805160ff191683800117855562000321565b8280016001018555821562000321579182015b828111156200032157825182559160200191906001019062000304565b506200032f92915062000333565b5090565b5b808211156200032f576000815560010162000334565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200037257600080fd5b81516001600160401b03808211156200038f576200038f6200034a565b604051601f8301601f19908116603f01168101908282118183101715620003ba57620003ba6200034a565b81604052838152602092508683858801011115620003d757600080fd5b600091505b83821015620003fb5785820183015181830184015290820190620003dc565b838211156200040d5760008385830101525b9695505050505050565b600080604083850312156200042b57600080fd5b82516001600160401b03808211156200044357600080fd5b620004518683870162000360565b935060208501519150808211156200046857600080fd5b50620004778582860162000360565b9150509250929050565b600181811c908216806200049657607f821691505b60208210811415620004b857634e487b7160e01b600052602260045260246000fd5b50919050565b608051611a6e620004e16000396000818161029201526113720152611a6e6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d5391393146103e0578063d547741f14610407578063dd62ed3e1461041a578063e63ab1e91461045357600080fd5b8063a217fddf1461039f578063a457c2d7146103a7578063a9059cbb146103ba578063ca15c873146103cd57600080fd5b80638456cb59116100de5780638456cb59146103515780639010d07c1461035957806391d148541461038457806395d89b411461039757600080fd5b80635c975abb1461030a57806370a082311461031557806379cc67901461033e57600080fd5b8063313ce56711610171578063395093511161014b57806339509351146102c95780633f4ba83a146102dc57806340c10f19146102e457806342966c68146102f757600080fd5b8063313ce56714610281578063355274ea1461029057806336568abe146102b657600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e2366004611714565b61047a565b60405190151581526020015b60405180910390f35b6102046104a5565b6040516101f3919061176a565b6101e761021f3660046117b9565b610537565b6004545b6040519081526020016101f3565b6101e76102443660046117e3565b61054d565b61022861025736600461181f565b60009081526020819052604090206001015490565b61027f61027a366004611838565b6105fc565b005b604051601281526020016101f3565b7f0000000000000000000000000000000000000000000000000000000000000000610228565b61027f6102c4366004611838565b610623565b6101e76102d73660046117b9565b610645565b61027f610681565b61027f6102f23660046117b9565b610711565b61027f61030536600461181f565b6107e8565b60075460ff166101e7565b610228610323366004611864565b6001600160a01b031660009081526002602052604090205490565b61027f61034c3660046117b9565b6107f5565b61027f610876565b61036c61036736600461187f565b610902565b6040516001600160a01b0390911681526020016101f3565b6101e7610392366004611838565b610921565b61020461094a565b610228600081565b6101e76103b53660046117b9565b610959565b6101e76103c83660046117b9565b6109f2565b6102286103db36600461181f565b6109ff565b6102287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f610415366004611838565b610a16565b6102286104283660046118a1565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102287f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82610a3f565b92915050565b6060600580546104b4906118cb565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906118cb565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610a74565b50600192915050565b600061055a848484610b98565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105f18533858403610a74565b506001949350505050565b6106068282610d73565b600082815260016020526040902061061e9082610a2a565b505050565b61062d8282610d99565b600082815260016020526040902061061e9082610e13565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161054491859061067c90869061191c565b610a74565b6106ab7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610921565b6107075760405162461bcd60e51b815260206004820152602760248201527f546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20604482015266756e706175736560c81b60648201526084016105db565b61070f610e28565b565b61073b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610921565b6107935760405162461bcd60e51b8152602060048201526024808201527f546f6b656e3a206d7573742068617665206d696e74657220726f6c6520746f206044820152631b5a5b9d60e21b60648201526084016105db565b600081116107da5760405162461bcd60e51b81526020600482015260146024820152731b5a5b9d0e88125b9d985b1a5908185b5bdd5b9d60621b60448201526064016105db565b6107e48282610ebb565b5050565b6107f23382610ec5565b50565b60006108018333610428565b90508181101561085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105db565b61086c8333848403610a74565b61061e8383610ec5565b6108a07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610921565b6108fa5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20604482015264706175736560d81b60648201526084016105db565b61070f61101f565b600082815260016020526040812061091a908361109a565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546104b4906118cb565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105db565b6109e83385858403610a74565b5060019392505050565b6000610544338484610b98565b600081815260016020526040812061049f906110a6565b61062d82826110b0565b6107e482826110d6565b600061091a836001600160a01b03841661115a565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316610ad65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610b375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bfc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610c5e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b610c698383836111a9565b6001600160a01b03831660009081526002602052604090205481811015610ce15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105db565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610d1890849061191c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6491815260200190565b60405180910390a35b50505050565b600082815260208190526040902060010154610d8f81336111b4565b61061e83836110d6565b6001600160a01b0381163314610e095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105db565b6107e48282611218565b600061091a836001600160a01b03841661127d565b60075460ff16610e715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105db565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6107e48282611370565b6001600160a01b038216610f255760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105db565b610f31826000836111a9565b6001600160a01b03821660009081526002602052604090205481811015610fa55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105db565b6001600160a01b0383166000908152600260205260408120838303905560048054849290610fd4908490611934565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156110655760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105db565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e9e3390565b600061091a83836113fd565b600061049f825490565b6000828152602081905260409020600101546110cc81336111b4565b61061e8383611218565b6110e08282610921565b6107e4576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111163390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546111a15750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b61061e838383611427565b6111be8282610921565b6107e4576111d6816001600160a01b0316601461148d565b6111e183602061148d565b6040516020016111f292919061194b565b60408051601f198184030181529082905262461bcd60e51b82526105db9160040161176a565b6112228282610921565b156107e4576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156113665760006112a1600183611934565b85549091506000906112b590600190611934565b905081811461131a5760008660000182815481106112d5576112d56119c0565b90600052602060002001549050808760000184815481106112f8576112f86119c0565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061132b5761132b6119d6565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b7f00000000000000000000000000000000000000000000000000000000000000008161139b60045490565b6113a5919061191c565b11156113f35760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105db565b6107e48282611629565b6000826000018281548110611414576114146119c0565b9060005260206000200154905092915050565b60075460ff161561061e5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105db565b6060600061149c8360026119ec565b6114a790600261191c565b67ffffffffffffffff8111156114bf576114bf611a0b565b6040519080825280601f01601f1916602001820160405280156114e9576020820181803683370190505b509050600360fc1b81600081518110611504576115046119c0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611533576115336119c0565b60200101906001600160f81b031916908160001a90535060006115578460026119ec565b61156290600161191c565b90505b60018111156115da576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611596576115966119c0565b1a60f81b8282815181106115ac576115ac6119c0565b60200101906001600160f81b031916908160001a90535060049490941c936115d381611a21565b9050611565565b50831561091a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105db565b6001600160a01b03821661167f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105db565b61168b600083836111a9565b806004600082825461169d919061191c565b90915550506001600160a01b038216600090815260026020526040812080548392906116ca90849061191c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561172657600080fd5b81356001600160e01b03198116811461091a57600080fd5b60005b83811015611759578181015183820152602001611741565b83811115610d6d5750506000910152565b602081526000825180602084015261178981604085016020870161173e565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146117b457600080fd5b919050565b600080604083850312156117cc57600080fd5b6117d58361179d565b946020939093013593505050565b6000806000606084860312156117f857600080fd5b6118018461179d565b925061180f6020850161179d565b9150604084013590509250925092565b60006020828403121561183157600080fd5b5035919050565b6000806040838503121561184b57600080fd5b8235915061185b6020840161179d565b90509250929050565b60006020828403121561187657600080fd5b61091a8261179d565b6000806040838503121561189257600080fd5b50508035926020909101359150565b600080604083850312156118b457600080fd5b6118bd8361179d565b915061185b6020840161179d565b600181811c908216806118df57607f821691505b6020821081141561190057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561192f5761192f611906565b500190565b60008282101561194657611946611906565b500390565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161198381601785016020880161173e565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516119b481602884016020880161173e565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615611a0657611a06611906565b500290565b634e487b7160e01b600052604160045260246000fd5b600081611a3057611a30611906565b50600019019056fea26469706673582212201663e9d1644e52ea27d5a4fc9f2f0d42c571b80c2a829fa0abdc48c4e068f4e264736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b447261676f6e204b61727400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b41525400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d5391393146103e0578063d547741f14610407578063dd62ed3e1461041a578063e63ab1e91461045357600080fd5b8063a217fddf1461039f578063a457c2d7146103a7578063a9059cbb146103ba578063ca15c873146103cd57600080fd5b80638456cb59116100de5780638456cb59146103515780639010d07c1461035957806391d148541461038457806395d89b411461039757600080fd5b80635c975abb1461030a57806370a082311461031557806379cc67901461033e57600080fd5b8063313ce56711610171578063395093511161014b57806339509351146102c95780633f4ba83a146102dc57806340c10f19146102e457806342966c68146102f757600080fd5b8063313ce56714610281578063355274ea1461029057806336568abe146102b657600080fd5b806318160ddd116101ad57806318160ddd1461022457806323b872dd14610236578063248a9ca3146102495780632f2ff15d1461026c57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063095ea7b314610211575b600080fd5b6101e76101e2366004611714565b61047a565b60405190151581526020015b60405180910390f35b6102046104a5565b6040516101f3919061176a565b6101e761021f3660046117b9565b610537565b6004545b6040519081526020016101f3565b6101e76102443660046117e3565b61054d565b61022861025736600461181f565b60009081526020819052604090206001015490565b61027f61027a366004611838565b6105fc565b005b604051601281526020016101f3565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000610228565b61027f6102c4366004611838565b610623565b6101e76102d73660046117b9565b610645565b61027f610681565b61027f6102f23660046117b9565b610711565b61027f61030536600461181f565b6107e8565b60075460ff166101e7565b610228610323366004611864565b6001600160a01b031660009081526002602052604090205490565b61027f61034c3660046117b9565b6107f5565b61027f610876565b61036c61036736600461187f565b610902565b6040516001600160a01b0390911681526020016101f3565b6101e7610392366004611838565b610921565b61020461094a565b610228600081565b6101e76103b53660046117b9565b610959565b6101e76103c83660046117b9565b6109f2565b6102286103db36600461181f565b6109ff565b6102287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f610415366004611838565b610a16565b6102286104283660046118a1565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102287f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82610a3f565b92915050565b6060600580546104b4906118cb565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906118cb565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610a74565b50600192915050565b600061055a848484610b98565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105f18533858403610a74565b506001949350505050565b6106068282610d73565b600082815260016020526040902061061e9082610a2a565b505050565b61062d8282610d99565b600082815260016020526040902061061e9082610e13565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161054491859061067c90869061191c565b610a74565b6106ab7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610921565b6107075760405162461bcd60e51b815260206004820152602760248201527f546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20604482015266756e706175736560c81b60648201526084016105db565b61070f610e28565b565b61073b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610921565b6107935760405162461bcd60e51b8152602060048201526024808201527f546f6b656e3a206d7573742068617665206d696e74657220726f6c6520746f206044820152631b5a5b9d60e21b60648201526084016105db565b600081116107da5760405162461bcd60e51b81526020600482015260146024820152731b5a5b9d0e88125b9d985b1a5908185b5bdd5b9d60621b60448201526064016105db565b6107e48282610ebb565b5050565b6107f23382610ec5565b50565b60006108018333610428565b90508181101561085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105db565b61086c8333848403610a74565b61061e8383610ec5565b6108a07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610921565b6108fa5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20604482015264706175736560d81b60648201526084016105db565b61070f61101f565b600082815260016020526040812061091a908361109a565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546104b4906118cb565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105db565b6109e83385858403610a74565b5060019392505050565b6000610544338484610b98565b600081815260016020526040812061049f906110a6565b61062d82826110b0565b6107e482826110d6565b600061091a836001600160a01b03841661115a565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316610ad65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610b375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bfc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610c5e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b610c698383836111a9565b6001600160a01b03831660009081526002602052604090205481811015610ce15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105db565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610d1890849061191c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6491815260200190565b60405180910390a35b50505050565b600082815260208190526040902060010154610d8f81336111b4565b61061e83836110d6565b6001600160a01b0381163314610e095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105db565b6107e48282611218565b600061091a836001600160a01b03841661127d565b60075460ff16610e715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105db565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6107e48282611370565b6001600160a01b038216610f255760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105db565b610f31826000836111a9565b6001600160a01b03821660009081526002602052604090205481811015610fa55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105db565b6001600160a01b0383166000908152600260205260408120838303905560048054849290610fd4908490611934565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156110655760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105db565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e9e3390565b600061091a83836113fd565b600061049f825490565b6000828152602081905260409020600101546110cc81336111b4565b61061e8383611218565b6110e08282610921565b6107e4576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111163390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546111a15750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b61061e838383611427565b6111be8282610921565b6107e4576111d6816001600160a01b0316601461148d565b6111e183602061148d565b6040516020016111f292919061194b565b60408051601f198184030181529082905262461bcd60e51b82526105db9160040161176a565b6112228282610921565b156107e4576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156113665760006112a1600183611934565b85549091506000906112b590600190611934565b905081811461131a5760008660000182815481106112d5576112d56119c0565b90600052602060002001549050808760000184815481106112f8576112f86119c0565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061132b5761132b6119d6565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e40000008161139b60045490565b6113a5919061191c565b11156113f35760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105db565b6107e48282611629565b6000826000018281548110611414576114146119c0565b9060005260206000200154905092915050565b60075460ff161561061e5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105db565b6060600061149c8360026119ec565b6114a790600261191c565b67ffffffffffffffff8111156114bf576114bf611a0b565b6040519080825280601f01601f1916602001820160405280156114e9576020820181803683370190505b509050600360fc1b81600081518110611504576115046119c0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611533576115336119c0565b60200101906001600160f81b031916908160001a90535060006115578460026119ec565b61156290600161191c565b90505b60018111156115da576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611596576115966119c0565b1a60f81b8282815181106115ac576115ac6119c0565b60200101906001600160f81b031916908160001a90535060049490941c936115d381611a21565b9050611565565b50831561091a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105db565b6001600160a01b03821661167f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105db565b61168b600083836111a9565b806004600082825461169d919061191c565b90915550506001600160a01b038216600090815260026020526040812080548392906116ca90849061191c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561172657600080fd5b81356001600160e01b03198116811461091a57600080fd5b60005b83811015611759578181015183820152602001611741565b83811115610d6d5750506000910152565b602081526000825180602084015261178981604085016020870161173e565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146117b457600080fd5b919050565b600080604083850312156117cc57600080fd5b6117d58361179d565b946020939093013593505050565b6000806000606084860312156117f857600080fd5b6118018461179d565b925061180f6020850161179d565b9150604084013590509250925092565b60006020828403121561183157600080fd5b5035919050565b6000806040838503121561184b57600080fd5b8235915061185b6020840161179d565b90509250929050565b60006020828403121561187657600080fd5b61091a8261179d565b6000806040838503121561189257600080fd5b50508035926020909101359150565b600080604083850312156118b457600080fd5b6118bd8361179d565b915061185b6020840161179d565b600181811c908216806118df57607f821691505b6020821081141561190057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561192f5761192f611906565b500190565b60008282101561194657611946611906565b500390565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161198381601785016020880161173e565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516119b481602884016020880161173e565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000816000190483118215151615611a0657611a06611906565b500290565b634e487b7160e01b600052604160045260246000fd5b600081611a3057611a30611906565b50600019019056fea26469706673582212201663e9d1644e52ea27d5a4fc9f2f0d42c571b80c2a829fa0abdc48c4e068f4e264736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b447261676f6e204b61727400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b41525400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Dragon Kart
Arg [1] : symbol_ (string): KART

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 447261676f6e204b617274000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4b41525400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

351:2181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;549:212:2;;;;;;:::i;:::-;;:::i;:::-;;;470:14:17;;463:22;445:41;;433:2;418:18;549:212:2;;;;;;;;2084:98:6;;;:::i;:::-;;;;;;;:::i;4181:166::-;;;;;;:::i;:::-;;:::i;3172:106::-;3259:12;;3172:106;;;1731:25:17;;;1719:2;1704:18;3172:106:6;1585:177:17;4814:478:6;;;;;;:::i;:::-;;:::i;3917:121:1:-;;;;;;:::i;:::-;3983:7;4009:12;;;;;;;;;;:22;;;;3917:121;1876:193:2;;;;;;:::i;:::-;;:::i;:::-;;3021:91:6;;;3103:2;2868:36:17;;2856:2;2841:18;3021:91:6;2726:184:17;561:81:9;631:4;561:81;;2445:202:2;;;;;;:::i;:::-;;:::i;5687:212:6:-;;;;;;:::i;:::-;;:::i;1991:183:0:-;;;:::i;938:268::-;;;;;;:::i;:::-;;:::i;487:89:8:-;;;;;;:::i;:::-;;:::i;1041:84:5:-;1111:7;;;;1041:84;;3336:125:6;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:6;3410:7;3436:18;;;:9;:18;;;;;;;3336:125;882:361:8;;;;;;:::i;:::-;;:::i;1613:177:0:-;;;:::i;1346:143:2:-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3708:32:17;;;3690:51;;3678:2;3663:18;1346:143:2;3544:203:17;2834:137:1;;;;;;:::i;:::-;;:::i;2295:102:6:-;;;:::i;1952:49:1:-;;1997:4;1952:49;;6386:405:6;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;1657:132:2:-;;;;;;:::i;:::-;;:::i;463:62:0:-;;501:24;463:62;;2157:198:2;;;;;;:::i;:::-;;:::i;3894:149:6:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:6;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;531:62:0;;569:24;531:62;;549:212:2;634:4;-1:-1:-1;;;;;;657:57:2;;-1:-1:-1;;;657:57:2;;:97;;;718:36;742:11;718:23;:36::i;:::-;650:104;549:212;-1:-1:-1;;549:212:2:o;2084:98:6:-;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:12;4303:7:6;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:6;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:6;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:12;5040:33:6;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:6;;4604:2:17;5083:79:6;;;4586:21:17;4643:2;4623:18;;;4616:30;4682:34;4662:18;;;4655:62;-1:-1:-1;;;4733:18:17;;;4726:38;4781:19;;5083:79:6;;;;;;;;;5196:57;5205:6;666:10:12;5246:6:6;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:6;;4814:478;-1:-1:-1;;;;4814:478:6:o;1876:193:2:-;1991:30;2007:4;2013:7;1991:15;:30::i;:::-;2031:18;;;;:12;:18;;;;;:31;;2054:7;2031:22;:31::i;:::-;;1876:193;;:::o;2445:202::-;2563:33;2582:4;2588:7;2563:18;:33::i;:::-;2606:18;;;;:12;:18;;;;;:34;;2632:7;2606:25;:34::i;5687:212:6:-;666:10:12;5775:4:6;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:6;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;1991:183:0:-;2048:34;569:24;666:10:12;2834:137:1;:::i;2048:34:0:-;2027:120;;;;-1:-1:-1;;;2027:120:0;;5278:2:17;2027:120:0;;;5260:21:17;5317:2;5297:18;;;5290:30;5356:34;5336:18;;;5329:62;-1:-1:-1;;;5407:18:17;;;5400:37;5454:19;;2027:120:0;5076:403:17;2027:120:0;2157:10;:8;:10::i;:::-;1991:183::o;938:268::-;1020:34;501:24;666:10:12;2834:137:1;:::i;1020:34:0:-;999:117;;;;-1:-1:-1;;;999:117:0;;5686:2:17;999:117:0;;;5668:21:17;5725:2;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;-1:-1:-1;;;5815:18:17;;;5808:34;5859:19;;999:117:0;5484:400:17;999:117:0;1144:1;1134:7;:11;1126:44;;;;-1:-1:-1;;;1126:44:0;;6091:2:17;1126:44:0;;;6073:21:17;6130:2;6110:18;;;6103:30;-1:-1:-1;;;6149:18:17;;;6142:50;6209:18;;1126:44:0;5889:344:17;1126:44:0;1180:19;1186:3;1191:7;1180:5;:19::i;:::-;938:268;;:::o;487:89:8:-;542:27;666:10:12;562:6:8;542:5;:27::i;:::-;487:89;:::o;882:361::-;958:24;985:32;995:7;666:10:12;3894:149:6;:::i;985:32:8:-;958:59;;1055:6;1035:16;:26;;1027:75;;;;-1:-1:-1;;;1027:75:8;;6440:2:17;1027:75:8;;;6422:21:17;6479:2;6459:18;;;6452:30;6518:34;6498:18;;;6491:62;-1:-1:-1;;;6569:18:17;;;6562:34;6613:19;;1027:75:8;6238:400:17;1027:75:8;1136:58;1145:7;666:10:12;1187:6:8;1168:16;:25;1136:8;:58::i;:::-;1214:22;1220:7;1229:6;1214:5;:22::i;1613:177:0:-;1668:34;569:24;666:10:12;2834:137:1;:::i;1668:34:0:-;1647:118;;;;-1:-1:-1;;;1647:118:0;;6845:2:17;1647:118:0;;;6827:21:17;6884:2;6864:18;;;6857:30;6923:34;6903:18;;;6896:62;-1:-1:-1;;;6974:18:17;;;6967:35;7019:19;;1647:118:0;6643:401:17;1647:118:0;1775:8;:6;:8::i;1346:143:2:-;1428:7;1454:18;;;:12;:18;;;;;:28;;1476:5;1454:21;:28::i;:::-;1447:35;1346:143;-1:-1:-1;;;1346:143:2:o;2834:137:1:-;2912:4;2935:12;;;;;;;;;;;-1:-1:-1;;;;;2935:29:1;;;;;;;;;;;;;;;2834:137::o;2295:102:6:-;2351:13;2383:7;2376:14;;;;;:::i;6386:405::-;666:10:12;6479:4:6;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:6;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:6;;7251:2:17;6566:85:6;;;7233:21:17;7290:2;7270:18;;;7263:30;7329:34;7309:18;;;7302:62;-1:-1:-1;;;7380:18:17;;;7373:35;7425:19;;6566:85:6;7049:401:17;6566:85:6;6685:67;666:10:12;6708:7:6;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:6;;6386:405;-1:-1:-1;;;6386:405:6:o;3664:172::-;3750:4;3766:42;666:10:12;3790:9:6;3801:6;3766:9;:42::i;1657:132:2:-;1729:7;1755:18;;;:12;:18;;;;;:27;;:25;:27::i;2157:198::-;2273:31;2290:4;2296:7;2273:16;:31::i;6084:110:1:-;6162:25;6173:4;6179:7;6162:10;:25::i;7545:150:16:-;7615:4;7638:50;7643:3;-1:-1:-1;;;;;7663:23:16;;7638:4;:50::i;2545:202:1:-;2630:4;-1:-1:-1;;;;;;2653:47:1;;-1:-1:-1;;;2653:47:1;;:87;;-1:-1:-1;;;;;;;;;;871:40:14;;;2704:36:1;763:155:14;9962:370:6;-1:-1:-1;;;;;10093:19:6;;10085:68;;;;-1:-1:-1;;;10085:68:6;;7657:2:17;10085:68:6;;;7639:21:17;7696:2;7676:18;;;7669:30;7735:34;7715:18;;;7708:62;-1:-1:-1;;;7786:18:17;;;7779:34;7830:19;;10085:68:6;7455:400:17;10085:68:6;-1:-1:-1;;;;;10171:21:6;;10163:68;;;;-1:-1:-1;;;10163:68:6;;8062:2:17;10163:68:6;;;8044:21:17;8101:2;8081:18;;;8074:30;8140:34;8120:18;;;8113:62;-1:-1:-1;;;8191:18:17;;;8184:32;8233:19;;10163:68:6;7860:398:17;10163:68:6;-1:-1:-1;;;;;10242:18:6;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;1731:25:17;;;10293:32:6;;1704:18:17;10293:32:6;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:6;;7392:70;;;;-1:-1:-1;;;7392:70:6;;8465:2:17;7392:70:6;;;8447:21:17;8504:2;8484:18;;;8477:30;8543:34;8523:18;;;8516:62;-1:-1:-1;;;8594:18:17;;;8587:35;8639:19;;7392:70:6;8263:401:17;7392:70:6;-1:-1:-1;;;;;7480:23:6;;7472:71;;;;-1:-1:-1;;;7472:71:6;;8871:2:17;7472:71:6;;;8853:21:17;8910:2;8890:18;;;8883:30;8949:34;8929:18;;;8922:62;-1:-1:-1;;;9000:18:17;;;8993:33;9043:19;;7472:71:6;8669:399:17;7472:71:6;7554:47;7575:6;7583:9;7594:6;7554:20;:47::i;:::-;-1:-1:-1;;;;;7636:17:6;;7612:21;7636:17;;;:9;:17;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:6;;9275:2:17;7663:74:6;;;9257:21:17;9314:2;9294:18;;;9287:30;9353:34;9333:18;;;9326:62;-1:-1:-1;;;9404:18:17;;;9397:36;9450:19;;7663:74:6;9073:402:17;7663:74:6;-1:-1:-1;;;;;7771:17:6;;;;;;;:9;:17;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:17;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:6;7888:6;-1:-1:-1;;;;;7879:35:6;;7907:6;7879:35;;;;1731:25:17;;1719:2;1704:18;;1585:177;7879:35:6;;;;;;;;7925:46;7382:596;7265:713;;;:::o;4288:145:1:-;3983:7;4009:12;;;;;;;;;;:22;;;2430:30;2441:4;666:10:12;2430::1;:30::i;:::-;4401:25:::1;4412:4;4418:7;4401:10;:25::i;5305:214::-:0;-1:-1:-1;;;;;5400:23:1;;666:10:12;5400:23:1;5392:83;;;;-1:-1:-1;;;5392:83:1;;9682:2:17;5392:83:1;;;9664:21:17;9721:2;9701:18;;;9694:30;9760:34;9740:18;;;9733:62;-1:-1:-1;;;9811:18:17;;;9804:45;9866:19;;5392:83:1;9480:411:17;5392:83:1;5486:26;5498:4;5504:7;5486:11;:26::i;7863:156:16:-;7936:4;7959:53;7967:3;-1:-1:-1;;;;;7987:23:16;;7959:7;:53::i;2053:117:5:-;1111:7;;;;1612:41;;;;-1:-1:-1;;;1612:41:5;;10098:2:17;1612:41:5;;;10080:21:17;10137:2;10117:18;;;10110:30;-1:-1:-1;;;10156:18:17;;;10149:50;10216:18;;1612:41:5;9896:344:17;1612:41:5;2111:7:::1;:15:::0;;-1:-1:-1;;2111:15:5::1;::::0;;2141:22:::1;666:10:12::0;2150:12:5::1;2141:22;::::0;-1:-1:-1;;;;;3708:32:17;;;3690:51;;3678:2;3663:18;2141:22:5::1;;;;;;;2053:117::o:0;1259:157:0:-;1375:34;1393:7;1402:6;1375:17;:34::i;8963:576:6:-;-1:-1:-1;;;;;9046:21:6;;9038:67;;;;-1:-1:-1;;;9038:67:6;;10447:2:17;9038:67:6;;;10429:21:17;10486:2;10466:18;;;10459:30;10525:34;10505:18;;;10498:62;-1:-1:-1;;;10576:18:17;;;10569:31;10617:19;;9038:67:6;10245:397:17;9038:67:6;9116:49;9137:7;9154:1;9158:6;9116:20;:49::i;:::-;-1:-1:-1;;;;;9201:18:6;;9176:22;9201:18;;;:9;:18;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:6;;10849:2:17;9229:71:6;;;10831:21:17;10888:2;10868:18;;;10861:30;10927:34;10907:18;;;10900:62;-1:-1:-1;;;10978:18:17;;;10971:32;11020:19;;9229:71:6;10647:398:17;9229:71:6;-1:-1:-1;;;;;9334:18:6;;;;;;:9;:18;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:18;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:6;;1731:25:17;;;9462:1:6;;-1:-1:-1;;;;;9436:37:6;;;;;1719:2:17;1704:18;9436:37:6;;;;;;;2031:31:2;1876:193;;:::o;1806:115:5:-;1111:7;;;;1354:9;1346:38;;;;-1:-1:-1;;;1346:38:5;;11382:2:17;1346:38:5;;;11364:21:17;11421:2;11401:18;;;11394:30;-1:-1:-1;;;11440:18:17;;;11433:46;11496:18;;1346:38:5;11180:340:17;1346:38:5;1865:7:::1;:14:::0;;-1:-1:-1;;1865:14:5::1;1875:4;1865:14;::::0;;1894:20:::1;1901:12;666:10:12::0;;587:96;8803:156:16;8877:7;8927:22;8931:3;8943:5;8927:3;:22::i;8346:115::-;8409:7;8435:19;8443:3;3961:18;;3879:107;4667:147:1;3983:7;4009:12;;;;;;;;;;:22;;;2430:30;2441:4;666:10:12;2430::1;:30::i;:::-;4781:26:::1;4793:4;4799:7;4781:11;:26::i;6572:224::-:0;6646:22;6654:4;6660:7;6646;:22::i;:::-;6641:149;;6684:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6684:29:1;;;;;;;;;:36;;-1:-1:-1;;6684:36:1;6716:4;6684:36;;;6766:12;666:10:12;;587:96;6766:12:1;-1:-1:-1;;;;;6739:40:1;6757:7;-1:-1:-1;;;;;6739:40:1;6751:4;6739:40;;;;;;;;;;6572:224;;:::o;1630:404:16:-;1693:4;3767:19;;;:12;;;:19;;;;;;1709:319;;-1:-1:-1;1751:23:16;;;;;;;;:11;:23;;;;;;;;;;;;;1931:18;;1909:19;;;:12;;;:19;;;;;;:40;;;;1963:11;;1709:319;-1:-1:-1;2012:5:16;2005:12;;2319:211:0;2471:52;2506:4;2512:2;2516:6;2471:34;:52::i;3252:484:1:-;3332:22;3340:4;3346:7;3332;:22::i;:::-;3327:403;;3515:41;3543:7;-1:-1:-1;;;;;3515:41:1;3553:2;3515:19;:41::i;:::-;3627:38;3655:4;3662:2;3627:19;:38::i;:::-;3422:265;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3422:265:1;;;;;;;;;;-1:-1:-1;;;3370:349:1;;;;;;;:::i;6802:225::-;6876:22;6884:4;6890:7;6876;:22::i;:::-;6872:149;;;6946:5;6914:12;;;;;;;;;;;-1:-1:-1;;;;;6914:29:1;;;;;;;;;;:37;;-1:-1:-1;;6914:37:1;;;6970:40;666:10:12;;6914:12:1;;6970:40;;6946:5;6970:40;6802:225;;:::o;2202:1388:16:-;2268:4;2405:19;;;:12;;;:19;;;;;;2439:15;;2435:1149;;2808:21;2832:14;2845:1;2832:10;:14;:::i;:::-;2880:18;;2808:38;;-1:-1:-1;2860:17:16;;2880:22;;2901:1;;2880:22;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;:::i;:::-;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3221:23;;;:12;;;:23;;;;;:36;;;2917:398;3393:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;;;695:204:9;631:4;809:6;787:19;3259:12:6;;;3172:106;787:19:9;:28;;;;:::i;:::-;:37;;779:75;;;;-1:-1:-1;;;779:75:9;;12782:2:17;779:75:9;;;12764:21:17;12821:2;12801:18;;;12794:30;12860:27;12840:18;;;12833:55;12905:18;;779:75:9;12580:349:17;779:75:9;864:28;876:7;885:6;864:11;:28::i;4328:118:16:-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;:::i;:::-;;;;;;;;;4414:25;;4328:118;;;;:::o;589:264:10:-;1111:7:5;;;;790:9:10;782:64;;;;-1:-1:-1;;;782:64:10;;13136:2:17;782:64:10;;;13118:21:17;13175:2;13155:18;;;13148:30;13214:34;13194:18;;;13187:62;-1:-1:-1;;;13265:18:17;;;13258:40;13315:19;;782:64:10;12934:406:17;1535:441:13;1610:13;1635:19;1667:10;1671:6;1667:1;:10;:::i;:::-;:14;;1680:1;1667:14;:::i;:::-;1657:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1657:25:13;;1635:47;;-1:-1:-1;;;1692:6:13;1699:1;1692:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1692:15:13;;;;;;;;;-1:-1:-1;;;1717:6:13;1724:1;1717:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1717:15:13;;;;;;;;-1:-1:-1;1747:9:13;1759:10;1763:6;1759:1;:10;:::i;:::-;:14;;1772:1;1759:14;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;-1:-1:-1;;;1826:5:13;1834:3;1826:11;1813:25;;;;;;;:::i;:::-;;;;1801:6;1808:1;1801:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1801:37:13;;;;;;;;-1:-1:-1;1862:1:13;1852:11;;;;;1782:3;;;:::i;:::-;;;1742:132;;;-1:-1:-1;1891:10:13;;1883:55;;;;-1:-1:-1;;;1883:55:13;;13993:2:17;1883:55:13;;;13975:21:17;;;14012:18;;;14005:30;14071:34;14051:18;;;14044:62;14123:18;;1883:55:13;13791:356:17;8254:389:6;-1:-1:-1;;;;;8337:21:6;;8329:65;;;;-1:-1:-1;;;8329:65:6;;14354:2:17;8329:65:6;;;14336:21:17;14393:2;14373:18;;;14366:30;14432:33;14412:18;;;14405:61;14483:18;;8329:65:6;14152:355:17;8329:65:6;8405:49;8434:1;8438:7;8447:6;8405:20;:49::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:6;;;;;;:9;:18;;;;;:28;;8519:6;;8497:18;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:6;;1731:25:17;;;-1:-1:-1;;;;;8540:37:6;;;8557:1;;8540:37;;1719:2:17;1704:18;8540:37:6;;;;;;;938:268:0;;:::o;14:286:17:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:17;;209:43;;199:71;;266:1;263;256:12;497:258;569:1;579:113;593:6;590:1;587:13;579:113;;;669:11;;;663:18;650:11;;;643:39;615:2;608:10;579:113;;;710:6;707:1;704:13;701:48;;;-1:-1:-1;;745:1:17;727:16;;720:27;497:258::o;760:383::-;909:2;898:9;891:21;872:4;941:6;935:13;984:6;979:2;968:9;964:18;957:34;1000:66;1059:6;1054:2;1043:9;1039:18;1034:2;1026:6;1022:15;1000:66;:::i;:::-;1127:2;1106:15;-1:-1:-1;;1102:29:17;1087:45;;;;1134:2;1083:54;;760:383;-1:-1:-1;;760:383:17:o;1148:173::-;1216:20;;-1:-1:-1;;;;;1265:31:17;;1255:42;;1245:70;;1311:1;1308;1301:12;1245:70;1148:173;;;:::o;1326:254::-;1394:6;1402;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:29;1513:9;1494:29;:::i;:::-;1484:39;1570:2;1555:18;;;;1542:32;;-1:-1:-1;;;1326:254:17:o;1767:328::-;1844:6;1852;1860;1913:2;1901:9;1892:7;1888:23;1884:32;1881:52;;;1929:1;1926;1919:12;1881:52;1952:29;1971:9;1952:29;:::i;:::-;1942:39;;2000:38;2034:2;2023:9;2019:18;2000:38;:::i;:::-;1990:48;;2085:2;2074:9;2070:18;2057:32;2047:42;;1767:328;;;;;:::o;2100:180::-;2159:6;2212:2;2200:9;2191:7;2187:23;2183:32;2180:52;;;2228:1;2225;2218:12;2180:52;-1:-1:-1;2251:23:17;;2100:180;-1:-1:-1;2100:180:17:o;2467:254::-;2535:6;2543;2596:2;2584:9;2575:7;2571:23;2567:32;2564:52;;;2612:1;2609;2602:12;2564:52;2648:9;2635:23;2625:33;;2677:38;2711:2;2700:9;2696:18;2677:38;:::i;:::-;2667:48;;2467:254;;;;;:::o;3100:186::-;3159:6;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3251:29;3270:9;3251:29;:::i;3291:248::-;3359:6;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;-1:-1:-1;;3459:23:17;;;3529:2;3514:18;;;3501:32;;-1:-1:-1;3291:248:17:o;3752:260::-;3820:6;3828;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3920:29;3939:9;3920:29;:::i;:::-;3910:39;;3968:38;4002:2;3991:9;3987:18;3968:38;:::i;4017:380::-;4096:1;4092:12;;;;4139;;;4160:61;;4214:4;4206:6;4202:17;4192:27;;4160:61;4267:2;4259:6;4256:14;4236:18;4233:38;4230:161;;;4313:10;4308:3;4304:20;4301:1;4294:31;4348:4;4345:1;4338:15;4376:4;4373:1;4366:15;4230:161;;4017:380;;;:::o;4811:127::-;4872:10;4867:3;4863:20;4860:1;4853:31;4903:4;4900:1;4893:15;4927:4;4924:1;4917:15;4943:128;4983:3;5014:1;5010:6;5007:1;5004:13;5001:39;;;5020:18;;:::i;:::-;-1:-1:-1;5056:9:17;;4943:128::o;11050:125::-;11090:4;11118:1;11115;11112:8;11109:34;;;11123:18;;:::i;:::-;-1:-1:-1;11160:9:17;;11050:125::o;11525:786::-;11936:25;11931:3;11924:38;11906:3;11991:6;11985:13;12007:62;12062:6;12057:2;12052:3;12048:12;12041:4;12033:6;12029:17;12007:62;:::i;:::-;-1:-1:-1;;;12128:2:17;12088:16;;;12120:11;;;12113:40;12178:13;;12200:63;12178:13;12249:2;12241:11;;12234:4;12222:17;;12200:63;:::i;:::-;12283:17;12302:2;12279:26;;11525:786;-1:-1:-1;;;;11525:786:17:o;12316:127::-;12377:10;12372:3;12368:20;12365:1;12358:31;12408:4;12405:1;12398:15;12432:4;12429:1;12422:15;12448:127;12509:10;12504:3;12500:20;12497:1;12490:31;12540:4;12537:1;12530:15;12564:4;12561:1;12554:15;13345:168;13385:7;13451:1;13447;13443:6;13439:14;13436:1;13433:21;13428:1;13421:9;13414:17;13410:45;13407:71;;;13458:18;;:::i;:::-;-1:-1:-1;13498:9:17;;13345:168::o;13518:127::-;13579:10;13574:3;13570:20;13567:1;13560:31;13610:4;13607:1;13600:15;13634:4;13631:1;13624:15;13650:136;13689:3;13717:5;13707:39;;13726:18;;:::i;:::-;-1:-1:-1;;;13762:18:17;;13650:136::o

Swarm Source

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