Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
414,268,791.0402 ESS
Holders
2,788 (0.00%)
Transfers
-
20 ( -90.78%)
Market
Price
$0.02 @ 0.000011 ETH (+1.67%)
Onchain Market Cap
$9,379,020.57
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
E2EssenceToken
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-05-28
*/
// Sources flattened with hardhat v2.22.4 https://hardhat.org
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.2
// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v5.0.2
// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File @openzeppelin/contracts/interfaces/draft-IERC6093.sol@v5.0.2
// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File E2EssenceToken.sol
// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.20;
/**
* @dev Earth 2 Essence ERC-20 token
*
* This is the official Earth 2 Essence token Smart Contract.
* But don't take ours, or anyone else's word for it. Login to your Earth 2 account via earth2.io
* to validate important information such as this smart contract address and our wallet addresses.
* Cross reference this with any news or social media posts from our official Earth 2 accounts as well.
* Always triple check before you take any action. Thank you
*/
contract E2EssenceToken is IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
uint256 private _maxSupply;
address private immutable _masterAccount;
/**
* @dev Indicates that a master account tries to mint more than `_maxSupply` tokens
* @param value the amount that was requested
* @param remaining the amount allowed for minting i.e. `_maxSupply` - `_totalSupply`
*/
error MaxSupplyExceeded(uint256 value, uint256 remaining);
/**
* @dev Sets the values for {_maxSupply} and {_masterAccount}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor() {
_maxSupply = 1000000000 * 10 ** 18;
_masterAccount = msg.sender;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return "Earth 2 Essence";
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return "ESS";
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev Maximum supply allowed to be ever circulating
*/
function maxSupply() public view virtual returns (uint256) {
return _maxSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
_transfer(msg.sender, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev Mint new tokens
*
* Requirements:
* - the caller must be the master account
* - `_totalSupply` + `value` must be less or equal than `_maxSupply`
*/
function mint(uint256 value) public virtual returns (bool) {
address account = msg.sender;
if (account != _masterAccount) {
revert ERC20InvalidReceiver(account);
}
_mint(account, value);
return true;
}
/**
* @dev Burn tokens
*
* NOTE: burnt tokens are permanently removed from circulation and can't
* be minted again (i.e. deducted from both `_totalSupply` and `_maxSupply`)
*
* Requirements:
* - `value` must be less or equal caller's balance
*/
function burn(uint256 value) public virtual returns (bool) {
address account = msg.sender;
uint256 balance = _balances[account];
if (balance < value) {
revert ERC20InsufficientBalance(account, balance, value);
}
unchecked {
_balances[account] = balance - value;
_totalSupply -= value;
_maxSupply -= value;
}
emit Transfer(account, address(0), value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the ERC. 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
_spendAllowance(from, msg.sender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 value) virtual internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
*
* Emits a {Transfer} event with `from` set to the zero address.
*/
function _mint(address account, uint256 value) internal {
unchecked {
uint256 remaining = _maxSupply - _totalSupply;
if (remaining < value) {
revert MaxSupplyExceeded(value, remaining);
}
_balances[account] += value;
_totalSupply += value;
}
emit Transfer(address(0), account, value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"remaining","type":"uint256"}],"name":"MaxSupplyExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a0604052348015600e575f80fd5b506b033b2e3c9fd0803ce80000006003819055503373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050608051610fbf61006e5f395f61050a0152610fbf5ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a08231146101a057806395d89b41146101d0578063a0712d68146101ee578063a9059cbb1461021e578063d5abeb011461024e578063dd62ed3e1461026c576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce5671461015257806342966c6814610170575b5f80fd5b6100be61029c565b6040516100cb9190610ca3565b60405180910390f35b6100ee60048036038101906100e99190610d54565b6102d9565b6040516100fb9190610dac565b60405180910390f35b61010c6102ef565b6040516101199190610dd4565b60405180910390f35b61013c60048036038101906101379190610ded565b6102f8565b6040516101499190610dac565b60405180910390f35b61015a61031a565b6040516101679190610e58565b60405180910390f35b61018a60048036038101906101859190610e71565b610322565b6040516101979190610dac565b60405180910390f35b6101ba60048036038101906101b59190610e9c565b610481565b6040516101c79190610dd4565b60405180910390f35b6101d86104c6565b6040516101e59190610ca3565b60405180910390f35b61020860048036038101906102039190610e71565b610503565b6040516102159190610dac565b60405180910390f35b61023860048036038101906102339190610d54565b6105ac565b6040516102459190610dac565b60405180910390f35b6102566105c2565b6040516102639190610dd4565b60405180910390f35b61028660048036038101906102819190610ec7565b6105cb565b6040516102939190610dd4565b60405180910390f35b60606040518060400160405280600f81526020017f4561727468203220457373656e63650000000000000000000000000000000000815250905090565b5f6102e533848461064d565b6001905092915050565b5f600254905090565b5f61030484338461065f565b61030f8484846106f1565b600190509392505050565b5f6012905090565b5f803390505f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050838110156103b0578181856040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103a793929190610f14565b60405180910390fd5b8381035f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508360025f82825403925050819055508360035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161046e9190610dd4565b60405180910390a3600192505050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606040518060400160405280600381526020017f4553530000000000000000000000000000000000000000000000000000000000815250905090565b5f803390507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461059857806040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161058f9190610f49565b60405180910390fd5b6105a28184610951565b6001915050919050565b5f6105b83384846106f1565b6001905092915050565b5f600354905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61065a8383836001610a64565b505050565b5f61066a84846105cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106eb57818110156106dc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106d393929190610f14565b60405180910390fd5b6106ea84848484035f610a64565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610761575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107589190610f49565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107c89190610f49565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561085a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161085193929190610f14565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109439190610dd4565b60405180910390a350505050565b5f600254600354039050818110156109a25781816040517fea058246000000000000000000000000000000000000000000000000000000008152600401610999929190610f62565b60405180910390fd5b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8282540192505081905550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a589190610dd4565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ad4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610acb9190610f49565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b44575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b3b9190610f49565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c2d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c249190610dd4565b60405180910390a35b50505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c7582610c33565b610c7f8185610c3d565b9350610c8f818560208601610c4d565b610c9881610c5b565b840191505092915050565b5f6020820190508181035f830152610cbb8184610c6b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf082610cc7565b9050919050565b610d0081610ce6565b8114610d0a575f80fd5b50565b5f81359050610d1b81610cf7565b92915050565b5f819050919050565b610d3381610d21565b8114610d3d575f80fd5b50565b5f81359050610d4e81610d2a565b92915050565b5f8060408385031215610d6a57610d69610cc3565b5b5f610d7785828601610d0d565b9250506020610d8885828601610d40565b9150509250929050565b5f8115159050919050565b610da681610d92565b82525050565b5f602082019050610dbf5f830184610d9d565b92915050565b610dce81610d21565b82525050565b5f602082019050610de75f830184610dc5565b92915050565b5f805f60608486031215610e0457610e03610cc3565b5b5f610e1186828701610d0d565b9350506020610e2286828701610d0d565b9250506040610e3386828701610d40565b9150509250925092565b5f60ff82169050919050565b610e5281610e3d565b82525050565b5f602082019050610e6b5f830184610e49565b92915050565b5f60208284031215610e8657610e85610cc3565b5b5f610e9384828501610d40565b91505092915050565b5f60208284031215610eb157610eb0610cc3565b5b5f610ebe84828501610d0d565b91505092915050565b5f8060408385031215610edd57610edc610cc3565b5b5f610eea85828601610d0d565b9250506020610efb85828601610d0d565b9150509250929050565b610f0e81610ce6565b82525050565b5f606082019050610f275f830186610f05565b610f346020830185610dc5565b610f416040830184610dc5565b949350505050565b5f602082019050610f5c5f830184610f05565b92915050565b5f604082019050610f755f830185610dc5565b610f826020830184610dc5565b939250505056fea264697066735822122065614e8b4adf605a1b4ee7493916d90ccbd66fb76d2a8c7eeb6d48e0af74e95164736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a08231146101a057806395d89b41146101d0578063a0712d68146101ee578063a9059cbb1461021e578063d5abeb011461024e578063dd62ed3e1461026c576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce5671461015257806342966c6814610170575b5f80fd5b6100be61029c565b6040516100cb9190610ca3565b60405180910390f35b6100ee60048036038101906100e99190610d54565b6102d9565b6040516100fb9190610dac565b60405180910390f35b61010c6102ef565b6040516101199190610dd4565b60405180910390f35b61013c60048036038101906101379190610ded565b6102f8565b6040516101499190610dac565b60405180910390f35b61015a61031a565b6040516101679190610e58565b60405180910390f35b61018a60048036038101906101859190610e71565b610322565b6040516101979190610dac565b60405180910390f35b6101ba60048036038101906101b59190610e9c565b610481565b6040516101c79190610dd4565b60405180910390f35b6101d86104c6565b6040516101e59190610ca3565b60405180910390f35b61020860048036038101906102039190610e71565b610503565b6040516102159190610dac565b60405180910390f35b61023860048036038101906102339190610d54565b6105ac565b6040516102459190610dac565b60405180910390f35b6102566105c2565b6040516102639190610dd4565b60405180910390f35b61028660048036038101906102819190610ec7565b6105cb565b6040516102939190610dd4565b60405180910390f35b60606040518060400160405280600f81526020017f4561727468203220457373656e63650000000000000000000000000000000000815250905090565b5f6102e533848461064d565b6001905092915050565b5f600254905090565b5f61030484338461065f565b61030f8484846106f1565b600190509392505050565b5f6012905090565b5f803390505f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050838110156103b0578181856040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103a793929190610f14565b60405180910390fd5b8381035f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508360025f82825403925050819055508360035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161046e9190610dd4565b60405180910390a3600192505050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606040518060400160405280600381526020017f4553530000000000000000000000000000000000000000000000000000000000815250905090565b5f803390507f00000000000000000000000068d332ec97800aa1a112160195cc281978ec8eea73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461059857806040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161058f9190610f49565b60405180910390fd5b6105a28184610951565b6001915050919050565b5f6105b83384846106f1565b6001905092915050565b5f600354905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61065a8383836001610a64565b505050565b5f61066a84846105cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106eb57818110156106dc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106d393929190610f14565b60405180910390fd5b6106ea84848484035f610a64565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610761575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107589190610f49565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107c89190610f49565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561085a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161085193929190610f14565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109439190610dd4565b60405180910390a350505050565b5f600254600354039050818110156109a25781816040517fea058246000000000000000000000000000000000000000000000000000000008152600401610999929190610f62565b60405180910390fd5b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8282540192505081905550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a589190610dd4565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ad4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610acb9190610f49565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b44575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b3b9190610f49565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c2d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c249190610dd4565b60405180910390a35b50505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c7582610c33565b610c7f8185610c3d565b9350610c8f818560208601610c4d565b610c9881610c5b565b840191505092915050565b5f6020820190508181035f830152610cbb8184610c6b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf082610cc7565b9050919050565b610d0081610ce6565b8114610d0a575f80fd5b50565b5f81359050610d1b81610cf7565b92915050565b5f819050919050565b610d3381610d21565b8114610d3d575f80fd5b50565b5f81359050610d4e81610d2a565b92915050565b5f8060408385031215610d6a57610d69610cc3565b5b5f610d7785828601610d0d565b9250506020610d8885828601610d40565b9150509250929050565b5f8115159050919050565b610da681610d92565b82525050565b5f602082019050610dbf5f830184610d9d565b92915050565b610dce81610d21565b82525050565b5f602082019050610de75f830184610dc5565b92915050565b5f805f60608486031215610e0457610e03610cc3565b5b5f610e1186828701610d0d565b9350506020610e2286828701610d0d565b9250506040610e3386828701610d40565b9150509250925092565b5f60ff82169050919050565b610e5281610e3d565b82525050565b5f602082019050610e6b5f830184610e49565b92915050565b5f60208284031215610e8657610e85610cc3565b5b5f610e9384828501610d40565b91505092915050565b5f60208284031215610eb157610eb0610cc3565b5b5f610ebe84828501610d0d565b91505092915050565b5f8060408385031215610edd57610edc610cc3565b5b5f610eea85828601610d0d565b9250506020610efb85828601610d0d565b9150509250929050565b610f0e81610ce6565b82525050565b5f606082019050610f275f830186610f05565b610f346020830185610dc5565b610f416040830184610dc5565b949350505050565b5f602082019050610f5c5f830184610f05565b92915050565b5f604082019050610f755f830185610dc5565b610f826020830184610dc5565b939250505056fea264697066735822122065614e8b4adf605a1b4ee7493916d90ccbd66fb76d2a8c7eeb6d48e0af74e95164736f6c63430008190033
Deployed Bytecode Sourcemap
11204:10193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12228:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14677:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13340:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16701:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13191:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15621:502;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13682:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12450:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15043:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14005:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13524:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14216:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12228:103;12273:13;12299:24;;;;;;;;;;;;;;;;;;;12228:103;:::o;14677:156::-;14750:4;14767:36;14776:10;14788:7;14797:5;14767:8;:36::i;:::-;14821:4;14814:11;;14677:156;;;;:::o;13340:99::-;13392:7;13419:12;;13412:19;;13340:99;:::o;16701:211::-;16788:4;16805:40;16821:4;16827:10;16839:5;16805:15;:40::i;:::-;16856:26;16866:4;16872:2;16876:5;16856:9;:26::i;:::-;16900:4;16893:11;;16701:211;;;;;:::o;13191:84::-;13240:5;13265:2;13258:9;;13191:84;:::o;15621:502::-;15674:4;15691:15;15709:10;15691:28;;15730:15;15748:9;:18;15758:7;15748:18;;;;;;;;;;;;;;;;15730:36;;15793:5;15783:7;:15;15779:104;;;15847:7;15856;15865:5;15822:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;15779:104;15951:5;15941:7;:15;15920:9;:18;15930:7;15920:18;;;;;;;;;;;;;;;:36;;;;15987:5;15971:12;;:21;;;;;;;;;;;16021:5;16007:10;;:19;;;;;;;;;;;16081:1;16055:36;;16064:7;16055:36;;;16085:5;16055:36;;;;;;:::i;:::-;;;;;;;;16111:4;16104:11;;;;15621:502;;;:::o;13682:118::-;13747:7;13774:9;:18;13784:7;13774:18;;;;;;;;;;;;;;;;13767:25;;13682:118;;;:::o;12450:93::-;12497:13;12523:12;;;;;;;;;;;;;;;;;;;12450:93;:::o;15043:270::-;15096:4;15113:15;15131:10;15113:28;;15169:14;15158:25;;:7;:25;;;15154:94;;15228:7;15207:29;;;;;;;;;;;:::i;:::-;;;;;;;;15154:94;15260:21;15266:7;15275:5;15260;:21::i;:::-;15301:4;15294:11;;;15043:270;;;:::o;14005:148::-;14074:4;14091:32;14101:10;14113:2;14117:5;14091:9;:32::i;:::-;14141:4;14134:11;;14005:148;;;;:::o;13524:95::-;13574:7;13601:10;;13594:17;;13524:95;:::o;14216:142::-;14296:7;14323:11;:18;14335:5;14323:18;;;;;;;;;;;;;;;:27;14342:7;14323:27;;;;;;;;;;;;;;;;14316:34;;14216:142;;;;:::o;19191:130::-;19276:37;19285:5;19292:7;19301:5;19308:4;19276:8;:37::i;:::-;19191:130;;;:::o;20907:487::-;21007:24;21034:25;21044:5;21051:7;21034:9;:25::i;:::-;21007:52;;21094:17;21074:16;:37;21070:317;;21151:5;21132:16;:24;21128:132;;;21211:7;21220:16;21238:5;21184:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21128:132;21303:57;21312:5;21319:7;21347:5;21328:16;:24;21354:5;21303:8;:57::i;:::-;21070:317;20996:398;20907:487;;;:::o;17205:808::-;17313:1;17297:18;;:4;:18;;;17293:88;;17366:1;17339:30;;;;;;;;;;;:::i;:::-;;;;;;;;17293:88;17409:1;17395:16;;:2;:16;;;17391:88;;17464:1;17435:32;;;;;;;;;;;:::i;:::-;;;;;;;;17391:88;17491:19;17513:9;:15;17523:4;17513:15;;;;;;;;;;;;;;;;17491:37;;17559:5;17545:11;:19;17541:109;;;17613:4;17619:11;17632:5;17588:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17541:109;17795:5;17781:11;:19;17763:9;:15;17773:4;17763:15;;;;;;;;;;;;;;;:37;;;;17946:5;17929:9;:13;17939:2;17929:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17995:2;17980:25;;17989:4;17980:25;;;17999:5;17980:25;;;;;;:::i;:::-;;;;;;;;17282:731;17205:808;;;:::o;18232:406::-;18324:17;18357:12;;18344:10;;:25;18324:45;;18402:5;18390:9;:17;18386:100;;;18453:5;18460:9;18435:35;;;;;;;;;;;;:::i;:::-;;;;;;;;18386:100;18524:5;18502:9;:18;18512:7;18502:18;;;;;;;;;;;;;;;;:27;;;;;;;;;;;18560:5;18544:12;;:21;;;;;;;;;;;18299:278;18615:7;18594:36;;18611:1;18594:36;;;18624:5;18594:36;;;;;;:::i;:::-;;;;;;;;18232:406;;:::o;20172:443::-;20302:1;20285:19;;:5;:19;;;20281:91;;20357:1;20328:32;;;;;;;;;;;:::i;:::-;;;;;;;;20281:91;20405:1;20386:21;;:7;:21;;;20382:92;;20459:1;20431:31;;;;;;;;;;;:::i;:::-;;;;;;;;20382:92;20514:5;20484:11;:18;20496:5;20484:18;;;;;;;;;;;;;;;:27;20503:7;20484:27;;;;;;;;;;;;;;;:35;;;;20534:9;20530:78;;;20581:7;20565:31;;20574:5;20565:31;;;20590:5;20565:31;;;;;;:::i;:::-;;;;;;;;20530:78;20172:443;;;;:::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:474::-;5484:6;5492;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5794:2;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5765:118;5416:474;;;;;:::o;5896:118::-;5983:24;6001:5;5983:24;:::i;:::-;5978:3;5971:37;5896:118;;:::o;6020:442::-;6169:4;6207:2;6196:9;6192:18;6184:26;;6220:71;6288:1;6277:9;6273:17;6264:6;6220:71;:::i;:::-;6301:72;6369:2;6358:9;6354:18;6345:6;6301:72;:::i;:::-;6383;6451:2;6440:9;6436:18;6427:6;6383:72;:::i;:::-;6020:442;;;;;;:::o;6468:222::-;6561:4;6599:2;6588:9;6584:18;6576:26;;6612:71;6680:1;6669:9;6665:17;6656:6;6612:71;:::i;:::-;6468:222;;;;:::o;6696:332::-;6817:4;6855:2;6844:9;6840:18;6832:26;;6868:71;6936:1;6925:9;6921:17;6912:6;6868:71;:::i;:::-;6949:72;7017:2;7006:9;7002:18;6993:6;6949:72;:::i;:::-;6696:332;;;;;:::o
Swarm Source
ipfs://65614e8b4adf605a1b4ee7493916d90ccbd66fb76d2a8c7eeb6d48e0af74e951
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)