ERC-20
Overview
Max Total Supply
3,000,000 AUR
Holders
184
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
121.380596326366898126 AURValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Aurum
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
123456789101112131415161718// SPDX-License-Identifier: MITpragma solidity ^0.8.26;import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import {ERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";contract Aurum is ERC20, ERC20Burnable, Ownable, ERC20Permit {constructor(address initialOwner) ERC20("Aurum", "AUR") Ownable(initialOwner) ERC20Permit("Aurum") {_mint(initialOwner, 3_000_000 * 10 ** decimals());}function mint(address to, uint amount) public onlyOwner {require(totalSupply() + amount <= 20_000_000 * 10 ** decimals(), "Max supply");_mint(to, amount);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.** 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 ERC-20
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Context} from "../../../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 a `value` amount of tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 value) public virtual {_burn(_msgSender(), value);}/*** @dev Destroys a `value` amount of tokens from `account`, deducting from* the caller's allowance.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.20;import {IERC20Permit} from "./IERC20Permit.sol";import {ERC20} from "../ERC20.sol";import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";import {EIP712} from "../../../utils/cryptography/EIP712.sol";import {Nonces} from "../../../utils/Nonces.sol";/*** @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].** Adds the {permit} method, which can be used to change an account's ERC-20 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.*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {bytes32 private constant PERMIT_TYPEHASH =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");/*** @dev Permit deadline has expired.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** The initial owner is set to the address provided by the deployer. 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;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 standard as defined in the ERC.*/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 value of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC-20 standard.*/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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC-20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].** Adds the {permit} method, which can be used to change an account's ERC-20 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.** ==== Security Considerations** There are two important considerations concerning the use of `permit`. The first is that a valid permit signature* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be* considered as an intention to spend the allowance in any specific way. The second is that because permits have* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be* generally recommended is:** ```solidity* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}* doThing(..., value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @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}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.20;import {MessageHashUtils} from "./MessageHashUtils.sol";import {ShortStrings, ShortString} from "../ShortStrings.sol";import {IERC5267} from "../../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 scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose* encoding is very generic and therefore its 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 order to* produce the hash of their typed data 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 (last updated v5.0.0) (utils/Nonces.sol)pragma solidity ^0.8.20;/*** @dev Provides tracking nonces for addresses. Nonces will only increment.*/abstract contract Nonces {/*** @dev The nonce used for an `account` is not the expected current nonce.*/error InvalidAccountNonce(address account, uint256 currentNonce);mapping(address account => uint256) private _nonces;/*** @dev Returns the next unused nonce for an address.*/function nonces(address owner) public view virtual returns (uint256) {return _nonces[owner];}/*** @dev Consumes a nonce.** Returns the current value and increments nonce.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an ERC-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ShortStrings.sol)pragma solidity ^0.8.20;import {StorageSlot} from "./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 v5.0.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.20;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 (last updated v5.1.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @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 ERC-1967 implementation slot:* ```solidity* contract ERC1967 {* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)pragma solidity ^0.8.20;import {Panic} from "../Panic.sol";import {SafeCast} from "./SafeCast.sol";/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an success flag (no overflow).*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;import {SafeCast} from "./SafeCast.sol";/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.** IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute* one branch when needed, making this function more expensive.*/function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {unchecked {// branchless ternary works because:// b ^ (a ^ b) == a// b ^ 0 == breturn b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)pragma solidity ^0.8.20;/*** @dev Helper library for emitting standardized panic codes.** ```solidity* contract Example {* using Panic for uint256;** // Use any of the declared internal constants* function foo() { Panic.GENERIC.panic(); }** // Alternatively* function foo() { Panic.panic(Panic.GENERIC); }* }* ```** Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].** _Available since v5.1._*/// slither-disable-next-line unused-statelibrary Panic {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526{"remappings": ["@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"useLiteralContent": false,"bytecodeHash": "ipfs","appendCBOR": true},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"DOMAIN_SEPARATOR","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":"value","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610160604052348015610010575f80fd5b5060405161199838038061199883398101604081905261002f916103f0565b60405180604001604052806005815260200164417572756d60d81b81525080604051806040016040528060018152602001603160f81b8152508360405180604001604052806005815260200164417572756d60d81b8152506040518060400160405280600381526020016220aaa960e91b81525081600390816100b291906104b5565b5060046100bf82826104b5565b5050506001600160a01b0381166100f057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100f9816101d2565b50610105826006610223565b61012052610114816007610223565b61014052815160208084019190912060e052815190820120610100524660a0526101a060e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506101cc816101ba6012600a610666565b6101c790622dc6c0610674565b610255565b506106f6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f60208351101561023e576102378361028d565b905061024f565b8161024984826104b5565b5060ff90505b92915050565b6001600160a01b03821661027e5760405163ec442f0560e01b81525f60048201526024016100e7565b6102895f83836102ca565b5050565b5f80829050601f815111156102b7578260405163305a27a960e01b81526004016100e7919061068b565b80516102c2826106c0565b179392505050565b6001600160a01b0383166102f4578060025f8282546102e991906106e3565b909155506103649050565b6001600160a01b0383165f90815260208190526040902054818110156103465760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100e7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166103805760028054829003905561039e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103e391815260200190565b60405180910390a3505050565b5f60208284031215610400575f80fd5b81516001600160a01b0381168114610416575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061044557607f821691505b60208210810361046357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104b057805f5260205f20601f840160051c8101602085101561048e5750805b601f840160051c820191505b818110156104ad575f815560010161049a565b50505b505050565b81516001600160401b038111156104ce576104ce61041d565b6104e2816104dc8454610431565b84610469565b6020601f821160018114610514575f83156104fd5750848201515b5f19600385901b1c1916600184901b1784556104ad565b5f84815260208120601f198516915b828110156105435787850151825560209485019460019092019101610523565b508482101561056057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156105be578085048111156105a2576105a261056f565b60018416156105b057908102905b60019390931c928002610587565b935093915050565b5f826105d45750600161024f565b816105e057505f61024f565b81600181146105f657600281146106005761061c565b600191505061024f565b60ff8411156106115761061161056f565b50506001821b61024f565b5060208310610133831016604e8410600b841016171561063f575081810a61024f565b61064b5f198484610583565b805f190482111561065e5761065e61056f565b029392505050565b5f61041660ff8416836105c6565b808202811582820484141761024f5761024f61056f565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80516020808301519190811015610463575f1960209190910360031b1b16919050565b8082018082111561024f5761024f61056f565b60805160a05160c05160e0516101005161012051610140516112516107475f395f61097501525f61094801525f61080b01525f6107e301525f61073e01525f61076801525f61079201526112515ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a957806395d89b411161006e57806395d89b4114610251578063a9059cbb14610259578063d505accf1461026c578063dd62ed3e1461027f578063f2fde38b146102b7575f80fd5b8063715018a6146101ed57806379cc6790146101f55780637ecebe001461020857806384b0196e1461021b5780638da5cb5b14610236575f80fd5b8063313ce567116100ef578063313ce567146101865780633644e5151461019557806340c10f191461019d57806342966c68146101b257806370a08231146101c5575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102ca565b6040516101359190610ea6565b60405180910390f35b61015161014c366004610eda565b61035a565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610f02565b610373565b60405160128152602001610135565b610165610396565b6101b06101ab366004610eda565b6103a4565b005b6101b06101c0366004610f3c565b610428565b6101656101d3366004610f53565b6001600160a01b03165f9081526020819052604090205490565b6101b0610435565b6101b0610203366004610eda565b610448565b610165610216366004610f53565b61045d565b61022361047a565b6040516101359796959493929190610f6c565b6005546040516001600160a01b039091168152602001610135565b6101286104bc565b610151610267366004610eda565b6104cb565b6101b061027a366004611002565b6104d8565b61016561028d36600461106f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101b06102c5366004610f53565b61060e565b6060600380546102d9906110a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610305906110a0565b80156103505780601f1061032757610100808354040283529160200191610350565b820191905f5260205f20905b81548152906001019060200180831161033357829003601f168201915b5050505050905090565b5f33610367818585610648565b60019150505b92915050565b5f3361038085828561065a565b61038b8585856106d5565b506001949350505050565b5f61039f610732565b905090565b6103ac61085b565b6103b86012600a6111cf565b6103c6906301312d006111dd565b816103d060025490565b6103da91906111f4565b111561041a5760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064015b60405180910390fd5b6104248282610888565b5050565b61043233826108bc565b50565b61043d61085b565b6104465f6108f0565b565b61045382338361065a565b61042482826108bc565b6001600160a01b0381165f9081526008602052604081205461036d565b5f6060805f805f606061048b610941565b61049361096e565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102d9906110a0565b5f336103678185856106d5565b834211156104fc5760405163313c898160e11b815260048101859052602401610411565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105478c6001600160a01b03165f90815260086020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6105a18261099b565b90505f6105b0828787876109c7565b9050896001600160a01b0316816001600160a01b0316146105f7576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610411565b6106028a8a8a610648565b50505050505050505050565b61061661085b565b6001600160a01b03811661063f57604051631e4fbdf760e01b81525f6004820152602401610411565b610432816108f0565b61065583838360016109f3565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106cf57818110156106c157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610411565b6106cf84848484035f6109f3565b50505050565b6001600160a01b0383166106fe57604051634b637e8f60e11b81525f6004820152602401610411565b6001600160a01b0382166107275760405163ec442f0560e01b81525f6004820152602401610411565b610655838383610ac5565b5f306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561078a57507f000000000000000000000000000000000000000000000000000000000000000046145b156107b457507f000000000000000000000000000000000000000000000000000000000000000090565b61039f604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6005546001600160a01b031633146104465760405163118cdaa760e01b8152336004820152602401610411565b6001600160a01b0382166108b15760405163ec442f0560e01b81525f6004820152602401610411565b6104245f8383610ac5565b6001600160a01b0382166108e557604051634b637e8f60e11b81525f6004820152602401610411565b610424825f83610ac5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b606061039f7f00000000000000000000000000000000000000000000000000000000000000006006610beb565b606061039f7f00000000000000000000000000000000000000000000000000000000000000006007610beb565b5f61036d6109a7610732565b8360405161190160f01b8152600281019290925260228201526042902090565b5f805f806109d788888888610c94565b9250925092506109e78282610d5c565b50909695505050505050565b6001600160a01b038416610a1c5760405163e602df0560e01b81525f6004820152602401610411565b6001600160a01b038316610a4557604051634a1406b160e11b81525f6004820152602401610411565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106cf57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ab791815260200190565b60405180910390a350505050565b6001600160a01b038316610aef578060025f828254610ae491906111f4565b90915550610b5f9050565b6001600160a01b0383165f9081526020819052604090205481811015610b415760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610411565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b7b57600280548290039055610b99565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bde91815260200190565b60405180910390a3505050565b606060ff8314610c0557610bfe83610e14565b905061036d565b818054610c11906110a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d906110a0565b8015610c885780601f10610c5f57610100808354040283529160200191610c88565b820191905f5260205f20905b815481529060010190602001808311610c6b57829003601f168201915b5050505050905061036d565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610ccd57505f91506003905082610d52565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610d1e573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116610d4957505f925060019150829050610d52565b92505f91508190505b9450945094915050565b5f826003811115610d6f57610d6f611207565b03610d78575050565b6001826003811115610d8c57610d8c611207565b03610daa5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610dbe57610dbe611207565b03610ddf5760405163fce698f760e01b815260048101829052602401610411565b6003826003811115610df357610df3611207565b03610424576040516335e2f38360e21b815260048101829052602401610411565b60605f610e2083610e51565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561036d57604051632cd44ac360e21b815260040160405180910390fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610eb86020830184610e78565b9392505050565b80356001600160a01b0381168114610ed5575f80fd5b919050565b5f8060408385031215610eeb575f80fd5b610ef483610ebf565b946020939093013593505050565b5f805f60608486031215610f14575f80fd5b610f1d84610ebf565b9250610f2b60208501610ebf565b929592945050506040919091013590565b5f60208284031215610f4c575f80fd5b5035919050565b5f60208284031215610f63575f80fd5b610eb882610ebf565b60ff60f81b8816815260e060208201525f610f8a60e0830189610e78565b8281036040840152610f9c8189610e78565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610ff1578351835260209384019390920191600101610fd3565b50909b9a5050505050505050505050565b5f805f805f805f60e0888a031215611018575f80fd5b61102188610ebf565b965061102f60208901610ebf565b95506040880135945060608801359350608088013560ff81168114611052575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611080575f80fd5b61108983610ebf565b915061109760208401610ebf565b90509250929050565b600181811c908216806110b457607f821691505b6020821081036110d257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156111275780850481111561110b5761110b6110d8565b600184161561111957908102905b60019390931c9280026110f0565b935093915050565b5f8261113d5750600161036d565b8161114957505f61036d565b816001811461115f576002811461116957611185565b600191505061036d565b60ff84111561117a5761117a6110d8565b50506001821b61036d565b5060208310610133831016604e8410600b84101617156111a8575081810a61036d565b6111b45f1984846110ec565b805f19048211156111c7576111c76110d8565b029392505050565b5f610eb860ff84168361112f565b808202811582820484141761036d5761036d6110d8565b8082018082111561036d5761036d6110d8565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220a0b9c9d930d53a1355924a8268c4b486592d057d99d6022e061ed6eea59842fb64736f6c634300081a00330000000000000000000000001df49e1211c2fd664b3d7a7480230e36f157e328
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a957806395d89b411161006e57806395d89b4114610251578063a9059cbb14610259578063d505accf1461026c578063dd62ed3e1461027f578063f2fde38b146102b7575f80fd5b8063715018a6146101ed57806379cc6790146101f55780637ecebe001461020857806384b0196e1461021b5780638da5cb5b14610236575f80fd5b8063313ce567116100ef578063313ce567146101865780633644e5151461019557806340c10f191461019d57806342966c68146101b257806370a08231146101c5575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102ca565b6040516101359190610ea6565b60405180910390f35b61015161014c366004610eda565b61035a565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610f02565b610373565b60405160128152602001610135565b610165610396565b6101b06101ab366004610eda565b6103a4565b005b6101b06101c0366004610f3c565b610428565b6101656101d3366004610f53565b6001600160a01b03165f9081526020819052604090205490565b6101b0610435565b6101b0610203366004610eda565b610448565b610165610216366004610f53565b61045d565b61022361047a565b6040516101359796959493929190610f6c565b6005546040516001600160a01b039091168152602001610135565b6101286104bc565b610151610267366004610eda565b6104cb565b6101b061027a366004611002565b6104d8565b61016561028d36600461106f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101b06102c5366004610f53565b61060e565b6060600380546102d9906110a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610305906110a0565b80156103505780601f1061032757610100808354040283529160200191610350565b820191905f5260205f20905b81548152906001019060200180831161033357829003601f168201915b5050505050905090565b5f33610367818585610648565b60019150505b92915050565b5f3361038085828561065a565b61038b8585856106d5565b506001949350505050565b5f61039f610732565b905090565b6103ac61085b565b6103b86012600a6111cf565b6103c6906301312d006111dd565b816103d060025490565b6103da91906111f4565b111561041a5760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064015b60405180910390fd5b6104248282610888565b5050565b61043233826108bc565b50565b61043d61085b565b6104465f6108f0565b565b61045382338361065a565b61042482826108bc565b6001600160a01b0381165f9081526008602052604081205461036d565b5f6060805f805f606061048b610941565b61049361096e565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102d9906110a0565b5f336103678185856106d5565b834211156104fc5760405163313c898160e11b815260048101859052602401610411565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105478c6001600160a01b03165f90815260086020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6105a18261099b565b90505f6105b0828787876109c7565b9050896001600160a01b0316816001600160a01b0316146105f7576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610411565b6106028a8a8a610648565b50505050505050505050565b61061661085b565b6001600160a01b03811661063f57604051631e4fbdf760e01b81525f6004820152602401610411565b610432816108f0565b61065583838360016109f3565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106cf57818110156106c157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610411565b6106cf84848484035f6109f3565b50505050565b6001600160a01b0383166106fe57604051634b637e8f60e11b81525f6004820152602401610411565b6001600160a01b0382166107275760405163ec442f0560e01b81525f6004820152602401610411565b610655838383610ac5565b5f306001600160a01b037f0000000000000000000000007f144f8691cba3d2efd8e5bcf042f9303ee31a461614801561078a57507f000000000000000000000000000000000000000000000000000000000000009246145b156107b457507faa317e1bf18667d8b0830ff75c4504927c80673d202f8b92333391cf5bd1a23690565b61039f604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527facdbaa2d9365d09420a73f7eac1bfd80ef7f0a52431b7ed44c1d8a8f77e56da8918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6005546001600160a01b031633146104465760405163118cdaa760e01b8152336004820152602401610411565b6001600160a01b0382166108b15760405163ec442f0560e01b81525f6004820152602401610411565b6104245f8383610ac5565b6001600160a01b0382166108e557604051634b637e8f60e11b81525f6004820152602401610411565b610424825f83610ac5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b606061039f7f417572756d0000000000000000000000000000000000000000000000000000056006610beb565b606061039f7f31000000000000000000000000000000000000000000000000000000000000016007610beb565b5f61036d6109a7610732565b8360405161190160f01b8152600281019290925260228201526042902090565b5f805f806109d788888888610c94565b9250925092506109e78282610d5c565b50909695505050505050565b6001600160a01b038416610a1c5760405163e602df0560e01b81525f6004820152602401610411565b6001600160a01b038316610a4557604051634a1406b160e11b81525f6004820152602401610411565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106cf57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ab791815260200190565b60405180910390a350505050565b6001600160a01b038316610aef578060025f828254610ae491906111f4565b90915550610b5f9050565b6001600160a01b0383165f9081526020819052604090205481811015610b415760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610411565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b7b57600280548290039055610b99565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bde91815260200190565b60405180910390a3505050565b606060ff8314610c0557610bfe83610e14565b905061036d565b818054610c11906110a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d906110a0565b8015610c885780601f10610c5f57610100808354040283529160200191610c88565b820191905f5260205f20905b815481529060010190602001808311610c6b57829003601f168201915b5050505050905061036d565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610ccd57505f91506003905082610d52565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610d1e573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116610d4957505f925060019150829050610d52565b92505f91508190505b9450945094915050565b5f826003811115610d6f57610d6f611207565b03610d78575050565b6001826003811115610d8c57610d8c611207565b03610daa5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610dbe57610dbe611207565b03610ddf5760405163fce698f760e01b815260048101829052602401610411565b6003826003811115610df357610df3611207565b03610424576040516335e2f38360e21b815260048101829052602401610411565b60605f610e2083610e51565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561036d57604051632cd44ac360e21b815260040160405180910390fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610eb86020830184610e78565b9392505050565b80356001600160a01b0381168114610ed5575f80fd5b919050565b5f8060408385031215610eeb575f80fd5b610ef483610ebf565b946020939093013593505050565b5f805f60608486031215610f14575f80fd5b610f1d84610ebf565b9250610f2b60208501610ebf565b929592945050506040919091013590565b5f60208284031215610f4c575f80fd5b5035919050565b5f60208284031215610f63575f80fd5b610eb882610ebf565b60ff60f81b8816815260e060208201525f610f8a60e0830189610e78565b8281036040840152610f9c8189610e78565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610ff1578351835260209384019390920191600101610fd3565b50909b9a5050505050505050505050565b5f805f805f805f60e0888a031215611018575f80fd5b61102188610ebf565b965061102f60208901610ebf565b95506040880135945060608801359350608088013560ff81168114611052575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611080575f80fd5b61108983610ebf565b915061109760208401610ebf565b90509250929050565b600181811c908216806110b457607f821691505b6020821081036110d257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156111275780850481111561110b5761110b6110d8565b600184161561111957908102905b60019390931c9280026110f0565b935093915050565b5f8261113d5750600161036d565b8161114957505f61036d565b816001811461115f576002811461116957611185565b600191505061036d565b60ff84111561117a5761117a6110d8565b50506001821b61036d565b5060208310610133831016604e8410600b84101617156111a8575081810a61036d565b6111b45f1984846110ec565b805f19048211156111c7576111c76110d8565b029392505050565b5f610eb860ff84168361112f565b808202811582820484141761036d5761036d6110d8565b8082018082111561036d5761036d6110d8565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220a0b9c9d930d53a1355924a8268c4b486592d057d99d6022e061ed6eea59842fb64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001df49e1211c2fd664b3d7a7480230e36f157e328
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x1dF49E1211c2fd664b3D7A7480230E36f157e328
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001df49e1211c2fd664b3d7a7480230e36f157e328
[ 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.