ETH Price: $2,617.76 (-2.15%)

Token

Adaptive Name (Adaptive Symbol)
 

Overview

Max Total Supply

1,000,000 Adaptive Symbol

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,271.662740377898392082 Adaptive Symbol

Value
$0.00
0xc2ba37bef087e382ff2defd36d896b02ce98b3af
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AdaptiveToken

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : adaptive.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @title AdaptiveToken
 * @dev This ERC20 token experiment allows for anyone to change the token's name and symbol.
 * This contract explores the concept of dynamic and adaptive token metadata, opening new avenues 
 * for token identity management in the decentralized world.
 *
 * The AdaptiveToken demonstrates how an ERC20 token's metadata can be made flexible, 
 * enabling changes through smart contract functions that can be further extended 
 * to include various governance models and external data integrations.
 *
 * Key Features and Potential Extensions:
 * 1. Dynamic Metadata Tokens
 * 2. Governance Models (DAO, reputation-based, etc.)
 * 3. Integration with External Data Oracles
 * 4. Social Media-driven Metadata Changes
 * 5. Time-based or Event-driven Metadata Adjustments
 *
 * These features aim to push the boundaries of what is possible with ERC20 tokens, 
 * making them more interactive, community-driven, and responsive to external inputs.
 */

contract AdaptiveToken is ERC20 {
    // Private variables to store the dynamic name and symbol
    string private _name;
    string private _symbol;
    uint256 private constant _initialSupply = 1_000_000 * 10 ** 18; // 1,000,000 tokens with 18 decimals

    /**
     * @dev Constructor that sets the initial name and symbol of the token, and mints the max supply to the deployer.
     * @param name_ Initial name of the token.
     * @param symbol_ Initial symbol of the token.
     */
    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, _initialSupply); // Mint the max supply to the deployer
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Allows anyone to change the name of the token.
     * @param newName The new name of the token.
     */
    function changeName(string memory newName) public {
        _name = newName;
    }

    /**
     * @dev Allows anyone to change the symbol of the token.
     * @param newSymbol The new symbol of the token.
     */
    function changeSymbol(string memory newSymbol) public {
        _symbol = newSymbol;
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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 3 of 6 : draft-IERC6093.sol
// 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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"},{"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":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"changeSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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"}]

608060405234801561000f575f80fd5b50604051611b36380380611b3683398181016040528101906100319190610481565b818181600390816100429190610704565b5080600490816100529190610704565b50505081600590816100649190610704565b5080600690816100749190610704565b5061008f3369d3c21bcecceda100000061009660201b60201c565b50506108e8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610106575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016100fd9190610812565b60405180910390fd5b6101175f838361011b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361016b578060025f82825461015f9190610858565b92505081905550610239565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156101f4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016101eb9392919061089a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610280578060025f82825403925050819055506102ca565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161032791906108cf565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6103938261034d565b810181811067ffffffffffffffff821117156103b2576103b161035d565b5b80604052505050565b5f6103c4610334565b90506103d0828261038a565b919050565b5f67ffffffffffffffff8211156103ef576103ee61035d565b5b6103f88261034d565b9050602081019050919050565b8281835e5f83830152505050565b5f610425610420846103d5565b6103bb565b90508281526020810184848401111561044157610440610349565b5b61044c848285610405565b509392505050565b5f82601f83011261046857610467610345565b5b8151610478848260208601610413565b91505092915050565b5f80604083850312156104975761049661033d565b5b5f83015167ffffffffffffffff8111156104b4576104b3610341565b5b6104c085828601610454565b925050602083015167ffffffffffffffff8111156104e1576104e0610341565b5b6104ed85828601610454565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061054557607f821691505b60208210810361055857610557610501565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261057f565b6105c4868361057f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106086106036105fe846105dc565b6105e5565b6105dc565b9050919050565b5f819050919050565b610621836105ee565b61063561062d8261060f565b84845461058b565b825550505050565b5f90565b61064961063d565b610654818484610618565b505050565b5b818110156106775761066c5f82610641565b60018101905061065a565b5050565b601f8211156106bc5761068d8161055e565b61069684610570565b810160208510156106a5578190505b6106b96106b185610570565b830182610659565b50505b505050565b5f82821c905092915050565b5f6106dc5f19846008026106c1565b1980831691505092915050565b5f6106f483836106cd565b9150826002028217905092915050565b61070d826104f7565b67ffffffffffffffff8111156107265761072561035d565b5b610730825461052e565b61073b82828561067b565b5f60209050601f83116001811461076c575f841561075a578287015190505b61076485826106e9565b8655506107cb565b601f19841661077a8661055e565b5f5b828110156107a15784890151825560018201915060208501945060208101905061077c565b868310156107be57848901516107ba601f8916826106cd565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107fc826107d3565b9050919050565b61080c816107f2565b82525050565b5f6020820190506108255f830184610803565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610862826105dc565b915061086d836105dc565b92508282019050808211156108855761088461082b565b5b92915050565b610894816105dc565b82525050565b5f6060820190506108ad5f830186610803565b6108ba602083018561088b565b6108c7604083018461088b565b949350505050565b5f6020820190506108e25f83018461088b565b92915050565b611241806108f55f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80635353a2d81161006f5780635353a2d81461016557806370a082311461018157806395d89b41146101b1578063a3895fff146101cf578063a9059cbb146101eb578063dd62ed3e1461021b576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024b565b6040516100c09190610ace565b60405180910390f35b6100e360048036038101906100de9190610b8c565b6102db565b6040516100f09190610be4565b60405180910390f35b6101016102fd565b60405161010e9190610c0c565b60405180910390f35b610131600480360381019061012c9190610c25565b610306565b60405161013e9190610be4565b60405180910390f35b61014f610334565b60405161015c9190610c90565b60405180910390f35b61017f600480360381019061017a9190610dd5565b61033c565b005b61019b60048036038101906101969190610e1c565b61034f565b6040516101a89190610c0c565b60405180910390f35b6101b9610394565b6040516101c69190610ace565b60405180910390f35b6101e960048036038101906101e49190610dd5565b610424565b005b61020560048036038101906102009190610b8c565b610437565b6040516102129190610be4565b60405180910390f35b61023560048036038101906102309190610e47565b610459565b6040516102429190610c0c565b60405180910390f35b60606005805461025a90610eb2565b80601f016020809104026020016040519081016040528092919081815260200182805461028690610eb2565b80156102d15780601f106102a8576101008083540402835291602001916102d1565b820191905f5260205f20905b8154815290600101906020018083116102b457829003601f168201915b5050505050905090565b5f806102e56104db565b90506102f28185856104e2565b600191505092915050565b5f600254905090565b5f806103106104db565b905061031d8582856104f4565b610328858585610586565b60019150509392505050565b5f6012905090565b806005908161034b919061107f565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546103a390610eb2565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90610eb2565b801561041a5780601f106103f15761010080835404028352916020019161041a565b820191905f5260205f20905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b8060069081610433919061107f565b5050565b5f806104416104db565b905061044e818585610586565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104ef8383836001610676565b505050565b5f6104ff8484610459565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105805781811015610571578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105689392919061115d565b60405180910390fd5b61057f84848484035f610676565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105f6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105ed9190611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610666575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161065d9190611192565b60405180910390fd5b610671838383610845565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106e6575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106dd9190611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161074d9190611192565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561083f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108369190610c0c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610895578060025f82825461088991906111d8565b92505081905550610963565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561091e578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016109159392919061115d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109aa578060025f82825403925050819055506109f4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a519190610c0c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610aa082610a5e565b610aaa8185610a68565b9350610aba818560208601610a78565b610ac381610a86565b840191505092915050565b5f6020820190508181035f830152610ae68184610a96565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2882610aff565b9050919050565b610b3881610b1e565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f819050919050565b610b6b81610b59565b8114610b75575f80fd5b50565b5f81359050610b8681610b62565b92915050565b5f8060408385031215610ba257610ba1610af7565b5b5f610baf85828601610b45565b9250506020610bc085828601610b78565b9150509250929050565b5f8115159050919050565b610bde81610bca565b82525050565b5f602082019050610bf75f830184610bd5565b92915050565b610c0681610b59565b82525050565b5f602082019050610c1f5f830184610bfd565b92915050565b5f805f60608486031215610c3c57610c3b610af7565b5b5f610c4986828701610b45565b9350506020610c5a86828701610b45565b9250506040610c6b86828701610b78565b9150509250925092565b5f60ff82169050919050565b610c8a81610c75565b82525050565b5f602082019050610ca35f830184610c81565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ce782610a86565b810181811067ffffffffffffffff82111715610d0657610d05610cb1565b5b80604052505050565b5f610d18610aee565b9050610d248282610cde565b919050565b5f67ffffffffffffffff821115610d4357610d42610cb1565b5b610d4c82610a86565b9050602081019050919050565b828183375f83830152505050565b5f610d79610d7484610d29565b610d0f565b905082815260208101848484011115610d9557610d94610cad565b5b610da0848285610d59565b509392505050565b5f82601f830112610dbc57610dbb610ca9565b5b8135610dcc848260208601610d67565b91505092915050565b5f60208284031215610dea57610de9610af7565b5b5f82013567ffffffffffffffff811115610e0757610e06610afb565b5b610e1384828501610da8565b91505092915050565b5f60208284031215610e3157610e30610af7565b5b5f610e3e84828501610b45565b91505092915050565b5f8060408385031215610e5d57610e5c610af7565b5b5f610e6a85828601610b45565b9250506020610e7b85828601610b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610ec957607f821691505b602082108103610edc57610edb610e85565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610f3e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610f03565b610f488683610f03565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610f83610f7e610f7984610b59565b610f60565b610b59565b9050919050565b5f819050919050565b610f9c83610f69565b610fb0610fa882610f8a565b848454610f0f565b825550505050565b5f90565b610fc4610fb8565b610fcf818484610f93565b505050565b5b81811015610ff257610fe75f82610fbc565b600181019050610fd5565b5050565b601f8211156110375761100881610ee2565b61101184610ef4565b81016020851015611020578190505b61103461102c85610ef4565b830182610fd4565b50505b505050565b5f82821c905092915050565b5f6110575f198460080261103c565b1980831691505092915050565b5f61106f8383611048565b9150826002028217905092915050565b61108882610a5e565b67ffffffffffffffff8111156110a1576110a0610cb1565b5b6110ab8254610eb2565b6110b6828285610ff6565b5f60209050601f8311600181146110e7575f84156110d5578287015190505b6110df8582611064565b865550611146565b601f1984166110f586610ee2565b5f5b8281101561111c578489015182556001820191506020850194506020810190506110f7565b868310156111395784890151611135601f891682611048565b8355505b6001600288020188555050505b505050505050565b61115781610b1e565b82525050565b5f6060820190506111705f83018661114e565b61117d6020830185610bfd565b61118a6040830184610bfd565b949350505050565b5f6020820190506111a55f83018461114e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111e282610b59565b91506111ed83610b59565b9250828201905080821115611205576112046111ab565b5b9291505056fea264697066735822122093b3cf03c37af6d2ac745d7fbe70469a98e57b7f278cb4fa6a38fad09ae0e72264736f6c6343000819003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4164617074697665204e616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f41646170746976652053796d626f6c0000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80635353a2d81161006f5780635353a2d81461016557806370a082311461018157806395d89b41146101b1578063a3895fff146101cf578063a9059cbb146101eb578063dd62ed3e1461021b576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024b565b6040516100c09190610ace565b60405180910390f35b6100e360048036038101906100de9190610b8c565b6102db565b6040516100f09190610be4565b60405180910390f35b6101016102fd565b60405161010e9190610c0c565b60405180910390f35b610131600480360381019061012c9190610c25565b610306565b60405161013e9190610be4565b60405180910390f35b61014f610334565b60405161015c9190610c90565b60405180910390f35b61017f600480360381019061017a9190610dd5565b61033c565b005b61019b60048036038101906101969190610e1c565b61034f565b6040516101a89190610c0c565b60405180910390f35b6101b9610394565b6040516101c69190610ace565b60405180910390f35b6101e960048036038101906101e49190610dd5565b610424565b005b61020560048036038101906102009190610b8c565b610437565b6040516102129190610be4565b60405180910390f35b61023560048036038101906102309190610e47565b610459565b6040516102429190610c0c565b60405180910390f35b60606005805461025a90610eb2565b80601f016020809104026020016040519081016040528092919081815260200182805461028690610eb2565b80156102d15780601f106102a8576101008083540402835291602001916102d1565b820191905f5260205f20905b8154815290600101906020018083116102b457829003601f168201915b5050505050905090565b5f806102e56104db565b90506102f28185856104e2565b600191505092915050565b5f600254905090565b5f806103106104db565b905061031d8582856104f4565b610328858585610586565b60019150509392505050565b5f6012905090565b806005908161034b919061107f565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546103a390610eb2565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90610eb2565b801561041a5780601f106103f15761010080835404028352916020019161041a565b820191905f5260205f20905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b8060069081610433919061107f565b5050565b5f806104416104db565b905061044e818585610586565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104ef8383836001610676565b505050565b5f6104ff8484610459565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105805781811015610571578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105689392919061115d565b60405180910390fd5b61057f84848484035f610676565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105f6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105ed9190611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610666575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161065d9190611192565b60405180910390fd5b610671838383610845565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106e6575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106dd9190611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161074d9190611192565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561083f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108369190610c0c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610895578060025f82825461088991906111d8565b92505081905550610963565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561091e578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016109159392919061115d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109aa578060025f82825403925050819055506109f4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a519190610c0c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610aa082610a5e565b610aaa8185610a68565b9350610aba818560208601610a78565b610ac381610a86565b840191505092915050565b5f6020820190508181035f830152610ae68184610a96565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2882610aff565b9050919050565b610b3881610b1e565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f819050919050565b610b6b81610b59565b8114610b75575f80fd5b50565b5f81359050610b8681610b62565b92915050565b5f8060408385031215610ba257610ba1610af7565b5b5f610baf85828601610b45565b9250506020610bc085828601610b78565b9150509250929050565b5f8115159050919050565b610bde81610bca565b82525050565b5f602082019050610bf75f830184610bd5565b92915050565b610c0681610b59565b82525050565b5f602082019050610c1f5f830184610bfd565b92915050565b5f805f60608486031215610c3c57610c3b610af7565b5b5f610c4986828701610b45565b9350506020610c5a86828701610b45565b9250506040610c6b86828701610b78565b9150509250925092565b5f60ff82169050919050565b610c8a81610c75565b82525050565b5f602082019050610ca35f830184610c81565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ce782610a86565b810181811067ffffffffffffffff82111715610d0657610d05610cb1565b5b80604052505050565b5f610d18610aee565b9050610d248282610cde565b919050565b5f67ffffffffffffffff821115610d4357610d42610cb1565b5b610d4c82610a86565b9050602081019050919050565b828183375f83830152505050565b5f610d79610d7484610d29565b610d0f565b905082815260208101848484011115610d9557610d94610cad565b5b610da0848285610d59565b509392505050565b5f82601f830112610dbc57610dbb610ca9565b5b8135610dcc848260208601610d67565b91505092915050565b5f60208284031215610dea57610de9610af7565b5b5f82013567ffffffffffffffff811115610e0757610e06610afb565b5b610e1384828501610da8565b91505092915050565b5f60208284031215610e3157610e30610af7565b5b5f610e3e84828501610b45565b91505092915050565b5f8060408385031215610e5d57610e5c610af7565b5b5f610e6a85828601610b45565b9250506020610e7b85828601610b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610ec957607f821691505b602082108103610edc57610edb610e85565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610f3e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610f03565b610f488683610f03565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610f83610f7e610f7984610b59565b610f60565b610b59565b9050919050565b5f819050919050565b610f9c83610f69565b610fb0610fa882610f8a565b848454610f0f565b825550505050565b5f90565b610fc4610fb8565b610fcf818484610f93565b505050565b5b81811015610ff257610fe75f82610fbc565b600181019050610fd5565b5050565b601f8211156110375761100881610ee2565b61101184610ef4565b81016020851015611020578190505b61103461102c85610ef4565b830182610fd4565b50505b505050565b5f82821c905092915050565b5f6110575f198460080261103c565b1980831691505092915050565b5f61106f8383611048565b9150826002028217905092915050565b61108882610a5e565b67ffffffffffffffff8111156110a1576110a0610cb1565b5b6110ab8254610eb2565b6110b6828285610ff6565b5f60209050601f8311600181146110e7575f84156110d5578287015190505b6110df8582611064565b865550611146565b601f1984166110f586610ee2565b5f5b8281101561111c578489015182556001820191506020850194506020810190506110f7565b868310156111395784890151611135601f891682611048565b8355505b6001600288020188555050505b505050505050565b61115781610b1e565b82525050565b5f6060820190506111705f83018661114e565b61117d6020830185610bfd565b61118a6040830184610bfd565b949350505050565b5f6020820190506111a55f83018461114e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111e282610b59565b91506111ed83610b59565b9250828201905080821115611205576112046111ab565b5b9291505056fea264697066735822122093b3cf03c37af6d2ac745d7fbe70469a98e57b7f278cb4fa6a38fad09ae0e72264736f6c63430008190033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4164617074697665204e616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f41646170746976652053796d626f6c0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Adaptive Name
Arg [1] : symbol_ (string): Adaptive Symbol

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 4164617074697665204e616d6500000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 41646170746976652053796d626f6c0000000000000000000000000000000000


Deployed Bytecode Sourcemap

1117:1527:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1911:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2323:84:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3299:116:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2083:104:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2549:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3610:178:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3846:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:100:5;1965:13;1998:5;1991:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1911:100;:::o;4293:186:1:-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;3144:97::-;3196:7;3222:12;;3215:19;;3144:97;:::o;5039:244::-;5126:4;5142:15;5160:12;:10;:12::i;:::-;5142:30;;5182:37;5198:4;5204:7;5213:5;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;:::o;3002:82::-;3051:5;3075:2;3068:9;;3002:82;:::o;2323:84:5:-;2392:7;2384:5;:15;;;;;;:::i;:::-;;2323:84;:::o;3299:116:1:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2083:104:5:-;2139:13;2172:7;2165:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083:104;:::o;2549:92::-;2624:9;2614:7;:19;;;;;;:::i;:::-;;2549:92;:::o;3610:178:1:-;3679:4;3695:13;3711:12;:10;:12::i;:::-;3695:28;;3733:27;3743:5;3750:2;3754:5;3733:9;:27::i;:::-;3777:4;3770:11;;;3610:178;;;;:::o;3846:140::-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;656:96:4:-;709:7;735:10;728:17;;656:96;:::o;8989:128:1:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;10762:24;10789:25;10799:5;10806:7;10789:9;:25::i;:::-;10762:52;;10848:17;10828:16;:37;10824:310;;10904:5;10885:16;:24;10881:130;;;10963:7;10972:16;10990:5;10936:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10881:130;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10824:310;10752:388;10663:477;;;:::o;5656:300::-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;9949:432::-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;6271:1107::-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;7:99:6:-;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;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545: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:117::-;4855:1;4852;4845:12;4869:117;4978:1;4975;4968:12;4992:180;5040:77;5037:1;5030:88;5137:4;5134:1;5127:15;5161:4;5158:1;5151:15;5178:281;5261:27;5283:4;5261:27;:::i;:::-;5253:6;5249:40;5391:6;5379:10;5376:22;5355:18;5343:10;5340:34;5337:62;5334:88;;;5402:18;;:::i;:::-;5334:88;5442:10;5438:2;5431:22;5221:238;5178:281;;:::o;5465:129::-;5499:6;5526:20;;:::i;:::-;5516:30;;5555:33;5583:4;5575:6;5555:33;:::i;:::-;5465:129;;;:::o;5600:308::-;5662:4;5752:18;5744:6;5741:30;5738:56;;;5774:18;;:::i;:::-;5738:56;5812:29;5834:6;5812:29;:::i;:::-;5804:37;;5896:4;5890;5886:15;5878:23;;5600:308;;;:::o;5914:148::-;6012:6;6007:3;6002;5989:30;6053:1;6044:6;6039:3;6035:16;6028:27;5914:148;;;:::o;6068:425::-;6146:5;6171:66;6187:49;6229:6;6187:49;:::i;:::-;6171:66;:::i;:::-;6162:75;;6260:6;6253:5;6246:21;6298:4;6291:5;6287:16;6336:3;6327:6;6322:3;6318:16;6315:25;6312:112;;;6343:79;;:::i;:::-;6312:112;6433:54;6480:6;6475:3;6470;6433:54;:::i;:::-;6152:341;6068:425;;;;;:::o;6513:340::-;6569:5;6618:3;6611:4;6603:6;6599:17;6595:27;6585:122;;6626:79;;:::i;:::-;6585:122;6743:6;6730:20;6768:79;6843:3;6835:6;6828:4;6820:6;6816:17;6768:79;:::i;:::-;6759:88;;6575:278;6513:340;;;;:::o;6859:509::-;6928:6;6977:2;6965:9;6956:7;6952:23;6948:32;6945:119;;;6983:79;;:::i;:::-;6945:119;7131:1;7120:9;7116:17;7103:31;7161:18;7153:6;7150:30;7147:117;;;7183:79;;:::i;:::-;7147:117;7288:63;7343:7;7334:6;7323:9;7319:22;7288:63;:::i;:::-;7278:73;;7074:287;6859:509;;;;:::o;7374:329::-;7433:6;7482:2;7470:9;7461:7;7457:23;7453:32;7450:119;;;7488:79;;:::i;:::-;7450:119;7608:1;7633:53;7678:7;7669:6;7658:9;7654:22;7633:53;:::i;:::-;7623:63;;7579:117;7374:329;;;;:::o;7709:474::-;7777:6;7785;7834:2;7822:9;7813:7;7809:23;7805:32;7802:119;;;7840:79;;:::i;:::-;7802:119;7960:1;7985:53;8030:7;8021:6;8010:9;8006:22;7985:53;:::i;:::-;7975:63;;7931:117;8087:2;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8058:118;7709:474;;;;;:::o;8189:180::-;8237:77;8234:1;8227:88;8334:4;8331:1;8324:15;8358:4;8355:1;8348:15;8375:320;8419:6;8456:1;8450:4;8446:12;8436:22;;8503:1;8497:4;8493:12;8524:18;8514:81;;8580:4;8572:6;8568:17;8558:27;;8514:81;8642:2;8634:6;8631:14;8611:18;8608:38;8605:84;;8661:18;;:::i;:::-;8605:84;8426:269;8375:320;;;:::o;8701:141::-;8750:4;8773:3;8765:11;;8796:3;8793:1;8786:14;8830:4;8827:1;8817:18;8809:26;;8701:141;;;:::o;8848:93::-;8885:6;8932:2;8927;8920:5;8916:14;8912:23;8902:33;;8848:93;;;:::o;8947:107::-;8991:8;9041:5;9035:4;9031:16;9010:37;;8947:107;;;;:::o;9060:393::-;9129:6;9179:1;9167:10;9163:18;9202:97;9232:66;9221:9;9202:97;:::i;:::-;9320:39;9350:8;9339:9;9320:39;:::i;:::-;9308:51;;9392:4;9388:9;9381:5;9377:21;9368:30;;9441:4;9431:8;9427:19;9420:5;9417:30;9407:40;;9136:317;;9060:393;;;;;:::o;9459:60::-;9487:3;9508:5;9501:12;;9459:60;;;:::o;9525:142::-;9575:9;9608:53;9626:34;9635:24;9653:5;9635:24;:::i;:::-;9626:34;:::i;:::-;9608:53;:::i;:::-;9595:66;;9525:142;;;:::o;9673:75::-;9716:3;9737:5;9730:12;;9673:75;;;:::o;9754:269::-;9864:39;9895:7;9864:39;:::i;:::-;9925:91;9974:41;9998:16;9974:41;:::i;:::-;9966:6;9959:4;9953:11;9925:91;:::i;:::-;9919:4;9912:105;9830:193;9754:269;;;:::o;10029:73::-;10074:3;10029:73;:::o;10108:189::-;10185:32;;:::i;:::-;10226:65;10284:6;10276;10270:4;10226:65;:::i;:::-;10161:136;10108:189;;:::o;10303:186::-;10363:120;10380:3;10373:5;10370:14;10363:120;;;10434:39;10471:1;10464:5;10434:39;:::i;:::-;10407:1;10400:5;10396:13;10387:22;;10363:120;;;10303:186;;:::o;10495:543::-;10596:2;10591:3;10588:11;10585:446;;;10630:38;10662:5;10630:38;:::i;:::-;10714:29;10732:10;10714:29;:::i;:::-;10704:8;10700:44;10897:2;10885:10;10882:18;10879:49;;;10918:8;10903:23;;10879:49;10941:80;10997:22;11015:3;10997:22;:::i;:::-;10987:8;10983:37;10970:11;10941:80;:::i;:::-;10600:431;;10585:446;10495:543;;;:::o;11044:117::-;11098:8;11148:5;11142:4;11138:16;11117:37;;11044:117;;;;:::o;11167:169::-;11211:6;11244:51;11292:1;11288:6;11280:5;11277:1;11273:13;11244:51;:::i;:::-;11240:56;11325:4;11319;11315:15;11305:25;;11218:118;11167:169;;;;:::o;11341:295::-;11417:4;11563:29;11588:3;11582:4;11563:29;:::i;:::-;11555:37;;11625:3;11622:1;11618:11;11612:4;11609:21;11601:29;;11341:295;;;;:::o;11641:1395::-;11758:37;11791:3;11758:37;:::i;:::-;11860:18;11852:6;11849:30;11846:56;;;11882:18;;:::i;:::-;11846:56;11926:38;11958:4;11952:11;11926:38;:::i;:::-;12011:67;12071:6;12063;12057:4;12011:67;:::i;:::-;12105:1;12129:4;12116:17;;12161:2;12153:6;12150:14;12178:1;12173:618;;;;12835:1;12852:6;12849:77;;;12901:9;12896:3;12892:19;12886:26;12877:35;;12849:77;12952:67;13012:6;13005:5;12952:67;:::i;:::-;12946:4;12939:81;12808:222;12143:887;;12173:618;12225:4;12221:9;12213:6;12209:22;12259:37;12291:4;12259:37;:::i;:::-;12318:1;12332:208;12346:7;12343:1;12340:14;12332:208;;;12425:9;12420:3;12416:19;12410:26;12402:6;12395:42;12476:1;12468:6;12464:14;12454:24;;12523:2;12512:9;12508:18;12495:31;;12369:4;12366:1;12362:12;12357:17;;12332:208;;;12568:6;12559:7;12556:19;12553:179;;;12626:9;12621:3;12617:19;12611:26;12669:48;12711:4;12703:6;12699:17;12688:9;12669:48;:::i;:::-;12661:6;12654:64;12576:156;12553:179;12778:1;12774;12766:6;12762:14;12758:22;12752:4;12745:36;12180:611;;;12143:887;;11733:1303;;;11641:1395;;:::o;13042:118::-;13129:24;13147:5;13129:24;:::i;:::-;13124:3;13117:37;13042:118;;:::o;13166:442::-;13315:4;13353:2;13342:9;13338:18;13330:26;;13366:71;13434:1;13423:9;13419:17;13410:6;13366:71;:::i;:::-;13447:72;13515:2;13504:9;13500:18;13491:6;13447:72;:::i;:::-;13529;13597:2;13586:9;13582:18;13573:6;13529:72;:::i;:::-;13166:442;;;;;;:::o;13614:222::-;13707:4;13745:2;13734:9;13730:18;13722:26;;13758:71;13826:1;13815:9;13811:17;13802:6;13758:71;:::i;:::-;13614:222;;;;:::o;13842:180::-;13890:77;13887:1;13880:88;13987:4;13984:1;13977:15;14011:4;14008:1;14001:15;14028:191;14068:3;14087:20;14105:1;14087:20;:::i;:::-;14082:25;;14121:20;14139:1;14121:20;:::i;:::-;14116:25;;14164:1;14161;14157:9;14150:16;;14185:3;14182:1;14179:10;14176:36;;;14192:18;;:::i;:::-;14176:36;14028:191;;;;:::o

Swarm Source

ipfs://93b3cf03c37af6d2ac745d7fbe70469a98e57b7f278cb4fa6a38fad09ae0e722
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.