Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Stablecoin
Overview
Max Total Supply
20,234,387.36922911197206 lvlUSD
Holders
1,011 ( 0.396%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000001796 lvlUSDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
lvlUSD
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0pragma solidity >=0.8.19;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";import "@openzeppelin/contracts/access/Ownable2Step.sol";import "./interfaces/IlvlUSDDefinitions.sol";import "./SingleAdminAccessControl.sol";/*** @title lvlUSD* @notice lvlUSD contract*/contract lvlUSD isERC20Burnable,ERC20Permit,IlvlUSDDefinitions,SingleAdminAccessControl{/// @notice The role that is allowed to denylist and un-denylist addressesbytes32 private constant DENYLIST_MANAGER_ROLE =keccak256("DENYLIST_MANAGER_ROLE");mapping(address => bool) public denylisted;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.0;import "./IERC20Permit.sol";import "../ERC20.sol";import "../../../utils/cryptography/ECDSA.sol";import "../../../utils/cryptography/EIP712.sol";import "../../../utils/Counters.sol";/*** @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.** _Available since v3.4._*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {using Counters for Counters.Counter;mapping(address => Counters.Counter) private _nonces;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)pragma solidity ^0.8.0;import "./Ownable.sol";/*** @dev Contract module which provides access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2Step is Ownable {address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/*** @dev Returns the address of the pending owner.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: GPL-3.0pragma solidity >=0.8.19;/// @dev Changelog: changed solidity version and nameinterface IlvlUSDDefinitions {/// @notice This event is fired when the minter changesevent MinterUpdated(address indexed newMinter, address indexed oldMinter);/// @notice This event is fired when the slasher changesevent SlasherUpdated(address indexed newSlasher,address indexed oldSlasher);/// @notice Zero address not allowederror ZeroAddressException();/// @notice It's not possible to renounce the ownershiperror OperationNotAllowed();/// @notice Only the minter role can perform an actionerror OnlyMinter();/// @notice Address is denylistederror Denylisted();/// @notice Address is ownererror IsOwner();}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0pragma solidity >=0.8.19;import "@openzeppelin/contracts/access/AccessControl.sol";import "@openzeppelin/contracts/interfaces/IERC5313.sol";import "./interfaces/ISingleAdminAccessControl.sol";/*** @title SingleAdminAccessControl* @notice SingleAdminAccessControl is a contract that provides a single admin role* @notice This contract is a simplified alternative to OpenZeppelin's AccessControlDefaultAdminRules* @dev Changelog: update solidity versions*/abstract contract SingleAdminAccessControl isIERC5313,ISingleAdminAccessControl,AccessControl{address private _currentDefaultAdmin;address private _pendingDefaultAdmin;modifier notAdmin(bytes32 role) {if (role == DEFAULT_ADMIN_ROLE) revert InvalidAdminChange();_;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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.*/
1234567891011121314151617181920212223242526// 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.*/
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,* given ``owner``'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../Strings.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV // Deprecated in v4.8}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.8;import "./ECDSA.sol";import "../ShortStrings.sol";import "../../interfaces/IERC5267.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding* they need in their contracts using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)pragma solidity ^0.8.0;/*** @title Counters* @author Matt Condon (@shrugs)* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number* of elements in a mapping, issuing ERC721 ids, or counting request ids.** Include with `using Counters for Counters.Counter;`*/library Counters {struct Counter {// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0}function current(Counter storage counter) internal view returns (uint256) {return counter._value;}function increment(Counter storage counter) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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:** ```solidity* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a
123456789101112131415161718// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5313.sol)pragma solidity ^0.8.0;/*** @dev Interface for the Light Contract Ownership Standard.** A standardized minimal interface required to identify an account that controls a contract** _Available since v4.9._*/interface IERC5313 {/*** @dev Gets the address of the owner.*/function owner() external view returns (address);}
12345678910111213// SPDX-License-Identifier: MITpragma solidity >=0.8.19;interface ISingleAdminAccessControl {error InvalidAdminChange();error NotPendingAdmin();event AdminTransferred(address indexed oldAdmin, address indexed newAdmin);event AdminTransferRequested(address indexed oldAdmin,address indexed newAdmin);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)pragma solidity ^0.8.8;import "./StorageSlot.sol";// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |// | length | 0x BB |type ShortString is bytes32;/*** @dev This library provides functions to convert short memory strings* into a `ShortString` type that can be used as an immutable variable.** Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their* length (1 byte) in a single EVM word (32 bytes). Additionally, a* fallback mechanism can be used for every other case.** Usage example:** ```solidity* contract Named {* using ShortStrings for *;*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.0;interface IERC5267 {/*** @dev MAY be emitted to signal that the domain could have changed.*/event EIP712DomainChanged();/*** @dev returns the fields and values that describe the domain separator used by this contract for EIP-712* signature.*/function eip712Domain()externalviewreturns (bytes1 fields,string memory name,string memory version,uint256 chainId,address verifyingContract,bytes32 salt,uint256[] memory extensions
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.0;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```solidity* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526{"remappings": ["ds-test/=lib/ds-test/src/","forge-std/=lib/forge-std/src/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","aave-v3-core/=lib/aave-v3-core/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","openzeppelin-contracts/=lib/openzeppelin-contracts/","openzeppelin/=lib/openzeppelin-contracts/contracts/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"useLiteralContent": false,"bytecodeHash": "ipfs","appendCBOR": true},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Denylisted","type":"error"},{"inputs":[],"name":"InvalidAdminChange","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"IsOwner","type":"error"},{"inputs":[],"name":"NotPendingAdmin","type":"error"},{"inputs":[],"name":"OnlyMinter","type":"error"},{"inputs":[],"name":"OperationNotAllowed","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[],"name":"ZeroAddressException","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminTransferRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newMinter","type":"address"},{"indexed":true,"internalType":"address","name":"oldMinter","type":"address"}],"name":"MinterUpdated","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":"newSlasher","type":"address"},{"indexed":true,"internalType":"address","name":"oldSlasher","type":"address"}],"name":"SlasherUpdated","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"addToDenylist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"denylisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"removeFromDenylist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","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":"address","name":"newMinter","type":"address"}],"name":"setMinter","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":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"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
61016060405234801561001157600080fd5b506040516124563803806124568339810160408190526100309161040e565b6040518060400160405280600981526020016813195d995b081554d160ba1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600981526020016813195d995b081554d160ba1b815250604051806040016040528060068152602001651b1d9b1554d160d21b81525081600390816100bd91906104df565b5060046100ca82826104df565b506100da915083905060056101e2565b610120526100e98160066101e2565b61014052815160208084019190912060e052815190820120610100524660a05261017660e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506001600160a01b0381166101a757604051635919af9760e11b815260040160405180910390fd5b6101b2600082610215565b6101dc7fd15a633a037a8cb1e45b365d4ebd232aae2a8d891c9de0523b8e2fe68362d06682610215565b50610611565b60006020835110156101fe576101f7836102a2565b905061020f565b8161020984826104df565b5060ff90505b92915050565b8161029457600a546040516001600160a01b038084169216907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3600a5461026c906000906001600160a01b03166102e9565b600a80546001600160a01b0383166001600160a01b031991821617909155600b805490911690555b61029e828261036c565b5050565b600080829050601f815111156102d6578260405163305a27a960e01b81526004016102cd919061059e565b60405180910390fd5b80516102e1826105ed565b179392505050565b60008281526009602090815260408083206001600160a01b038516845290915290205460ff161561029e5760008281526009602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008281526009602090815260408083206001600160a01b038516845290915290205460ff1661029e5760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556103ca3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006020828403121561042057600080fd5b81516001600160a01b038116811461043757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061046857607f821691505b60208210810361048857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156104da576000816000526020600020601f850160051c810160208610156104b75750805b601f850160051c820191505b818110156104d6578281556001016104c3565b5050505b505050565b81516001600160401b038111156104f8576104f861043e565b61050c816105068454610454565b8461048e565b602080601f83116001811461054157600084156105295750858301515b600019600386901b1c1916600185901b1785556104d6565b600085815260208120601f198616915b8281101561057057888601518255948401946001909101908401610551565b508582101561058e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020808352835180602085015260005b818110156105cc578581018301518582016040015282016105b0565b506000604082860101526040601f19601f8301168501019250505092915050565b805160208083015191908110156104885760001960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051611deb61066b600039600061086f01526000610844015260006110680152600061104001526000610f9b01526000610fc501526000610fef0152611deb6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806340c10f191161011a57806391d14854116100ad578063a9059cbb1161007c578063a9059cbb14610450578063d505accf14610463578063d547741f14610476578063dd62ed3e14610489578063fca3b5aa1461049c57600080fd5b806391d148541461041a57806395d89b411461042d578063a217fddf14610435578063a457c2d71461043d57600080fd5b806379cc6790116100e957806379cc6790146103c85780637ecebe00146103db57806384b0196e146103ee5780638da5cb5b1461040957600080fd5b806340c10f191461036657806342966c681461037957806370a082311461038c57806375829def146103b557600080fd5b806323b872dd11610192578063313ce56711610161578063313ce567146103295780633644e5151461033857806336568abe14610340578063395093511461035357600080fd5b806323b872dd146102bd578063248a9ca3146102d05780632f2ff15d146102f3578063300265421461030657600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630e18b6811461029057806318160ddd14610298578063228b547e146102aa57600080fd5b806301ffc9a71461020057806302c52db01461022857806306fdde031461023d5780630754617214610252575b600080fd5b61021361020e3660046119ce565b6104af565b60405190151581526020015b60405180910390f35b61023b610236366004611a14565b6104e6565b005b610245610532565b60405161021f9190611a7f565b600d54610265906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b61021361028b366004611a92565b6105c4565b61023b6105dc565b6002545b60405190815260200161021f565b61023b6102b8366004611a14565b610614565b6102136102cb366004611abc565b61068e565b61029c6102de366004611af8565b60009081526009602052604090206001015490565b61023b610301366004611b11565b6106b2565b610213610314366004611a14565b600c6020526000908152604090205460ff1681565b6040516012815260200161021f565b61029c6106ec565b61023b61034e366004611b11565b6106fb565b610213610361366004611a92565b610714565b61023b610374366004611a92565b610736565b61023b610387366004611af8565b61076f565b61029c61039a366004611a14565b6001600160a01b031660009081526020819052604090205490565b61023b6103c3366004611a14565b61077c565b61023b6103d6366004611a92565b610803565b61029c6103e9366004611a14565b610818565b6103f6610836565b60405161021f9796959493929190611b3d565b600a546001600160a01b0316610265565b610213610428366004611b11565b6108bf565b6102456108ea565b61029c600081565b61021361044b366004611a92565b6108f9565b61021361045e366004611a92565b610979565b61023b610471366004611bd6565b610987565b61023b610484366004611b11565b610aeb565b61029c610497366004611c49565b610b1f565b61023b6104aa366004611a14565b610b4a565b60006001600160e01b03198216637965db0b60e01b14806104e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b7fd15a633a037a8cb1e45b365d4ebd232aae2a8d891c9de0523b8e2fe68362d06661051081610bb3565b506001600160a01b03166000908152600c60205260409020805460ff19169055565b60606003805461054190611c73565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611c73565b80156105ba5780601f1061058f576101008083540402835291602001916105ba565b820191906000526020600020905b81548152906001019060200180831161059d57829003601f168201915b5050505050905090565b6000336105d2818585610bbd565b5060019392505050565b600b546001600160a01b031633146106075760405163058d9a1b60e01b815260040160405180910390fd5b610612600033610ce2565b565b7fd15a633a037a8cb1e45b365d4ebd232aae2a8d891c9de0523b8e2fe68362d06661063e81610bb3565b8161064a6000826108bf565b156106685760405163e4183cb160e01b815260040160405180910390fd5b50506001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60003361069c858285610d6b565b6106a7858585610ddf565b506001949350505050565b60006106bd81610bb3565b82806106dc5760405163318bd07d60e11b815260040160405180910390fd5b6106e68484610ce2565b50505050565b60006106f6610f8e565b905090565b604051637a851da960e11b815260040160405180910390fd5b6000336105d28185856107278383610b1f565b6107319190611cbd565b610bbd565b600d546001600160a01b0316331461076157604051639cdc2ed560e01b815260040160405180910390fd5b61076b82826110b9565b5050565b6107793382611184565b50565b600061078781610bb3565b336001600160a01b038316036107b05760405163318bd07d60e11b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b03848116918217909255600a54604051919216907fefdcbba819467e00b0262c12892dda980bac68580b72178e57a162368b80876690600090a35050565b61080e823383610d6b565b61076b8282611184565b6001600160a01b0381166000908152600760205260408120546104e0565b60006060808280808361086a7f000000000000000000000000000000000000000000000000000000000000000060056112bf565b6108957f000000000000000000000000000000000000000000000000000000000000000060066112bf565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461054190611c73565b600033816109078286610b1f565b90508381101561096c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106a78286868403610bbd565b6000336105d2818585610ddf565b834211156109d75760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610963565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610a068c61136a565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610a6182611392565b90506000610a71828787876113bf565b9050896001600160a01b0316816001600160a01b031614610ad45760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610963565b610adf8a8a8a610bbd565b50505050505050505050565b6000610af681610bb3565b8280610b155760405163318bd07d60e11b815260040160405180910390fd5b6106e684846113e7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610b5581610bb3565b600d546040516001600160a01b03918216918416907f1cf2de25c5bf439ac0287061c3a0fa69b3b02867d0ccfd2ded34e42577050b7390600090a350600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610779813361144e565b6001600160a01b038316610c1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610963565b6001600160a01b038216610c805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610963565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b81610d6157600a546040516001600160a01b038084169216907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3600a54610d39906000906001600160a01b03166113e7565b600a80546001600160a01b0383166001600160a01b031991821617909155600b805490911690555b61076b82826114a7565b6000610d778484610b1f565b905060001981146106e65781811015610dd25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610963565b6106e68484848403610bbd565b6001600160a01b038316610e435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610963565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610963565b610eb083838361152d565b6001600160a01b03831660009081526020819052604090205481811015610f285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610963565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106e6565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610fe757507f000000000000000000000000000000000000000000000000000000000000000046145b1561101157507f000000000000000000000000000000000000000000000000000000000000000090565b6106f6604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661110f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610963565b61111b6000838361152d565b806002600082825461112d9190611cbd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166111e45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610963565b6111f08260008361152d565b6001600160a01b038216600090815260208190526040902054818110156112645760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610963565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cd5565b505050565b606060ff83146112d9576112d2836115a4565b90506104e0565b8180546112e590611c73565b80601f016020809104026020016040519081016040528092919081815260200182805461131190611c73565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505090506104e0565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006104e061139f610f8e565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006113d0878787876115e3565b915091506113dd816116a7565b5095945050505050565b6113f182826108bf565b1561076b5760008281526009602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61145882826108bf565b61076b57611465816117f1565b611470836020611803565b604051602001611481929190611ce6565b60408051601f198184030181529082905262461bcd60e51b825261096391600401611a7f565b6114b182826108bf565b61076b5760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b0383166000908152600c602052604090205460ff168061156c57506001600160a01b0382166000908152600c602052604090205460ff165b806115865750336000908152600c602052604090205460ff165b156112ba5760405163445cd55760e01b815260040160405180910390fd5b606060006115b1836119a6565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561161a575060009050600361169e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561166e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166116975760006001925092505061169e565b9150600090505b94509492505050565b60008160048111156116bb576116bb611d5b565b036116c35750565b60018160048111156116d7576116d7611d5b565b036117245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610963565b600281600481111561173857611738611d5b565b036117855760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610963565b600381600481111561179957611799611d5b565b036107795760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610963565b60606104e06001600160a01b03831660145b60606000611812836002611d71565b61181d906002611cbd565b67ffffffffffffffff81111561183557611835611cd0565b6040519080825280601f01601f19166020018201604052801561185f576020820181803683370190505b509050600360fc1b8160008151811061187a5761187a611d88565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106118a9576118a9611d88565b60200101906001600160f81b031916908160001a90535060006118cd846002611d71565b6118d8906001611cbd565b90505b6001811115611950576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061190c5761190c611d88565b1a60f81b82828151811061192257611922611d88565b60200101906001600160f81b031916908160001a90535060049490941c9361194981611d9e565b90506118db565b50831561199f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610963565b9392505050565b600060ff8216601f8111156104e057604051632cd44ac360e21b815260040160405180910390fd5b6000602082840312156119e057600080fd5b81356001600160e01b03198116811461199f57600080fd5b80356001600160a01b0381168114611a0f57600080fd5b919050565b600060208284031215611a2657600080fd5b61199f826119f8565b60005b83811015611a4a578181015183820152602001611a32565b50506000910152565b60008151808452611a6b816020860160208601611a2f565b601f01601f19169290920160200192915050565b60208152600061199f6020830184611a53565b60008060408385031215611aa557600080fd5b611aae836119f8565b946020939093013593505050565b600080600060608486031215611ad157600080fd5b611ada846119f8565b9250611ae8602085016119f8565b9150604084013590509250925092565b600060208284031215611b0a57600080fd5b5035919050565b60008060408385031215611b2457600080fd5b82359150611b34602084016119f8565b90509250929050565b60ff60f81b881681526000602060e06020840152611b5e60e084018a611a53565b8381036040850152611b70818a611a53565b606085018990526001600160a01b038816608086015260a0850187905284810360c08601528551808252602080880193509091019060005b81811015611bc457835183529284019291840191600101611ba8565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215611bf157600080fd5b611bfa886119f8565b9650611c08602089016119f8565b95506040880135945060608801359350608088013560ff81168114611c2c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611c5c57600080fd5b611c65836119f8565b9150611b34602084016119f8565b600181811c90821680611c8757607f821691505b60208210810361138c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104e0576104e0611ca7565b634e487b7160e01b600052604160045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611d1e816017850160208801611a2f565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611d4f816028840160208801611a2f565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b80820281158282048414176104e0576104e0611ca7565b634e487b7160e01b600052603260045260246000fd5b600081611dad57611dad611ca7565b50600019019056fea26469706673582212200820ca24a3c65aba2186bbdef301b0120efbb8573928448a693f93b89ebdadff64736f6c634300081900330000000000000000000000005b5004f1bc12c66f94782070032a6eadc6821a3e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806340c10f191161011a57806391d14854116100ad578063a9059cbb1161007c578063a9059cbb14610450578063d505accf14610463578063d547741f14610476578063dd62ed3e14610489578063fca3b5aa1461049c57600080fd5b806391d148541461041a57806395d89b411461042d578063a217fddf14610435578063a457c2d71461043d57600080fd5b806379cc6790116100e957806379cc6790146103c85780637ecebe00146103db57806384b0196e146103ee5780638da5cb5b1461040957600080fd5b806340c10f191461036657806342966c681461037957806370a082311461038c57806375829def146103b557600080fd5b806323b872dd11610192578063313ce56711610161578063313ce567146103295780633644e5151461033857806336568abe14610340578063395093511461035357600080fd5b806323b872dd146102bd578063248a9ca3146102d05780632f2ff15d146102f3578063300265421461030657600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630e18b6811461029057806318160ddd14610298578063228b547e146102aa57600080fd5b806301ffc9a71461020057806302c52db01461022857806306fdde031461023d5780630754617214610252575b600080fd5b61021361020e3660046119ce565b6104af565b60405190151581526020015b60405180910390f35b61023b610236366004611a14565b6104e6565b005b610245610532565b60405161021f9190611a7f565b600d54610265906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b61021361028b366004611a92565b6105c4565b61023b6105dc565b6002545b60405190815260200161021f565b61023b6102b8366004611a14565b610614565b6102136102cb366004611abc565b61068e565b61029c6102de366004611af8565b60009081526009602052604090206001015490565b61023b610301366004611b11565b6106b2565b610213610314366004611a14565b600c6020526000908152604090205460ff1681565b6040516012815260200161021f565b61029c6106ec565b61023b61034e366004611b11565b6106fb565b610213610361366004611a92565b610714565b61023b610374366004611a92565b610736565b61023b610387366004611af8565b61076f565b61029c61039a366004611a14565b6001600160a01b031660009081526020819052604090205490565b61023b6103c3366004611a14565b61077c565b61023b6103d6366004611a92565b610803565b61029c6103e9366004611a14565b610818565b6103f6610836565b60405161021f9796959493929190611b3d565b600a546001600160a01b0316610265565b610213610428366004611b11565b6108bf565b6102456108ea565b61029c600081565b61021361044b366004611a92565b6108f9565b61021361045e366004611a92565b610979565b61023b610471366004611bd6565b610987565b61023b610484366004611b11565b610aeb565b61029c610497366004611c49565b610b1f565b61023b6104aa366004611a14565b610b4a565b60006001600160e01b03198216637965db0b60e01b14806104e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b7fd15a633a037a8cb1e45b365d4ebd232aae2a8d891c9de0523b8e2fe68362d06661051081610bb3565b506001600160a01b03166000908152600c60205260409020805460ff19169055565b60606003805461054190611c73565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611c73565b80156105ba5780601f1061058f576101008083540402835291602001916105ba565b820191906000526020600020905b81548152906001019060200180831161059d57829003601f168201915b5050505050905090565b6000336105d2818585610bbd565b5060019392505050565b600b546001600160a01b031633146106075760405163058d9a1b60e01b815260040160405180910390fd5b610612600033610ce2565b565b7fd15a633a037a8cb1e45b365d4ebd232aae2a8d891c9de0523b8e2fe68362d06661063e81610bb3565b8161064a6000826108bf565b156106685760405163e4183cb160e01b815260040160405180910390fd5b50506001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60003361069c858285610d6b565b6106a7858585610ddf565b506001949350505050565b60006106bd81610bb3565b82806106dc5760405163318bd07d60e11b815260040160405180910390fd5b6106e68484610ce2565b50505050565b60006106f6610f8e565b905090565b604051637a851da960e11b815260040160405180910390fd5b6000336105d28185856107278383610b1f565b6107319190611cbd565b610bbd565b600d546001600160a01b0316331461076157604051639cdc2ed560e01b815260040160405180910390fd5b61076b82826110b9565b5050565b6107793382611184565b50565b600061078781610bb3565b336001600160a01b038316036107b05760405163318bd07d60e11b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b03848116918217909255600a54604051919216907fefdcbba819467e00b0262c12892dda980bac68580b72178e57a162368b80876690600090a35050565b61080e823383610d6b565b61076b8282611184565b6001600160a01b0381166000908152600760205260408120546104e0565b60006060808280808361086a7f4c6576656c20555344000000000000000000000000000000000000000000000960056112bf565b6108957f310000000000000000000000000000000000000000000000000000000000000160066112bf565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461054190611c73565b600033816109078286610b1f565b90508381101561096c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106a78286868403610bbd565b6000336105d2818585610ddf565b834211156109d75760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610963565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610a068c61136a565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610a6182611392565b90506000610a71828787876113bf565b9050896001600160a01b0316816001600160a01b031614610ad45760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610963565b610adf8a8a8a610bbd565b50505050505050505050565b6000610af681610bb3565b8280610b155760405163318bd07d60e11b815260040160405180910390fd5b6106e684846113e7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610b5581610bb3565b600d546040516001600160a01b03918216918416907f1cf2de25c5bf439ac0287061c3a0fa69b3b02867d0ccfd2ded34e42577050b7390600090a350600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610779813361144e565b6001600160a01b038316610c1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610963565b6001600160a01b038216610c805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610963565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b81610d6157600a546040516001600160a01b038084169216907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3600a54610d39906000906001600160a01b03166113e7565b600a80546001600160a01b0383166001600160a01b031991821617909155600b805490911690555b61076b82826114a7565b6000610d778484610b1f565b905060001981146106e65781811015610dd25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610963565b6106e68484848403610bbd565b6001600160a01b038316610e435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610963565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610963565b610eb083838361152d565b6001600160a01b03831660009081526020819052604090205481811015610f285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610963565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106e6565b6000306001600160a01b037f0000000000000000000000007c1156e515aa1a2e851674120074968c905aaf3716148015610fe757507f000000000000000000000000000000000000000000000000000000000000000146145b1561101157507f12aab9ef9175d273e442328dcd9c6aaa57b478be6f8266bfefda7a03e268e33d90565b6106f6604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527fba319996c11b486d8c61c53a19137a98c5e1ab3030ca83be8063eb19a89b6b4f918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b03821661110f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610963565b61111b6000838361152d565b806002600082825461112d9190611cbd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166111e45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610963565b6111f08260008361152d565b6001600160a01b038216600090815260208190526040902054818110156112645760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610963565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cd5565b505050565b606060ff83146112d9576112d2836115a4565b90506104e0565b8180546112e590611c73565b80601f016020809104026020016040519081016040528092919081815260200182805461131190611c73565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505090506104e0565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006104e061139f610f8e565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006113d0878787876115e3565b915091506113dd816116a7565b5095945050505050565b6113f182826108bf565b1561076b5760008281526009602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61145882826108bf565b61076b57611465816117f1565b611470836020611803565b604051602001611481929190611ce6565b60408051601f198184030181529082905262461bcd60e51b825261096391600401611a7f565b6114b182826108bf565b61076b5760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556114e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b0383166000908152600c602052604090205460ff168061156c57506001600160a01b0382166000908152600c602052604090205460ff165b806115865750336000908152600c602052604090205460ff165b156112ba5760405163445cd55760e01b815260040160405180910390fd5b606060006115b1836119a6565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561161a575060009050600361169e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561166e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166116975760006001925092505061169e565b9150600090505b94509492505050565b60008160048111156116bb576116bb611d5b565b036116c35750565b60018160048111156116d7576116d7611d5b565b036117245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610963565b600281600481111561173857611738611d5b565b036117855760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610963565b600381600481111561179957611799611d5b565b036107795760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610963565b60606104e06001600160a01b03831660145b60606000611812836002611d71565b61181d906002611cbd565b67ffffffffffffffff81111561183557611835611cd0565b6040519080825280601f01601f19166020018201604052801561185f576020820181803683370190505b509050600360fc1b8160008151811061187a5761187a611d88565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106118a9576118a9611d88565b60200101906001600160f81b031916908160001a90535060006118cd846002611d71565b6118d8906001611cbd565b90505b6001811115611950576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061190c5761190c611d88565b1a60f81b82828151811061192257611922611d88565b60200101906001600160f81b031916908160001a90535060049490941c9361194981611d9e565b90506118db565b50831561199f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610963565b9392505050565b600060ff8216601f8111156104e057604051632cd44ac360e21b815260040160405180910390fd5b6000602082840312156119e057600080fd5b81356001600160e01b03198116811461199f57600080fd5b80356001600160a01b0381168114611a0f57600080fd5b919050565b600060208284031215611a2657600080fd5b61199f826119f8565b60005b83811015611a4a578181015183820152602001611a32565b50506000910152565b60008151808452611a6b816020860160208601611a2f565b601f01601f19169290920160200192915050565b60208152600061199f6020830184611a53565b60008060408385031215611aa557600080fd5b611aae836119f8565b946020939093013593505050565b600080600060608486031215611ad157600080fd5b611ada846119f8565b9250611ae8602085016119f8565b9150604084013590509250925092565b600060208284031215611b0a57600080fd5b5035919050565b60008060408385031215611b2457600080fd5b82359150611b34602084016119f8565b90509250929050565b60ff60f81b881681526000602060e06020840152611b5e60e084018a611a53565b8381036040850152611b70818a611a53565b606085018990526001600160a01b038816608086015260a0850187905284810360c08601528551808252602080880193509091019060005b81811015611bc457835183529284019291840191600101611ba8565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215611bf157600080fd5b611bfa886119f8565b9650611c08602089016119f8565b95506040880135945060608801359350608088013560ff81168114611c2c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611c5c57600080fd5b611c65836119f8565b9150611b34602084016119f8565b600181811c90821680611c8757607f821691505b60208210810361138c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104e0576104e0611ca7565b634e487b7160e01b600052604160045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611d1e816017850160208801611a2f565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611d4f816028840160208801611a2f565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b80820281158282048414176104e0576104e0611ca7565b634e487b7160e01b600052603260045260246000fd5b600081611dad57611dad611ca7565b50600019019056fea26469706673582212200820ca24a3c65aba2186bbdef301b0120efbb8573928448a693f93b89ebdadff64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005b5004f1bc12c66f94782070032a6eadc6821a3e
-----Decoded View---------------
Arg [0] : admin (address): 0x5b5004f1bC12C66F94782070032a6eAdC6821a3e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b5004f1bc12c66f94782070032a6eadc6821a3e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.