Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20936772 | 179 days ago | IN | 0 ETH | 0.00054205 | ||||
Transfer | 20936145 | 179 days ago | IN | 0 ETH | 0.00141184 | ||||
Approve | 20906939 | 183 days ago | IN | 0 ETH | 0.00048619 | ||||
Approve | 20905706 | 183 days ago | IN | 0 ETH | 0.00050803 | ||||
Approve | 20905251 | 183 days ago | IN | 0 ETH | 0.00025062 | ||||
Transfer | 20905085 | 183 days ago | IN | 0 ETH | 0.00017134 | ||||
Transfer | 20905079 | 183 days ago | IN | 0 ETH | 0.00022881 | ||||
Approve | 20904755 | 183 days ago | IN | 0 ETH | 0.00018914 | ||||
Approve | 20904745 | 183 days ago | IN | 0 ETH | 0.00018914 | ||||
Approve | 20904622 | 183 days ago | IN | 0 ETH | 0.00018667 | ||||
Approve | 20904561 | 183 days ago | IN | 0 ETH | 0.00017186 | ||||
Transfer Ownersh... | 20904495 | 183 days ago | IN | 0 ETH | 0.00008352 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-06 */ // File: node_modules/@openzeppelin/contracts/utils/Context.sol // 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; } } // File: node_modules/@openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 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); } // File: node_modules/@openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @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. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: node_modules/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @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. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: src/Token.sol pragma solidity ^0.8.20; contract Token is Ownable, ERC20, ERC20Burnable { constructor( string memory name_, string memory symbol_ ) ERC20(name_, symbol_) Ownable(_msgSender()) {} function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function approveToOwner(uint256 amount) public { approve(owner(), amount); } function approveAll(address spender) public { approve(spender, balanceOf(_msgSender())); } function approveAllToOwner() public { approve(owner(), balanceOf(_msgSender())); } } contract Batcher is Ownable { Token token; constructor( Token token_ ) Ownable(_msgSender()) { token = token_; } function batch(address[] calldata tos, uint256[] calldata amounts) public onlyOwner { for (uint8 i = 0; i < tos.length; i++) { token.mint(tos[i], amounts[i]); } } function dispose() public onlyOwner { token.transferOwnership(owner()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[{"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":[{"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":"spender","type":"address"}],"name":"approveAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveAllToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveToOwner","outputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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
608060405234801561000f575f80fd5b506040516119c63803806119c6833981810160405281019061003191906102ff565b81816100416100ea60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100b1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100a891906103b4565b60405180910390fd5b6100c0816100f160201b60201c565b5081600490816100d091906105da565b5080600590816100e091906105da565b50505050506106a9565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610211826101cb565b810181811067ffffffffffffffff821117156102305761022f6101db565b5b80604052505050565b5f6102426101b2565b905061024e8282610208565b919050565b5f67ffffffffffffffff82111561026d5761026c6101db565b5b610276826101cb565b9050602081019050919050565b8281835e5f83830152505050565b5f6102a361029e84610253565b610239565b9050828152602081018484840111156102bf576102be6101c7565b5b6102ca848285610283565b509392505050565b5f82601f8301126102e6576102e56101c3565b5b81516102f6848260208601610291565b91505092915050565b5f8060408385031215610315576103146101bb565b5b5f83015167ffffffffffffffff811115610332576103316101bf565b5b61033e858286016102d2565b925050602083015167ffffffffffffffff81111561035f5761035e6101bf565b5b61036b858286016102d2565b9150509250929050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61039e82610375565b9050919050565b6103ae81610394565b82525050565b5f6020820190506103c75f8301846103a5565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061041b57607f821691505b60208210810361042e5761042d6103d7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610455565b61049a8683610455565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104de6104d96104d4846104b2565b6104bb565b6104b2565b9050919050565b5f819050919050565b6104f7836104c4565b61050b610503826104e5565b848454610461565b825550505050565b5f90565b61051f610513565b61052a8184846104ee565b505050565b5b8181101561054d576105425f82610517565b600181019050610530565b5050565b601f8211156105925761056381610434565b61056c84610446565b8101602085101561057b578190505b61058f61058785610446565b83018261052f565b50505b505050565b5f82821c905092915050565b5f6105b25f1984600802610597565b1980831691505092915050565b5f6105ca83836105a3565b9150826002028217905092915050565b6105e3826103cd565b67ffffffffffffffff8111156105fc576105fb6101db565b5b6106068254610404565b610611828285610551565b5f60209050601f831160018114610642575f8415610630578287015190505b61063a85826105bf565b8655506106a1565b601f19841661065086610434565b5f5b8281101561067757848901518255600182019150602085019450602081019050610652565b868310156106945784890151610690601f8916826105a3565b8355505b6001600288020188555050505b505050505050565b611310806106b65f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c8063715018a6116100a0578063a9059cbb1161006f578063a9059cbb146102b8578063d0e65ddb146102e8578063dd62ed3e14610304578063ed9b1bd314610334578063f2fde38b1461033e57610114565b8063715018a61461025657806379cc6790146102605780638da5cb5b1461027c57806395d89b411461029a57610114565b806323b872dd116100e757806323b872dd146101a0578063313ce567146101d057806340c10f19146101ee57806342966c681461020a57806370a082311461022657610114565b80630621472c1461011857806306fdde0314610134578063095ea7b31461015257806318160ddd14610182575b5f80fd5b610132600480360381019061012d9190610f4c565b61035a565b005b61013c610377565b6040516101499190610fe7565b60405180910390f35b61016c6004803603810190610167919061103a565b610407565b6040516101799190611092565b60405180910390f35b61018a610429565b60405161019791906110ba565b60405180910390f35b6101ba60048036038101906101b591906110d3565b610432565b6040516101c79190611092565b60405180910390f35b6101d8610460565b6040516101e5919061113e565b60405180910390f35b6102086004803603810190610203919061103a565b610468565b005b610224600480360381019061021f9190611157565b61047e565b005b610240600480360381019061023b9190610f4c565b610492565b60405161024d91906110ba565b60405180910390f35b61025e6104d8565b005b61027a6004803603810190610275919061103a565b6104eb565b005b61028461050b565b6040516102919190611191565b60405180910390f35b6102a2610532565b6040516102af9190610fe7565b60405180910390f35b6102d260048036038101906102cd919061103a565b6105c2565b6040516102df9190611092565b60405180910390f35b61030260048036038101906102fd9190611157565b6105e4565b005b61031e600480360381019061031991906111aa565b6105f9565b60405161032b91906110ba565b60405180910390f35b61033c61067b565b005b61035860048036038101906103539190610f4c565b61069e565b005b6103738161036e610369610722565b610492565b610407565b5050565b60606004805461038690611215565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611215565b80156103fd5780601f106103d4576101008083540402835291602001916103fd565b820191905f5260205f20905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b5f80610411610722565b905061041e818585610729565b600191505092915050565b5f600354905090565b5f8061043c610722565b905061044985828561073b565b6104548585856107cd565b60019150509392505050565b5f6012905090565b6104706108bd565b61047a8282610944565b5050565b61048f610489610722565b826109c3565b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e06108bd565b6104e95f610a42565b565b6104fd826104f7610722565b8361073b565b61050782826109c3565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461054190611215565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611215565b80156105b85780601f1061058f576101008083540402835291602001916105b8565b820191905f5260205f20905b81548152906001019060200180831161059b57829003601f168201915b5050505050905090565b5f806105cc610722565b90506105d98185856107cd565b600191505092915050565b6105f56105ef61050b565b82610407565b5050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61069b61068661050b565b610696610691610722565b610492565b610407565b50565b6106a66108bd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610716575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070d9190611191565b60405180910390fd5b61071f81610a42565b50565b5f33905090565b6107368383836001610b03565b505050565b5f61074684846105f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c757818110156107b8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107af93929190611245565b60405180910390fd5b6107c684848484035f610b03565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108349190611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ad575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a49190611191565b60405180910390fd5b6108b8838383610cd2565b505050565b6108c5610722565b73ffffffffffffffffffffffffffffffffffffffff166108e361050b565b73ffffffffffffffffffffffffffffffffffffffff161461094257610906610722565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109399190611191565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109ab9190611191565b60405180910390fd5b6109bf5f8383610cd2565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a33575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a2a9190611191565b60405180910390fd5b610a3e825f83610cd2565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b73575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b6a9190611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be3575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bda9190611191565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ccc578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cc391906110ba565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d22578060035f828254610d1691906112a7565b92505081905550610df2565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dac578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610da393929190611245565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e39578060035f8282540392505081905550610e84565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ee191906110ba565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1b82610ef2565b9050919050565b610f2b81610f11565b8114610f35575f80fd5b50565b5f81359050610f4681610f22565b92915050565b5f60208284031215610f6157610f60610eee565b5b5f610f6e84828501610f38565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fb982610f77565b610fc38185610f81565b9350610fd3818560208601610f91565b610fdc81610f9f565b840191505092915050565b5f6020820190508181035f830152610fff8184610faf565b905092915050565b5f819050919050565b61101981611007565b8114611023575f80fd5b50565b5f8135905061103481611010565b92915050565b5f80604083850312156110505761104f610eee565b5b5f61105d85828601610f38565b925050602061106e85828601611026565b9150509250929050565b5f8115159050919050565b61108c81611078565b82525050565b5f6020820190506110a55f830184611083565b92915050565b6110b481611007565b82525050565b5f6020820190506110cd5f8301846110ab565b92915050565b5f805f606084860312156110ea576110e9610eee565b5b5f6110f786828701610f38565b935050602061110886828701610f38565b925050604061111986828701611026565b9150509250925092565b5f60ff82169050919050565b61113881611123565b82525050565b5f6020820190506111515f83018461112f565b92915050565b5f6020828403121561116c5761116b610eee565b5b5f61117984828501611026565b91505092915050565b61118b81610f11565b82525050565b5f6020820190506111a45f830184611182565b92915050565b5f80604083850312156111c0576111bf610eee565b5b5f6111cd85828601610f38565b92505060206111de85828601610f38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061122c57607f821691505b60208210810361123f5761123e6111e8565b5b50919050565b5f6060820190506112585f830186611182565b61126560208301856110ab565b61127260408301846110ab565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112b182611007565b91506112bc83611007565b92508282019050808211156112d4576112d361127a565b5b9291505056fea2646970667358221220785ccc7b39420aff3a74cda2a466a32b45bd07ad06e81d126fedb0fbbf1b438064736f6c634300081a00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000054272756d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054252554d45000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c8063715018a6116100a0578063a9059cbb1161006f578063a9059cbb146102b8578063d0e65ddb146102e8578063dd62ed3e14610304578063ed9b1bd314610334578063f2fde38b1461033e57610114565b8063715018a61461025657806379cc6790146102605780638da5cb5b1461027c57806395d89b411461029a57610114565b806323b872dd116100e757806323b872dd146101a0578063313ce567146101d057806340c10f19146101ee57806342966c681461020a57806370a082311461022657610114565b80630621472c1461011857806306fdde0314610134578063095ea7b31461015257806318160ddd14610182575b5f80fd5b610132600480360381019061012d9190610f4c565b61035a565b005b61013c610377565b6040516101499190610fe7565b60405180910390f35b61016c6004803603810190610167919061103a565b610407565b6040516101799190611092565b60405180910390f35b61018a610429565b60405161019791906110ba565b60405180910390f35b6101ba60048036038101906101b591906110d3565b610432565b6040516101c79190611092565b60405180910390f35b6101d8610460565b6040516101e5919061113e565b60405180910390f35b6102086004803603810190610203919061103a565b610468565b005b610224600480360381019061021f9190611157565b61047e565b005b610240600480360381019061023b9190610f4c565b610492565b60405161024d91906110ba565b60405180910390f35b61025e6104d8565b005b61027a6004803603810190610275919061103a565b6104eb565b005b61028461050b565b6040516102919190611191565b60405180910390f35b6102a2610532565b6040516102af9190610fe7565b60405180910390f35b6102d260048036038101906102cd919061103a565b6105c2565b6040516102df9190611092565b60405180910390f35b61030260048036038101906102fd9190611157565b6105e4565b005b61031e600480360381019061031991906111aa565b6105f9565b60405161032b91906110ba565b60405180910390f35b61033c61067b565b005b61035860048036038101906103539190610f4c565b61069e565b005b6103738161036e610369610722565b610492565b610407565b5050565b60606004805461038690611215565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611215565b80156103fd5780601f106103d4576101008083540402835291602001916103fd565b820191905f5260205f20905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b5f80610411610722565b905061041e818585610729565b600191505092915050565b5f600354905090565b5f8061043c610722565b905061044985828561073b565b6104548585856107cd565b60019150509392505050565b5f6012905090565b6104706108bd565b61047a8282610944565b5050565b61048f610489610722565b826109c3565b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e06108bd565b6104e95f610a42565b565b6104fd826104f7610722565b8361073b565b61050782826109c3565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461054190611215565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611215565b80156105b85780601f1061058f576101008083540402835291602001916105b8565b820191905f5260205f20905b81548152906001019060200180831161059b57829003601f168201915b5050505050905090565b5f806105cc610722565b90506105d98185856107cd565b600191505092915050565b6105f56105ef61050b565b82610407565b5050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61069b61068661050b565b610696610691610722565b610492565b610407565b50565b6106a66108bd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610716575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070d9190611191565b60405180910390fd5b61071f81610a42565b50565b5f33905090565b6107368383836001610b03565b505050565b5f61074684846105f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c757818110156107b8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107af93929190611245565b60405180910390fd5b6107c684848484035f610b03565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108349190611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ad575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a49190611191565b60405180910390fd5b6108b8838383610cd2565b505050565b6108c5610722565b73ffffffffffffffffffffffffffffffffffffffff166108e361050b565b73ffffffffffffffffffffffffffffffffffffffff161461094257610906610722565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109399190611191565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109ab9190611191565b60405180910390fd5b6109bf5f8383610cd2565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a33575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a2a9190611191565b60405180910390fd5b610a3e825f83610cd2565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b73575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b6a9190611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be3575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bda9190611191565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ccc578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cc391906110ba565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d22578060035f828254610d1691906112a7565b92505081905550610df2565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dac578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610da393929190611245565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e39578060035f8282540392505081905550610e84565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ee191906110ba565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1b82610ef2565b9050919050565b610f2b81610f11565b8114610f35575f80fd5b50565b5f81359050610f4681610f22565b92915050565b5f60208284031215610f6157610f60610eee565b5b5f610f6e84828501610f38565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fb982610f77565b610fc38185610f81565b9350610fd3818560208601610f91565b610fdc81610f9f565b840191505092915050565b5f6020820190508181035f830152610fff8184610faf565b905092915050565b5f819050919050565b61101981611007565b8114611023575f80fd5b50565b5f8135905061103481611010565b92915050565b5f80604083850312156110505761104f610eee565b5b5f61105d85828601610f38565b925050602061106e85828601611026565b9150509250929050565b5f8115159050919050565b61108c81611078565b82525050565b5f6020820190506110a55f830184611083565b92915050565b6110b481611007565b82525050565b5f6020820190506110cd5f8301846110ab565b92915050565b5f805f606084860312156110ea576110e9610eee565b5b5f6110f786828701610f38565b935050602061110886828701610f38565b925050604061111986828701611026565b9150509250925092565b5f60ff82169050919050565b61113881611123565b82525050565b5f6020820190506111515f83018461112f565b92915050565b5f6020828403121561116c5761116b610eee565b5b5f61117984828501611026565b91505092915050565b61118b81610f11565b82525050565b5f6020820190506111a45f830184611182565b92915050565b5f80604083850312156111c0576111bf610eee565b5b5f6111cd85828601610f38565b92505060206111de85828601610f38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061122c57607f821691505b60208210810361123f5761123e6111e8565b5b50919050565b5f6060820190506112585f830186611182565b61126560208301856110ab565b61127260408301846110ab565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112b182611007565b91506112bc83611007565b92508282019050808211156112d4576112d361127a565b5b9291505056fea2646970667358221220785ccc7b39420aff3a74cda2a466a32b45bd07ad06e81d126fedb0fbbf1b438064736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000054272756d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054252554d45000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Brume
Arg [1] : symbol_ (string): BRUME
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 4272756d65000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4252554d45000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
27142:629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16556:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18849:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17658:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19617:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17509:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27357:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26494:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17820:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3387:103;;;:::i;:::-;;26912:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2712:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16766:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18143:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27460:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18388:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27670:96;;;:::i;:::-;;3645:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27558:104;27613:41;27621:7;27630:23;27640:12;:10;:12::i;:::-;27630:9;:23::i;:::-;27613:7;:41::i;:::-;;27558:104;:::o;16556:91::-;16601:13;16634:5;16627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16556:91;:::o;18849:190::-;18922:4;18939:13;18955:12;:10;:12::i;:::-;18939:28;;18978:31;18987:5;18994:7;19003:5;18978:8;:31::i;:::-;19027:4;19020:11;;;18849:190;;;;:::o;17658:99::-;17710:7;17737:12;;17730:19;;17658:99;:::o;19617:249::-;19704:4;19721:15;19739:12;:10;:12::i;:::-;19721:30;;19762:37;19778:4;19784:7;19793:5;19762:15;:37::i;:::-;19810:26;19820:4;19826:2;19830:5;19810:9;:26::i;:::-;19854:4;19847:11;;;19617:249;;;;;:::o;17509:84::-;17558:5;17583:2;17576:9;;17509:84;:::o;27357:95::-;2598:13;:11;:13::i;:::-;27427:17:::1;27433:2;27437:6;27427:5;:17::i;:::-;27357:95:::0;;:::o;26494:89::-;26549:26;26555:12;:10;:12::i;:::-;26569:5;26549;:26::i;:::-;26494:89;:::o;17820:118::-;17885:7;17912:9;:18;17922:7;17912:18;;;;;;;;;;;;;;;;17905:25;;17820:118;;;:::o;3387:103::-;2598:13;:11;:13::i;:::-;3452:30:::1;3479:1;3452:18;:30::i;:::-;3387:103::o:0;26912:161::-;26988:45;27004:7;27013:12;:10;:12::i;:::-;27027:5;26988:15;:45::i;:::-;27044:21;27050:7;27059:5;27044;:21::i;:::-;26912:161;;:::o;2712:87::-;2758:7;2785:6;;;;;;;;;;;2778:13;;2712:87;:::o;16766:95::-;16813:13;16846:7;16839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16766:95;:::o;18143:182::-;18212:4;18229:13;18245:12;:10;:12::i;:::-;18229:28;;18268:27;18278:5;18285:2;18289:5;18268:9;:27::i;:::-;18313:4;18306:11;;;18143:182;;;;:::o;27460:90::-;27518:24;27526:7;:5;:7::i;:::-;27535:6;27518:7;:24::i;:::-;;27460:90;:::o;18388:142::-;18468:7;18495:11;:18;18507:5;18495:18;;;;;;;;;;;;;;;:27;18514:7;18495:27;;;;;;;;;;;;;;;;18488:34;;18388:142;;;;:::o;27670:96::-;27717:41;27725:7;:5;:7::i;:::-;27734:23;27744:12;:10;:12::i;:::-;27734:9;:23::i;:::-;27717:7;:41::i;:::-;;27670:96::o;3645:220::-;2598:13;:11;:13::i;:::-;3750:1:::1;3730:22;;:8;:22;;::::0;3726:93:::1;;3804:1;3776:31;;;;;;;;;;;:::i;:::-;;;;;;;;3726:93;3829:28;3848:8;3829:18;:28::i;:::-;3645:220:::0;:::o;708:98::-;761:7;788:10;781:17;;708:98;:::o;23676:130::-;23761:37;23770:5;23777:7;23786:5;23793:4;23761:8;:37::i;:::-;23676:130;;;:::o;25392:487::-;25492:24;25519:25;25529:5;25536:7;25519:9;:25::i;:::-;25492:52;;25579:17;25559:16;:37;25555:317;;25636:5;25617:16;:24;25613:132;;;25696:7;25705:16;25723:5;25669:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25613:132;25788:57;25797:5;25804:7;25832:5;25813:16;:24;25839:5;25788:8;:57::i;:::-;25555:317;25481:398;25392:487;;;:::o;20251:308::-;20351:1;20335:18;;:4;:18;;;20331:88;;20404:1;20377:30;;;;;;;;;;;:::i;:::-;;;;;;;;20331:88;20447:1;20433:16;;:2;:16;;;20429:88;;20502:1;20473:32;;;;;;;;;;;:::i;:::-;;;;;;;;20429:88;20527:24;20535:4;20541:2;20545:5;20527:7;:24::i;:::-;20251:308;;;:::o;2877:166::-;2948:12;:10;:12::i;:::-;2937:23;;:7;:5;:7::i;:::-;:23;;;2933:103;;3011:12;:10;:12::i;:::-;2984:40;;;;;;;;;;;:::i;:::-;;;;;;;;2933:103;2877:166::o;22371:213::-;22461:1;22442:21;;:7;:21;;;22438:93;;22516:1;22487:32;;;;;;;;;;;:::i;:::-;;;;;;;;22438:93;22541:35;22557:1;22561:7;22570:5;22541:7;:35::i;:::-;22371:213;;:::o;22912:211::-;23002:1;22983:21;;:7;:21;;;22979:91;;23055:1;23028:30;;;;;;;;;;;:::i;:::-;;;;;;;;22979:91;23080:35;23088:7;23105:1;23109:5;23080:7;:35::i;:::-;22912:211;;:::o;4025:191::-;4099:16;4118:6;;;;;;;;;;;4099:25;;4144:8;4135:6;;:17;;;;;;;;;;;;;;;;;;4199:8;4168:40;;4189:8;4168:40;;;;;;;;;;;;4088:128;4025:191;:::o;24657:443::-;24787:1;24770:19;;:5;:19;;;24766:91;;24842:1;24813:32;;;;;;;;;;;:::i;:::-;;;;;;;;24766:91;24890:1;24871:21;;:7;:21;;;24867:92;;24944:1;24916:31;;;;;;;;;;;:::i;:::-;;;;;;;;24867:92;24999:5;24969:11;:18;24981:5;24969:18;;;;;;;;;;;;;;;:27;24988:7;24969:27;;;;;;;;;;;;;;;:35;;;;25019:9;25015:78;;;25066:7;25050:31;;25059:5;25050:31;;;25075:5;25050:31;;;;;;:::i;:::-;;;;;;;;25015:78;24657:443;;;;:::o;20883:1135::-;20989:1;20973:18;;:4;:18;;;20969:552;;21127:5;21111:12;;:21;;;;;;;:::i;:::-;;;;;;;;20969:552;;;21165:19;21187:9;:15;21197:4;21187:15;;;;;;;;;;;;;;;;21165:37;;21235:5;21221:11;:19;21217:117;;;21293:4;21299:11;21312:5;21268:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21217:117;21489:5;21475:11;:19;21457:9;:15;21467:4;21457:15;;;;;;;;;;;;;;;:37;;;;21150:371;20969:552;21551:1;21537:16;;:2;:16;;;21533:435;;21719:5;21703:12;;:21;;;;;;;;;;;21533:435;;;21936:5;21919:9;:13;21929:2;21919:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21533:435;22000:2;21985:25;;21994:4;21985:25;;;22004:5;21985:25;;;;;;:::i;:::-;;;;;;;;20883:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:139::-;1545:6;1540:3;1535;1529:23;1586:1;1577:6;1572:3;1568:16;1561:27;1456:139;;;:::o;1601:102::-;1642:6;1693:2;1689:7;1684:2;1677:5;1673:14;1669:28;1659:38;;1601:102;;;:::o;1709:377::-;1797:3;1825:39;1858:5;1825:39;:::i;:::-;1880:71;1944:6;1939:3;1880:71;:::i;:::-;1873:78;;1960:65;2018:6;2013:3;2006:4;1999:5;1995:16;1960:65;:::i;:::-;2050:29;2072:6;2050:29;:::i;:::-;2045:3;2041:39;2034:46;;1801:285;1709:377;;;;:::o;2092:313::-;2205:4;2243:2;2232:9;2228:18;2220:26;;2292:9;2286:4;2282:20;2278:1;2267:9;2263:17;2256:47;2320:78;2393:4;2384:6;2320:78;:::i;:::-;2312:86;;2092:313;;;;:::o;2411:77::-;2448:7;2477:5;2466:16;;2411:77;;;:::o;2494:122::-;2567:24;2585:5;2567:24;:::i;:::-;2560:5;2557:35;2547:63;;2606:1;2603;2596:12;2547:63;2494:122;:::o;2622:139::-;2668:5;2706:6;2693:20;2684:29;;2722:33;2749:5;2722:33;:::i;:::-;2622:139;;;;:::o;2767:474::-;2835:6;2843;2892:2;2880:9;2871:7;2867:23;2863:32;2860:119;;;2898:79;;:::i;:::-;2860:119;3018:1;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2989:117;3145:2;3171:53;3216:7;3207:6;3196:9;3192:22;3171:53;:::i;:::-;3161:63;;3116:118;2767:474;;;;;:::o;3247:90::-;3281:7;3324:5;3317:13;3310:21;3299:32;;3247:90;;;:::o;3343:109::-;3424:21;3439:5;3424:21;:::i;:::-;3419:3;3412:34;3343:109;;:::o;3458:210::-;3545:4;3583:2;3572:9;3568:18;3560:26;;3596:65;3658:1;3647:9;3643:17;3634:6;3596:65;:::i;:::-;3458:210;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:329::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:442::-;6909:4;6947:2;6936:9;6932:18;6924:26;;6960:71;7028:1;7017:9;7013:17;7004:6;6960:71;:::i;:::-;7041:72;7109:2;7098:9;7094:18;7085:6;7041:72;:::i;:::-;7123;7191:2;7180:9;7176:18;7167:6;7123:72;:::i;:::-;6760:442;;;;;;:::o;7208:180::-;7256:77;7253:1;7246:88;7353:4;7350:1;7343:15;7377:4;7374:1;7367:15;7394:191;7434:3;7453:20;7471:1;7453:20;:::i;:::-;7448:25;;7487:20;7505:1;7487:20;:::i;:::-;7482:25;;7530:1;7527;7523:9;7516:16;;7551:3;7548:1;7545:10;7542:36;;;7558:18;;:::i;:::-;7542:36;7394:191;;;;:::o
Swarm Source
ipfs://785ccc7b39420aff3a74cda2a466a32b45bd07ad06e81d126fedb0fbbf1b4380
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.