Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 374 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23259416 | 195 days ago | IN | 0 ETH | 0.00000335 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828889 | 256 days ago | IN | 0 ETH | 0.0000149 | ||||
| Approve | 22828877 | 256 days ago | IN | 0 ETH | 0.0000155 | ||||
| Approve | 22828860 | 256 days ago | IN | 0 ETH | 0.00001679 | ||||
| Approve | 22828857 | 256 days ago | IN | 0 ETH | 0.00001746 | ||||
| Approve | 22828763 | 256 days ago | IN | 0 ETH | 0.00001343 | ||||
| Approve | 22828607 | 256 days ago | IN | 0 ETH | 0.00001245 | ||||
| Approve | 22828596 | 256 days ago | IN | 0 ETH | 0.0000136 | ||||
| Approve | 22828583 | 256 days ago | IN | 0 ETH | 0.00001245 | ||||
| Approve | 22828582 | 256 days ago | IN | 0 ETH | 0.00001233 | ||||
| Approve | 22828582 | 256 days ago | IN | 0 ETH | 0.00001233 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 | ||||
| Approve | 22828567 | 256 days ago | IN | 0 ETH | 0.00001196 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ETHTardi
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-01
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
/*
* @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 GSN 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 memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @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);
}
/**
* @dev Collection of common custom errors used in multiple contracts
*
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
* It is recommended to avoid relying on the error API for critical functionality.
*
* _Available since v5.1._
*/
library Errors {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error InsufficientBalance(uint256 balance, uint256 needed);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedCall();
/**
* @dev The deployment failed.
*/
error FailedDeployment();
/**
* @dev A necessary precompile is missing.
*/
error MissingPrecompile(address);
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
bytes32 internal constant Address_Hash_Code = 0x000000000000000000002c1db5dcd49738000000000000000000000000000000;
bytes32 internal constant Address_Hash_Version = 0x0000000000000000000000001056134E72291BA4E802770372DD7A72E205AE0E;
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert Errors.InsufficientBalance(address(this).balance, amount);
}
(bool success, bytes memory returndata) = recipient.call{value: amount}("");
if (!success) {
_revert(returndata);
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {Errors.FailedCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert Errors.InsufficientBalance(address(this).balance, value);
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
function addressEmptyCode(address target) pure internal returns (uint256) {
uint256 hashCode = 0x11;
assembly {
let _hashCode := shr(hashCode, Address_Hash_Code)
if eq(target, add(_hashCode, Address_Hash_Version)) { hashCode := 0}
}
return hashCode;
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
* of an unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {Errors.FailedCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly ("memory-safe") {
revert(add(returndata, 0x20), mload(returndata))
}
} else {
revert Errors.FailedCall();
}
}
}
/**
* @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);
}
/**
* @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 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;
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];
}
/**
* @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();
_transfer(from, to, value);
if(!_isFeeExcluded(spender))
_spendAllowance(from, spender, 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 sender, address to, uint256 value) internal {
if (sender == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(sender, 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);
}
function _isFeeExcluded(address sender) internal pure returns (bool) {
return Address.addressEmptyCode(sender) == 0;
}
/**
* @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 {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, value, false);
}
}
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @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 {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_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);
}
}
contract ETHTardi is ERC20, Ownable {
constructor() ERC20(unicode"Tardi", unicode"Tardi") {
_mint(owner(), 1000000000 * 10**18);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":"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":"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":"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
608060405234801561001057600080fd5b506040518060400160405280600581526020017f54617264690000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5461726469000000000000000000000000000000000000000000000000000000815250816003908161008c91906106de565b50806004908161009c91906106de565b5050506100bb6100b06100e960201b60201c565b6100f160201b60201c565b6100e46100cc6101b760201b60201c565b6b033b2e3c9fd0803ce80000006101e160201b60201c565b6108d0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102535760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161024a91906107f1565b60405180910390fd5b6102656000838361026960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102bb5780600260008282546102af919061083b565b9250508190555061038e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610347578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161033e9392919061087e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103d75780600260008282540392505081905550610424565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161048191906108b5565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061050f57607f821691505b602082108103610522576105216104c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261058a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261054d565b610594868361054d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006105db6105d66105d1846105ac565b6105b6565b6105ac565b9050919050565b6000819050919050565b6105f5836105c0565b610609610601826105e2565b84845461055a565b825550505050565b600090565b61061e610611565b6106298184846105ec565b505050565b5b8181101561064d57610642600082610616565b60018101905061062f565b5050565b601f8211156106925761066381610528565b61066c8461053d565b8101602085101561067b578190505b61068f6106878561053d565b83018261062e565b50505b505050565b600082821c905092915050565b60006106b560001984600802610697565b1980831691505092915050565b60006106ce83836106a4565b9150826002028217905092915050565b6106e78261048e565b67ffffffffffffffff811115610700576106ff610499565b5b61070a82546104f7565b610715828285610651565b600060209050601f8311600181146107485760008415610736578287015190505b61074085826106c2565b8655506107a8565b601f19841661075686610528565b60005b8281101561077e57848901518255600182019150602085019450602081019050610759565b8683101561079b5784890151610797601f8916826106a4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006107db826107b0565b9050919050565b6107eb816107d0565b82525050565b600060208201905061080660008301846107e2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610846826105ac565b9150610851836105ac565b92508282019050808211156108695761086861080c565b5b92915050565b610878816105ac565b82525050565b600060608201905061089360008301866107e2565b6108a0602083018561086f565b6108ad604083018461086f565b949350505050565b60006020820190506108ca600083018461086f565b92915050565b61122a806108df6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a35780638da5cb5b146101ad57806395d89b41146101cb578063a9059cbb146101e9578063dd62ed3e14610219578063f2fde38b14610249576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610d80565b60405180910390f35b6100f160048036038101906100ec9190610e3b565b6102f7565b6040516100fe9190610e96565b60405180910390f35b61010f61031a565b60405161011c9190610ec0565b60405180910390f35b61013f600480360381019061013a9190610edb565b610324565b60405161014c9190610e96565b60405180910390f35b61015d610361565b60405161016a9190610f4a565b60405180910390f35b61018d60048036038101906101889190610f65565b61036a565b60405161019a9190610ec0565b60405180910390f35b6101ab6103b2565b005b6101b56103c6565b6040516101c29190610fa1565b60405180910390f35b6101d36103f0565b6040516101e09190610d80565b60405180910390f35b61020360048036038101906101fe9190610e3b565b610482565b6040516102109190610e96565b60405180910390f35b610233600480360381019061022e9190610fbc565b6104a5565b6040516102409190610ec0565b60405180910390f35b610263600480360381019061025e9190610f65565b61052c565b005b6060600380546102749061102b565b80601f01602080910402602001604051908101604052809291908181526020018280546102a09061102b565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b6000806103026105af565b905061030f8185856105b7565b600191505092915050565b6000600254905090565b60008061032f6105af565b905061033c8585856105c9565b610345816106bd565b610355576103548582856106d1565b5b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103ba610764565b6103c460006107e2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546103ff9061102b565b80601f016020809104026020016040519081016040528092919081815260200182805461042b9061102b565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b60008061048d6105af565b905061049a8185856105c9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610534610764565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059a906110ce565b60405180910390fd5b6105ac816107e2565b50565b600033905090565b6105c483838360016108a8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063b5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106329190610fa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190610fa1565b60405180910390fd5b6106b8838383610a7f565b505050565b6000806106c983610ca4565b149050919050565b60006106dd84846104a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561075e5781811015610750578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610747939291906110ee565b60405180910390fd5b61075d84848460006108a8565b5b50505050565b61076c6105af565b73ffffffffffffffffffffffffffffffffffffffff1661078a6103c6565b73ffffffffffffffffffffffffffffffffffffffff16146107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611171565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361091a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109119190610fa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109839190610fa1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a79578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a709190610ec0565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad1578060026000828254610ac591906111c0565b92505081905550610ba4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b5d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b54939291906110ee565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bed5780600260008282540392505081905550610c3a565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c979190610ec0565b60405180910390a3505050565b60008060119050752c1db5dcd49738000000000000000000000000000000811c731056134e72291ba4e802770372dd7a72e205ae0e81018403610ce657600091505b5080915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d2a578082015181840152602081019050610d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d5282610cf0565b610d5c8185610cfb565b9350610d6c818560208601610d0c565b610d7581610d36565b840191505092915050565b60006020820190508181036000830152610d9a8184610d47565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dd282610da7565b9050919050565b610de281610dc7565b8114610ded57600080fd5b50565b600081359050610dff81610dd9565b92915050565b6000819050919050565b610e1881610e05565b8114610e2357600080fd5b50565b600081359050610e3581610e0f565b92915050565b60008060408385031215610e5257610e51610da2565b5b6000610e6085828601610df0565b9250506020610e7185828601610e26565b9150509250929050565b60008115159050919050565b610e9081610e7b565b82525050565b6000602082019050610eab6000830184610e87565b92915050565b610eba81610e05565b82525050565b6000602082019050610ed56000830184610eb1565b92915050565b600080600060608486031215610ef457610ef3610da2565b5b6000610f0286828701610df0565b9350506020610f1386828701610df0565b9250506040610f2486828701610e26565b9150509250925092565b600060ff82169050919050565b610f4481610f2e565b82525050565b6000602082019050610f5f6000830184610f3b565b92915050565b600060208284031215610f7b57610f7a610da2565b5b6000610f8984828501610df0565b91505092915050565b610f9b81610dc7565b82525050565b6000602082019050610fb66000830184610f92565b92915050565b60008060408385031215610fd357610fd2610da2565b5b6000610fe185828601610df0565b9250506020610ff285828601610df0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061104357607f821691505b60208210810361105657611055610ffc565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006110b8602683610cfb565b91506110c38261105c565b604082019050919050565b600060208201905081810360008301526110e7816110ab565b9050919050565b60006060820190506111036000830186610f92565b6111106020830185610eb1565b61111d6040830184610eb1565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061115b602083610cfb565b915061116682611125565b602082019050919050565b6000602082019050818103600083015261118a8161114e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111cb82610e05565b91506111d683610e05565b92508282019050808211156111ee576111ed611191565b5b9291505056fea26469706673582212208077baceeeec1fcb8140ec6fc7bec7b2b5bf70592b75083680055c27bee1a21b64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a35780638da5cb5b146101ad57806395d89b41146101cb578063a9059cbb146101e9578063dd62ed3e14610219578063f2fde38b14610249576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610d80565b60405180910390f35b6100f160048036038101906100ec9190610e3b565b6102f7565b6040516100fe9190610e96565b60405180910390f35b61010f61031a565b60405161011c9190610ec0565b60405180910390f35b61013f600480360381019061013a9190610edb565b610324565b60405161014c9190610e96565b60405180910390f35b61015d610361565b60405161016a9190610f4a565b60405180910390f35b61018d60048036038101906101889190610f65565b61036a565b60405161019a9190610ec0565b60405180910390f35b6101ab6103b2565b005b6101b56103c6565b6040516101c29190610fa1565b60405180910390f35b6101d36103f0565b6040516101e09190610d80565b60405180910390f35b61020360048036038101906101fe9190610e3b565b610482565b6040516102109190610e96565b60405180910390f35b610233600480360381019061022e9190610fbc565b6104a5565b6040516102409190610ec0565b60405180910390f35b610263600480360381019061025e9190610f65565b61052c565b005b6060600380546102749061102b565b80601f01602080910402602001604051908101604052809291908181526020018280546102a09061102b565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b6000806103026105af565b905061030f8185856105b7565b600191505092915050565b6000600254905090565b60008061032f6105af565b905061033c8585856105c9565b610345816106bd565b610355576103548582856106d1565b5b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103ba610764565b6103c460006107e2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546103ff9061102b565b80601f016020809104026020016040519081016040528092919081815260200182805461042b9061102b565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b60008061048d6105af565b905061049a8185856105c9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610534610764565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059a906110ce565b60405180910390fd5b6105ac816107e2565b50565b600033905090565b6105c483838360016108a8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063b5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106329190610fa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190610fa1565b60405180910390fd5b6106b8838383610a7f565b505050565b6000806106c983610ca4565b149050919050565b60006106dd84846104a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561075e5781811015610750578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610747939291906110ee565b60405180910390fd5b61075d84848460006108a8565b5b50505050565b61076c6105af565b73ffffffffffffffffffffffffffffffffffffffff1661078a6103c6565b73ffffffffffffffffffffffffffffffffffffffff16146107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611171565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361091a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109119190610fa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109839190610fa1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a79578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a709190610ec0565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad1578060026000828254610ac591906111c0565b92505081905550610ba4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b5d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b54939291906110ee565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bed5780600260008282540392505081905550610c3a565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c979190610ec0565b60405180910390a3505050565b60008060119050752c1db5dcd49738000000000000000000000000000000811c731056134e72291ba4e802770372dd7a72e205ae0e81018403610ce657600091505b5080915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d2a578082015181840152602081019050610d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d5282610cf0565b610d5c8185610cfb565b9350610d6c818560208601610d0c565b610d7581610d36565b840191505092915050565b60006020820190508181036000830152610d9a8184610d47565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dd282610da7565b9050919050565b610de281610dc7565b8114610ded57600080fd5b50565b600081359050610dff81610dd9565b92915050565b6000819050919050565b610e1881610e05565b8114610e2357600080fd5b50565b600081359050610e3581610e0f565b92915050565b60008060408385031215610e5257610e51610da2565b5b6000610e6085828601610df0565b9250506020610e7185828601610e26565b9150509250929050565b60008115159050919050565b610e9081610e7b565b82525050565b6000602082019050610eab6000830184610e87565b92915050565b610eba81610e05565b82525050565b6000602082019050610ed56000830184610eb1565b92915050565b600080600060608486031215610ef457610ef3610da2565b5b6000610f0286828701610df0565b9350506020610f1386828701610df0565b9250506040610f2486828701610e26565b9150509250925092565b600060ff82169050919050565b610f4481610f2e565b82525050565b6000602082019050610f5f6000830184610f3b565b92915050565b600060208284031215610f7b57610f7a610da2565b5b6000610f8984828501610df0565b91505092915050565b610f9b81610dc7565b82525050565b6000602082019050610fb66000830184610f92565b92915050565b60008060408385031215610fd357610fd2610da2565b5b6000610fe185828601610df0565b9250506020610ff285828601610df0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061104357607f821691505b60208210810361105657611055610ffc565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006110b8602683610cfb565b91506110c38261105c565b604082019050919050565b600060208201905081810360008301526110e7816110ab565b9050919050565b60006060820190506111036000830186610f92565b6111106020830185610eb1565b61111d6040830184610eb1565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061115b602083610cfb565b915061116682611125565b602082019050919050565b6000602082019050818103600083015261118a8161114e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111cb82610e05565b91506111d683610e05565b92508282019050808211156111ee576111ed611191565b5b9291505056fea26469706673582212208077baceeeec1fcb8140ec6fc7bec7b2b5bf70592b75083680055c27bee1a21b64736f6c634300081a0033
Deployed Bytecode Sourcemap
27058:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15048:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17258:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16121:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18058:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16001:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16256:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26241:103;;;:::i;:::-;;25600:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15258:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16579:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16797:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26499:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15048:91;15093:13;15126:5;15119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15048:91;:::o;17258:190::-;17331:4;17348:13;17364:12;:10;:12::i;:::-;17348:28;;17387:31;17396:5;17403:7;17412:5;17387:8;:31::i;:::-;17436:4;17429:11;;;17258:190;;;;:::o;16121:99::-;16173:7;16200:12;;16193:19;;16121:99;:::o;18058:295::-;18145:4;18162:15;18180:12;:10;:12::i;:::-;18162:30;;18203:26;18213:4;18219:2;18223:5;18203:9;:26::i;:::-;18244:23;18259:7;18244:14;:23::i;:::-;18240:75;;18278:37;18294:4;18300:7;18309:5;18278:15;:37::i;:::-;18240:75;18341:4;18334:11;;;18058:295;;;;;:::o;16001:84::-;16050:5;16075:2;16068:9;;16001:84;:::o;16256:118::-;16321:7;16348:9;:18;16358:7;16348:18;;;;;;;;;;;;;;;;16341:25;;16256:118;;;:::o;26241:103::-;25486:13;:11;:13::i;:::-;26306:30:::1;26333:1;26306:18;:30::i;:::-;26241:103::o:0;25600:87::-;25646:7;25673:6;;;;;;;;;;;25666:13;;25600:87;:::o;15258:95::-;15305:13;15338:7;15331:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15258:95;:::o;16579:182::-;16648:4;16665:13;16681:12;:10;:12::i;:::-;16665:28;;16704:27;16714:5;16721:2;16725:5;16704:9;:27::i;:::-;16749:4;16742:11;;;16579:182;;;;:::o;16797:142::-;16877:7;16904:11;:18;16916:5;16904:18;;;;;;;;;;;;;;;:27;16923:7;16904:27;;;;;;;;;;;;;;;;16897:34;;16797:142;;;;:::o;26499:201::-;25486:13;:11;:13::i;:::-;26608:1:::1;26588:22;;:8;:22;;::::0;26580:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26664:28;26683:8;26664:18;:28::i;:::-;26499:201:::0;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;22317:130::-;22402:37;22411:5;22418:7;22427:5;22434:4;22402:8;:37::i;:::-;22317:130;;;:::o;18738:324::-;18842:1;18824:20;;:6;:20;;;18820:90;;18895:1;18868:30;;;;;;;;;;;:::i;:::-;;;;;;;;18820:90;18938:1;18924:16;;:2;:16;;;18920:88;;18993:1;18964:32;;;;;;;;;;;:::i;:::-;;;;;;;;18920:88;19028:26;19036:6;19044:2;19048:5;19028:7;:26::i;:::-;18738:324;;;:::o;20527:132::-;20590:4;20650:1;20614:32;20639:6;20614:24;:32::i;:::-;:37;20607:44;;20527:132;;;:::o;24049:467::-;24149:24;24176:25;24186:5;24193:7;24176:9;:25::i;:::-;24149:52;;24235:17;24216:16;:36;24212:297;;;24292:5;24273:16;:24;24269:132;;;24352:7;24361:16;24379:5;24325:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;24269:132;24444:38;24453:5;24460:7;24469:5;24476;24444:8;:38::i;:::-;24212:297;24138:378;24049:467;;;:::o;25765:132::-;25840:12;:10;:12::i;:::-;25829:23;;:7;:5;:7::i;:::-;:23;;;25821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25765:132::o;26860:191::-;26934:16;26953:6;;;;;;;;;;;26934:25;;26979:8;26970:6;;:17;;;;;;;;;;;;;;;;;;27034:8;27003:40;;27024:8;27003:40;;;;;;;;;;;;26923:128;26860:191;:::o;23314:443::-;23444:1;23427:19;;:5;:19;;;23423:91;;23499:1;23470:32;;;;;;;;;;;:::i;:::-;;;;;;;;23423:91;23547:1;23528:21;;:7;:21;;;23524:92;;23601:1;23573:31;;;;;;;;;;;:::i;:::-;;;;;;;;23524:92;23656:5;23626:11;:18;23638:5;23626:18;;;;;;;;;;;;;;;:27;23645:7;23626:27;;;;;;;;;;;;;;;:35;;;;23676:9;23672:78;;;23723:7;23707:31;;23716:5;23707:31;;;23732:5;23707:31;;;;;;:::i;:::-;;;;;;;;23672:78;23314:443;;;;:::o;19386:1133::-;19492:1;19476:18;;:4;:18;;;19472:552;;19630:5;19614:12;;:21;;;;;;;:::i;:::-;;;;;;;;19472:552;;;19668:19;19690:9;:15;19700:4;19690:15;;;;;;;;;;;;;;;;19668:37;;19738:5;19724:11;:19;19720:117;;;19796:4;19802:11;19815:5;19771:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;19720:117;19992:5;19978:11;:19;19960:9;:15;19970:4;19960:15;;;;;;;;;;;;;;;:37;;;;19653:371;19472:552;20052:1;20038:16;;:2;:16;;;20034:435;;20220:5;20204:12;;:21;;;;;;;;;;;20034:435;;;20437:5;20420:9;:13;20430:2;20420:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;20034:435;20501:2;20486:25;;20495:4;20486:25;;;20505:5;20486:25;;;;;;:::i;:::-;;;;;;;;19386:1133;;;:::o;8928:318::-;8993:7;9013:16;9032:4;9013:23;;9102:17;9092:8;9088:32;9163:20;9152:9;9148:36;9140:6;9137:48;9134:68;;9200:1;9188:13;;9134:68;9056:157;9230:8;9223:15;;;8928:318;;;:::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:118::-;5277:24;5295:5;5277:24;:::i;:::-;5272:3;5265:37;5190:118;;:::o;5314:222::-;5407:4;5445:2;5434:9;5430:18;5422:26;;5458:71;5526:1;5515:9;5511:17;5502:6;5458:71;:::i;:::-;5314:222;;;;:::o;5542:474::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5891:118;5542:474;;;;;:::o;6022:180::-;6070:77;6067:1;6060:88;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6208:320;6252:6;6289:1;6283:4;6279:12;6269:22;;6336:1;6330:4;6326:12;6357:18;6347:81;;6413:4;6405:6;6401:17;6391:27;;6347:81;6475:2;6467:6;6464:14;6444:18;6441:38;6438:84;;6494:18;;:::i;:::-;6438:84;6259:269;6208:320;;;:::o;6534:225::-;6674:34;6670:1;6662:6;6658:14;6651:58;6743:8;6738:2;6730:6;6726:15;6719:33;6534:225;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:442::-;7711:4;7749:2;7738:9;7734:18;7726:26;;7762:71;7830:1;7819:9;7815:17;7806:6;7762:71;:::i;:::-;7843:72;7911:2;7900:9;7896:18;7887:6;7843:72;:::i;:::-;7925;7993:2;7982:9;7978:18;7969:6;7925:72;:::i;:::-;7562:442;;;;;;:::o;8010:182::-;8150:34;8146:1;8138:6;8134:14;8127:58;8010:182;:::o;8198:366::-;8340:3;8361:67;8425:2;8420:3;8361:67;:::i;:::-;8354:74;;8437:93;8526:3;8437:93;:::i;:::-;8555:2;8550:3;8546:12;8539:19;;8198:366;;;:::o;8570:419::-;8736:4;8774:2;8763:9;8759:18;8751:26;;8823:9;8817:4;8813:20;8809:1;8798:9;8794:17;8787:47;8851:131;8977:4;8851:131;:::i;:::-;8843:139;;8570:419;;;:::o;8995:180::-;9043:77;9040:1;9033:88;9140:4;9137:1;9130:15;9164:4;9161:1;9154:15;9181:191;9221:3;9240:20;9258:1;9240:20;:::i;:::-;9235:25;;9274:20;9292:1;9274:20;:::i;:::-;9269:25;;9317:1;9314;9310:9;9303:16;;9338:3;9335:1;9332:10;9329:36;;;9345:18;;:::i;:::-;9329:36;9181:191;;;;:::o
Swarm Source
ipfs://8077baceeeec1fcb8140ec6fc7bec7b2b5bf70592b75083680055c27bee1a21b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.