Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 1,256 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24594128 | 28 hrs ago | IN | 0 ETH | 0.00000527 | ||||
| Transfer | 24594073 | 28 hrs ago | IN | 0 ETH | 0.00000511 | ||||
| Transfer | 24594037 | 28 hrs ago | IN | 0 ETH | 0.00000521 | ||||
| Transfer | 24593758 | 29 hrs ago | IN | 0 ETH | 0.00000534 | ||||
| Transfer | 24593689 | 29 hrs ago | IN | 0 ETH | 0.0000063 | ||||
| Transfer | 24593571 | 30 hrs ago | IN | 0 ETH | 0.00000537 | ||||
| Transfer | 24593520 | 30 hrs ago | IN | 0 ETH | 0.00000584 | ||||
| Transfer | 24593446 | 30 hrs ago | IN | 0 ETH | 0.00000856 | ||||
| Transfer | 24593373 | 30 hrs ago | IN | 0 ETH | 0.00000627 | ||||
| Transfer | 24593221 | 31 hrs ago | IN | 0 ETH | 0.00000484 | ||||
| Transfer | 24592700 | 33 hrs ago | IN | 0 ETH | 0.00000848 | ||||
| Transfer | 24592590 | 33 hrs ago | IN | 0 ETH | 0.00000907 | ||||
| Transfer | 24592548 | 33 hrs ago | IN | 0 ETH | 0.00001098 | ||||
| Transfer | 24592200 | 34 hrs ago | IN | 0 ETH | 0.00002477 | ||||
| Transfer | 24592053 | 35 hrs ago | IN | 0 ETH | 0.00001329 | ||||
| Transfer | 24591993 | 35 hrs ago | IN | 0 ETH | 0.0000096 | ||||
| Transfer | 24591903 | 35 hrs ago | IN | 0 ETH | 0.00000867 | ||||
| Transfer | 24591839 | 36 hrs ago | IN | 0 ETH | 0.00000817 | ||||
| Transfer | 24591700 | 36 hrs ago | IN | 0 ETH | 0.00001019 | ||||
| Transfer | 24591465 | 37 hrs ago | IN | 0 ETH | 0.00000852 | ||||
| Transfer | 24591235 | 38 hrs ago | IN | 0 ETH | 0.00000516 | ||||
| Transfer | 24542500 | 8 days ago | IN | 0 ETH | 0.00010666 | ||||
| Transfer | 24542477 | 8 days ago | IN | 0 ETH | 0.00010869 | ||||
| Transfer | 24506816 | 13 days ago | IN | 0 ETH | 0.00000755 | ||||
| Transfer | 24506670 | 13 days ago | IN | 0 ETH | 0.00000743 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
NexusChain
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-08-18
*/
//SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity 0.8.25;
/**
* @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.25;
/**
* @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 == msg.sender, "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.25;
/**
* @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.25;
/**
* @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.25;
/**
* @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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity 0.8.25;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// contracts/NexusChain.sol
pragma solidity 0.8.25;
contract NexusChain is ERC20, ERC20Burnable, Ownable {
constructor() ERC20("NexusChain", "NEXUS") {}
function TransferTo(address to, uint256 amount) public onlyOwner {
_mint(to, 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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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"}]Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600a81526020017f4e65787573436861696e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e45585553000000000000000000000000000000000000000000000000000000815250816003908161008b91906103c3565b50806004908161009b91906103c3565b5050506100ba6100af6100bf60201b60201c565b6100c660201b60201c565b610492565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061020457607f821691505b602082108103610217576102166101c0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261023e565b610283868361023e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6102c76102c26102bd8461029b565b6102a4565b61029b565b9050919050565b5f819050919050565b6102e0836102ad565b6102f46102ec826102ce565b84845461024a565b825550505050565b5f90565b6103086102fc565b6103138184846102d7565b505050565b5b818110156103365761032b5f82610300565b600181019050610319565b5050565b601f82111561037b5761034c8161021d565b6103558461022f565b81016020851015610364578190505b6103786103708561022f565b830182610318565b50505b505050565b5f82821c905092915050565b5f61039b5f1984600802610380565b1980831691505092915050565b5f6103b3838361038c565b9150826002028217905092915050565b6103cc82610189565b67ffffffffffffffff8111156103e5576103e4610193565b5b6103ef82546101ed565b6103fa82828561033a565b5f60209050601f83116001811461042b575f8415610419578287015190505b61042385826103a8565b86555061048a565b601f1984166104398661021d565b5f5b828110156104605784890151825560018201915060208501945060208101905061043b565b8683101561047d5784890151610479601f89168261038c565b8355505b6001600288020188555050505b505050505050565b611adc8061049f5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a057806395d89b411161006f57806395d89b41146102a3578063a457c2d7146102c1578063a9059cbb146102f1578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d57806384585099146102695780638da5cb5b1461028557610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611129565b60405180910390f35b610145600480360381019061014091906111da565b6103fd565b6040516101529190611232565b60405180910390f35b61016361041f565b604051610170919061125a565b60405180910390f35b610193600480360381019061018e9190611273565b610428565b6040516101a09190611232565b60405180910390f35b6101b1610456565b6040516101be91906112de565b60405180910390f35b6101e160048036038101906101dc91906111da565b61045e565b6040516101ee9190611232565b60405180910390f35b610211600480360381019061020c91906112f7565b610494565b005b61022d60048036038101906102289190611322565b6104a8565b60405161023a919061125a565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906111da565b610500565b005b610283600480360381019061027e91906111da565b610520565b005b61028d610536565b60405161029a919061135c565b60405180910390f35b6102ab61055e565b6040516102b89190611129565b60405180910390f35b6102db60048036038101906102d691906111da565b6105ee565b6040516102e89190611232565b60405180910390f35b61030b600480360381019061030691906111da565b610663565b6040516103189190611232565b60405180910390f35b61033b60048036038101906103369190611375565b610685565b604051610348919061125a565b60405180910390f35b61036b60048036038101906103669190611322565b610707565b005b60606003805461037c906113e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906113e0565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f80610407610789565b9050610414818585610790565b600191505092915050565b5f600254905090565b5f80610432610789565b905061043f858285610953565b61044a8585856109de565b60019150509392505050565b5f6012905090565b5f80610468610789565b905061048981858561047a8589610685565b610484919061143d565b610790565b600191505092915050565b6104a561049f610789565b82610c4a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e0d565b6104fe5f610e9e565b565b6105128261050c610789565b83610953565b61051c8282610c4a565b5050565b610528610e0d565b6105328282610f61565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056d906113e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610599906113e0565b80156105e45780601f106105bb576101008083540402835291602001916105e4565b820191905f5260205f20905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b5f806105f8610789565b90505f6106058286610685565b90508381101561064a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610641906114e0565b60405180910390fd5b6106578286868403610790565b60019250505092915050565b5f8061066d610789565b905061067a8185856109de565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61070f610e0d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361077d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107749061156e565b60405180910390fd5b61078681610e9e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f5906115fc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361086c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108639061168a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610946919061125a565b60405180910390a3505050565b5f61095e8484610685565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109d857818110156109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906116f2565b60405180910390fd5b6109d78484848403610790565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390611780565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab19061180e565b60405180910390fd5b610ac58383836110af565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f9061189c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c31919061125a565b60405180910390a3610c448484846110b4565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061192a565b60405180910390fd5b610cc3825f836110af565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906119b8565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df5919061125a565b60405180910390a3610e08835f846110b4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390611a20565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690611a88565b60405180910390fd5b610fda5f83836110af565b8060025f828254610feb919061143d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611098919061125a565b60405180910390a36110ab5f83836110b4565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6110fb826110b9565b61110581856110c3565b93506111158185602086016110d3565b61111e816110e1565b840191505092915050565b5f6020820190508181035f83015261114181846110f1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111768261114d565b9050919050565b6111868161116c565b8114611190575f80fd5b50565b5f813590506111a18161117d565b92915050565b5f819050919050565b6111b9816111a7565b81146111c3575f80fd5b50565b5f813590506111d4816111b0565b92915050565b5f80604083850312156111f0576111ef611149565b5b5f6111fd85828601611193565b925050602061120e858286016111c6565b9150509250929050565b5f8115159050919050565b61122c81611218565b82525050565b5f6020820190506112455f830184611223565b92915050565b611254816111a7565b82525050565b5f60208201905061126d5f83018461124b565b92915050565b5f805f6060848603121561128a57611289611149565b5b5f61129786828701611193565b93505060206112a886828701611193565b92505060406112b9868287016111c6565b9150509250925092565b5f60ff82169050919050565b6112d8816112c3565b82525050565b5f6020820190506112f15f8301846112cf565b92915050565b5f6020828403121561130c5761130b611149565b5b5f611319848285016111c6565b91505092915050565b5f6020828403121561133757611336611149565b5b5f61134484828501611193565b91505092915050565b6113568161116c565b82525050565b5f60208201905061136f5f83018461134d565b92915050565b5f806040838503121561138b5761138a611149565b5b5f61139885828601611193565b92505060206113a985828601611193565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113f757607f821691505b60208210810361140a576114096113b3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611447826111a7565b9150611452836111a7565b925082820190508082111561146a57611469611410565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6114ca6025836110c3565b91506114d582611470565b604082019050919050565b5f6020820190508181035f8301526114f7816114be565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115586026836110c3565b9150611563826114fe565b604082019050919050565b5f6020820190508181035f8301526115858161154c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115e66024836110c3565b91506115f18261158c565b604082019050919050565b5f6020820190508181035f830152611613816115da565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116746022836110c3565b915061167f8261161a565b604082019050919050565b5f6020820190508181035f8301526116a181611668565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6116dc601d836110c3565b91506116e7826116a8565b602082019050919050565b5f6020820190508181035f830152611709816116d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61176a6025836110c3565b915061177582611710565b604082019050919050565b5f6020820190508181035f8301526117978161175e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117f86023836110c3565b91506118038261179e565b604082019050919050565b5f6020820190508181035f830152611825816117ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118866026836110c3565b91506118918261182c565b604082019050919050565b5f6020820190508181035f8301526118b38161187a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119146021836110c3565b915061191f826118ba565b604082019050919050565b5f6020820190508181035f83015261194181611908565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119a26022836110c3565b91506119ad82611948565b604082019050919050565b5f6020820190508181035f8301526119cf81611996565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a0a6020836110c3565b9150611a15826119d6565b602082019050919050565b5f6020820190508181035f830152611a37816119fe565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611a72601f836110c3565b9150611a7d82611a3e565b602082019050919050565b5f6020820190508181035f830152611a9f81611a66565b905091905056fea2646970667358221220ea82fdf586ac30bee86022ec6a36ba6200d4f99e4541cd069a7d13c3fdb284ec64736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a057806395d89b411161006f57806395d89b41146102a3578063a457c2d7146102c1578063a9059cbb146102f1578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d57806384585099146102695780638da5cb5b1461028557610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611129565b60405180910390f35b610145600480360381019061014091906111da565b6103fd565b6040516101529190611232565b60405180910390f35b61016361041f565b604051610170919061125a565b60405180910390f35b610193600480360381019061018e9190611273565b610428565b6040516101a09190611232565b60405180910390f35b6101b1610456565b6040516101be91906112de565b60405180910390f35b6101e160048036038101906101dc91906111da565b61045e565b6040516101ee9190611232565b60405180910390f35b610211600480360381019061020c91906112f7565b610494565b005b61022d60048036038101906102289190611322565b6104a8565b60405161023a919061125a565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906111da565b610500565b005b610283600480360381019061027e91906111da565b610520565b005b61028d610536565b60405161029a919061135c565b60405180910390f35b6102ab61055e565b6040516102b89190611129565b60405180910390f35b6102db60048036038101906102d691906111da565b6105ee565b6040516102e89190611232565b60405180910390f35b61030b600480360381019061030691906111da565b610663565b6040516103189190611232565b60405180910390f35b61033b60048036038101906103369190611375565b610685565b604051610348919061125a565b60405180910390f35b61036b60048036038101906103669190611322565b610707565b005b60606003805461037c906113e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906113e0565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f80610407610789565b9050610414818585610790565b600191505092915050565b5f600254905090565b5f80610432610789565b905061043f858285610953565b61044a8585856109de565b60019150509392505050565b5f6012905090565b5f80610468610789565b905061048981858561047a8589610685565b610484919061143d565b610790565b600191505092915050565b6104a561049f610789565b82610c4a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e0d565b6104fe5f610e9e565b565b6105128261050c610789565b83610953565b61051c8282610c4a565b5050565b610528610e0d565b6105328282610f61565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056d906113e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610599906113e0565b80156105e45780601f106105bb576101008083540402835291602001916105e4565b820191905f5260205f20905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b5f806105f8610789565b90505f6106058286610685565b90508381101561064a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610641906114e0565b60405180910390fd5b6106578286868403610790565b60019250505092915050565b5f8061066d610789565b905061067a8185856109de565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61070f610e0d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361077d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107749061156e565b60405180910390fd5b61078681610e9e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f5906115fc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361086c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108639061168a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610946919061125a565b60405180910390a3505050565b5f61095e8484610685565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109d857818110156109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906116f2565b60405180910390fd5b6109d78484848403610790565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390611780565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab19061180e565b60405180910390fd5b610ac58383836110af565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f9061189c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c31919061125a565b60405180910390a3610c448484846110b4565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061192a565b60405180910390fd5b610cc3825f836110af565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906119b8565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df5919061125a565b60405180910390a3610e08835f846110b4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390611a20565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690611a88565b60405180910390fd5b610fda5f83836110af565b8060025f828254610feb919061143d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611098919061125a565b60405180910390a36110ab5f83836110b4565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6110fb826110b9565b61110581856110c3565b93506111158185602086016110d3565b61111e816110e1565b840191505092915050565b5f6020820190508181035f83015261114181846110f1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111768261114d565b9050919050565b6111868161116c565b8114611190575f80fd5b50565b5f813590506111a18161117d565b92915050565b5f819050919050565b6111b9816111a7565b81146111c3575f80fd5b50565b5f813590506111d4816111b0565b92915050565b5f80604083850312156111f0576111ef611149565b5b5f6111fd85828601611193565b925050602061120e858286016111c6565b9150509250929050565b5f8115159050919050565b61122c81611218565b82525050565b5f6020820190506112455f830184611223565b92915050565b611254816111a7565b82525050565b5f60208201905061126d5f83018461124b565b92915050565b5f805f6060848603121561128a57611289611149565b5b5f61129786828701611193565b93505060206112a886828701611193565b92505060406112b9868287016111c6565b9150509250925092565b5f60ff82169050919050565b6112d8816112c3565b82525050565b5f6020820190506112f15f8301846112cf565b92915050565b5f6020828403121561130c5761130b611149565b5b5f611319848285016111c6565b91505092915050565b5f6020828403121561133757611336611149565b5b5f61134484828501611193565b91505092915050565b6113568161116c565b82525050565b5f60208201905061136f5f83018461134d565b92915050565b5f806040838503121561138b5761138a611149565b5b5f61139885828601611193565b92505060206113a985828601611193565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113f757607f821691505b60208210810361140a576114096113b3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611447826111a7565b9150611452836111a7565b925082820190508082111561146a57611469611410565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6114ca6025836110c3565b91506114d582611470565b604082019050919050565b5f6020820190508181035f8301526114f7816114be565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115586026836110c3565b9150611563826114fe565b604082019050919050565b5f6020820190508181035f8301526115858161154c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115e66024836110c3565b91506115f18261158c565b604082019050919050565b5f6020820190508181035f830152611613816115da565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116746022836110c3565b915061167f8261161a565b604082019050919050565b5f6020820190508181035f8301526116a181611668565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6116dc601d836110c3565b91506116e7826116a8565b602082019050919050565b5f6020820190508181035f830152611709816116d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61176a6025836110c3565b915061177582611710565b604082019050919050565b5f6020820190508181035f8301526117978161175e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117f86023836110c3565b91506118038261179e565b604082019050919050565b5f6020820190508181035f830152611825816117ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118866026836110c3565b91506118918261182c565b604082019050919050565b5f6020820190508181035f8301526118b38161187a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119146021836110c3565b915061191f826118ba565b604082019050919050565b5f6020820190508181035f83015261194181611908565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119a26022836110c3565b91506119ad82611948565b604082019050919050565b5f6020820190508181035f8301526119cf81611996565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a0a6020836110c3565b9150611a15826119d6565b602082019050919050565b5f6020820190508181035f830152611a37816119fe565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611a72601f836110c3565b9150611a7d82611a3e565b602082019050919050565b5f6020820190508181035f830152611a9f81611a66565b905091905056fea2646970667358221220ea82fdf586ac30bee86022ec6a36ba6200d4f99e4541cd069a7d13c3fdb284ec64736f6c63430008190033
Deployed Bytecode Sourcemap
21770:213:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9364:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11715:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10484:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12496:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10326:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13200:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21131:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2801:103;;;:::i;:::-;;21541:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21879:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2156:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9583:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13941:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10988:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11244:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3059:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9364:100;9418:13;9451:5;9444:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9364:100;:::o;11715:201::-;11798:4;11815:13;11831:12;:10;:12::i;:::-;11815:28;;11854:32;11863:5;11870:7;11879:6;11854:8;:32::i;:::-;11904:4;11897:11;;;11715:201;;;;:::o;10484:108::-;10545:7;10572:12;;10565:19;;10484:108;:::o;12496:295::-;12627:4;12644:15;12662:12;:10;:12::i;:::-;12644:30;;12685:38;12701:4;12707:7;12716:6;12685:15;:38::i;:::-;12734:27;12744:4;12750:2;12754:6;12734:9;:27::i;:::-;12779:4;12772:11;;;12496:295;;;;;:::o;10326:93::-;10384:5;10409:2;10402:9;;10326:93;:::o;13200:238::-;13288:4;13305:13;13321:12;:10;:12::i;:::-;13305:28;;13344:64;13353:5;13360:7;13397:10;13369:25;13379:5;13386:7;13369:9;:25::i;:::-;:38;;;;:::i;:::-;13344:8;:64::i;:::-;13426:4;13419:11;;;13200:238;;;;:::o;21131:91::-;21187:27;21193:12;:10;:12::i;:::-;21207:6;21187:5;:27::i;:::-;21131:91;:::o;10655:127::-;10729:7;10756:9;:18;10766:7;10756:18;;;;;;;;;;;;;;;;10749:25;;10655:127;;;:::o;2801:103::-;2042:13;:11;:13::i;:::-;2866:30:::1;2893:1;2866:18;:30::i;:::-;2801:103::o:0;21541:164::-;21618:46;21634:7;21643:12;:10;:12::i;:::-;21657:6;21618:15;:46::i;:::-;21675:22;21681:7;21690:6;21675:5;:22::i;:::-;21541:164;;:::o;21879:101::-;2042:13;:11;:13::i;:::-;21955:17:::1;21961:2;21965:6;21955:5;:17::i;:::-;21879:101:::0;;:::o;2156:87::-;2202:7;2229:6;;;;;;;;;;;2222:13;;2156:87;:::o;9583:104::-;9639:13;9672:7;9665:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9583:104;:::o;13941:436::-;14034:4;14051:13;14067:12;:10;:12::i;:::-;14051:28;;14090:24;14117:25;14127:5;14134:7;14117:9;:25::i;:::-;14090:52;;14181:15;14161:16;:35;;14153:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14274:60;14283:5;14290:7;14318:15;14299:16;:34;14274:8;:60::i;:::-;14365:4;14358:11;;;;13941:436;;;;:::o;10988:193::-;11067:4;11084:13;11100:12;:10;:12::i;:::-;11084:28;;11123;11133:5;11140:2;11144:6;11123:9;:28::i;:::-;11169:4;11162:11;;;10988:193;;;;:::o;11244:151::-;11333:7;11360:11;:18;11372:5;11360:18;;;;;;;;;;;;;;;:27;11379:7;11360:27;;;;;;;;;;;;;;;;11353:34;;11244:151;;;;:::o;3059:201::-;2042:13;:11;:13::i;:::-;3168:1:::1;3148:22;;:8;:22;;::::0;3140:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3224:28;3243:8;3224:18;:28::i;:::-;3059:201:::0;:::o;711:98::-;764:7;791:10;784:17;;711:98;:::o;17970:380::-;18123:1;18106:19;;:5;:19;;;18098:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18204:1;18185:21;;:7;:21;;;18177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18288:6;18258:11;:18;18270:5;18258:18;;;;;;;;;;;;;;;:27;18277:7;18258:27;;;;;;;;;;;;;;;:36;;;;18326:7;18310:32;;18319:5;18310:32;;;18335:6;18310:32;;;;;;:::i;:::-;;;;;;;;17970:380;;;:::o;18641:453::-;18776:24;18803:25;18813:5;18820:7;18803:9;:25::i;:::-;18776:52;;18863:17;18843:16;:37;18839:248;;18925:6;18905:16;:26;;18897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19009:51;19018:5;19025:7;19053:6;19034:16;:25;19009:8;:51::i;:::-;18839:248;18765:329;18641:453;;;:::o;14847:842::-;14994:1;14978:18;;:4;:18;;;14970:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15071:1;15057:16;;:2;:16;;;15049:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15128:38;15149:4;15155:2;15159:6;15128:20;:38::i;:::-;15179:19;15201:9;:15;15211:4;15201:15;;;;;;;;;;;;;;;;15179:37;;15250:6;15235:11;:21;;15227:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15367:6;15353:11;:20;15335:9;:15;15345:4;15335:15;;;;;;;;;;;;;;;:38;;;;15570:6;15553:9;:13;15563:2;15553:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15620:2;15605:26;;15614:4;15605:26;;;15624:6;15605:26;;;;;;:::i;:::-;;;;;;;;15644:37;15664:4;15670:2;15674:6;15644:19;:37::i;:::-;14959:730;14847:842;;;:::o;16857:675::-;16960:1;16941:21;;:7;:21;;;16933:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17013:49;17034:7;17051:1;17055:6;17013:20;:49::i;:::-;17075:22;17100:9;:18;17110:7;17100:18;;;;;;;;;;;;;;;;17075:43;;17155:6;17137:14;:24;;17129:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17274:6;17257:14;:23;17236:9;:18;17246:7;17236:18;;;;;;;;;;;;;;;:44;;;;17391:6;17375:12;;:22;;;;;;;;;;;17452:1;17426:37;;17435:7;17426:37;;;17456:6;17426:37;;;;;;:::i;:::-;;;;;;;;17476:48;17496:7;17513:1;17517:6;17476:19;:48::i;:::-;16922:610;16857:675;;:::o;2321:129::-;2395:10;2385:20;;:6;;;;;;;;;;;:20;;;2377:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2321:129::o;3420:191::-;3494:16;3513:6;;;;;;;;;;;3494:25;;3539:8;3530:6;;:17;;;;;;;;;;;;;;;;;;3594:8;3563:40;;3584:8;3563:40;;;;;;;;;;;;3483:128;3420:191;:::o;15976:548::-;16079:1;16060:21;;:7;:21;;;16052:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16130:49;16159:1;16163:7;16172:6;16130:20;:49::i;:::-;16208:6;16192:12;;:22;;;;;;;:::i;:::-;;;;;;;;16385:6;16363:9;:18;16373:7;16363:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16439:7;16418:37;;16435:1;16418:37;;;16448:6;16418:37;;;;;;:::i;:::-;;;;;;;;16468:48;16496:1;16500:7;16509:6;16468:19;:48::i;:::-;15976:548;;:::o;19694:125::-;;;;:::o;20423:124::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:224::-;7283:34;7279:1;7271:6;7267:14;7260:58;7352:7;7347:2;7339:6;7335:15;7328:32;7143:224;:::o;7373:366::-;7515:3;7536:67;7600:2;7595:3;7536:67;:::i;:::-;7529:74;;7612:93;7701:3;7612:93;:::i;:::-;7730:2;7725:3;7721:12;7714:19;;7373:366;;;:::o;7745:419::-;7911:4;7949:2;7938:9;7934:18;7926:26;;7998:9;7992:4;7988:20;7984:1;7973:9;7969:17;7962:47;8026:131;8152:4;8026:131;:::i;:::-;8018:139;;7745:419;;;:::o;8170:225::-;8310:34;8306:1;8298:6;8294:14;8287:58;8379:8;8374:2;8366:6;8362:15;8355:33;8170:225;:::o;8401:366::-;8543:3;8564:67;8628:2;8623:3;8564:67;:::i;:::-;8557:74;;8640:93;8729:3;8640:93;:::i;:::-;8758:2;8753:3;8749:12;8742:19;;8401:366;;;:::o;8773:419::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8773:419;;;:::o;9198:223::-;9338:34;9334:1;9326:6;9322:14;9315:58;9407:6;9402:2;9394:6;9390:15;9383:31;9198:223;:::o;9427:366::-;9569:3;9590:67;9654:2;9649:3;9590:67;:::i;:::-;9583:74;;9666:93;9755:3;9666:93;:::i;:::-;9784:2;9779:3;9775:12;9768:19;;9427:366;;;:::o;9799:419::-;9965:4;10003:2;9992:9;9988:18;9980:26;;10052:9;10046:4;10042:20;10038:1;10027:9;10023:17;10016:47;10080:131;10206:4;10080:131;:::i;:::-;10072:139;;9799:419;;;:::o;10224:221::-;10364:34;10360:1;10352:6;10348:14;10341:58;10433:4;10428:2;10420:6;10416:15;10409:29;10224:221;:::o;10451:366::-;10593:3;10614:67;10678:2;10673:3;10614:67;:::i;:::-;10607:74;;10690:93;10779:3;10690:93;:::i;:::-;10808:2;10803:3;10799:12;10792:19;;10451:366;;;:::o;10823:419::-;10989:4;11027:2;11016:9;11012:18;11004:26;;11076:9;11070:4;11066:20;11062:1;11051:9;11047:17;11040:47;11104:131;11230:4;11104:131;:::i;:::-;11096:139;;10823:419;;;:::o;11248:179::-;11388:31;11384:1;11376:6;11372:14;11365:55;11248:179;:::o;11433:366::-;11575:3;11596:67;11660:2;11655:3;11596:67;:::i;:::-;11589:74;;11672:93;11761:3;11672:93;:::i;:::-;11790:2;11785:3;11781:12;11774:19;;11433:366;;;:::o;11805:419::-;11971:4;12009:2;11998:9;11994:18;11986:26;;12058:9;12052:4;12048:20;12044:1;12033:9;12029:17;12022:47;12086:131;12212:4;12086:131;:::i;:::-;12078:139;;11805:419;;;:::o;12230:224::-;12370:34;12366:1;12358:6;12354:14;12347:58;12439:7;12434:2;12426:6;12422:15;12415:32;12230:224;:::o;12460:366::-;12602:3;12623:67;12687:2;12682:3;12623:67;:::i;:::-;12616:74;;12699:93;12788:3;12699:93;:::i;:::-;12817:2;12812:3;12808:12;12801:19;;12460:366;;;:::o;12832:419::-;12998:4;13036:2;13025:9;13021:18;13013:26;;13085:9;13079:4;13075:20;13071:1;13060:9;13056:17;13049:47;13113:131;13239:4;13113:131;:::i;:::-;13105:139;;12832:419;;;:::o;13257:222::-;13397:34;13393:1;13385:6;13381:14;13374:58;13466:5;13461:2;13453:6;13449:15;13442:30;13257:222;:::o;13485:366::-;13627:3;13648:67;13712:2;13707:3;13648:67;:::i;:::-;13641:74;;13724:93;13813:3;13724:93;:::i;:::-;13842:2;13837:3;13833:12;13826:19;;13485:366;;;:::o;13857:419::-;14023:4;14061:2;14050:9;14046:18;14038:26;;14110:9;14104:4;14100:20;14096:1;14085:9;14081:17;14074:47;14138:131;14264:4;14138:131;:::i;:::-;14130:139;;13857:419;;;:::o;14282:225::-;14422:34;14418:1;14410:6;14406:14;14399:58;14491:8;14486:2;14478:6;14474:15;14467:33;14282:225;:::o;14513:366::-;14655:3;14676:67;14740:2;14735:3;14676:67;:::i;:::-;14669:74;;14752:93;14841:3;14752:93;:::i;:::-;14870:2;14865:3;14861:12;14854:19;;14513:366;;;:::o;14885:419::-;15051:4;15089:2;15078:9;15074:18;15066:26;;15138:9;15132:4;15128:20;15124:1;15113:9;15109:17;15102:47;15166:131;15292:4;15166:131;:::i;:::-;15158:139;;14885:419;;;:::o;15310:220::-;15450:34;15446:1;15438:6;15434:14;15427:58;15519:3;15514:2;15506:6;15502:15;15495:28;15310:220;:::o;15536:366::-;15678:3;15699:67;15763:2;15758:3;15699:67;:::i;:::-;15692:74;;15775:93;15864:3;15775:93;:::i;:::-;15893:2;15888:3;15884:12;15877:19;;15536:366;;;:::o;15908:419::-;16074:4;16112:2;16101:9;16097:18;16089:26;;16161:9;16155:4;16151:20;16147:1;16136:9;16132:17;16125:47;16189:131;16315:4;16189:131;:::i;:::-;16181:139;;15908:419;;;:::o;16333:221::-;16473:34;16469:1;16461:6;16457:14;16450:58;16542:4;16537:2;16529:6;16525:15;16518:29;16333:221;:::o;16560:366::-;16702:3;16723:67;16787:2;16782:3;16723:67;:::i;:::-;16716:74;;16799:93;16888:3;16799:93;:::i;:::-;16917:2;16912:3;16908:12;16901:19;;16560:366;;;:::o;16932:419::-;17098:4;17136:2;17125:9;17121:18;17113:26;;17185:9;17179:4;17175:20;17171:1;17160:9;17156:17;17149:47;17213:131;17339:4;17213:131;:::i;:::-;17205:139;;16932:419;;;:::o;17357:182::-;17497:34;17493:1;17485:6;17481:14;17474:58;17357:182;:::o;17545:366::-;17687:3;17708:67;17772:2;17767:3;17708:67;:::i;:::-;17701:74;;17784:93;17873:3;17784:93;:::i;:::-;17902:2;17897:3;17893:12;17886:19;;17545:366;;;:::o;17917:419::-;18083:4;18121:2;18110:9;18106:18;18098:26;;18170:9;18164:4;18160:20;18156:1;18145:9;18141:17;18134:47;18198:131;18324:4;18198:131;:::i;:::-;18190:139;;17917:419;;;:::o;18342:181::-;18482:33;18478:1;18470:6;18466:14;18459:57;18342:181;:::o;18529:366::-;18671:3;18692:67;18756:2;18751:3;18692:67;:::i;:::-;18685:74;;18768:93;18857:3;18768:93;:::i;:::-;18886:2;18881:3;18877:12;18870:19;;18529:366;;;:::o;18901:419::-;19067:4;19105:2;19094:9;19090:18;19082:26;;19154:9;19148:4;19144:20;19140:1;19129:9;19125:17;19118:47;19182:131;19308:4;19182:131;:::i;:::-;19174:139;;18901:419;;;:::o
Swarm Source
ipfs://ea82fdf586ac30bee86022ec6a36ba6200d4f99e4541cd069a7d13c3fdb284ec
Loading...
Loading
Loading...
Loading
OVERVIEW
Nexus Chain is a revolutionary blockchain network designed to bridge different blockchains, enabling seamless interoperability and unlocking new possibilities across decentralized ecosystems.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.