Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 574 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24145880 | 35 days ago | IN | 0 ETH | 0.00000128 | ||||
| Approve | 23488874 | 127 days ago | IN | 0 ETH | 0.00003107 | ||||
| Approve | 23488797 | 127 days ago | IN | 0 ETH | 0.00006131 | ||||
| Approve | 23332472 | 149 days ago | IN | 0 ETH | 0.00003307 | ||||
| Approve | 23166283 | 172 days ago | IN | 0 ETH | 0.00002314 | ||||
| Approve | 23138053 | 176 days ago | IN | 0 ETH | 0.00003476 | ||||
| Approve | 23137105 | 176 days ago | IN | 0 ETH | 0.00009613 | ||||
| Approve | 23044934 | 189 days ago | IN | 0 ETH | 0.0000777 | ||||
| Approve | 22920316 | 206 days ago | IN | 0 ETH | 0.00025549 | ||||
| Approve | 22913141 | 207 days ago | IN | 0 ETH | 0.00013948 | ||||
| Approve | 22911812 | 208 days ago | IN | 0 ETH | 0.0001705 | ||||
| Approve | 22907338 | 208 days ago | IN | 0 ETH | 0.00011237 | ||||
| Approve | 22907293 | 208 days ago | IN | 0 ETH | 0.0002086 | ||||
| Approve | 22904835 | 209 days ago | IN | 0 ETH | 0.0023591 | ||||
| Approve | 22904614 | 209 days ago | IN | 0 ETH | 0.00007773 | ||||
| Approve | 22904459 | 209 days ago | IN | 0 ETH | 0.0000456 | ||||
| Approve | 22904385 | 209 days ago | IN | 0 ETH | 0.00028726 | ||||
| Approve | 22904376 | 209 days ago | IN | 0 ETH | 0.00010383 | ||||
| Approve | 22904263 | 209 days ago | IN | 0 ETH | 0.00019824 | ||||
| Approve | 22904251 | 209 days ago | IN | 0 ETH | 0.0001029 | ||||
| Approve | 22904249 | 209 days ago | IN | 0 ETH | 0.0001909 | ||||
| Transfer | 22904232 | 209 days ago | IN | 0 ETH | 0.00003941 | ||||
| Transfer | 22904222 | 209 days ago | IN | 0 ETH | 0.0000424 | ||||
| Approve | 22904221 | 209 days ago | IN | 0 ETH | 0.00005563 | ||||
| Transfer | 22904216 | 209 days ago | IN | 0 ETH | 0.00004342 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 20480132 | 547 days ago | 0.42798967 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TUNGSTEN
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-08-07
*/
// SPDX-License-Identifier: No License
// File: contracts/IERC20.sol
// 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: contracts/IERC20Metadata.sol
// 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: contracts/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: contracts/draft-IERC6093.sol
// 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: contracts/ERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of 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.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @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) {
address owner = _msgSender();
_transfer(owner, 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) {
address owner = _msgSender();
_approve(owner, spender, value);
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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* 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);
}
}
}
}
// File: contracts/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
/**
* @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 a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of 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
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
// File: contracts/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
/**
* @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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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: contracts/Ownable2Step.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module which provides access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is specified at deployment time in the constructor for `Ownable`. This
* can later be changed with {transferOwnership} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
if (pendingOwner() != sender) {
revert OwnableUnauthorizedAccount(sender);
}
_transferOwnership(sender);
}
}
// File: contracts/Initializable.sol
pragma solidity ^0.8.19;
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
}
// File: contracts/IUniswapV2Factory.sol
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// File: contracts/IUniswapV2Pair.sol
pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// File: contracts/IUniswapV2Router01.sol
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
// File: contracts/IUniswapV2Router02.sol
pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
// File: contracts/tungsten.sol
/*
TUNGSTEN
*/
pragma solidity 0.8.26;
contract TUNGSTEN is ERC20, ERC20Burnable, Ownable2Step, Initializable {
IUniswapV2Router02 public routerV2;
address public pairV2;
mapping (address => bool) public AMMs;
error InvalidAMM(address AMM);
event RouterV2Updated(address indexed routerV2);
event AMMUpdated(address indexed AMM, bool isAMM);
constructor()
ERC20(unicode"TUNGSTEN", unicode"74w")
Ownable(msg.sender)
{
address supplyRecipient = 0x385161b8E49134cFC0dCb37699586927A35F00E6;
_mint(supplyRecipient, 740740 * (10 ** decimals()) / 10);
_transferOwnership(0x385161b8E49134cFC0dCb37699586927A35F00E6);
}
/*
This token is not upgradeable. Function afterConstructor finishes post-deployment setup.
*/
function afterConstructor(address _router) initializer external {
_updateRouterV2(_router);
}
function decimals() public pure override returns (uint8) {
return 18;
}
function _updateRouterV2(address router) private {
routerV2 = IUniswapV2Router02(router);
pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());
_setAMM(router, true);
_setAMM(pairV2, true);
emit RouterV2Updated(router);
}
function setAMM(address AMM, bool isAMM) external onlyOwner {
if (AMM == pairV2 || AMM == address(routerV2)) revert InvalidAMM(AMM);
_setAMM(AMM, isAMM);
}
function _setAMM(address AMM, bool isAMM) private {
AMMs[AMM] = isAMM;
if (isAMM) {
}
emit AMMUpdated(AMM, isAMM);
}
function _update(address from, address to, uint256 amount)
internal
override
{
_beforeTokenUpdate(from, to, amount);
super._update(from, to, amount);
_afterTokenUpdate(from, to, amount);
}
function _beforeTokenUpdate(address from, address to, uint256 amount)
internal
view
{
}
function _afterTokenUpdate(address from, address to, uint256 amount)
internal
{
}
}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":"address","name":"AMM","type":"address"}],"name":"InvalidAMM","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMM","type":"address"},{"indexed":false,"internalType":"bool","name":"isAMM","type":"bool"}],"name":"AMMUpdated","type":"event"},{"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":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","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":"","type":"address"}],"name":"AMMs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"afterConstructor","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":"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"AMM","type":"address"},{"internalType":"bool","name":"isAMM","type":"bool"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b5033604051806040016040528060088152602001672a2aa723a9aa22a760c11b8152506040518060400160405280600381526020016237347760e81b815250816003908161005d919061038e565b50600461006a828261038e565b5050506001600160a01b03811661009b57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100a48161010a565b5073385161b8e49134cfc0dcb37699586927a35f00e66100e781600a6100cb601282610541565b6100d890620b4d84610556565b6100e2919061056d565b610126565b61010473385161b8e49134cfc0dcb37699586927a35f00e661010a565b5061059f565b600680546001600160a01b03191690556101238161015e565b50565b6001600160a01b03821661014f5760405163ec442f0560e01b81525f6004820152602401610092565b61015a5f83836101af565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6101ba8383836101d1565b6101cc8383836001600160e01b038416565b505050565b6001600160a01b0383166101fb578060025f8282546101f0919061058c565b9091555061026b9050565b6001600160a01b0383165f908152602081905260409020548181101561024d5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610092565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610287576002805482900390556102a5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102ea91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061031f57607f821691505b60208210810361033d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101cc57805f5260205f20601f840160051c810160208510156103685750805b601f840160051c820191505b81811015610387575f8155600101610374565b5050505050565b81516001600160401b038111156103a7576103a76102f7565b6103bb816103b5845461030b565b84610343565b6020601f8211600181146103ed575f83156103d65750848201515b5f19600385901b1c1916600184901b178455610387565b5f84815260208120601f198516915b8281101561041c57878501518255602094850194600190920191016103fc565b508482101561043957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156104975780850481111561047b5761047b610448565b600184161561048957908102905b60019390931c928002610460565b935093915050565b5f826104ad5750600161053b565b816104b957505f61053b565b81600181146104cf57600281146104d9576104f5565b600191505061053b565b60ff8411156104ea576104ea610448565b50506001821b61053b565b5060208310610133831016604e8410600b8410161715610518575081810a61053b565b6105245f19848461045c565b805f190482111561053757610537610448565b0290505b92915050565b5f61054f60ff84168361049f565b9392505050565b808202811582820484141761053b5761053b610448565b5f8261058757634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561053b5761053b610448565b610e14806105ac5f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063715018a6116100b457806395d89b411161007957806395d89b411461028f578063a9059cbb14610297578063a9d3cd8a146102aa578063dd62ed3e146102bd578063e30c3978146102f5578063f2fde38b14610306575f80fd5b8063715018a61461024857806379ba50971461025057806379cc6790146102585780638da5cb5b1461026b5780638fffabed1461027c575f80fd5b806323b872dd116100fa57806323b872dd146101c0578063313ce567146101d357806342966c68146101e2578063502f7446146101f557806370a0823114610220575f80fd5b806306fdde0314610136578063095ea7b31461015457806318160ddd1461017757806318533a0d146101895780631e9fe6c61461019e575b5f80fd5b61013e610319565b60405161014b9190610c1b565b60405180910390f35b610167610162366004610c64565b6103a9565b604051901515815260200161014b565b6002545b60405190815260200161014b565b61019c610197366004610c8e565b6103c2565b005b6101676101ac366004610c8e565b60096020525f908152604090205460ff1681565b6101676101ce366004610cb0565b610497565b6040516012815260200161014b565b61019c6101f0366004610cee565b6104ba565b600754610208906001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b61017b61022e366004610c8e565b6001600160a01b03165f9081526020819052604090205490565b61019c6104c7565b61019c6104da565b61019c610266366004610c64565b61051b565b6005546001600160a01b0316610208565b600854610208906001600160a01b031681565b61013e610530565b6101676102a5366004610c64565b61053f565b61019c6102b8366004610d05565b61054c565b61017b6102cb366004610d40565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6006546001600160a01b0316610208565b61019c610314366004610c8e565b6105b0565b60606003805461032890610d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461035490610d6c565b801561039f5780601f106103765761010080835404028352916020019161039f565b820191905f5260205f20905b81548152906001019060200180831161038257829003601f168201915b5050505050905090565b5f336103b6818585610621565b60019150505b92915050565b600654600160a81b900460ff16806103e45750600654600160a01b900460ff16155b61044c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600654600160a81b900460ff16158015610476576006805461ffff60a01b191661010160a01b1790555b61047f82610633565b8015610493576006805460ff60a81b191690555b5050565b5f336104a4858285610817565b6104af858585610892565b506001949350505050565b6104c433826108ef565b50565b6104cf610923565b6104d85f610950565b565b60065433906001600160a01b031681146105125760405163118cdaa760e01b81526001600160a01b0382166004820152602401610443565b6104c481610950565b610526823383610817565b61049382826108ef565b60606004805461032890610d6c565b5f336103b6818585610892565b610554610923565b6008546001600160a01b038381169116148061057d57506007546001600160a01b038381169116145b156105a65760405163435eaf7b60e11b81526001600160a01b0383166004820152602401610443565b6104938282610969565b6105b8610923565b600680546001600160a01b0383166001600160a01b031990911681179091556105e96005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61062e83838360016109c7565b505050565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561068a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ae9190610da4565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561070d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107319190610da4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561077b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061079f9190610da4565b600880546001600160a01b0319166001600160a01b03929092169190911790556107ca816001610969565b6008546107e1906001600160a01b03166001610969565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b602905f90a250565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461088c578181101561087e57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610443565b61088c84848484035f6109c7565b50505050565b6001600160a01b0383166108bb57604051634b637e8f60e11b81525f6004820152602401610443565b6001600160a01b0382166108e45760405163ec442f0560e01b81525f6004820152602401610443565b61062e838383610a99565b6001600160a01b03821661091857604051634b637e8f60e11b81525f6004820152602401610443565b610493825f83610a99565b6005546001600160a01b031633146104d85760405163118cdaa760e01b8152336004820152602401610443565b600680546001600160a01b03191690556104c481610aa4565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2cc8631dda80fe178488d3174721fafacf84b0f194a7eddae85c9bcc599ac78b910160405180910390a25050565b6001600160a01b0384166109f05760405163e602df0560e01b81525f6004820152602401610443565b6001600160a01b038316610a1957604051634a1406b160e11b81525f6004820152602401610443565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a8b91815260200190565b60405180910390a350505050565b61062e838383610af5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610b1f578060025f828254610b149190610dbf565b90915550610b8f9050565b6001600160a01b0383165f9081526020819052604090205481811015610b715760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610443565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610bab57600280548290039055610bc9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c0e91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146104c4575f80fd5b5f8060408385031215610c75575f80fd5b8235610c8081610c50565b946020939093013593505050565b5f60208284031215610c9e575f80fd5b8135610ca981610c50565b9392505050565b5f805f60608486031215610cc2575f80fd5b8335610ccd81610c50565b92506020840135610cdd81610c50565b929592945050506040919091013590565b5f60208284031215610cfe575f80fd5b5035919050565b5f8060408385031215610d16575f80fd5b8235610d2181610c50565b915060208301358015158114610d35575f80fd5b809150509250929050565b5f8060408385031215610d51575f80fd5b8235610d5c81610c50565b91506020830135610d3581610c50565b600181811c90821680610d8057607f821691505b602082108103610d9e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610db4575f80fd5b8151610ca981610c50565b808201808211156103bc57634e487b7160e01b5f52601160045260245ffdfea26469706673582212202b48c828c18882bb24d24d63ebf156bf7209231c69bb6dfa2bbe8b703a4640e964736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063715018a6116100b457806395d89b411161007957806395d89b411461028f578063a9059cbb14610297578063a9d3cd8a146102aa578063dd62ed3e146102bd578063e30c3978146102f5578063f2fde38b14610306575f80fd5b8063715018a61461024857806379ba50971461025057806379cc6790146102585780638da5cb5b1461026b5780638fffabed1461027c575f80fd5b806323b872dd116100fa57806323b872dd146101c0578063313ce567146101d357806342966c68146101e2578063502f7446146101f557806370a0823114610220575f80fd5b806306fdde0314610136578063095ea7b31461015457806318160ddd1461017757806318533a0d146101895780631e9fe6c61461019e575b5f80fd5b61013e610319565b60405161014b9190610c1b565b60405180910390f35b610167610162366004610c64565b6103a9565b604051901515815260200161014b565b6002545b60405190815260200161014b565b61019c610197366004610c8e565b6103c2565b005b6101676101ac366004610c8e565b60096020525f908152604090205460ff1681565b6101676101ce366004610cb0565b610497565b6040516012815260200161014b565b61019c6101f0366004610cee565b6104ba565b600754610208906001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b61017b61022e366004610c8e565b6001600160a01b03165f9081526020819052604090205490565b61019c6104c7565b61019c6104da565b61019c610266366004610c64565b61051b565b6005546001600160a01b0316610208565b600854610208906001600160a01b031681565b61013e610530565b6101676102a5366004610c64565b61053f565b61019c6102b8366004610d05565b61054c565b61017b6102cb366004610d40565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6006546001600160a01b0316610208565b61019c610314366004610c8e565b6105b0565b60606003805461032890610d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461035490610d6c565b801561039f5780601f106103765761010080835404028352916020019161039f565b820191905f5260205f20905b81548152906001019060200180831161038257829003601f168201915b5050505050905090565b5f336103b6818585610621565b60019150505b92915050565b600654600160a81b900460ff16806103e45750600654600160a01b900460ff16155b61044c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600654600160a81b900460ff16158015610476576006805461ffff60a01b191661010160a01b1790555b61047f82610633565b8015610493576006805460ff60a81b191690555b5050565b5f336104a4858285610817565b6104af858585610892565b506001949350505050565b6104c433826108ef565b50565b6104cf610923565b6104d85f610950565b565b60065433906001600160a01b031681146105125760405163118cdaa760e01b81526001600160a01b0382166004820152602401610443565b6104c481610950565b610526823383610817565b61049382826108ef565b60606004805461032890610d6c565b5f336103b6818585610892565b610554610923565b6008546001600160a01b038381169116148061057d57506007546001600160a01b038381169116145b156105a65760405163435eaf7b60e11b81526001600160a01b0383166004820152602401610443565b6104938282610969565b6105b8610923565b600680546001600160a01b0383166001600160a01b031990911681179091556105e96005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61062e83838360016109c7565b505050565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561068a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ae9190610da4565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561070d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107319190610da4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561077b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061079f9190610da4565b600880546001600160a01b0319166001600160a01b03929092169190911790556107ca816001610969565b6008546107e1906001600160a01b03166001610969565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b602905f90a250565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461088c578181101561087e57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610443565b61088c84848484035f6109c7565b50505050565b6001600160a01b0383166108bb57604051634b637e8f60e11b81525f6004820152602401610443565b6001600160a01b0382166108e45760405163ec442f0560e01b81525f6004820152602401610443565b61062e838383610a99565b6001600160a01b03821661091857604051634b637e8f60e11b81525f6004820152602401610443565b610493825f83610a99565b6005546001600160a01b031633146104d85760405163118cdaa760e01b8152336004820152602401610443565b600680546001600160a01b03191690556104c481610aa4565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2cc8631dda80fe178488d3174721fafacf84b0f194a7eddae85c9bcc599ac78b910160405180910390a25050565b6001600160a01b0384166109f05760405163e602df0560e01b81525f6004820152602401610443565b6001600160a01b038316610a1957604051634a1406b160e11b81525f6004820152602401610443565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a8b91815260200190565b60405180910390a350505050565b61062e838383610af5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610b1f578060025f828254610b149190610dbf565b90915550610b8f9050565b6001600160a01b0383165f9081526020819052604090205481811015610b715760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610443565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610bab57600280548290039055610bc9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c0e91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146104c4575f80fd5b5f8060408385031215610c75575f80fd5b8235610c8081610c50565b946020939093013593505050565b5f60208284031215610c9e575f80fd5b8135610ca981610c50565b9392505050565b5f805f60608486031215610cc2575f80fd5b8335610ccd81610c50565b92506020840135610cdd81610c50565b929592945050506040919091013590565b5f60208284031215610cfe575f80fd5b5035919050565b5f8060408385031215610d16575f80fd5b8235610d2181610c50565b915060208301358015158114610d35575f80fd5b809150509250929050565b5f8060408385031215610d51575f80fd5b8235610d5c81610c50565b91506020830135610d3581610c50565b600181811c90821680610d8057607f821691505b602082108103610d9e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610db4575f80fd5b8151610ca981610c50565b808201808211156103bc57634e487b7160e01b5f52601160045260245ffdfea26469706673582212202b48c828c18882bb24d24d63ebf156bf7209231c69bb6dfa2bbe8b703a4640e964736f6c634300081a0033
Deployed Bytecode Sourcemap
38092:2219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13205:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15498:190;;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15498:190:0;945:187:1;14307:99:0;14386:12;;14307:99;;;1283:25:1;;;1271:2;1256:18;14307:99:0;1137:177:1;38904:107:0;;;;;;:::i;:::-;;:::i;:::-;;38246:37;;;;;;:::i;:::-;;;;;;;;;;;;;;;;16266:249;;;;;;:::i;:::-;;:::i;39019:85::-;;;39094:2;2226:36:1;;2214:2;2199:18;39019:85:0;2084:184:1;23093:89:0;;;;;;:::i;:::-;;:::i;38177:34::-;;;;;-1:-1:-1;;;;;38177:34:0;;;;;;-1:-1:-1;;;;;2695:32:1;;;2677:51;;2665:2;2650:18;38177:34:0;2504:230:1;14469:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14561:18:0;14534:7;14561:18;;;;;;;;;;;;14469:118;26003:103;;;:::i;28619:235::-;;;:::i;23511:161::-;;;;;;:::i;:::-;;:::i;25328:87::-;25401:6;;-1:-1:-1;;;;;25401:6:0;25328:87;;38218:21;;;;;-1:-1:-1;;;;;38218:21:0;;;13415:95;;;:::i;14792:182::-;;;;;;:::i;:::-;;:::i;39444:180::-;;;;;;:::i;:::-;;:::i;15037:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15144:18:0;;;15117:7;15144:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15037:142;27707:101;27787:13;;-1:-1:-1;;;;;27787:13:0;27707:101;;28007:181;;;;;;:::i;:::-;;:::i;13205:91::-;13250:13;13283:5;13276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13205:91;:::o;15498:190::-;15571:4;4341:10;15627:31;4341:10;15643:7;15652:5;15627:8;:31::i;:::-;15676:4;15669:11;;;15498:190;;;;;:::o;38904:107::-;29366:13;;-1:-1:-1;;;29366:13:0;;;;;:30;;-1:-1:-1;29384:12:0;;-1:-1:-1;;;29384:12:0;;;;29383:13;29366:30;29358:89;;;;-1:-1:-1;;;29358:89:0;;4348:2:1;29358:89:0;;;4330:21:1;4387:2;4367:18;;;4360:30;4426:34;4406:18;;;4399:62;-1:-1:-1;;;4477:18:1;;;4470:44;4531:19;;29358:89:0;;;;;;;;;29483:13;;-1:-1:-1;;;29483:13:0;;;;29482:14;29507:101;;;;29542:13;:20;;-1:-1:-1;;;;29577:19:0;-1:-1:-1;;;29577:19:0;;;29507:101;38979:24:::1;38995:7;38979:15;:24::i;:::-;29638:14:::0;29634:68;;;29669:13;:21;;-1:-1:-1;;;;29669:21:0;;;29634:68;29347:362;38904:107;:::o;16266:249::-;16353:4;4341:10;16411:37;16427:4;4341:10;16442:5;16411:15;:37::i;:::-;16459:26;16469:4;16475:2;16479:5;16459:9;:26::i;:::-;-1:-1:-1;16503:4:0;;16266:249;-1:-1:-1;;;;16266:249:0:o;23093:89::-;23148:26;4341:10;23168:5;23148;:26::i;:::-;23093:89;:::o;26003:103::-;25214:13;:11;:13::i;:::-;26068:30:::1;26095:1;26068:18;:30::i;:::-;26003:103::o:0;28619:235::-;27787:13;;4341:10;;-1:-1:-1;;;;;27787:13:0;28716:24;;28712:98;;28764:34;;-1:-1:-1;;;28764:34:0;;-1:-1:-1;;;;;2695:32:1;;28764:34:0;;;2677:51:1;2650:18;;28764:34:0;2504:230:1;28712:98:0;28820:26;28839:6;28820:18;:26::i;23511:161::-;23587:45;23603:7;4341:10;23626:5;23587:15;:45::i;:::-;23643:21;23649:7;23658:5;23643;:21::i;13415:95::-;13462:13;13495:7;13488:14;;;;;:::i;14792:182::-;14861:4;4341:10;14917:27;4341:10;14934:2;14938:5;14917:9;:27::i;39444:180::-;25214:13;:11;:13::i;:::-;39526:6:::1;::::0;-1:-1:-1;;;;;39519:13:0;;::::1;39526:6:::0;::::1;39519:13;::::0;:41:::1;;-1:-1:-1::0;39551:8:0::1;::::0;-1:-1:-1;;;;;39536:24:0;;::::1;39551:8:::0;::::1;39536:24;39519:41;39515:69;;;39569:15;::::0;-1:-1:-1;;;39569:15:0;;-1:-1:-1;;;;;2695:32:1;;39569:15:0::1;::::0;::::1;2677:51:1::0;2650:18;;39569:15:0::1;2504:230:1::0;39515:69:0::1;39597:19;39605:3;39610:5;39597:7;:19::i;28007:181::-:0;25214:13;:11;:13::i;:::-;28097::::1;:24:::0;;-1:-1:-1;;;;;28097:24:0;::::1;-1:-1:-1::0;;;;;;28097:24:0;;::::1;::::0;::::1;::::0;;;28162:7:::1;25401:6:::0;;-1:-1:-1;;;;;25401:6:0;;25328:87;28162:7:::1;-1:-1:-1::0;;;;;28137:43:0::1;;;;;;;;;;;28007:181:::0;:::o;20325:130::-;20410:37;20419:5;20426:7;20435:5;20442:4;20410:8;:37::i;:::-;20325:130;;;:::o;39116:320::-;39176:8;:37;;-1:-1:-1;;;;;;39176:37:0;-1:-1:-1;;;;;39176:37:0;;;;;;;;39251:18;;;-1:-1:-1;;;39251:18:0;;;;:16;;:18;;;;;;;;;;;;;;;39176:37;39251:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39233:48:0;;39290:4;39297:8;;;;;;;;;-1:-1:-1;;;;;39297:8:0;-1:-1:-1;;;;;39297:13:0;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39233:80;;-1:-1:-1;;;;;;39233:80:0;;;;;;;-1:-1:-1;;;;;5009:32:1;;;39233:80:0;;;4991:51:1;5078:32;;5058:18;;;5051:60;4964:18;;39233:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39224:6;:89;;-1:-1:-1;;;;;;39224:89:0;-1:-1:-1;;;;;39224:89:0;;;;;;;;;;39334:21;39342:6;-1:-1:-1;39334:7:0;:21::i;:::-;39374:6;;39366:21;;-1:-1:-1;;;;;39374:6:0;;39366:7;:21::i;:::-;39405:23;;-1:-1:-1;;;;;39405:23:0;;;;;;;;39116:320;:::o;22041:487::-;-1:-1:-1;;;;;15144:18:0;;;22141:24;15144:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22208:37:0;;22204:317;;22285:5;22266:16;:24;22262:132;;;22318:60;;-1:-1:-1;;;22318:60:0;;-1:-1:-1;;;;;5342:32:1;;22318:60:0;;;5324:51:1;5391:18;;;5384:34;;;5434:18;;;5427:34;;;5297:18;;22318:60:0;5122:345:1;22262:132:0;22437:57;22446:5;22453:7;22481:5;22462:16;:24;22488:5;22437:8;:57::i;:::-;22130:398;22041:487;;;:::o;16900:308::-;-1:-1:-1;;;;;16984:18:0;;16980:88;;17026:30;;-1:-1:-1;;;17026:30:0;;17053:1;17026:30;;;2677:51:1;2650:18;;17026:30:0;2504:230:1;16980:88:0;-1:-1:-1;;;;;17082:16:0;;17078:88;;17122:32;;-1:-1:-1;;;17122:32:0;;17151:1;17122:32;;;2677:51:1;2650:18;;17122:32:0;2504:230:1;17078:88:0;17176:24;17184:4;17190:2;17194:5;17176:7;:24::i;19561:211::-;-1:-1:-1;;;;;19632:21:0;;19628:91;;19677:30;;-1:-1:-1;;;19677:30:0;;19704:1;19677:30;;;2677:51:1;2650:18;;19677:30:0;2504:230:1;19628:91:0;19729:35;19737:7;19754:1;19758:5;19729:7;:35::i;25493:166::-;25401:6;;-1:-1:-1;;;;;25401:6:0;4341:10;25553:23;25549:103;;25600:40;;-1:-1:-1;;;25600:40:0;;4341:10;25600:40;;;2677:51:1;2650:18;;25600:40:0;2504:230:1;28378:156:0;28468:13;28461:20;;-1:-1:-1;;;;;;28461:20:0;;;28492:34;28517:8;28492:24;:34::i;39632:162::-;-1:-1:-1;;;;;39693:9:0;;;;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;39693:17:0;;;;;;;;;;39764:22;;1085:41:1;;;39764:22:0;;1058:18:1;39764:22:0;;;;;;;39632:162;;:::o;21306:443::-;-1:-1:-1;;;;;21419:19:0;;21415:91;;21462:32;;-1:-1:-1;;;21462:32:0;;21491:1;21462:32;;;2677:51:1;2650:18;;21462:32:0;2504:230:1;21415:91:0;-1:-1:-1;;;;;21520:21:0;;21516:92;;21565:31;;-1:-1:-1;;;21565:31:0;;21593:1;21565:31;;;2677:51:1;2650:18;;21565:31:0;2504:230:1;21516:92:0;-1:-1:-1;;;;;21618:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21664:78;;;;21715:7;-1:-1:-1;;;;;21699:31:0;21708:5;-1:-1:-1;;;;;21699:31:0;;21724:5;21699:31;;;;1283:25:1;;1271:2;1256:18;;1137:177;21699:31:0;;;;;;;;21306:443;;;;:::o;39804:273::-;39972:31;39986:4;39992:2;39996:6;39972:13;:31::i;26641:191::-;26734:6;;;-1:-1:-1;;;;;26751:17:0;;;-1:-1:-1;;;;;;26751:17:0;;;;;;;26784:40;;26734:6;;;26751:17;26734:6;;26784:40;;26715:16;;26784:40;26704:128;26641:191;:::o;17532:1135::-;-1:-1:-1;;;;;17622:18:0;;17618:552;;17776:5;17760:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17618:552:0;;-1:-1:-1;17618:552:0;;-1:-1:-1;;;;;17836:15:0;;17814:19;17836:15;;;;;;;;;;;17870:19;;;17866:117;;;17917:50;;-1:-1:-1;;;17917:50:0;;-1:-1:-1;;;;;5342:32:1;;17917:50:0;;;5324:51:1;5391:18;;;5384:34;;;5434:18;;;5427:34;;;5297:18;;17917:50:0;5122:345:1;17866:117:0;-1:-1:-1;;;;;18106:15:0;;:9;:15;;;;;;;;;;18124:19;;;;18106:37;;17618:552;-1:-1:-1;;;;;18186:16:0;;18182:435;;18352:12;:21;;;;;;;18182:435;;;-1:-1:-1;;;;;18568:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18182:435;18649:2;-1:-1:-1;;;;;18634:25:0;18643:4;-1:-1:-1;;;;;18634:25:0;;18653:5;18634:25;;;;1283::1;;1271:2;1256:18;;1137:177;18634:25:0;;;;;;;;17532:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1319:247::-;1378:6;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1486:9;1473:23;1505:31;1530:5;1505:31;:::i;:::-;1555:5;1319:247;-1:-1:-1;;;1319:247:1:o;1571:508::-;1648:6;1656;1664;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;-1:-1:-1;1898:2:1;1883:18;;1870:32;1911:33;1870:32;1911:33;:::i;:::-;1571:508;;1963:7;;-1:-1:-1;;;2043:2:1;2028:18;;;;2015:32;;1571:508::o;2273:226::-;2332:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:52;;;2401:1;2398;2391:12;2353:52;-1:-1:-1;2446:23:1;;2273:226;-1:-1:-1;2273:226:1:o;2947:416::-;3012:6;3020;3073:2;3061:9;3052:7;3048:23;3044:32;3041:52;;;3089:1;3086;3079:12;3041:52;3128:9;3115:23;3147:31;3172:5;3147:31;:::i;:::-;3197:5;-1:-1:-1;3254:2:1;3239:18;;3226:32;3296:15;;3289:23;3277:36;;3267:64;;3327:1;3324;3317:12;3267:64;3350:7;3340:17;;;2947:416;;;;;:::o;3368:388::-;3436:6;3444;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3552:9;3539:23;3571:31;3596:5;3571:31;:::i;:::-;3621:5;-1:-1:-1;3678:2:1;3663:18;;3650:32;3691:33;3650:32;3691:33;:::i;3761:380::-;3840:1;3836:12;;;;3883;;;3904:61;;3958:4;3950:6;3946:17;3936:27;;3904:61;4011:2;4003:6;4000:14;3980:18;3977:38;3974:161;;4057:10;4052:3;4048:20;4045:1;4038:31;4092:4;4089:1;4082:15;4120:4;4117:1;4110:15;3974:161;;3761:380;;;:::o;4561:251::-;4631:6;4684:2;4672:9;4663:7;4659:23;4655:32;4652:52;;;4700:1;4697;4690:12;4652:52;4732:9;4726:16;4751:31;4776:5;4751:31;:::i;5472:222::-;5537:9;;;5558:10;;;5555:133;;;5610:10;5605:3;5601:20;5598:1;5591:31;5645:4;5642:1;5635:15;5673:4;5670:1;5663:15
Swarm Source
ipfs://2b48c828c18882bb24d24d63ebf156bf7209231c69bb6dfa2bbe8b703a4640e9
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.