S Price: $0.856245 (+20.20%)

Token

Sonic IndeX (fSIX)

Overview

Max Total Supply

250,001 fSIX

Holders

475

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 fSIX

Value
$0.00
0x2161D92070Bcd6773C760E4149C0a197E2aAFf99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
FSIX

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-08
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}



pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 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);
}



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;
    }
}


pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}



pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}



pragma solidity ^0.8.20;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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



pragma solidity ^0.8.20;



contract FSIX is ERC20, Ownable {
    uint256 private constant MAX_SUPPLY = 12000000 * 10**18; // 12 million tokens with 18 decimals

    constructor() ERC20("Sonic IndeX", "fSIX") Ownable(msg.sender) {
        // Constructor doesn't mint any tokens initially
    }

    // Override decimals to specify 18 decimals
    function decimals() public pure override returns (uint8) {
        return 18;
    }

    // View function to get max supply
    function maxSupply() public pure returns (uint256) {
        return MAX_SUPPLY;
    }

    // Mint function (only owner can mint)
    function mint(address to, uint256 amount) public onlyOwner {
        uint256 currentSupply = totalSupply();
        uint256 remaining = MAX_SUPPLY - currentSupply;
        
        if (currentSupply + amount >= MAX_SUPPLY) {
            _mint(to, remaining);
        } else {
            _mint(to, amount);
        }
    }

    // Burn function
    function burn(uint256 amount) public {
        require(balanceOf(msg.sender) >= amount, "Insufficient balance");
        _burn(msg.sender, amount);
    }

    // View function to get remaining mintable supply
    function remainingSupply() public view returns (uint256) {
        return MAX_SUPPLY - totalSupply();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b50336040518060400160405280600b81526020017f536f6e696320496e6465580000000000000000000000000000000000000000008152506040518060400160405280600481526020017f6653495800000000000000000000000000000000000000000000000000000000815250816003908161008c9190610424565b50806004908161009c9190610424565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101069190610532565b60405180910390fd5b61011e8161012460201b60201c565b5061054b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061026257607f821691505b6020821081036102755761027461021e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261029c565b6102e1868361029c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61032561032061031b846102f9565b610302565b6102f9565b9050919050565b5f819050919050565b61033e8361030b565b61035261034a8261032c565b8484546102a8565b825550505050565b5f5f905090565b61036961035a565b610374818484610335565b505050565b5b818110156103975761038c5f82610361565b60018101905061037a565b5050565b601f8211156103dc576103ad8161027b565b6103b68461028d565b810160208510156103c5578190505b6103d96103d18561028d565b830182610379565b50505b505050565b5f82821c905092915050565b5f6103fc5f19846008026103e1565b1980831691505092915050565b5f61041483836103ed565b9150826002028217905092915050565b61042d826101e7565b67ffffffffffffffff811115610446576104456101f1565b5b610450825461024b565b61045b82828561039b565b5f60209050601f83116001811461048c575f841561047a578287015190505b6104848582610409565b8655506104eb565b601f19841661049a8661027b565b5f5b828110156104c15784890151825560018201915060208501945060208101905061049c565b868310156104de57848901516104da601f8916826103ed565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61051c826104f3565b9050919050565b61052c81610512565b82525050565b5f6020820190506105455f830184610523565b92915050565b6113cc806105585f395ff3fe608060405234801561000f575f5ffd5b50600436106100fe575f3560e01c8063715018a611610095578063d5abeb0111610064578063d5abeb011461029a578063da0239a6146102b8578063dd62ed3e146102d6578063f2fde38b14610306576100fe565b8063715018a6146102245780638da5cb5b1461022e57806395d89b411461024c578063a9059cbb1461026a576100fe565b8063313ce567116100d1578063313ce5671461019e57806340c10f19146101bc57806342966c68146101d857806370a08231146101f4576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f5ffd5b61010a610322565b6040516101179190610f7f565b60405180910390f35b61013a60048036038101906101359190611030565b6103b2565b6040516101479190611088565b60405180910390f35b6101586103d4565b60405161016591906110b0565b60405180910390f35b610188600480360381019061018391906110c9565b6103dd565b6040516101959190611088565b60405180910390f35b6101a661040b565b6040516101b39190611134565b60405180910390f35b6101d660048036038101906101d19190611030565b610413565b005b6101f260048036038101906101ed919061114d565b61047d565b005b61020e60048036038101906102099190611178565b6104d5565b60405161021b91906110b0565b60405180910390f35b61022c61051a565b005b61023661052d565b60405161024391906111b2565b60405180910390f35b610254610555565b6040516102619190610f7f565b60405180910390f35b610284600480360381019061027f9190611030565b6105e5565b6040516102919190611088565b60405180910390f35b6102a2610607565b6040516102af91906110b0565b60405180910390f35b6102c0610619565b6040516102cd91906110b0565b60405180910390f35b6102f060048036038101906102eb91906111cb565b61063d565b6040516102fd91906110b0565b60405180910390f35b610320600480360381019061031b9190611178565b6106bf565b005b60606003805461033190611236565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611236565b80156103a85780601f1061037f576101008083540402835291602001916103a8565b820191905f5260205f20905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b5f5f6103bc610743565b90506103c981858561074a565b600191505092915050565b5f600254905090565b5f5f6103e7610743565b90506103f485828561075c565b6103ff8585856107ef565b60019150509392505050565b5f6012905090565b61041b6108df565b5f6104246103d4565b90505f816a09ed194db19b238c00000061043e9190611293565b90506a09ed194db19b238c000000838361045891906112c6565b1061046c576104678482610966565b610477565b6104768484610966565b5b50505050565b80610487336104d5565b10156104c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bf90611343565b60405180910390fd5b6104d233826109e5565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105226108df565b61052b5f610a64565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056490611236565b80601f016020809104026020016040519081016040528092919081815260200182805461059090611236565b80156105db5780601f106105b2576101008083540402835291602001916105db565b820191905f5260205f20905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b5f5f6105ef610743565b90506105fc8185856107ef565b600191505092915050565b5f6a09ed194db19b238c000000905090565b5f6106226103d4565b6a09ed194db19b238c0000006106389190611293565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106c76108df565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610737575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161072e91906111b2565b60405180910390fd5b61074081610a64565b50565b5f33905090565b6107578383836001610b27565b505050565b5f610767848461063d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156107e957818110156107da578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d193929190611361565b60405180910390fd5b6107e884848484035f610b27565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085f575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161085691906111b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c691906111b2565b60405180910390fd5b6108da838383610cf6565b505050565b6108e7610743565b73ffffffffffffffffffffffffffffffffffffffff1661090561052d565b73ffffffffffffffffffffffffffffffffffffffff161461096457610928610743565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161095b91906111b2565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109cd91906111b2565b60405180910390fd5b6109e15f8383610cf6565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a55575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a4c91906111b2565b60405180910390fd5b610a60825f83610cf6565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b97575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b8e91906111b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c07575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bfe91906111b2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cf0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791906110b0565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d46578060025f828254610d3a91906112c6565b92505081905550610e14565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dcf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610dc693929190611361565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5b578060025f8282540392505081905550610ea5565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0291906110b0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f5182610f0f565b610f5b8185610f19565b9350610f6b818560208601610f29565b610f7481610f37565b840191505092915050565b5f6020820190508181035f830152610f978184610f47565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fcc82610fa3565b9050919050565b610fdc81610fc2565b8114610fe6575f5ffd5b50565b5f81359050610ff781610fd3565b92915050565b5f819050919050565b61100f81610ffd565b8114611019575f5ffd5b50565b5f8135905061102a81611006565b92915050565b5f5f6040838503121561104657611045610f9f565b5b5f61105385828601610fe9565b92505060206110648582860161101c565b9150509250929050565b5f8115159050919050565b6110828161106e565b82525050565b5f60208201905061109b5f830184611079565b92915050565b6110aa81610ffd565b82525050565b5f6020820190506110c35f8301846110a1565b92915050565b5f5f5f606084860312156110e0576110df610f9f565b5b5f6110ed86828701610fe9565b93505060206110fe86828701610fe9565b925050604061110f8682870161101c565b9150509250925092565b5f60ff82169050919050565b61112e81611119565b82525050565b5f6020820190506111475f830184611125565b92915050565b5f6020828403121561116257611161610f9f565b5b5f61116f8482850161101c565b91505092915050565b5f6020828403121561118d5761118c610f9f565b5b5f61119a84828501610fe9565b91505092915050565b6111ac81610fc2565b82525050565b5f6020820190506111c55f8301846111a3565b92915050565b5f5f604083850312156111e1576111e0610f9f565b5b5f6111ee85828601610fe9565b92505060206111ff85828601610fe9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061124d57607f821691505b6020821081036112605761125f611209565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61129d82610ffd565b91506112a883610ffd565b92508282039050818111156112c0576112bf611266565b5b92915050565b5f6112d082610ffd565b91506112db83610ffd565b92508282019050808211156112f3576112f2611266565b5b92915050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61132d601483610f19565b9150611338826112f9565b602082019050919050565b5f6020820190508181035f83015261135a81611321565b9050919050565b5f6060820190506113745f8301866111a3565b61138160208301856110a1565b61138e60408301846110a1565b94935050505056fea26469706673582212201fa6f3ecf0f9cf69d0da987bc52bdb876f0ad81b8b4775acb109567e4545551f64736f6c634300081b0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100fe575f3560e01c8063715018a611610095578063d5abeb0111610064578063d5abeb011461029a578063da0239a6146102b8578063dd62ed3e146102d6578063f2fde38b14610306576100fe565b8063715018a6146102245780638da5cb5b1461022e57806395d89b411461024c578063a9059cbb1461026a576100fe565b8063313ce567116100d1578063313ce5671461019e57806340c10f19146101bc57806342966c68146101d857806370a08231146101f4576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f5ffd5b61010a610322565b6040516101179190610f7f565b60405180910390f35b61013a60048036038101906101359190611030565b6103b2565b6040516101479190611088565b60405180910390f35b6101586103d4565b60405161016591906110b0565b60405180910390f35b610188600480360381019061018391906110c9565b6103dd565b6040516101959190611088565b60405180910390f35b6101a661040b565b6040516101b39190611134565b60405180910390f35b6101d660048036038101906101d19190611030565b610413565b005b6101f260048036038101906101ed919061114d565b61047d565b005b61020e60048036038101906102099190611178565b6104d5565b60405161021b91906110b0565b60405180910390f35b61022c61051a565b005b61023661052d565b60405161024391906111b2565b60405180910390f35b610254610555565b6040516102619190610f7f565b60405180910390f35b610284600480360381019061027f9190611030565b6105e5565b6040516102919190611088565b60405180910390f35b6102a2610607565b6040516102af91906110b0565b60405180910390f35b6102c0610619565b6040516102cd91906110b0565b60405180910390f35b6102f060048036038101906102eb91906111cb565b61063d565b6040516102fd91906110b0565b60405180910390f35b610320600480360381019061031b9190611178565b6106bf565b005b60606003805461033190611236565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611236565b80156103a85780601f1061037f576101008083540402835291602001916103a8565b820191905f5260205f20905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b5f5f6103bc610743565b90506103c981858561074a565b600191505092915050565b5f600254905090565b5f5f6103e7610743565b90506103f485828561075c565b6103ff8585856107ef565b60019150509392505050565b5f6012905090565b61041b6108df565b5f6104246103d4565b90505f816a09ed194db19b238c00000061043e9190611293565b90506a09ed194db19b238c000000838361045891906112c6565b1061046c576104678482610966565b610477565b6104768484610966565b5b50505050565b80610487336104d5565b10156104c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bf90611343565b60405180910390fd5b6104d233826109e5565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105226108df565b61052b5f610a64565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056490611236565b80601f016020809104026020016040519081016040528092919081815260200182805461059090611236565b80156105db5780601f106105b2576101008083540402835291602001916105db565b820191905f5260205f20905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b5f5f6105ef610743565b90506105fc8185856107ef565b600191505092915050565b5f6a09ed194db19b238c000000905090565b5f6106226103d4565b6a09ed194db19b238c0000006106389190611293565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106c76108df565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610737575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161072e91906111b2565b60405180910390fd5b61074081610a64565b50565b5f33905090565b6107578383836001610b27565b505050565b5f610767848461063d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156107e957818110156107da578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d193929190611361565b60405180910390fd5b6107e884848484035f610b27565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085f575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161085691906111b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c691906111b2565b60405180910390fd5b6108da838383610cf6565b505050565b6108e7610743565b73ffffffffffffffffffffffffffffffffffffffff1661090561052d565b73ffffffffffffffffffffffffffffffffffffffff161461096457610928610743565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161095b91906111b2565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109cd91906111b2565b60405180910390fd5b6109e15f8383610cf6565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a55575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a4c91906111b2565b60405180910390fd5b610a60825f83610cf6565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b97575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b8e91906111b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c07575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bfe91906111b2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610cf0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791906110b0565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d46578060025f828254610d3a91906112c6565b92505081905550610e14565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dcf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610dc693929190611361565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5b578060025f8282540392505081905550610ea5565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0291906110b0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f5182610f0f565b610f5b8185610f19565b9350610f6b818560208601610f29565b610f7481610f37565b840191505092915050565b5f6020820190508181035f830152610f978184610f47565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fcc82610fa3565b9050919050565b610fdc81610fc2565b8114610fe6575f5ffd5b50565b5f81359050610ff781610fd3565b92915050565b5f819050919050565b61100f81610ffd565b8114611019575f5ffd5b50565b5f8135905061102a81611006565b92915050565b5f5f6040838503121561104657611045610f9f565b5b5f61105385828601610fe9565b92505060206110648582860161101c565b9150509250929050565b5f8115159050919050565b6110828161106e565b82525050565b5f60208201905061109b5f830184611079565b92915050565b6110aa81610ffd565b82525050565b5f6020820190506110c35f8301846110a1565b92915050565b5f5f5f606084860312156110e0576110df610f9f565b5b5f6110ed86828701610fe9565b93505060206110fe86828701610fe9565b925050604061110f8682870161101c565b9150509250925092565b5f60ff82169050919050565b61112e81611119565b82525050565b5f6020820190506111475f830184611125565b92915050565b5f6020828403121561116257611161610f9f565b5b5f61116f8482850161101c565b91505092915050565b5f6020828403121561118d5761118c610f9f565b5b5f61119a84828501610fe9565b91505092915050565b6111ac81610fc2565b82525050565b5f6020820190506111c55f8301846111a3565b92915050565b5f5f604083850312156111e1576111e0610f9f565b5b5f6111ee85828601610fe9565b92505060206111ff85828601610fe9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061124d57607f821691505b6020821081036112605761125f611209565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61129d82610ffd565b91506112a883610ffd565b92508282039050818111156112c0576112bf611266565b5b92915050565b5f6112d082610ffd565b91506112db83610ffd565b92508282019050808211156112f3576112f2611266565b5b92915050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61132d601483610f19565b9150611338826112f9565b602082019050919050565b5f6020820190508181035f83015261135a81611321565b9050919050565b5f6060820190506113745f8301866111a3565b61138160208301856110a1565b61138e60408301846110a1565b94935050505056fea26469706673582212201fa6f3ecf0f9cf69d0da987bc52bdb876f0ad81b8b4775acb109567e4545551f64736f6c634300081b0033

Deployed Bytecode Sourcemap

24800:1291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12331:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14624:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13433:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15424:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25127:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25399:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25760:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13595:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23928:103;;;:::i;:::-;;23253:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12541:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13918:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25260:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25979:109;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14163:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24186:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12331:91;12376:13;12409:5;12402:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12331:91;:::o;14624:190::-;14697:4;14714:13;14730:12;:10;:12::i;:::-;14714:28;;14753:31;14762:5;14769:7;14778:5;14753:8;:31::i;:::-;14802:4;14795:11;;;14624:190;;;;:::o;13433:99::-;13485:7;13512:12;;13505:19;;13433:99;:::o;15424:249::-;15511:4;15528:15;15546:12;:10;:12::i;:::-;15528:30;;15569:37;15585:4;15591:7;15600:5;15569:15;:37::i;:::-;15617:26;15627:4;15633:2;15637:5;15617:9;:26::i;:::-;15661:4;15654:11;;;15424:249;;;;;:::o;25127:85::-;25177:5;25202:2;25195:9;;25127:85;:::o;25399:331::-;23139:13;:11;:13::i;:::-;25469:21:::1;25493:13;:11;:13::i;:::-;25469:37;;25517:17;25550:13;24877:17;25537:26;;;;:::i;:::-;25517:46;;24877:17;25604:6;25588:13;:22;;;;:::i;:::-;:36;25584:139;;25641:20;25647:2;25651:9;25641:5;:20::i;:::-;25584:139;;;25694:17;25700:2;25704:6;25694:5;:17::i;:::-;25584:139;25458:272;;25399:331:::0;;:::o;25760:156::-;25841:6;25816:21;25826:10;25816:9;:21::i;:::-;:31;;25808:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25883:25;25889:10;25901:6;25883:5;:25::i;:::-;25760:156;:::o;13595:118::-;13660:7;13687:9;:18;13697:7;13687:18;;;;;;;;;;;;;;;;13680:25;;13595:118;;;:::o;23928:103::-;23139:13;:11;:13::i;:::-;23993:30:::1;24020:1;23993:18;:30::i;:::-;23928:103::o:0;23253:87::-;23299:7;23326:6;;;;;;;;;;;23319:13;;23253:87;:::o;12541:95::-;12588:13;12621:7;12614:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12541:95;:::o;13918:182::-;13987:4;14004:13;14020:12;:10;:12::i;:::-;14004:28;;14043:27;14053:5;14060:2;14064:5;14043:9;:27::i;:::-;14088:4;14081:11;;;13918:182;;;;:::o;25260:87::-;25302:7;24877:17;25322;;25260:87;:::o;25979:109::-;26027:7;26067:13;:11;:13::i;:::-;24877:17;26054:26;;;;:::i;:::-;26047:33;;25979:109;:::o;14163:142::-;14243:7;14270:11;:18;14282:5;14270:18;;;;;;;;;;;;;;;:27;14289:7;14270:27;;;;;;;;;;;;;;;;14263:34;;14163:142;;;;:::o;24186:220::-;23139:13;:11;:13::i;:::-;24291:1:::1;24271:22;;:8;:22;;::::0;24267:93:::1;;24345:1;24317:31;;;;;;;;;;;:::i;:::-;;;;;;;;24267:93;24370:28;24389:8;24370:18;:28::i;:::-;24186:220:::0;:::o;3908:98::-;3961:7;3988:10;3981:17;;3908:98;:::o;19483:130::-;19568:37;19577:5;19584:7;19593:5;19600:4;19568:8;:37::i;:::-;19483:130;;;:::o;21215:486::-;21315:24;21342:25;21352:5;21359:7;21342:9;:25::i;:::-;21315:52;;21401:17;21382:16;:36;21378:316;;;21458:5;21439:16;:24;21435:132;;;21518:7;21527:16;21545:5;21491:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21435:132;21610:57;21619:5;21626:7;21654:5;21635:16;:24;21661:5;21610:8;:57::i;:::-;21378:316;21304:397;21215:486;;;:::o;16058:308::-;16158:1;16142:18;;:4;:18;;;16138:88;;16211:1;16184:30;;;;;;;;;;;:::i;:::-;;;;;;;;16138:88;16254:1;16240:16;;:2;:16;;;16236:88;;16309:1;16280:32;;;;;;;;;;;:::i;:::-;;;;;;;;16236:88;16334:24;16342:4;16348:2;16352:5;16334:7;:24::i;:::-;16058:308;;;:::o;23418:166::-;23489:12;:10;:12::i;:::-;23478:23;;:7;:5;:7::i;:::-;:23;;;23474:103;;23552:12;:10;:12::i;:::-;23525:40;;;;;;;;;;;:::i;:::-;;;;;;;;23474:103;23418:166::o;18178:213::-;18268:1;18249:21;;:7;:21;;;18245:93;;18323:1;18294:32;;;;;;;;;;;:::i;:::-;;;;;;;;18245:93;18348:35;18364:1;18368:7;18377:5;18348:7;:35::i;:::-;18178:213;;:::o;18719:211::-;18809:1;18790:21;;:7;:21;;;18786:91;;18862:1;18835:30;;;;;;;;;;;:::i;:::-;;;;;;;;18786:91;18887:35;18895:7;18912:1;18916:5;18887:7;:35::i;:::-;18719:211;;:::o;24566:191::-;24640:16;24659:6;;;;;;;;;;;24640:25;;24685:8;24676:6;;:17;;;;;;;;;;;;;;;;;;24740:8;24709:40;;24730:8;24709:40;;;;;;;;;;;;24629:128;24566:191;:::o;20480:443::-;20610:1;20593:19;;:5;:19;;;20589:91;;20665:1;20636:32;;;;;;;;;;;:::i;:::-;;;;;;;;20589:91;20713:1;20694:21;;:7;:21;;;20690:92;;20767:1;20739:31;;;;;;;;;;;:::i;:::-;;;;;;;;20690:92;20822:5;20792:11;:18;20804:5;20792:18;;;;;;;;;;;;;;;:27;20811:7;20792:27;;;;;;;;;;;;;;;:35;;;;20842:9;20838:78;;;20889:7;20873:31;;20882:5;20873:31;;;20898:5;20873:31;;;;;;:::i;:::-;;;;;;;;20838:78;20480:443;;;;:::o;16690:1135::-;16796:1;16780:18;;:4;:18;;;16776:552;;16934:5;16918:12;;:21;;;;;;;:::i;:::-;;;;;;;;16776:552;;;16972:19;16994:9;:15;17004:4;16994:15;;;;;;;;;;;;;;;;16972:37;;17042:5;17028:11;:19;17024:117;;;17100:4;17106:11;17119:5;17075:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17024:117;17296:5;17282:11;:19;17264:9;:15;17274:4;17264:15;;;;;;;;;;;;;;;:37;;;;16957:371;16776:552;17358:1;17344:16;;:2;:16;;;17340:435;;17526:5;17510:12;;:21;;;;;;;;;;;17340:435;;;17743:5;17726:9;:13;17736:2;17726:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17340:435;17807:2;17792:25;;17801:4;17792:25;;;17811:5;17792:25;;;;;;:::i;:::-;;;;;;;;16690:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:194;6986:4;7006:20;7024:1;7006:20;:::i;:::-;7001:25;;7040:20;7058:1;7040:20;:::i;:::-;7035:25;;7084:1;7081;7077:9;7069:17;;7108:1;7102:4;7099:11;7096:37;;;7113:18;;:::i;:::-;7096:37;6946:194;;;;:::o;7146:191::-;7186:3;7205:20;7223:1;7205:20;:::i;:::-;7200:25;;7239:20;7257:1;7239:20;:::i;:::-;7234:25;;7282:1;7279;7275:9;7268:16;;7303:3;7300:1;7297:10;7294:36;;;7310:18;;:::i;:::-;7294:36;7146:191;;;;:::o;7343:170::-;7483:22;7479:1;7471:6;7467:14;7460:46;7343:170;:::o;7519:366::-;7661:3;7682:67;7746:2;7741:3;7682:67;:::i;:::-;7675:74;;7758:93;7847:3;7758:93;:::i;:::-;7876:2;7871:3;7867:12;7860:19;;7519:366;;;:::o;7891:419::-;8057:4;8095:2;8084:9;8080:18;8072:26;;8144:9;8138:4;8134:20;8130:1;8119:9;8115:17;8108:47;8172:131;8298:4;8172:131;:::i;:::-;8164:139;;7891:419;;;:::o;8316:442::-;8465:4;8503:2;8492:9;8488:18;8480:26;;8516:71;8584:1;8573:9;8569:17;8560:6;8516:71;:::i;:::-;8597:72;8665:2;8654:9;8650:18;8641:6;8597:72;:::i;:::-;8679;8747:2;8736:9;8732:18;8723:6;8679:72;:::i;:::-;8316:442;;;;;;:::o

Swarm Source

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