ERC-20
Overview
Max Total Supply
11,964 SPT
Holders
1,854
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SPT
Compiler Version
v0.8.20+commit.a1b79de6
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; // Users awarded this token when they join a tournament contract SPT is ERC20, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER"); bytes32 public constant BURNER_ROLE = keccak256("BURNER"); constructor() ERC20('Spray & Pray Tournament', 'SPT') { _grantRole(DEFAULT_ADMIN_ROLE, _msgSender()); } function mint(address user, uint amount) onlyRole(MINTER_ROLE) external { _mint(user, amount); } function burn(address user, uint amount) onlyRole(BURNER_ROLE) external { _burn(user, amount); } function _transfer(address, address, uint256) internal pure override { revert ("Non transferrable"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) 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); _; } /** * @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 virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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 virtual { 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 virtual 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 revoked `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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "mode": "3" }, "viaIR": true, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","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":[{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100022dd93613474c37d09cc4ac8baf5b480fbb23cfef7d2b3aea5bbc16c14b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00020000000000020004000000000002000000000301034f00010000000103550000006001100270000001d30010019d0000000100200190000000850000c13d000001d3011001970000008002000039000000400020043f000000040010008c000005850000413d000000000203043b000000e002200270000001dd0020009c000000a10000213d000001ec0020009c000000e40000a13d000001ed0020009c000001ef0000213d000001f10020009c0000027c0000613d000001f20020009c0000028b0000613d000001f30020009c000005850000c13d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d0000002401300370000000000101043b000300000001001d000001fa0010009c000005850000213d0000000401000029000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000101100039000000000101041a074705a90000040f0000000401000029000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000000ff00100190000005360000c13d0000000401000029000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000201041a000002210220019700000001022001bf000000000021041b0000000001000414000001d30010009c000001d301008041000000c001100210000001da011001c70000800d0200003900000004030000390000000007000411000001db04000041000000040500002900000003060000290747073d0000040f0000000100200190000005360000c13d000005850000013d0000000001000416000000000001004b000005850000c13d0000001701000039000000800010043f000001d401000041000000a00010043f0000010001000039000000400010043f0000000303000039000000c00030043f000001d501000041000000e00010043f000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000be0000613d0000021601000041000000000010043f0000002201000039000000040010043f00000217010000410000074900010430000001de0020009c000001240000a13d000001df0020009c000002250000213d000001e30020009c000002920000613d000001e40020009c000002980000613d000001e50020009c000005850000c13d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000001fa0010009c000005850000213d000001fd01000041000000800010043f0000002001000039000000840010043f0000001101000039000000a40010043f000001fe01000041000000c40010043f000001ff010000410000074900010430000000200040008c000000d70000413d000400000004001d000000000030043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d6011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b00000004020000290000001f0220003900000005022002700000000002210019000000000021004b0000000303000039000000d70000813d000000000001041b0000000101100039000000000021004b000000d30000413d000000a00100043d000001d7011001970000002e011001bf000000000013041b000000c00500043d000001d80050009c000001b10000413d0000021601000041000000000010043f0000004101000039000000040010043f00000217010000410000074900010430000001f40020009c000002450000a13d000001f50020009c000002cd0000613d000001f60020009c000002e20000613d000001f70020009c000005850000c13d000000640010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000002401300370000000000101043b000001fa0010009c000005850000213d0000004401300370000000000101043b000300000001001d0000000401000029000000000010043f0000000101000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000002220010009c000005460000613d000000030310006c000005430000813d000000400100043d00000044021000390000021c03000041000000000032043500000024021000390000001d030000390000054c0000013d000001e60020009c000002690000a13d000001e70020009c000002ea0000613d000001e80020009c000003090000613d000001e90020009c000005850000c13d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000002401300370000000000101043b000300000001001d0000020401000041000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000000ff00100190000004ca0000c13d000000400200043d0000020a0020009c000000de0000213d0000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000001620000c13d00000000040104330000020b044001970000020c044001c70000000000410435000000210420003900000000050404330000020b055001970000020d055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000004e00000a13d000000000614001900000000070604330000020b077001970000000308500210000000780880018f0000020e0880021f0000020f08800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000001710000213d000000100050008c000005380000813d000000400400043d000400000004001d000002100040009c000000de0000213d00000004060000290000008004600039000000400040043f00000042050000390000000005560436000300000005001d000000003603043c0000000005650436000000000045004b0000018e0000c13d000000030900002900000000030904330000020b033001970000020c033001c700000000003904350000000408000029000000210380003900000000040304330000020b044001970000020d044001c700000000004304350000020405000041000000410300003900000000040500190000000005080433000000000035004b000004e00000a13d000000000593001900000000060504330000020b066001970000000307400210000000780770018f0000020e0770021f0000020f07700197000000000676019f00000000006504350000000405400270000000010330008a000000010030008c0000019f0000213d000003f00000013d0000000404000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f00000001001001900000009b0000c13d000000200030008c000001dc0000413d000300000003001d000400000005001d000000000040043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d6011001c70000801002000039074707420000040f0000000100200190000005850000613d00000004050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000404000039000001dc0000813d000000000002041b0000000102200039000000000012004b000001d80000413d0000001f0050008c0000041e0000a13d000400000005001d000000000040043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d6011001c70000801002000039074707420000040f0000000100200190000005850000613d00000004060000290000022302600198000000000101043b000004290000c13d000000e003000039000004370000013d000001ee0020009c000003210000613d000001ef0020009c000003280000613d000001f00020009c000005850000c13d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c700008010020000390003000000030353074707420000040f000000030300035f0000000100200190000005850000613d000000000101043b0000000402000029000000000020043f000000200010043f0000002401300370000000000101043b000300000001001d0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a0000000302000029000000000021001a0000056a0000413d0000000003210019000004a30000013d000001e00020009c000003390000613d000001e10020009c000003400000613d000001e20020009c000005850000c13d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000001fa0010009c000005850000213d0000002402300370000000000202043b000400000002001d000001fa0020009c000005850000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019074707280000040f0000000402000029000000000020043f000000200010043f000000000100001900000040020000390000027a0000013d000001f80020009c0000035b0000613d000001f90020009c000005850000c13d0000000001000416000000000001004b000005850000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000009b0000c13d000000800010043f000000000005004b0000031b0000613d000000000030043f000000020020008c000004950000413d0000021d0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002600000413d000004b80000013d000001ea0020009c0000036c0000613d000001eb0020009c000005850000c13d000000240010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000001fa0010009c000005850000213d000000000010043f000000200000043f00000040020000390000000001000019074707280000040f000002e60000013d000000240010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000000000010043f0000000501000039000000200010043f00000040020000390000000001000019074707280000040f0000000101100039000002e60000013d0000000001000416000000000001004b000005850000c13d0000020401000041000000800010043f000001fb01000041000007480001042e0000000001000416000000000001004b000005850000c13d000000800000043f000001fb01000041000007480001042e000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000002401300370000000000101043b000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000000030310006c000004a30000813d000000400100043d00000064021000390000020103000041000000000032043500000044021000390000020203000041000000000032043500000024021000390000002503000039000004fe0000013d000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000201043b000001fa0020009c000005850000213d0000002401300370000000000301043b0000000001000411074706d10000040f0000000101000039000000400200043d0000000000120435000001d30020009c000001d302008041000000400120021000000200011001c7000007480001042e0000000001000416000000000001004b000005850000c13d0000000201000039000000000101041a000000800010043f000001fb01000041000007480001042e000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000002401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000000401300370000000000101043b000000000010043f0000000501000039000000200010043f00000040020000390000000001000019074707280000040f0000000402000029000000000020043f000000200010043f00000000010000190000004002000039074707280000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000001fb01000041000007480001042e0000000001000416000000000001004b000005850000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000009b0000c13d000000800010043f000000000005004b000004920000c13d0000022101200197000000a00010043f000000000004004b000000c001000039000000a001006039000004b90000013d0000000001000416000000000001004b000005850000c13d0000001201000039000000800010043f000001fb01000041000007480001042e000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000002401300370000000000101043b000001fa0010009c000005850000213d0000000002000411000000000021004b000004970000c13d0000000401300370000000000101043b074706800000040f0000000001000019000007480001042e0000000001000416000000000001004b000005850000c13d000001fc01000041000000800010043f000001fb01000041000007480001042e000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000002401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000000401300370000000000101043b000300000001001d000000000010043f0000000501000039000000200010043f00000040020000390000000001000019074707280000040f0000000101100039000000000101041a074705a90000040f00000003010000290000000402000029074706800000040f0000000001000019000007480001042e000000240010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b0000021e00100198000005850000c13d0000021f0010009c00000000020000390000000102006039000002200010009c00000001022061bf000000800020043f000001fb01000041000007480001042e000000440010008c000005850000413d0000000001000416000000000001004b000005850000c13d0000000401300370000000000101043b000400000001001d000001fa0010009c000005850000213d0000002401300370000000000101043b000300000001001d000001fc01000041000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000000ff00100190000004d70000c13d000000400200043d0000020a0020009c000000de0000213d0000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000003a20000c13d00000000040104330000020b044001970000020c044001c70000000000410435000000210420003900000000050404330000020b055001970000020d055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000004e00000a13d000000000614001900000000070604330000020b077001970000000308500210000000780880018f0000020e0880021f0000020f08800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000003b10000213d000000100050008c000005380000813d000000400400043d000400000004001d000002100040009c000000de0000213d00000004060000290000008004600039000000400040043f00000042050000390000000005560436000300000005001d000000003603043c0000000005650436000000000045004b000003ce0000c13d000000030900002900000000030904330000020b033001970000020c033001c700000000003904350000000408000029000000210380003900000000040304330000020b044001970000020d044001c70000000000430435000001fc05000041000000410300003900000000040500190000000005080433000000000035004b000004e00000a13d000000000593001900000000060504330000020b066001970000000307400210000000780770018f0000020e0770021f0000020f07700197000000000676019f00000000006504350000000405400270000000010330008a000000010030008c000003df0000213d000000100040008c000005380000813d000000400500043d000200000005001d0000002003500039000002110400004100000000004304350000000003020433000100000003001d0000003702500039074705870000040f00000001020000290000000201200029000000370210003900000212030000410000000000320435000000480210003900000004010000290000000003010433000400000003001d0000000301000029074705870000040f0000000402000029000000010320002900000028023000390000000201000029000000000021043500000048023000390747066e0000040f000001fd01000041000000400200043d000400000002001d000000000012043500000004012000390000000202000029074705940000040f00000004020000290000000001210049000001d30010009c000001d3010080410000006001100210000001d30020009c000001d3020080410000004002200210000000000121019f0000074900010430000000000005004b0000000001000019000004220000613d000000e00100043d0000000302500210000002220220027f0000022202200167000000000121016f0000000102500210000000000121019f000004430000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b0000042e0000c13d000000e003500039000000000062004b000004400000813d0000000302600210000000f80220018f000002220220027f00000222022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000404000039000000000014041b000000000000043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a000000ff001001900000048d0000c13d000000000000043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000201041a000002210220019700000001022001bf000000000021041b0000000001000414000001d30010009c000001d301008041000000c001100210000001da011001c70000800d020000390000000403000039000001db040000410000000005000019000000000600041100000000070600190747073d0000040f0000000100200190000005850000613d000000200100003900000100001004430000012000000443000001dc01000041000007480001042e000000000030043f000000020020008c000004ae0000813d000000a001000039000004b90000013d000001fd01000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f0000021901000041000000c40010043f0000021a01000041000000e40010043f0000021b01000041000007490001043000000000010004110000000402000029074706d10000040f000000400100043d00000001020000390000000000210435000001d30010009c000001d301008041000000400110021000000200011001c7000007480001042e000002130200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004b00000413d000000c001300039000000800210008a00000080010000390747066e0000040f000000400100043d000400000001001d0000008002000039074705940000040f00000004020000290000000001210049000001d30010009c000001d3010080410000006001100210000001d30020009c000001d3020080410000004002200210000000000121019f000007480001042e0000000401000029000000000001004b000004e60000c13d000000400100043d00000064021000390000020803000041000000000032043500000044021000390000020903000041000000000032043500000024021000390000002103000039000004fe0000013d000000040000006b000005090000c13d000000400100043d00000044021000390000021403000041000000000032043500000024021000390000001f030000390000054c0000013d0000021601000041000000000010043f0000003201000039000000040010043f00000217010000410000074900010430000000000010043f000000200000043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000101041a0002000300100074000005570000813d000000400100043d000000640210003900000206030000410000000000320435000000440210003900000207030000410000000000320435000000240210003900000022030000390000000000320435000001fd020000410000000000210435000000040210003900000020030000390000000000320435000001d30010009c000001d301008041000000400110021000000203011001c700000749000104300000000201000039000000000201041a0000000303000029000000000032001a0000056a0000413d0000000002320019000000000021041b0000000401000029000000000010043f000000200000043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b000000000201041a0000000303000029000000000032001a0000056a0000413d0000000002320019000000000021041b000000400100043d0000000000310435000001d30010009c000001d30100804100000040011002100000000002000414000001d30020009c000001d302008041000000c002200210000000000112019f000001d6011001c70000800d0200003900000003030000390000020504000041000000000500001900000004060000290747073d0000040f0000000100200190000005850000613d0000000001000019000007480001042e000000400100043d000000440210003900000218030000410000000000320435000001fd0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000005510000013d00000004010000290000000002000411074706d10000040f000000400100043d0000004402100039000001fe030000410000000000320435000000240210003900000011030000390000000000320435000001fd020000410000000000210435000000040210003900000020030000390000000000320435000001d30010009c000001d301008041000000400110021000000215011001c700000749000104300000000401000029000000000010043f000000200000043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005850000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a000000030220006c000005700000813d0000021601000041000000000010043f0000001101000039000000040010043f00000217010000410000074900010430000000000021041b000000400100043d00000003020000290000000000210435000001d30010009c000001d30100804100000040011002100000000002000414000001d30020009c000001d302008041000000c002200210000000000112019f000001d6011001c70000800d0200003900000003030000390000020504000041000000040500002900000000060000190747073d0000040f0000000100200190000005360000c13d00000000010000190000074900010430000000000003004b000005910000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000058a0000413d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000005a30000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000059c0000413d000000000312001900000000000304350000001f0220003900000223022001970000000001210019000000000001042d0004000000000002000400000001001d000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005c90000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000005c90000613d000000000101043b000000000101041a000000ff00100190000005cb0000613d000000000001042d00000000010000190000074900010430000000400200043d000002240020009c000005d40000413d0000021601000041000000000010043f0000004101000039000000040010043f000002170100004100000749000104300000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000005dc0000c13d00000000040104330000020b044001970000020c044001c70000000000410435000000210420003900000000050404330000020b055001970000020d055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000006580000a13d000000000614001900000000070604330000020b077001970000000308500210000000780880018f0000020e0880021f0000020f08800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000005eb0000213d000000100050008c0000065e0000813d000000400400043d000300000004001d000002100040009c000005ce0000213d00000003060000290000008004600039000000400040043f00000042050000390000000005560436000200000005001d000000003603043c0000000005650436000000000045004b000006080000c13d000000020900002900000000030904330000020b033001970000020c033001c700000000003904350000000308000029000000210380003900000000040304330000020b044001970000020d044001c700000000004304350000004103000039000000040500002900000000040500190000000005080433000000000035004b000006580000a13d000000000593001900000000060504330000020b066001970000000307400210000000780770018f0000020e0770021f0000020f07700197000000000667019f00000000006504350000000405400270000000010330008a000000010030008c000006190000213d000000100040008c0000065e0000813d000000400500043d000400000005001d0000002003500039000002110400004100000000004304350000000003020433000100000003001d0000003702500039074705870000040f00000001020000290000000401200029000000370210003900000212030000410000000000320435000000480210003900000003010000290000000003010433000300000003001d0000000201000029074705870000040f0000000302000029000000010320002900000028023000390000000401000029000000000021043500000048023000390747066e0000040f000001fd01000041000000400200043d000300000002001d000000000012043500000004012000390000000402000029074705940000040f00000003020000290000000001210049000001d30010009c000001d3010080410000006001100210000001d30020009c000001d3020080410000004002200210000000000121019f00000749000104300000021601000041000000000010043f0000003201000039000000040010043f00000217010000410000074900010430000000400100043d000000440210003900000218030000410000000000320435000001fd02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000001d30010009c000001d301008041000000400110021000000215011001c700000749000104300000001f0220003900000223022001970000000001120019000000000021004b00000000020000390000000102004039000002250010009c0000067a0000213d00000001002001900000067a0000c13d000000400010043f000000000001042d0000021601000041000000000010043f0000004101000039000000040010043f000002170100004100000749000104300002000000000002000100000002001d000200000001001d000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000006cf0000613d000000000101043b0000000102000029000001fa02200197000100000002001d000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000006cf0000613d000000000101043b000000000101041a000000ff00100190000006ce0000613d0000000201000029000000000010043f0000000501000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000006cf0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f0000000100200190000006cf0000613d000000000101043b000000000201041a0000022102200197000000000021041b0000000001000414000001d30010009c000001d301008041000000c001100210000001da011001c70000800d02000039000000040300003900000000070004110000022604000041000000020500002900000001060000290747073d0000040f0000000100200190000006cf0000613d000000000001042d000000000100001900000749000104300003000000000002000001fa011001980000070a0000613d000200000003001d000301fa0020019c000007140000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f00000001002001900000000303000029000007080000613d000000000101043b000000000030043f000000200010043f0000000001000414000001d30010009c000001d301008041000000c001100210000001d9011001c70000801002000039074707420000040f00000003060000290000000100200190000007080000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001d30010009c000001d30100804100000040011002100000000002000414000001d30020009c000001d302008041000000c002200210000000000112019f000001d6011001c70000800d020000390000000303000039000002270400004100000001050000290747073d0000040f0000000100200190000007080000613d000000000001042d00000000010000190000074900010430000000400100043d00000064021000390000022a03000041000000000032043500000044021000390000022b030000410000000000320435000000240210003900000024030000390000071d0000013d000000400100043d000000640210003900000228030000410000000000320435000000440210003900000229030000410000000000320435000000240210003900000022030000390000000000320435000001fd020000410000000000210435000000040210003900000020030000390000000000320435000001d30010009c000001d301008041000000400110021000000203011001c70000074900010430000001d30010009c000001d3010080410000004001100210000001d30020009c000001d3020080410000006002200210000000000112019f0000000002000414000001d30020009c000001d302008041000000c002200210000000000112019f000001da011001c70000801002000039074707420000040f00000001002001900000073b0000613d000000000101043b000000000001042d0000000001000019000007490001043000000740002104210000000102000039000000000001042d0000000002000019000000000001042d00000745002104230000000102000039000000000001042d0000000002000019000000000001042d0000074700000432000007480001042e00000749000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff53707261792026205072617920546f75726e616d656e7400000000000000000053505400000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000010000000000000000020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d00000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000040c10f1800000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000d539139200000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009dc29fac0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000248a9ca200000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003950935100000000000000000000000000000000000000000000000000000000248a9ca300000000000000000000000000000000000000000000000000000000282c51f3000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000f0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc908c379a0000000000000000000000000000000000000000000000000000000004e6f6e207472616e736665727261626c6500000000000000000000000000000000000000000000000000000000000000000000640000008000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000009667e80708b6eeeb0053fa0cca44e028ff548e2a9f029edfeac87c118b08b7c8ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573000000000000000000000000000000000000000000000000ffffffffffffff9f00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c65200000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e74416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c660000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffa0000000000000000000000000000000000000000000000000fffffffffffffffff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464f8cbf3c4e2e4ece89948bafdaef6c6bed450f9bbb86097649af3266e74e48e24
[ 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.