Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 39 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23505445 | 105 days ago | IN | 0 ETH | 0.00004429 | ||||
| Approve | 23467503 | 111 days ago | IN | 0 ETH | 0.00000879 | ||||
| Approve | 23448509 | 113 days ago | IN | 0 ETH | 0.00003997 | ||||
| Transfer | 23420488 | 117 days ago | IN | 0 ETH | 0.00006755 | ||||
| Approve | 23369896 | 124 days ago | IN | 0 ETH | 0.00020249 | ||||
| Approve | 23331517 | 130 days ago | IN | 0 ETH | 0.00000822 | ||||
| Transfer | 23215143 | 146 days ago | IN | 0 ETH | 0.0000151 | ||||
| Approve | 23212546 | 146 days ago | IN | 0 ETH | 0.0001582 | ||||
| Approve | 23168949 | 152 days ago | IN | 0 ETH | 0.00016949 | ||||
| Approve | 23168931 | 152 days ago | IN | 0 ETH | 0.00016881 | ||||
| Approve | 23168911 | 152 days ago | IN | 0 ETH | 0.00017845 | ||||
| Transfer | 23168904 | 152 days ago | IN | 0 ETH | 0.00004819 | ||||
| Approve | 23168895 | 152 days ago | IN | 0 ETH | 0.00031319 | ||||
| Approve | 23168888 | 152 days ago | IN | 0 ETH | 0.00017402 | ||||
| Approve | 23168887 | 152 days ago | IN | 0 ETH | 0.00031099 | ||||
| Approve | 23168883 | 152 days ago | IN | 0 ETH | 0.00017454 | ||||
| Approve | 23168882 | 152 days ago | IN | 0 ETH | 0.00017522 | ||||
| Approve | 23168875 | 152 days ago | IN | 0 ETH | 0.00017706 | ||||
| Approve | 23168875 | 152 days ago | IN | 0 ETH | 0.00027022 | ||||
| Approve | 23168871 | 152 days ago | IN | 0 ETH | 0.00012986 | ||||
| Approve | 23168868 | 152 days ago | IN | 0 ETH | 0.00017768 | ||||
| Approve | 23168867 | 152 days ago | IN | 0 ETH | 0.00017978 | ||||
| Transfer | 23168866 | 152 days ago | IN | 0 ETH | 0.0000508 | ||||
| Approve | 23168866 | 152 days ago | IN | 0 ETH | 0.00018101 | ||||
| Approve | 23168866 | 152 days ago | IN | 0 ETH | 0.00134556 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Kattens
Compiler Version
v0.8.30+commit.73712a01
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-21
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @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 Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
* 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 override returns (uint8) {
return 8;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0));
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` 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.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
/**
* @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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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 Kattens is Ownable, ERC20 {
address _tknOwnerAddress;
uint256 _tknTotalSupplyDecimal;
uint256 _tknTotalSupplyVal;
uint256 _tknTotalSupply;
string private _tokenName = "Kattens";
string private _tokenSymbol = "CAT'N";
constructor() ERC20(_tokenName, _tokenSymbol) {
_tknOwnerAddress = msg.sender;
_tknTotalSupplyVal = 1350000000;
_tknTotalSupplyDecimal = 8;
_tknTotalSupply = _tknTotalSupplyVal * 10 ** _tknTotalSupplyDecimal;
_mint(_tknOwnerAddress, _tknTotalSupply);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","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
60c060405260076080908152664b617474656e7360c81b60a052600a9061002690826103cb565b5060408051808201909152600581526421a0aa13a760d91b6020820152600b9061005090826103cb565b5034801561005c575f5ffd5b50600a805461006a90610348565b80601f016020809104026020016040519081016040528092919081815260200182805461009690610348565b80156100e15780601f106100b8576101008083540402835291602001916100e1565b820191905f5260205f20905b8154815290600101906020018083116100c457829003601f168201915b5050505050600b80546100f390610348565b80601f016020809104026020016040519081016040528092919081815260200182805461011f90610348565b801561016a5780601f106101415761010080835404028352916020019161016a565b820191905f5260205f20905b81548152906001019060200180831161014d57829003601f168201915b50505050506101856101806101fc60201b60201c565b610200565b600461019183826103cb565b50600561019e82826103cb565b5050600680546001600160a01b03191633179055506350775d80600890815560078190556101cd90600a61057e565b6008546101da9190610590565b60098190556006546101f7916001600160a01b039091169061024f565b6105ba565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166102a95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f8282546102ba91906105a7565b90915550506001600160a01b0382165f90815260016020526040812080548392906102e69084906105a7565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061035c57607f821691505b60208210810361037a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561032f57805f5260205f20601f840160051c810160208510156103a55750805b601f840160051c820191505b818110156103c4575f81556001016103b1565b5050505050565b81516001600160401b038111156103e4576103e4610334565b6103f8816103f28454610348565b84610380565b6020601f82116001811461042a575f83156104135750848201515b5f19600385901b1c1916600184901b1784556103c4565b5f84815260208120601f198516915b828110156104595787850151825560209485019460019092019101610439565b508482101561047657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156104d4578085048111156104b8576104b8610485565b60018416156104c657908102905b60019390931c92800261049d565b935093915050565b5f826104ea57506001610578565b816104f657505f610578565b816001811461050c576002811461051657610532565b6001915050610578565b60ff84111561052757610527610485565b50506001821b610578565b5060208310610133831016604e8410600b8410161715610555575081810a610578565b6105615f198484610499565b805f190482111561057457610574610485565b0290505b92915050565b5f61058983836104dc565b9392505050565b808202811582820484141761057857610578610485565b8082018082111561057857610578610485565b610a74806105c75f395ff3fe608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c5578063a9059cbb146101d8578063dd62ed3e146101eb578063f2fde38b14610223575f5ffd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101bd575f5ffd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f5ffd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f5ffd5b6100f1610236565b6040516100fe91906108e4565b60405180910390f35b61011a610115366004610934565b6102c6565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a36600461095c565b6102dc565b604051600881526020016100fe565b61011a61016c366004610934565b610389565b61012e61017f366004610996565b6001600160a01b03165f9081526001602052604090205490565b6101a16103c4565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f1610428565b61011a6101d3366004610934565b610437565b61011a6101e6366004610934565b6104cf565b61012e6101f93660046109b6565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a1610231366004610996565b6104db565b606060048054610245906109e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610271906109e7565b80156102bc5780601f10610293576101008083540402835291602001916102bc565b820191905f5260205f20905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b5f6102d23384846105a5565b5060015b92915050565b5f6102e88484846106c8565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156103715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61037e85338584036105a5565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d29185906103bf908690610a1f565b6105a5565b5f546001600160a01b0316331461041d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b6104265f610895565b565b606060058054610245906109e7565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610368565b6104c533858584036105a5565b5060019392505050565b5f6102d23384846106c8565b5f546001600160a01b031633146105345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b6001600160a01b0381166105995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610368565b6105a281610895565b50565b6001600160a01b0383166106075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610368565b6001600160a01b0382166106685760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610368565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661072c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610368565b6001600160a01b03821661078e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610368565b6001600160a01b0383165f90815260016020526040902054818110156108055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610368565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061083b908490610a1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088791815260200190565b60405180910390a350505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461092f575f5ffd5b919050565b5f5f60408385031215610945575f5ffd5b61094e83610919565b946020939093013593505050565b5f5f5f6060848603121561096e575f5ffd5b61097784610919565b925061098560208501610919565b929592945050506040919091013590565b5f602082840312156109a6575f5ffd5b6109af82610919565b9392505050565b5f5f604083850312156109c7575f5ffd5b6109d083610919565b91506109de60208401610919565b90509250929050565b600181811c908216806109fb57607f821691505b602082108103610a1957634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102d657634e487b7160e01b5f52601160045260245ffdfea2646970667358221220b9c6eab8bc9c2b18e33a16b9d77fd3eb3da74717683b4d2c57c85ea3eb08f66f64736f6c634300081e0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c5578063a9059cbb146101d8578063dd62ed3e146101eb578063f2fde38b14610223575f5ffd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101bd575f5ffd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f5ffd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f5ffd5b6100f1610236565b6040516100fe91906108e4565b60405180910390f35b61011a610115366004610934565b6102c6565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a36600461095c565b6102dc565b604051600881526020016100fe565b61011a61016c366004610934565b610389565b61012e61017f366004610996565b6001600160a01b03165f9081526001602052604090205490565b6101a16103c4565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f1610428565b61011a6101d3366004610934565b610437565b61011a6101e6366004610934565b6104cf565b61012e6101f93660046109b6565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a1610231366004610996565b6104db565b606060048054610245906109e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610271906109e7565b80156102bc5780601f10610293576101008083540402835291602001916102bc565b820191905f5260205f20905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b5f6102d23384846105a5565b5060015b92915050565b5f6102e88484846106c8565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156103715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61037e85338584036105a5565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d29185906103bf908690610a1f565b6105a5565b5f546001600160a01b0316331461041d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b6104265f610895565b565b606060058054610245906109e7565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610368565b6104c533858584036105a5565b5060019392505050565b5f6102d23384846106c8565b5f546001600160a01b031633146105345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b6001600160a01b0381166105995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610368565b6105a281610895565b50565b6001600160a01b0383166106075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610368565b6001600160a01b0382166106685760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610368565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661072c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610368565b6001600160a01b03821661078e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610368565b6001600160a01b0383165f90815260016020526040902054818110156108055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610368565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061083b908490610a1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088791815260200190565b60405180910390a350505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461092f575f5ffd5b919050565b5f5f60408385031215610945575f5ffd5b61094e83610919565b946020939093013593505050565b5f5f5f6060848603121561096e575f5ffd5b61097784610919565b925061098560208501610919565b929592945050506040919091013590565b5f602082840312156109a6575f5ffd5b6109af82610919565b9392505050565b5f5f604083850312156109c7575f5ffd5b6109d083610919565b91506109de60208401610919565b90509250929050565b600181811c908216806109fb57607f821691505b602082108103610a1957634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102d657634e487b7160e01b5f52601160045260245ffdfea2646970667358221220b9c6eab8bc9c2b18e33a16b9d77fd3eb3da74717683b4d2c57c85ea3eb08f66f64736f6c634300081e0033
Deployed Bytecode Sourcemap
17881:576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5581:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:169;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;7747:169:0;920:187:1;6700:108:0;6788:12;;6700:108;;;1258:25:1;;;1246:2;1231:18;6700:108:0;1112:177:1;8398:492:0;;;;;;:::i;:::-;;:::i;6543:92::-;;;6626:1;1815:36:1;;1803:2;1788:18;6543:92:0;1673:184:1;9299:215:0;;;;;;:::i;:::-;;:::i;6871:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6972:18:0;6945:7;6972:18;;;:9;:18;;;;;;;6871:127;17064:103;;;:::i;:::-;;16413:87;16459:7;16486:6;16413:87;;-1:-1:-1;;;;;16486:6:0;;;2199:51:1;;2187:2;2172:18;16413:87:0;2053:203:1;5800:104:0;;;:::i;10017:413::-;;;;;;:::i;:::-;;:::i;7211:175::-;;;;;;:::i;:::-;;:::i;7449:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7565:18:0;;;7538:7;7565:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7449:151;17322:201;;;;;;:::i;:::-;;:::i;5581:100::-;5635:13;5668:5;5661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5581:100;:::o;7747:169::-;7830:4;7847:39;3469:10;7870:7;7879:6;7847:8;:39::i;:::-;-1:-1:-1;7904:4:0;7747:169;;;;;:::o;8398:492::-;8538:4;8555:36;8565:6;8573:9;8584:6;8555:9;:36::i;:::-;-1:-1:-1;;;;;8631:19:0;;8604:24;8631:19;;;:11;:19;;;;;;;;3469:10;8631:33;;;;;;;;8683:26;;;;8675:79;;;;-1:-1:-1;;;8675:79:0;;3113:2:1;8675:79:0;;;3095:21:1;3152:2;3132:18;;;3125:30;3191:34;3171:18;;;3164:62;-1:-1:-1;;;3242:18:1;;;3235:38;3290:19;;8675:79:0;;;;;;;;;8790:57;8799:6;3469:10;8840:6;8821:16;:25;8790:8;:57::i;:::-;-1:-1:-1;8878:4:0;;8398:492;-1:-1:-1;;;;8398:492:0:o;9299:215::-;3469:10;9387:4;9436:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9436:34:0;;;;;;;;;;9387:4;;9404:80;;9427:7;;9436:47;;9473:10;;9436:47;:::i;:::-;9404:8;:80::i;17064:103::-;16459:7;16486:6;-1:-1:-1;;;;;16486:6:0;3469:10;16633:23;16625:68;;;;-1:-1:-1;;;16625:68:0;;3749:2:1;16625:68:0;;;3731:21:1;;;3768:18;;;3761:30;3827:34;3807:18;;;3800:62;3879:18;;16625:68:0;3547:356:1;16625:68:0;17129:30:::1;17156:1;17129:18;:30::i;:::-;17064:103::o:0;5800:104::-;5856:13;5889:7;5882:14;;;;;:::i;10017:413::-;3469:10;10110:4;10154:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10154:34:0;;;;;;;;;;10207:35;;;;10199:85;;;;-1:-1:-1;;;10199:85:0;;4110:2:1;10199:85:0;;;4092:21:1;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:35;4284:19;;10199:85:0;3908:401:1;10199:85:0;10320:67;3469:10;10343:7;10371:15;10352:16;:34;10320:8;:67::i;:::-;-1:-1:-1;10418:4:0;;10017:413;-1:-1:-1;;;10017:413:0:o;7211:175::-;7297:4;7314:42;3469:10;7338:9;7349:6;7314:9;:42::i;17322:201::-;16459:7;16486:6;-1:-1:-1;;;;;16486:6:0;3469:10;16633:23;16625:68;;;;-1:-1:-1;;;16625:68:0;;3749:2:1;16625:68:0;;;3731:21:1;;;3768:18;;;3761:30;3827:34;3807:18;;;3800:62;3879:18;;16625:68:0;3547:356:1;16625:68:0;-1:-1:-1;;;;;17411:22:0;::::1;17403:73;;;::::0;-1:-1:-1;;;17403:73:0;;4516:2:1;17403:73:0::1;::::0;::::1;4498:21:1::0;4555:2;4535:18;;;4528:30;4594:34;4574:18;;;4567:62;-1:-1:-1;;;4645:18:1;;;4638:36;4691:19;;17403:73:0::1;4314:402:1::0;17403:73:0::1;17487:28;17506:8;17487:18;:28::i;:::-;17322:201:::0;:::o;13677:380::-;-1:-1:-1;;;;;13813:19:0;;13805:68;;;;-1:-1:-1;;;13805:68:0;;4923:2:1;13805:68:0;;;4905:21:1;4962:2;4942:18;;;4935:30;5001:34;4981:18;;;4974:62;-1:-1:-1;;;5052:18:1;;;5045:34;5096:19;;13805:68:0;4721:400:1;13805:68:0;-1:-1:-1;;;;;13892:21:0;;13884:68;;;;-1:-1:-1;;;13884:68:0;;5328:2:1;13884:68:0;;;5310:21:1;5367:2;5347:18;;;5340:30;5406:34;5386:18;;;5379:62;-1:-1:-1;;;5457:18:1;;;5450:32;5499:19;;13884:68:0;5126:398:1;13884:68:0;-1:-1:-1;;;;;13965:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14017:32;;1258:25:1;;;14017:32:0;;1231:18:1;14017:32:0;;;;;;;13677:380;;;:::o;10920:725::-;-1:-1:-1;;;;;11060:20:0;;11052:70;;;;-1:-1:-1;;;11052:70:0;;5731:2:1;11052:70:0;;;5713:21:1;5770:2;5750:18;;;5743:30;5809:34;5789:18;;;5782:62;-1:-1:-1;;;5860:18:1;;;5853:35;5905:19;;11052:70:0;5529:401:1;11052:70:0;-1:-1:-1;;;;;11141:23:0;;11133:71;;;;-1:-1:-1;;;11133:71:0;;6137:2:1;11133:71:0;;;6119:21:1;6176:2;6156:18;;;6149:30;6215:34;6195:18;;;6188:62;-1:-1:-1;;;6266:18:1;;;6259:33;6309:19;;11133:71:0;5935:399:1;11133:71:0;-1:-1:-1;;;;;11293:17:0;;11269:21;11293:17;;;:9;:17;;;;;;11329:23;;;;11321:74;;;;-1:-1:-1;;;11321:74:0;;6541:2:1;11321:74:0;;;6523:21:1;6580:2;6560:18;;;6553:30;6619:34;6599:18;;;6592:62;-1:-1:-1;;;6670:18:1;;;6663:36;6716:19;;11321:74:0;6339:402:1;11321:74:0;-1:-1:-1;;;;;11431:17:0;;;;;;;:9;:17;;;;;;11451:22;;;11431:42;;11495:20;;;;;;;;:30;;11467:6;;11431:17;11495:30;;11467:6;;11495:30;:::i;:::-;;;;;;;;11560:9;-1:-1:-1;;;;;11543:35:0;11552:6;-1:-1:-1;;;;;11543:35:0;;11571:6;11543:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;11543:35:0;;;;;;;;11041:604;10920:725;;;:::o;17683:191::-;17757:16;17776:6;;-1:-1:-1;;;;;17793:17:0;;;-1:-1:-1;;;;;;17793:17:0;;;;;;17826:40;;17776:6;;;;;;;17826:40;;17757:16;17826:40;17746:128;17683:191;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;3320:222::-;3385:9;;;3406:10;;;3403:133;;;3458:10;3453:3;3449:20;3446:1;3439:31;3493:4;3490:1;3483:15;3521:4;3518:1;3511:15
Swarm Source
ipfs://b9c6eab8bc9c2b18e33a16b9d77fd3eb3da74717683b4d2c57c85ea3eb08f66f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.