Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 42 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17155215 | 1044 days ago | IN | 0 ETH | 0.00158744 | ||||
| Approve | 17155214 | 1044 days ago | IN | 0 ETH | 0.0014862 | ||||
| Approve | 17155197 | 1044 days ago | IN | 0 ETH | 0.00165437 | ||||
| Approve | 17155186 | 1044 days ago | IN | 0 ETH | 0.00289177 | ||||
| Approve | 17155185 | 1044 days ago | IN | 0 ETH | 0.00289177 | ||||
| Approve | 17155173 | 1044 days ago | IN | 0 ETH | 0.00153126 | ||||
| Approve | 17155170 | 1044 days ago | IN | 0 ETH | 0.0016722 | ||||
| Approve | 17155169 | 1044 days ago | IN | 0 ETH | 0.00164436 | ||||
| Approve | 17155168 | 1044 days ago | IN | 0 ETH | 0.00163949 | ||||
| Approve | 17155168 | 1044 days ago | IN | 0 ETH | 0.00163949 | ||||
| Approve | 17155168 | 1044 days ago | IN | 0 ETH | 0.00163949 | ||||
| Approve | 17155168 | 1044 days ago | IN | 0 ETH | 0.00168091 | ||||
| Approve | 17155168 | 1044 days ago | IN | 0 ETH | 0.00235683 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.0015814 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.0015814 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.0015814 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00162333 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00162333 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00167509 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00167509 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00167509 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00167509 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00167509 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00169322 | ||||
| Approve | 17155167 | 1044 days ago | IN | 0 ETH | 0.00169322 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
pepeCoin
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-04-29
*/
/**
*Submitted for verification at Etherscan.io on 2023-04-28
*/
// SPDX-License-Identifier: MIT
/**
*/
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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 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);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @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.openzeppelin.com/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 18;
}
/**
* @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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` 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 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* 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 `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, 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) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `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.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - 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,
uint256 amount
) 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 {}
}
// File: v11.sol
pragma solidity ^0.8.0;
contract pepeCoin is ERC20, Ownable {
uint256 private _totalSupply = 420690000000 * (10 ** 18);
uint256 private _tokenPrice = 200000 * (10 ** 18);
constructor() ERC20("MemeofElon", "Melon") {
_mint(msg.sender, _totalSupply);
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
require(balance > 0, "No balance to withdraw");
payable(msg.sender).transfer(balance);
}
function setTokenPrice(uint256 newTokenPrice) external onlyOwner {
require(newTokenPrice > 0, "Token price should be greater than 0");
_tokenPrice = newTokenPrice;
}
function getTokenPrice() external view returns (uint256) {
return _tokenPrice;
}
function burn(uint256 amount) external {
require(amount > 0, "Amount to burn should be greater than 0");
require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn");
_burn(msg.sender, amount);
}
}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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","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":"amount","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":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526c054f529ca52576bc6892000000600655692a5a058fc295ed0000006007553480156200003057600080fd5b50604080518082018252600a81526926b2b6b2b7b322b637b760b11b60208083019182528351808501909452600584526426b2b637b760d91b9084015281519192916200008091600391620001e9565b50805162000096906004906020840190620001e9565b505050620000b3620000ad620000cd60201b60201c565b620000d1565b620000c7336006546200012360201b60201c565b620002f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200019291906200028f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001f790620002b6565b90600052602060002090601f0160209004810192826200021b576000855562000266565b82601f106200023657805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026657825182559160200191906001019062000249565b506200027492915062000278565b5090565b5b8082111562000274576000815560010162000279565b60008219821115620002b157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002cb57607f821691505b60208210811415620002ed57634e487b7160e01b600052602260045260246000fd5b50919050565b610d6780620003036000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80636a61e5fc116100a257806395d89b411161007157806395d89b4114610227578063a457c2d71461022f578063a9059cbb14610242578063dd62ed3e14610255578063f2fde38b1461026857600080fd5b80636a61e5fc146101c857806370a08231146101db578063715018a6146102045780638da5cb5b1461020c57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ccfd60b146101a357806342966c68146101ad5780634b94f50e146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361027b565b6040516101309190610b8b565b60405180910390f35b61014c610147366004610bfc565b61030d565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c26565b610325565b60405160128152602001610130565b61014c61019e366004610bfc565b610349565b6101ab61036b565b005b6101ab6101bb366004610c62565b6103f0565b600754610160565b6101ab6101d6366004610c62565b6104bc565b6101606101e9366004610c7b565b6001600160a01b031660009081526020819052604090205490565b6101ab610525565b6005546040516001600160a01b039091168152602001610130565b610123610539565b61014c61023d366004610bfc565b610548565b61014c610250366004610bfc565b6105c3565b610160610263366004610c9d565b6105d1565b6101ab610276366004610c7b565b6105fc565b60606003805461028a90610cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cd0565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b60003361031b818585610672565b5060019392505050565b600033610333858285610797565b61033e858585610811565b506001949350505050565b60003361031b81858561035c83836105d1565b6103669190610d0b565b610672565b6103736109b5565b47806103bf5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f193505050501580156103ec573d6000803e3d6000fd5b5050565b600081116104505760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420746f206275726e2073686f756c6420626520677265617465726044820152660207468616e20360cc1b60648201526084016103b6565b336000908152602081905260409020548111156104af5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e0000000000000060448201526064016103b6565b6104b93382610a0f565b50565b6104c46109b5565b600081116105205760405162461bcd60e51b8152602060048201526024808201527f546f6b656e2070726963652073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016103b6565b600755565b61052d6109b5565b6105376000610b39565b565b60606004805461028a90610cd0565b6000338161055682866105d1565b9050838110156105b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b6565b61033e8286868403610672565b60003361031b818585610811565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106046109b5565b6001600160a01b0381166106695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b6565b6104b981610b39565b6001600160a01b0383166106d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b6565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107a384846105d1565b9050600019811461080b57818110156107fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b6565b61080b8484848403610672565b50505050565b6001600160a01b0383166108755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b6565b6001600160a01b0382166108d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b6565b6001600160a01b0383166000908152602081905260409020548181101561094f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361080b565b6005546001600160a01b031633146105375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b6565b6001600160a01b038216610a6f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b6565b6001600160a01b03821660009081526020819052604090205481811015610ae35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b6565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161078a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610bb857858101830151858201604001528201610b9c565b81811115610bca576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bf757600080fd5b919050565b60008060408385031215610c0f57600080fd5b610c1883610be0565b946020939093013593505050565b600080600060608486031215610c3b57600080fd5b610c4484610be0565b9250610c5260208501610be0565b9150604084013590509250925092565b600060208284031215610c7457600080fd5b5035919050565b600060208284031215610c8d57600080fd5b610c9682610be0565b9392505050565b60008060408385031215610cb057600080fd5b610cb983610be0565b9150610cc760208401610be0565b90509250929050565b600181811c90821680610ce457607f821691505b60208210811415610d0557634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d2c57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220eae6312cc17821eced931932dc9870e4eb0d9f3a07ea56270467645e07aa443f64736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80636a61e5fc116100a257806395d89b411161007157806395d89b4114610227578063a457c2d71461022f578063a9059cbb14610242578063dd62ed3e14610255578063f2fde38b1461026857600080fd5b80636a61e5fc146101c857806370a08231146101db578063715018a6146102045780638da5cb5b1461020c57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ccfd60b146101a357806342966c68146101ad5780634b94f50e146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361027b565b6040516101309190610b8b565b60405180910390f35b61014c610147366004610bfc565b61030d565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c26565b610325565b60405160128152602001610130565b61014c61019e366004610bfc565b610349565b6101ab61036b565b005b6101ab6101bb366004610c62565b6103f0565b600754610160565b6101ab6101d6366004610c62565b6104bc565b6101606101e9366004610c7b565b6001600160a01b031660009081526020819052604090205490565b6101ab610525565b6005546040516001600160a01b039091168152602001610130565b610123610539565b61014c61023d366004610bfc565b610548565b61014c610250366004610bfc565b6105c3565b610160610263366004610c9d565b6105d1565b6101ab610276366004610c7b565b6105fc565b60606003805461028a90610cd0565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cd0565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b60003361031b818585610672565b5060019392505050565b600033610333858285610797565b61033e858585610811565b506001949350505050565b60003361031b81858561035c83836105d1565b6103669190610d0b565b610672565b6103736109b5565b47806103bf5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f193505050501580156103ec573d6000803e3d6000fd5b5050565b600081116104505760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420746f206275726e2073686f756c6420626520677265617465726044820152660207468616e20360cc1b60648201526084016103b6565b336000908152602081905260409020548111156104af5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e0000000000000060448201526064016103b6565b6104b93382610a0f565b50565b6104c46109b5565b600081116105205760405162461bcd60e51b8152602060048201526024808201527f546f6b656e2070726963652073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016103b6565b600755565b61052d6109b5565b6105376000610b39565b565b60606004805461028a90610cd0565b6000338161055682866105d1565b9050838110156105b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b6565b61033e8286868403610672565b60003361031b818585610811565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106046109b5565b6001600160a01b0381166106695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b6565b6104b981610b39565b6001600160a01b0383166106d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b6565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107a384846105d1565b9050600019811461080b57818110156107fe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b6565b61080b8484848403610672565b50505050565b6001600160a01b0383166108755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b6565b6001600160a01b0382166108d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b6565b6001600160a01b0383166000908152602081905260409020548181101561094f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361080b565b6005546001600160a01b031633146105375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b6565b6001600160a01b038216610a6f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b6565b6001600160a01b03821660009081526020819052604090205481811015610ae35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b6565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161078a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610bb857858101830151858201604001528201610b9c565b81811115610bca576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bf757600080fd5b919050565b60008060408385031215610c0f57600080fd5b610c1883610be0565b946020939093013593505050565b600080600060608486031215610c3b57600080fd5b610c4484610be0565b9250610c5260208501610be0565b9150604084013590509250925092565b600060208284031215610c7457600080fd5b5035919050565b600060208284031215610c8d57600080fd5b610c9682610be0565b9392505050565b60008060408385031215610cb057600080fd5b610cb983610be0565b9150610cc760208401610be0565b90509250929050565b600181811c90821680610ce457607f821691505b60208210811415610d0557634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d2c57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220eae6312cc17821eced931932dc9870e4eb0d9f3a07ea56270467645e07aa443f64736f6c63430008090033
Deployed Bytecode Sourcemap
20725:1012:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9486:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11837:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11837:201:0;1053:187:1;10606:108:0;10694:12;;10606:108;;;1391:25:1;;;1379:2;1364:18;10606:108:0;1245:177:1;12618:295:0;;;;;;:::i;:::-;;:::i;10448:93::-;;;10531:2;1902:36:1;;1890:2;1875:18;10448:93:0;1760:184:1;13322:238:0;;;;;;:::i;:::-;;:::i;20990:202::-;;;:::i;:::-;;21498:236;;;;;;:::i;:::-;;:::i;21396:94::-;21471:11;;21396:94;;21200:188;;;;;;:::i;:::-;;:::i;10777:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10878:18:0;10851:7;10878:18;;;;;;;;;;;;10777:127;2911:103;;;:::i;2263:87::-;2336:6;;2263:87;;-1:-1:-1;;;;;2336:6:0;;;2471:51:1;;2459:2;2444:18;2263:87:0;2325:203:1;9705:104:0;;;:::i;14063:436::-;;;;;;:::i;:::-;;:::i;11110:193::-;;;;;;:::i;:::-;;:::i;11366:151::-;;;;;;:::i;:::-;;:::i;3169:201::-;;;;;;:::i;:::-;;:::i;9486:100::-;9540:13;9573:5;9566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9486:100;:::o;11837:201::-;11920:4;894:10;11976:32;894:10;11992:7;12001:6;11976:8;:32::i;:::-;-1:-1:-1;12026:4:0;;11837:201;-1:-1:-1;;;11837:201:0:o;12618:295::-;12749:4;894:10;12807:38;12823:4;894:10;12838:6;12807:15;:38::i;:::-;12856:27;12866:4;12872:2;12876:6;12856:9;:27::i;:::-;-1:-1:-1;12901:4:0;;12618:295;-1:-1:-1;;;;12618:295:0:o;13322:238::-;13410:4;894:10;13466:64;894:10;13482:7;13519:10;13491:25;894:10;13482:7;13491:9;:25::i;:::-;:38;;;;:::i;:::-;13466:8;:64::i;20990:202::-;2149:13;:11;:13::i;:::-;21058:21:::1;21098:11:::0;21090:46:::1;;;::::0;-1:-1:-1;;;21090:46:0;;3615:2:1;21090:46:0::1;::::0;::::1;3597:21:1::0;3654:2;3634:18;;;3627:30;-1:-1:-1;;;3673:18:1;;;3666:52;3735:18;;21090:46:0::1;;;;;;;;;21147:37;::::0;21155:10:::1;::::0;21147:37;::::1;;;::::0;21176:7;;21147:37:::1;::::0;;;21176:7;21155:10;21147:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;21029:163;20990:202::o:0;21498:236::-;21565:1;21556:6;:10;21548:62;;;;-1:-1:-1;;;21548:62:0;;3966:2:1;21548:62:0;;;3948:21:1;4005:2;3985:18;;;3978:30;4044:34;4024:18;;;4017:62;-1:-1:-1;;;4095:18:1;;;4088:37;4142:19;;21548:62:0;3764:403:1;21548:62:0;21639:10;10851:7;10878:18;;;;;;;;;;;21654:6;-1:-1:-1;21629:31:0;21621:69;;;;-1:-1:-1;;;21621:69:0;;4374:2:1;21621:69:0;;;4356:21:1;4413:2;4393:18;;;4386:30;4452:27;4432:18;;;4425:55;4497:18;;21621:69:0;4172:349:1;21621:69:0;21701:25;21707:10;21719:6;21701:5;:25::i;:::-;21498:236;:::o;21200:188::-;2149:13;:11;:13::i;:::-;21300:1:::1;21284:13;:17;21276:66;;;::::0;-1:-1:-1;;;21276:66:0;;4728:2:1;21276:66:0::1;::::0;::::1;4710:21:1::0;4767:2;4747:18;;;4740:30;4806:34;4786:18;;;4779:62;-1:-1:-1;;;4857:18:1;;;4850:34;4901:19;;21276:66:0::1;4526:400:1::0;21276:66:0::1;21353:11;:27:::0;21200:188::o;2911:103::-;2149:13;:11;:13::i;:::-;2976:30:::1;3003:1;2976:18;:30::i;:::-;2911:103::o:0;9705:104::-;9761:13;9794:7;9787:14;;;;;:::i;14063:436::-;14156:4;894:10;14156:4;14239:25;894:10;14256:7;14239:9;:25::i;:::-;14212:52;;14303:15;14283:16;:35;;14275:85;;;;-1:-1:-1;;;14275:85:0;;5133:2:1;14275:85:0;;;5115:21:1;5172:2;5152:18;;;5145:30;5211:34;5191:18;;;5184:62;-1:-1:-1;;;5262:18:1;;;5255:35;5307:19;;14275:85:0;4931:401:1;14275:85:0;14396:60;14405:5;14412:7;14440:15;14421:16;:34;14396:8;:60::i;11110:193::-;11189:4;894:10;11245:28;894:10;11262:2;11266:6;11245:9;:28::i;11366:151::-;-1:-1:-1;;;;;11482:18:0;;;11455:7;11482:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11366:151::o;3169:201::-;2149:13;:11;:13::i;:::-;-1:-1:-1;;;;;3258:22:0;::::1;3250:73;;;::::0;-1:-1:-1;;;3250:73:0;;5539:2:1;3250:73:0::1;::::0;::::1;5521:21:1::0;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:1;;;5661:36;5714:19;;3250:73:0::1;5337:402:1::0;3250:73:0::1;3334:28;3353:8;3334:18;:28::i;18090:380::-:0;-1:-1:-1;;;;;18226:19:0;;18218:68;;;;-1:-1:-1;;;18218:68:0;;5946:2:1;18218:68:0;;;5928:21:1;5985:2;5965:18;;;5958:30;6024:34;6004:18;;;5997:62;-1:-1:-1;;;6075:18:1;;;6068:34;6119:19;;18218:68:0;5744:400:1;18218:68:0;-1:-1:-1;;;;;18305:21:0;;18297:68;;;;-1:-1:-1;;;18297:68:0;;6351:2:1;18297:68:0;;;6333:21:1;6390:2;6370:18;;;6363:30;6429:34;6409:18;;;6402:62;-1:-1:-1;;;6480:18:1;;;6473:32;6522:19;;18297:68:0;6149:398:1;18297:68:0;-1:-1:-1;;;;;18378:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18430:32;;1391:25:1;;;18430:32:0;;1364:18:1;18430:32:0;;;;;;;;18090:380;;;:::o;18761:453::-;18896:24;18923:25;18933:5;18940:7;18923:9;:25::i;:::-;18896:52;;-1:-1:-1;;18963:16:0;:37;18959:248;;19045:6;19025:16;:26;;19017:68;;;;-1:-1:-1;;;19017:68:0;;6754:2:1;19017:68:0;;;6736:21:1;6793:2;6773:18;;;6766:30;6832:31;6812:18;;;6805:59;6881:18;;19017:68:0;6552:353:1;19017:68:0;19129:51;19138:5;19145:7;19173:6;19154:16;:25;19129:8;:51::i;:::-;18885:329;18761:453;;;:::o;14969:840::-;-1:-1:-1;;;;;15100:18:0;;15092:68;;;;-1:-1:-1;;;15092:68:0;;7112:2:1;15092:68:0;;;7094:21:1;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:35;7286:19;;15092:68:0;6910:401:1;15092:68:0;-1:-1:-1;;;;;15179:16:0;;15171:64;;;;-1:-1:-1;;;15171:64:0;;7518:2:1;15171:64:0;;;7500:21:1;7557:2;7537:18;;;7530:30;7596:34;7576:18;;;7569:62;-1:-1:-1;;;7647:18:1;;;7640:33;7690:19;;15171:64:0;7316:399:1;15171:64:0;-1:-1:-1;;;;;15321:15:0;;15299:19;15321:15;;;;;;;;;;;15355:21;;;;15347:72;;;;-1:-1:-1;;;15347:72:0;;7922:2:1;15347:72:0;;;7904:21:1;7961:2;7941:18;;;7934:30;8000:34;7980:18;;;7973:62;-1:-1:-1;;;8051:18:1;;;8044:36;8097:19;;15347:72:0;7720:402:1;15347:72:0;-1:-1:-1;;;;;15455:15:0;;;:9;:15;;;;;;;;;;;15473:20;;;15455:38;;15673:13;;;;;;;;;;:23;;;;;;15725:26;;1391:25:1;;;15673:13:0;;15725:26;;1364:18:1;15725:26:0;;;;;;;15764:37;16977:675;2428:132;2336:6;;-1:-1:-1;;;;;2336:6:0;894:10;2492:23;2484:68;;;;-1:-1:-1;;;2484:68:0;;8329:2:1;2484:68:0;;;8311:21:1;;;8348:18;;;8341:30;8407:34;8387:18;;;8380:62;8459:18;;2484:68:0;8127:356:1;16977:675:0;-1:-1:-1;;;;;17061:21:0;;17053:67;;;;-1:-1:-1;;;17053:67:0;;8690:2:1;17053:67:0;;;8672:21:1;8729:2;8709:18;;;8702:30;8768:34;8748:18;;;8741:62;-1:-1:-1;;;8819:18:1;;;8812:31;8860:19;;17053:67:0;8488:397:1;17053:67:0;-1:-1:-1;;;;;17220:18:0;;17195:22;17220:18;;;;;;;;;;;17257:24;;;;17249:71;;;;-1:-1:-1;;;17249:71:0;;9092:2:1;17249:71:0;;;9074:21:1;9131:2;9111:18;;;9104:30;9170:34;9150:18;;;9143:62;-1:-1:-1;;;9221:18:1;;;9214:32;9263:19;;17249:71:0;8890:398:1;17249:71:0;-1:-1:-1;;;;;17356:18:0;;:9;:18;;;;;;;;;;;17377:23;;;17356:44;;17495:12;:22;;;;;;;17546:37;1391:25:1;;;17356:9:0;;:18;17546:37;;1364:18:1;17546:37:0;1245:177:1;3530:191:0;3623:6;;;-1:-1:-1;;;;;3640:17:0;;;-1:-1:-1;;;;;;3640:17:0;;;;;;;3673:40;;3623:6;;;3640:17;3623:6;;3673:40;;3604:16;;3673:40;3593:128;3530:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:225::-;3223:3;3254:1;3250:6;3247:1;3244:13;3241:136;;;3299:10;3294:3;3290:20;3287:1;3280:31;3334:4;3331:1;3324:15;3362:4;3359:1;3352:15;3241:136;-1:-1:-1;3393:9:1;;3183:225::o
Swarm Source
ipfs://eae6312cc17821eced931932dc9870e4eb0d9f3a07ea56270467645e07aa443f
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.