ETH Price: $2,858.32 (-2.73%)
 

Overview

Max Total Supply

1,000,000,000 aRUSSELL

Holders

46,125

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Bundler: 0x8c9...99c
Balance
25 aRUSSELL

Value
$0.00
0x8c9268c62b1333e0ac266d61b32c0f72458d099c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Mira

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at basescan.org on 2025-12-20
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;


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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





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

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

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

    /// @inheritdoc IERC20
    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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

// File: MyToken.sol


pragma solidity ^0.8.20;




contract Mira is ERC20, ERC20Burnable, Ownable {

    constructor()
        ERC20("Aave Russell", "aRUSSELL")
        Ownable(msg.sender)
    {
        uint256 supply_ = 1_000_000_000; // 1 miliar token
        _mint(msg.sender, supply_ * 10 ** decimals());
    }

    // ---------------------------------------------------------
    // MULTICALL (Compatible dengan Thirdweb)
    // ---------------------------------------------------------
    function multicall(bytes[] calldata data)
        external
        returns (bytes[] memory results)
    {
        results = new bytes[](data.length);

        for (uint256 i = 0; i < data.length; ) {
            (bool success, bytes memory result) =
                address(this).delegatecall(data[i]);

            require(success, "Multicall failed");
            results[i] = result;

            unchecked { i++; }
        }
    }

    // ---------------------------------------------------------
    // AIRDROP MULTISEND (Owner Only)
    // ---------------------------------------------------------
    function airdrop(address[] calldata rec, uint256[] calldata amt)
        external
        onlyOwner
    {
        require(rec.length == amt.length, "Length mismatch");

        for (uint256 i = 0; i < rec.length; ) {
            _transfer(msg.sender, rec[i], amt[i]);
            unchecked { i++; }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"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":"rec","type":"address[]"},{"internalType":"uint256[]","name":"amt","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"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":"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"}]

608060405234801562000010575f80fd5b50336040518060400160405280600c81526020016b10585d9948149d5cdcd95b1b60a21b8152506040518060400160405280600881526020016718549554d4d1531360c21b815250816003908162000069919062000343565b50600462000078828262000343565b5050506001600160a01b038116620000aa57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000b581620000e7565b50633b9aca00620000e033620000ce6012600a6200051a565b620000da908462000531565b62000138565b5062000561565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001635760405163ec442f0560e01b81525f6004820152602401620000a1565b620001705f838362000174565b5050565b6001600160a01b038316620001a2578060025f8282546200019691906200054b565b90915550620002149050565b6001600160a01b0383165f9081526020819052604090205481811015620001f65760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000a1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620002325760028054829003905562000250565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029691815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002cc57607f821691505b602082108103620002eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200033e575f81815260208120601f850160051c81016020861015620003195750805b601f850160051c820191505b818110156200033a5782815560010162000325565b5050505b505050565b81516001600160401b038111156200035f576200035f620002a3565b6200037781620003708454620002b7565b84620002f1565b602080601f831160018114620003ad575f8415620003955750858301515b5f19600386901b1c1916600185901b1785556200033a565b5f85815260208120601f198616915b82811015620003dd57888601518255948401946001909101908401620003bc565b5085821015620003fb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200045f57815f19048211156200044357620004436200040b565b808516156200045157918102915b93841c939080029062000424565b509250929050565b5f82620004775750600162000514565b816200048557505f62000514565b81600181146200049e5760028114620004a957620004c9565b600191505062000514565b60ff841115620004bd57620004bd6200040b565b50506001821b62000514565b5060208310610133831016604e8410600b8410161715620004ee575081810a62000514565b620004fa83836200041f565b805f19048211156200051057620005106200040b565b0290505b92915050565b5f6200052a60ff84168362000467565b9392505050565b80820281158282048414176200051457620005146200040b565b808201808211156200051457620005146200040b565b610cef806200056f5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063ac9650d814610215578063dd62ed3e14610235578063f2fde38b1461026d575f80fd5b8063715018a6146101c457806379cc6790146101cc5780638da5cb5b146101df57806395d89b41146101fa575f80fd5b8063313ce567116100ce578063313ce5671461016557806342966c6814610174578063672434821461018957806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610280565b60405161011491906109a4565b60405180910390f35b61013061012b3660046109d8565b610310565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610a00565b610329565b60405160128152602001610114565b610187610182366004610a39565b61034c565b005b610187610197366004610a98565b610359565b6101446101aa366004610aff565b6001600160a01b03165f9081526020819052604090205490565b610187610409565b6101876101da3660046109d8565b61041c565b6005546040516001600160a01b039091168152602001610114565b610107610435565b6101306102103660046109d8565b610444565b610228610223366004610b18565b610451565b6040516101149190610b57565b610144610243366004610bb7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61018761027b366004610aff565b610592565b60606003805461028f90610be8565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610be8565b80156103065780601f106102dd57610100808354040283529160200191610306565b820191905f5260205f20905b8154815290600101906020018083116102e957829003601f168201915b5050505050905090565b5f3361031d8185856105cc565b60019150505b92915050565b5f336103368582856105de565b61034185858561065a565b506001949350505050565b61035633826106b7565b50565b6103616106eb565b8281146103a75760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b60448201526064015b60405180910390fd5b5f5b83811015610402576103fa338686848181106103c7576103c7610c20565b90506020020160208101906103dc9190610aff565b8585858181106103ee576103ee610c20565b9050602002013561065a565b6001016103a9565b5050505050565b6104116106eb565b61041a5f610718565b565b6104278233836105de565b61043182826106b7565b5050565b60606004805461028f90610be8565b5f3361031d81858561065a565b60608167ffffffffffffffff81111561046c5761046c610c34565b60405190808252806020026020018201604052801561049f57816020015b606081526020019060019003908161048a5790505b5090505f5b8281101561058b575f80308686858181106104c1576104c1610c20565b90506020028101906104d39190610c48565b6040516104e1929190610c8b565b5f60405180830381855af49150503d805f8114610519576040519150601f19603f3d011682016040523d82523d5f602084013e61051e565b606091505b5091509150816105635760405162461bcd60e51b815260206004820152601060248201526f135d5b1d1a58d85b1b0819985a5b195960821b604482015260640161039e565b8084848151811061057657610576610c20565b602090810291909101015250506001016104a4565b5092915050565b61059a6106eb565b6001600160a01b0381166105c357604051631e4fbdf760e01b81525f600482015260240161039e565b61035681610718565b6105d98383836001610769565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610654578181101561064657604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161039e565b61065484848484035f610769565b50505050565b6001600160a01b03831661068357604051634b637e8f60e11b81525f600482015260240161039e565b6001600160a01b0382166106ac5760405163ec442f0560e01b81525f600482015260240161039e565b6105d983838361083b565b6001600160a01b0382166106e057604051634b637e8f60e11b81525f600482015260240161039e565b610431825f8361083b565b6005546001600160a01b0316331461041a5760405163118cdaa760e01b815233600482015260240161039e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107925760405163e602df0560e01b81525f600482015260240161039e565b6001600160a01b0383166107bb57604051634a1406b160e11b81525f600482015260240161039e565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561065457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161082d91815260200190565b60405180910390a350505050565b6001600160a01b038316610865578060025f82825461085a9190610c9a565b909155506108d59050565b6001600160a01b0383165f90815260208190526040902054818110156108b75760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161039e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108f15760028054829003905561090f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095491815260200190565b60405180910390a3505050565b5f81518084525f5b8181101561098557602081850181015186830182015201610969565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6109b66020830184610961565b9392505050565b80356001600160a01b03811681146109d3575f80fd5b919050565b5f80604083850312156109e9575f80fd5b6109f2836109bd565b946020939093013593505050565b5f805f60608486031215610a12575f80fd5b610a1b846109bd565b9250610a29602085016109bd565b9150604084013590509250925092565b5f60208284031215610a49575f80fd5b5035919050565b5f8083601f840112610a60575f80fd5b50813567ffffffffffffffff811115610a77575f80fd5b6020830191508360208260051b8501011115610a91575f80fd5b9250929050565b5f805f8060408587031215610aab575f80fd5b843567ffffffffffffffff80821115610ac2575f80fd5b610ace88838901610a50565b90965094506020870135915080821115610ae6575f80fd5b50610af387828801610a50565b95989497509550505050565b5f60208284031215610b0f575f80fd5b6109b6826109bd565b5f8060208385031215610b29575f80fd5b823567ffffffffffffffff811115610b3f575f80fd5b610b4b85828601610a50565b90969095509350505050565b5f602080830181845280855180835260408601915060408160051b87010192508387015f5b82811015610baa57603f19888603018452610b98858351610961565b94509285019290850190600101610b7c565b5092979650505050505050565b5f8060408385031215610bc8575f80fd5b610bd1836109bd565b9150610bdf602084016109bd565b90509250929050565b600181811c90821680610bfc57607f821691505b602082108103610c1a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52604160045260245ffd5b5f808335601e19843603018112610c5d575f80fd5b83018035915067ffffffffffffffff821115610c77575f80fd5b602001915036819003821315610a91575f80fd5b818382375f9101908152919050565b8082018082111561032357634e487b7160e01b5f52601160045260245ffdfea264697066735822122069e79103825d1016fb4578429a4a570aad96d787141bf4e26eac3220ef243a4f64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063ac9650d814610215578063dd62ed3e14610235578063f2fde38b1461026d575f80fd5b8063715018a6146101c457806379cc6790146101cc5780638da5cb5b146101df57806395d89b41146101fa575f80fd5b8063313ce567116100ce578063313ce5671461016557806342966c6814610174578063672434821461018957806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610280565b60405161011491906109a4565b60405180910390f35b61013061012b3660046109d8565b610310565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610a00565b610329565b60405160128152602001610114565b610187610182366004610a39565b61034c565b005b610187610197366004610a98565b610359565b6101446101aa366004610aff565b6001600160a01b03165f9081526020819052604090205490565b610187610409565b6101876101da3660046109d8565b61041c565b6005546040516001600160a01b039091168152602001610114565b610107610435565b6101306102103660046109d8565b610444565b610228610223366004610b18565b610451565b6040516101149190610b57565b610144610243366004610bb7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61018761027b366004610aff565b610592565b60606003805461028f90610be8565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610be8565b80156103065780601f106102dd57610100808354040283529160200191610306565b820191905f5260205f20905b8154815290600101906020018083116102e957829003601f168201915b5050505050905090565b5f3361031d8185856105cc565b60019150505b92915050565b5f336103368582856105de565b61034185858561065a565b506001949350505050565b61035633826106b7565b50565b6103616106eb565b8281146103a75760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b60448201526064015b60405180910390fd5b5f5b83811015610402576103fa338686848181106103c7576103c7610c20565b90506020020160208101906103dc9190610aff565b8585858181106103ee576103ee610c20565b9050602002013561065a565b6001016103a9565b5050505050565b6104116106eb565b61041a5f610718565b565b6104278233836105de565b61043182826106b7565b5050565b60606004805461028f90610be8565b5f3361031d81858561065a565b60608167ffffffffffffffff81111561046c5761046c610c34565b60405190808252806020026020018201604052801561049f57816020015b606081526020019060019003908161048a5790505b5090505f5b8281101561058b575f80308686858181106104c1576104c1610c20565b90506020028101906104d39190610c48565b6040516104e1929190610c8b565b5f60405180830381855af49150503d805f8114610519576040519150601f19603f3d011682016040523d82523d5f602084013e61051e565b606091505b5091509150816105635760405162461bcd60e51b815260206004820152601060248201526f135d5b1d1a58d85b1b0819985a5b195960821b604482015260640161039e565b8084848151811061057657610576610c20565b602090810291909101015250506001016104a4565b5092915050565b61059a6106eb565b6001600160a01b0381166105c357604051631e4fbdf760e01b81525f600482015260240161039e565b61035681610718565b6105d98383836001610769565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610654578181101561064657604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161039e565b61065484848484035f610769565b50505050565b6001600160a01b03831661068357604051634b637e8f60e11b81525f600482015260240161039e565b6001600160a01b0382166106ac5760405163ec442f0560e01b81525f600482015260240161039e565b6105d983838361083b565b6001600160a01b0382166106e057604051634b637e8f60e11b81525f600482015260240161039e565b610431825f8361083b565b6005546001600160a01b0316331461041a5760405163118cdaa760e01b815233600482015260240161039e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107925760405163e602df0560e01b81525f600482015260240161039e565b6001600160a01b0383166107bb57604051634a1406b160e11b81525f600482015260240161039e565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561065457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161082d91815260200190565b60405180910390a350505050565b6001600160a01b038316610865578060025f82825461085a9190610c9a565b909155506108d59050565b6001600160a01b0383165f90815260208190526040902054818110156108b75760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161039e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108f15760028054829003905561090f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095491815260200190565b60405180910390a3505050565b5f81518084525f5b8181101561098557602081850181015186830182015201610969565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6109b66020830184610961565b9392505050565b80356001600160a01b03811681146109d3575f80fd5b919050565b5f80604083850312156109e9575f80fd5b6109f2836109bd565b946020939093013593505050565b5f805f60608486031215610a12575f80fd5b610a1b846109bd565b9250610a29602085016109bd565b9150604084013590509250925092565b5f60208284031215610a49575f80fd5b5035919050565b5f8083601f840112610a60575f80fd5b50813567ffffffffffffffff811115610a77575f80fd5b6020830191508360208260051b8501011115610a91575f80fd5b9250929050565b5f805f8060408587031215610aab575f80fd5b843567ffffffffffffffff80821115610ac2575f80fd5b610ace88838901610a50565b90965094506020870135915080821115610ae6575f80fd5b50610af387828801610a50565b95989497509550505050565b5f60208284031215610b0f575f80fd5b6109b6826109bd565b5f8060208385031215610b29575f80fd5b823567ffffffffffffffff811115610b3f575f80fd5b610b4b85828601610a50565b90969095509350505050565b5f602080830181845280855180835260408601915060408160051b87010192508387015f5b82811015610baa57603f19888603018452610b98858351610961565b94509285019290850190600101610b7c565b5092979650505050505050565b5f8060408385031215610bc8575f80fd5b610bd1836109bd565b9150610bdf602084016109bd565b90509250929050565b600181811c90821680610bfc57607f821691505b602082108103610c1a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52604160045260245ffd5b5f808335601e19843603018112610c5d575f80fd5b83018035915067ffffffffffffffff821115610c77575f80fd5b602001915036819003821315610a91575f80fd5b818382375f9101908152919050565b8082018082111561032357634e487b7160e01b5f52601160045260245ffdfea264697066735822122069e79103825d1016fb4578429a4a570aad96d787141bf4e26eac3220ef243a4f64736f6c63430008140033

Deployed Bytecode Sourcemap

26702:1413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12986:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15196:190;;;;;;:::i;:::-;;:::i;:::-;;;1269:14:1;;1262:22;1244:41;;1232:2;1217:18;15196:190:0;1104:187:1;14059:99:0;14138:12;;14059:99;;;1442:25:1;;;1430:2;1415:18;14059:99:0;1296:177:1;15996:249:0;;;;;;:::i;:::-;;:::i;13939:84::-;;;14013:2;1953:36:1;;1941:2;1926:18;13939:84:0;1811:184:1;22875:89:0;;;;;;:::i;:::-;;:::i;:::-;;27788:324;;;;;;:::i;:::-;;:::i;14194:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14286:18:0;14259:7;14286:18;;;;;;;;;;;;14194:118;25806:103;;;:::i;23293:161::-;;;;;;:::i;:::-;;:::i;25131:87::-;25204:6;;25131:87;;-1:-1:-1;;;;;25204:6:0;;;3672:51:1;;3660:2;3645:18;25131:87:0;3526:203:1;13196:95:0;;;:::i;14517:182::-;;;;;;:::i;:::-;;:::i;27160:449::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;14735:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14842:18:0;;;14815:7;14842:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14735:142;26064:220;;;;;;:::i;:::-;;:::i;12986:91::-;13031:13;13064:5;13057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12986:91;:::o;15196:190::-;15269:4;4385:10;15325:31;4385:10;15341:7;15350:5;15325:8;:31::i;:::-;15374:4;15367:11;;;15196:190;;;;;:::o;15996:249::-;16083:4;4385:10;16141:37;16157:4;4385:10;16172:5;16141:15;:37::i;:::-;16189:26;16199:4;16205:2;16209:5;16189:9;:26::i;:::-;-1:-1:-1;16233:4:0;;15996:249;-1:-1:-1;;;;15996:249:0:o;22875:89::-;22930:26;4385:10;22950:5;22930;:26::i;:::-;22875:89;:::o;27788:324::-;25017:13;:11;:13::i;:::-;27914:24;;::::1;27906:52;;;::::0;-1:-1:-1;;;27906:52:0;;5845:2:1;27906:52:0::1;::::0;::::1;5827:21:1::0;5884:2;5864:18;;;5857:30;-1:-1:-1;;;5903:18:1;;;5896:45;5958:18;;27906:52:0::1;;;;;;;;;27976:9;27971:134;27991:14:::0;;::::1;27971:134;;;28024:37;28034:10;28046:3;;28050:1;28046:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;28054:3;;28058:1;28054:6;;;;;;;:::i;:::-;;;;;;;28024:9;:37::i;:::-;28088:3;;27971:134;;;;27788:324:::0;;;;:::o;25806:103::-;25017:13;:11;:13::i;:::-;25871:30:::1;25898:1;25871:18;:30::i;:::-;25806:103::o:0;23293:161::-;23369:45;23385:7;4385:10;23408:5;23369:15;:45::i;:::-;23425:21;23431:7;23440:5;23425;:21::i;:::-;23293:161;;:::o;13196:95::-;13243:13;13276:7;13269:14;;;;;:::i;14517:182::-;14586:4;4385:10;14642:27;4385:10;14659:2;14663:5;14642:9;:27::i;27160:449::-;27238:22;27300:4;27288:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27278:34;;27330:9;27325:277;27345:15;;;27325:277;;;27380:12;;27442:4;27461;;27466:1;27461:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;27434:35;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27379:90;;;;27494:7;27486:36;;;;-1:-1:-1;;;27486:36:0;;7255:2:1;27486:36:0;;;7237:21:1;7294:2;7274:18;;;7267:30;-1:-1:-1;;;7313:18:1;;;7306:46;7369:18;;27486:36:0;7053:340:1;27486:36:0;27550:6;27537:7;27545:1;27537:10;;;;;;;;:::i;:::-;;;;;;;;;;:19;-1:-1:-1;;27585:3:0;;27325:277;;;;27160:449;;;;:::o;26064:220::-;25017:13;:11;:13::i;:::-;-1:-1:-1;;;;;26149:22:0;::::1;26145:93;;26195:31;::::0;-1:-1:-1;;;26195:31:0;;26223:1:::1;26195:31;::::0;::::1;3672:51:1::0;3645:18;;26195:31:0::1;3526:203:1::0;26145:93:0::1;26248:28;26267:8;26248:18;:28::i;20055:130::-:0;20140:37;20149:5;20156:7;20165:5;20172:4;20140:8;:37::i;:::-;20055:130;;;:::o;21787:486::-;-1:-1:-1;;;;;14842:18:0;;;21887:24;14842:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21954:36:0;;21950:316;;;22030:5;22011:16;:24;22007:132;;;22063:60;;-1:-1:-1;;;22063:60:0;;-1:-1:-1;;;;;7618:32:1;;22063:60:0;;;7600:51:1;7667:18;;;7660:34;;;7710:18;;;7703:34;;;7573:18;;22063:60:0;7398:345:1;22007:132:0;22182:57;22191:5;22198:7;22226:5;22207:16;:24;22233:5;22182:8;:57::i;:::-;21876:397;21787:486;;;:::o;16630:308::-;-1:-1:-1;;;;;16714:18:0;;16710:88;;16756:30;;-1:-1:-1;;;16756:30:0;;16783:1;16756:30;;;3672:51:1;3645:18;;16756:30:0;3526:203:1;16710:88:0;-1:-1:-1;;;;;16812:16:0;;16808:88;;16852:32;;-1:-1:-1;;;16852:32:0;;16881:1;16852:32;;;3672:51:1;3645:18;;16852:32:0;3526:203:1;16808:88:0;16906:24;16914:4;16920:2;16924:5;16906:7;:24::i;19291:211::-;-1:-1:-1;;;;;19362:21:0;;19358:91;;19407:30;;-1:-1:-1;;;19407:30:0;;19434:1;19407:30;;;3672:51:1;3645:18;;19407:30:0;3526:203:1;19358:91:0;19459:35;19467:7;19484:1;19488:5;19459:7;:35::i;25296:166::-;25204:6;;-1:-1:-1;;;;;25204:6:0;4385:10;25356:23;25352:103;;25403:40;;-1:-1:-1;;;25403:40:0;;4385:10;25403:40;;;3672:51:1;3645:18;;25403:40:0;3526:203:1;26444:191:0;26537:6;;;-1:-1:-1;;;;;26554:17:0;;;-1:-1:-1;;;;;;26554:17:0;;;;;;;26587:40;;26537:6;;;26554:17;26537:6;;26587:40;;26518:16;;26587:40;26507:128;26444:191;:::o;21052:443::-;-1:-1:-1;;;;;21165:19:0;;21161:91;;21208:32;;-1:-1:-1;;;21208:32:0;;21237:1;21208:32;;;3672:51:1;3645:18;;21208:32:0;3526:203:1;21161:91:0;-1:-1:-1;;;;;21266:21:0;;21262:92;;21311:31;;-1:-1:-1;;;21311:31:0;;21339:1;21311:31;;;3672:51:1;3645:18;;21311:31:0;3526:203:1;21262:92:0;-1:-1:-1;;;;;21364:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21410:78;;;;21461:7;-1:-1:-1;;;;;21445:31:0;21454:5;-1:-1:-1;;;;;21445:31:0;;21470:5;21445:31;;;;1442:25:1;;1430:2;1415:18;;1296:177;21445:31:0;;;;;;;;21052:443;;;;:::o;17262:1135::-;-1:-1:-1;;;;;17352:18:0;;17348:552;;17506:5;17490:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17348:552:0;;-1:-1:-1;17348:552:0;;-1:-1:-1;;;;;17566:15:0;;17544:19;17566:15;;;;;;;;;;;17600:19;;;17596:117;;;17647:50;;-1:-1:-1;;;17647:50:0;;-1:-1:-1;;;;;7618:32:1;;17647:50:0;;;7600:51:1;7667:18;;;7660:34;;;7710:18;;;7703:34;;;7573:18;;17647:50:0;7398:345:1;17596:117:0;-1:-1:-1;;;;;17836:15:0;;:9;:15;;;;;;;;;;17854:19;;;;17836:37;;17348:552;-1:-1:-1;;;;;17916:16:0;;17912:435;;18082:12;:21;;;;;;;17912:435;;;-1:-1:-1;;;;;18298:13:0;;:9;:13;;;;;;;;;;:22;;;;;;17912:435;18379:2;-1:-1:-1;;;;;18364:25:0;18373:4;-1:-1:-1;;;;;18364:25:0;;18383:5;18364:25;;;;1442::1;;1430:2;1415:18;;1296:177;18364:25:0;;;;;;;;17262:1135;;;:::o;14:423:1:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;:::-;603:53;442:220;-1:-1:-1;;;442:220:1:o;667:173::-;735:20;;-1:-1:-1;;;;;784:31:1;;774:42;;764:70;;830:1;827;820:12;764:70;667:173;;;:::o;845:254::-;913:6;921;974:2;962:9;953:7;949:23;945:32;942:52;;;990:1;987;980:12;942:52;1013:29;1032:9;1013:29;:::i;:::-;1003:39;1089:2;1074:18;;;;1061:32;;-1:-1:-1;;;845:254:1:o;1478:328::-;1555:6;1563;1571;1624:2;1612:9;1603:7;1599:23;1595:32;1592:52;;;1640:1;1637;1630:12;1592:52;1663:29;1682:9;1663:29;:::i;:::-;1653:39;;1711:38;1745:2;1734:9;1730:18;1711:38;:::i;:::-;1701:48;;1796:2;1785:9;1781:18;1768:32;1758:42;;1478:328;;;;;:::o;2000:180::-;2059:6;2112:2;2100:9;2091:7;2087:23;2083:32;2080:52;;;2128:1;2125;2118:12;2080:52;-1:-1:-1;2151:23:1;;2000:180;-1:-1:-1;2000:180:1:o;2185:367::-;2248:8;2258:6;2312:3;2305:4;2297:6;2293:17;2289:27;2279:55;;2330:1;2327;2320:12;2279:55;-1:-1:-1;2353:20:1;;2396:18;2385:30;;2382:50;;;2428:1;2425;2418:12;2382:50;2465:4;2457:6;2453:17;2441:29;;2525:3;2518:4;2508:6;2505:1;2501:14;2493:6;2489:27;2485:38;2482:47;2479:67;;;2542:1;2539;2532:12;2479:67;2185:367;;;;;:::o;2557:773::-;2679:6;2687;2695;2703;2756:2;2744:9;2735:7;2731:23;2727:32;2724:52;;;2772:1;2769;2762:12;2724:52;2812:9;2799:23;2841:18;2882:2;2874:6;2871:14;2868:34;;;2898:1;2895;2888:12;2868:34;2937:70;2999:7;2990:6;2979:9;2975:22;2937:70;:::i;:::-;3026:8;;-1:-1:-1;2911:96:1;-1:-1:-1;3114:2:1;3099:18;;3086:32;;-1:-1:-1;3130:16:1;;;3127:36;;;3159:1;3156;3149:12;3127:36;;3198:72;3262:7;3251:8;3240:9;3236:24;3198:72;:::i;:::-;2557:773;;;;-1:-1:-1;3289:8:1;-1:-1:-1;;;;2557:773:1:o;3335:186::-;3394:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:52;;;3463:1;3460;3453:12;3415:52;3486:29;3505:9;3486:29;:::i;3734:448::-;3831:6;3839;3892:2;3880:9;3871:7;3867:23;3863:32;3860:52;;;3908:1;3905;3898:12;3860:52;3948:9;3935:23;3981:18;3973:6;3970:30;3967:50;;;4013:1;4010;4003:12;3967:50;4052:70;4114:7;4105:6;4094:9;4090:22;4052:70;:::i;:::-;4141:8;;4026:96;;-1:-1:-1;3734:448:1;-1:-1:-1;;;;3734:448:1:o;4187:801::-;4347:4;4376:2;4416;4405:9;4401:18;4446:2;4435:9;4428:21;4469:6;4504;4498:13;4535:6;4527;4520:22;4573:2;4562:9;4558:18;4551:25;;4635:2;4625:6;4622:1;4618:14;4607:9;4603:30;4599:39;4585:53;;4673:2;4665:6;4661:15;4694:1;4704:255;4718:6;4715:1;4712:13;4704:255;;;4811:2;4807:7;4795:9;4787:6;4783:22;4779:36;4774:3;4767:49;4839:40;4872:6;4863;4857:13;4839:40;:::i;:::-;4829:50;-1:-1:-1;4937:12:1;;;;4902:15;;;;4740:1;4733:9;4704:255;;;-1:-1:-1;4976:6:1;;4187:801;-1:-1:-1;;;;;;;4187:801:1:o;4993:260::-;5061:6;5069;5122:2;5110:9;5101:7;5097:23;5093:32;5090:52;;;5138:1;5135;5128:12;5090:52;5161:29;5180:9;5161:29;:::i;:::-;5151:39;;5209:38;5243:2;5232:9;5228:18;5209:38;:::i;:::-;5199:48;;4993:260;;;;;:::o;5258:380::-;5337:1;5333:12;;;;5380;;;5401:61;;5455:4;5447:6;5443:17;5433:27;;5401:61;5508:2;5500:6;5497:14;5477:18;5474:38;5471:161;;5554:10;5549:3;5545:20;5542:1;5535:31;5589:4;5586:1;5579:15;5617:4;5614:1;5607:15;5471:161;;5258:380;;;:::o;5987:127::-;6048:10;6043:3;6039:20;6036:1;6029:31;6079:4;6076:1;6069:15;6103:4;6100:1;6093:15;6119:127;6180:10;6175:3;6171:20;6168:1;6161:31;6211:4;6208:1;6201:15;6235:4;6232:1;6225:15;6251:521;6328:4;6334:6;6394:11;6381:25;6488:2;6484:7;6473:8;6457:14;6453:29;6449:43;6429:18;6425:68;6415:96;;6507:1;6504;6497:12;6415:96;6534:33;;6586:20;;;-1:-1:-1;6629:18:1;6618:30;;6615:50;;;6661:1;6658;6651:12;6615:50;6694:4;6682:17;;-1:-1:-1;6725:14:1;6721:27;;;6711:38;;6708:58;;;6762:1;6759;6752:12;6777:271;6960:6;6952;6947:3;6934:33;6916:3;6986:16;;7011:13;;;6986:16;6777:271;-1:-1:-1;6777:271:1:o;7748:222::-;7813:9;;;7834:10;;;7831:133;;;7886:10;7881:3;7877:20;7874:1;7867:31;7921:4;7918:1;7911:15;7949:4;7946:1;7939:15

Swarm Source

ipfs://69e79103825d1016fb4578429a4a570aad96d787141bf4e26eac3220ef243a4f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.