ETH Price: $3,337.40 (-0.18%)

Contract

0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c
 
Transaction Hash
Method
Block
From
To
Transfer214973422024-12-28 0:21:239 mins ago1735345283IN
VAIOT: VAI Token
0 ETH0.0027795253.85850034
Transfer214971742024-12-27 23:47:3543 mins ago1735343255IN
VAIOT: VAI Token
0 ETH0.000192253.72361623
Approve214970822024-12-27 23:28:591 hr ago1735342139IN
VAIOT: VAI Token
0 ETH0.000181723.92546316
Transfer214970652024-12-27 23:25:351 hr ago1735341935IN
VAIOT: VAI Token
0 ETH0.000123094.14010974
Transfer214969552024-12-27 23:03:111 hr ago1735340591IN
VAIOT: VAI Token
0 ETH0.000195973.79567969
Approve214967242024-12-27 22:16:352 hrs ago1735337795IN
VAIOT: VAI Token
0 ETH0.000206634.45543961
Approve214967112024-12-27 22:13:592 hrs ago1735337639IN
VAIOT: VAI Token
0 ETH0.000251535.39970839
Transfer214965492024-12-27 21:41:352 hrs ago1735335695IN
VAIOT: VAI Token
0 ETH0.000121474.08716635
Transfer214965422024-12-27 21:40:112 hrs ago1735335611IN
VAIOT: VAI Token
0 ETH0.00019125.53908373
Transfer214965422024-12-27 21:40:112 hrs ago1735335611IN
VAIOT: VAI Token
0 ETH0.00019125.53908373
Transfer214965192024-12-27 21:35:352 hrs ago1735335335IN
VAIOT: VAI Token
0 ETH0.000170225.72773639
Transfer214964632024-12-27 21:24:113 hrs ago1735334651IN
VAIOT: VAI Token
0 ETH0.0003300411.10500239
Transfer214964412024-12-27 21:19:473 hrs ago1735334387IN
VAIOT: VAI Token
0 ETH0.000171295.76596088
Transfer214964322024-12-27 21:17:593 hrs ago1735334279IN
VAIOT: VAI Token
0 ETH0.00028626.1144524
Transfer214963712024-12-27 21:05:353 hrs ago1735333535IN
VAIOT: VAI Token
0 ETH0.00034137.28975144
Approve214963362024-12-27 20:58:353 hrs ago1735333115IN
VAIOT: VAI Token
0 ETH0.000301266.46732875
Approve214956952024-12-27 18:49:595 hrs ago1735325399IN
VAIOT: VAI Token
0 ETH0.000287616.21274092
Transfer214956682024-12-27 18:44:355 hrs ago1735325075IN
VAIOT: VAI Token
0 ETH0.00018216.12496015
Approve214956282024-12-27 18:36:355 hrs ago1735324595IN
VAIOT: VAI Token
0 ETH0.000418929.05128821
Approve214954662024-12-27 18:03:476 hrs ago1735322627IN
VAIOT: VAI Token
0 ETH0.0005057710.85753256
Approve214954342024-12-27 17:57:236 hrs ago1735322243IN
VAIOT: VAI Token
0 ETH0.000453979.73292466
Transfer214953932024-12-27 17:49:116 hrs ago1735321751IN
VAIOT: VAI Token
0 ETH0.000500119.68616296
Approve214952902024-12-27 17:28:357 hrs ago1735320515IN
VAIOT: VAI Token
0 ETH0.0004832510.4223024
Transfer214951802024-12-27 17:06:357 hrs ago1735319195IN
VAIOT: VAI Token
0 ETH0.000227977.67073601
Increase Allowan...214951062024-12-27 16:51:357 hrs ago1735318295IN
VAIOT: VAI Token
0 ETH0.000450359.6119669
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
177924982023-07-28 15:39:11518 days ago1690558751
VAIOT: VAI Token
0.007693 ETH
162486362022-12-23 16:32:11735 days ago1671813131
VAIOT: VAI Token
0.01968804 ETH
162364442022-12-21 23:46:11737 days ago1671666371
VAIOT: VAI Token
0.1213484 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VAIToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-16
*/

// Sources flattened with hardhat v2.9.0 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts-upgradeable/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}


// File contracts/common/EIP712Base.sol


pragma solidity 0.8.9;

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}


// File contracts/common/NativeMetaTransaction.sol


pragma solidity 0.8.9;


contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            msg.sender,
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


// File contracts/common/ContextMixin.sol


pragma solidity 0.8.9;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = msg.sender;
        }
        return sender;
    }
}


// File contracts/ethereum/VAIToken.sol


pragma solidity 0.8.9;



contract VAIToken is
    ERC20,
    NativeMetaTransaction,
    ContextMixin
{
    constructor(string memory name_, string memory symbol_)
        ERC20(name_, symbol_)
    {
        _initializeEIP712(name_);
        super._mint(_msgSender(), 400_000_000 * 10 ** decimals());
    }

    function _msgSender()
        internal
        override
        view
        returns (address)
    {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001d7538038062001d75833981016040819052620000349162000533565b8151829082906200004d906003906020850190620003c0565b50805162000063906004906020840190620003c0565b5050506200007782620000bc60201b60201c565b620000b46200008562000191565b620000936012600a620006b2565b620000a3906317d78400620006ca565b620001ad60201b620008511760201c565b505062000744565b600554610100900460ff16620000d95760055460ff1615620000e3565b620000e362000292565b6200014c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600554610100900460ff161580156200016f576005805461ffff19166101011790555b6200017a82620002b0565b80156200018d576005805461ff00191690555b5050565b6000620001a86200035260201b620009711760201c565b905090565b6001600160a01b038216620002055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000143565b8060026000828254620002199190620006ec565b90915550506001600160a01b0382166000908152602081905260408120805483929062000248908490620006ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000620002aa30620003b160201b620009db1760201c565b15905090565b6040518060800160405280604f815260200162001d26604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600655565b600033301415620003ab57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620003ae9050565b50335b90565b6001600160a01b03163b151590565b828054620003ce9062000707565b90600052602060002090601f016020900481019282620003f257600085556200043d565b82601f106200040d57805160ff19168380011785556200043d565b828001600101855582156200043d579182015b828111156200043d57825182559160200191906001019062000420565b506200044b9291506200044f565b5090565b5b808211156200044b576000815560010162000450565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200048e57600080fd5b81516001600160401b0380821115620004ab57620004ab62000466565b604051601f8301601f19908116603f01168101908282118183101715620004d657620004d662000466565b81604052838152602092508683858801011115620004f357600080fd5b600091505b83821015620005175785820183015181830184015290820190620004f8565b83821115620005295760008385830101525b9695505050505050565b600080604083850312156200054757600080fd5b82516001600160401b03808211156200055f57600080fd5b6200056d868387016200047c565b935060208501519150808211156200058457600080fd5b5062000593858286016200047c565b9150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005f4578160001904821115620005d857620005d86200059d565b80851615620005e657918102915b93841c9390800290620005b8565b509250929050565b6000826200060d57506001620006ac565b816200061c57506000620006ac565b8160018114620006355760028114620006405762000660565b6001915050620006ac565b60ff8411156200065457620006546200059d565b50506001821b620006ac565b5060208310610133831016604e8410600b841016171562000685575081810a620006ac565b620006918383620005b3565b8060001904821115620006a857620006a86200059d565b0290505b92915050565b6000620006c360ff841683620005fc565b9392505050565b6000816000190483118215151615620006e757620006e76200059d565b500290565b600082198211156200070257620007026200059d565b500190565b600181811c908216806200071c57607f821691505b602082108114156200073e57634e487b7160e01b600052602260045260246000fd5b50919050565b6115d280620007546000396000f3fe6080604052600436106100f35760003560e01c8063313ce5671161008a57806395d89b411161005957806395d89b41146102d8578063a457c2d7146102ed578063a9059cbb1461030d578063dd62ed3e1461032d57600080fd5b8063313ce567146102465780633408e47014610262578063395093511461027557806370a082311461029557600080fd5b806318160ddd116100c657806318160ddd146101af57806320379ee5146101ce57806323b872dd146101e35780632d0335ab1461020357600080fd5b806306fdde03146100f8578063095ea7b3146101235780630c53c51c146101535780630f7e597014610166575b600080fd5b34801561010457600080fd5b5061010d610380565b60405161011a91906111ea565b60405180910390f35b34801561012f57600080fd5b5061014361013e366004611226565b610412565b604051901515815260200161011a565b61010d610161366004611290565b610434565b34801561017257600080fd5b5061010d6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b3480156101bb57600080fd5b506002545b60405190815260200161011a565b3480156101da57600080fd5b506006546101c0565b3480156101ef57600080fd5b506101436101fe366004611394565b6106c5565b34801561020f57600080fd5b506101c061021e3660046113d0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b34801561025257600080fd5b506040516012815260200161011a565b34801561026e57600080fd5b50466101c0565b34801561028157600080fd5b50610143610290366004611226565b6106f3565b3480156102a157600080fd5b506101c06102b03660046113d0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156102e457600080fd5b5061010d61074c565b3480156102f957600080fd5b50610143610308366004611226565b61075b565b34801561031957600080fd5b50610143610328366004611226565b610839565b34801561033957600080fd5b506101c06103483660046113eb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461038f9061141e565b80601f01602080910402602001604051908101604052809291908181526020018280546103bb9061141e565b80156104085780601f106103dd57610100808354040283529160200191610408565b820191906000526020600020905b8154815290600101906020018083116103eb57829003601f168201915b5050505050905090565b60008061041d6109f7565b905061042a818585610a06565b5060019392505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600760209081529085902054845283015291810186905261047f8782878787610bb9565b610510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8716600090815260076020526040902054610541906001610d02565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061059e90899033908a90611472565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a6040516020016105d39291906114b4565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261060b916114fe565b6000604051808303816000865af19150503d8060008114610648576040519150601f19603f3d011682016040523d82523d6000602084013e61064d565b606091505b5091509150816106b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610507565b98975050505050505050565b6000806106d06109f7565b90506106dd858285610d15565b6106e8858585610dec565b506001949350505050565b6000806106fe6109f7565b73ffffffffffffffffffffffffffffffffffffffff80821660009081526001602090815260408083209389168352929052205490915061042a908290869061074790879061151a565b610a06565b60606004805461038f9061141e565b6000806107666109f7565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600160209081526040808320938916835292905220549091508381101561082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610507565b6106e88286868403610a06565b6000806108446109f7565b905061042a818585610dec565b73ffffffffffffffffffffffffffffffffffffffff82166108ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610507565b80600260008282546108e0919061151a565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260408120805483929061091a90849061151a565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000333014156109d557600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506109d89050565b50335b90565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6000610a01610971565b905090565b73ffffffffffffffffffffffffffffffffffffffff8316610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff8216610b4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff8616610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610507565b6001610c71610c6c8761109f565b611129565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015610cbf573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000610d0e828461151a565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de65781811015610dd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610507565b610de68484848403610a06565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff8216610f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061102c90849061151a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109291815260200190565b60405180910390a3610de6565b600060405180608001604052806043815260200161155a604391398051602091820120835184830151604080870151805190860120905161110c9501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061113460065490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161110c565b60005b8381101561118f578181015183820152602001611177565b83811115610de65750506000910152565b600081518084526111b8816020860160208601611174565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610d0e60208301846111a0565b803573ffffffffffffffffffffffffffffffffffffffff8116811461122157600080fd5b919050565b6000806040838503121561123957600080fd5b611242836111fd565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b803560ff8116811461122157600080fd5b600080600080600060a086880312156112a857600080fd5b6112b1866111fd565b9450602086013567ffffffffffffffff808211156112ce57600080fd5b818801915088601f8301126112e257600080fd5b8135818111156112f4576112f4611250565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561133a5761133a611250565b816040528281528b602084870101111561135357600080fd5b82602086016020830137600060208483010152809850505050505060408601359250606086013591506113886080870161127f565b90509295509295909350565b6000806000606084860312156113a957600080fd5b6113b2846111fd565b92506113c0602085016111fd565b9150604084013590509250925092565b6000602082840312156113e257600080fd5b610d0e826111fd565b600080604083850312156113fe57600080fd5b611407836111fd565b9150611415602084016111fd565b90509250929050565b600181811c9082168061143257607f821691505b6020821081141561146c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600073ffffffffffffffffffffffffffffffffffffffff8086168352808516602084015250606060408301526114ab60608301846111a0565b95945050505050565b600083516114c6818460208801611174565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251611510818460208701611174565b9190910192915050565b60008219821115611554577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122069689f46d5b2aa846e3f6e30945c9550252dbbbf0572678b78cdd17606c49b1564736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b5641494f5420546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035641490000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100f35760003560e01c8063313ce5671161008a57806395d89b411161005957806395d89b41146102d8578063a457c2d7146102ed578063a9059cbb1461030d578063dd62ed3e1461032d57600080fd5b8063313ce567146102465780633408e47014610262578063395093511461027557806370a082311461029557600080fd5b806318160ddd116100c657806318160ddd146101af57806320379ee5146101ce57806323b872dd146101e35780632d0335ab1461020357600080fd5b806306fdde03146100f8578063095ea7b3146101235780630c53c51c146101535780630f7e597014610166575b600080fd5b34801561010457600080fd5b5061010d610380565b60405161011a91906111ea565b60405180910390f35b34801561012f57600080fd5b5061014361013e366004611226565b610412565b604051901515815260200161011a565b61010d610161366004611290565b610434565b34801561017257600080fd5b5061010d6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b3480156101bb57600080fd5b506002545b60405190815260200161011a565b3480156101da57600080fd5b506006546101c0565b3480156101ef57600080fd5b506101436101fe366004611394565b6106c5565b34801561020f57600080fd5b506101c061021e3660046113d0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b34801561025257600080fd5b506040516012815260200161011a565b34801561026e57600080fd5b50466101c0565b34801561028157600080fd5b50610143610290366004611226565b6106f3565b3480156102a157600080fd5b506101c06102b03660046113d0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156102e457600080fd5b5061010d61074c565b3480156102f957600080fd5b50610143610308366004611226565b61075b565b34801561031957600080fd5b50610143610328366004611226565b610839565b34801561033957600080fd5b506101c06103483660046113eb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461038f9061141e565b80601f01602080910402602001604051908101604052809291908181526020018280546103bb9061141e565b80156104085780601f106103dd57610100808354040283529160200191610408565b820191906000526020600020905b8154815290600101906020018083116103eb57829003601f168201915b5050505050905090565b60008061041d6109f7565b905061042a818585610a06565b5060019392505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600760209081529085902054845283015291810186905261047f8782878787610bb9565b610510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8716600090815260076020526040902054610541906001610d02565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600760205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061059e90899033908a90611472565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a6040516020016105d39291906114b4565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261060b916114fe565b6000604051808303816000865af19150503d8060008114610648576040519150601f19603f3d011682016040523d82523d6000602084013e61064d565b606091505b5091509150816106b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610507565b98975050505050505050565b6000806106d06109f7565b90506106dd858285610d15565b6106e8858585610dec565b506001949350505050565b6000806106fe6109f7565b73ffffffffffffffffffffffffffffffffffffffff80821660009081526001602090815260408083209389168352929052205490915061042a908290869061074790879061151a565b610a06565b60606004805461038f9061141e565b6000806107666109f7565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600160209081526040808320938916835292905220549091508381101561082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610507565b6106e88286868403610a06565b6000806108446109f7565b905061042a818585610dec565b73ffffffffffffffffffffffffffffffffffffffff82166108ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610507565b80600260008282546108e0919061151a565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260408120805483929061091a90849061151a565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000333014156109d557600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506109d89050565b50335b90565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6000610a01610971565b905090565b73ffffffffffffffffffffffffffffffffffffffff8316610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff8216610b4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff8616610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610507565b6001610c71610c6c8761109f565b611129565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015610cbf573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000610d0e828461151a565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de65781811015610dd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610507565b610de68484848403610a06565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff8216610f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610507565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061102c90849061151a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109291815260200190565b60405180910390a3610de6565b600060405180608001604052806043815260200161155a604391398051602091820120835184830151604080870151805190860120905161110c9501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061113460065490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161110c565b60005b8381101561118f578181015183820152602001611177565b83811115610de65750506000910152565b600081518084526111b8816020860160208601611174565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610d0e60208301846111a0565b803573ffffffffffffffffffffffffffffffffffffffff8116811461122157600080fd5b919050565b6000806040838503121561123957600080fd5b611242836111fd565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b803560ff8116811461122157600080fd5b600080600080600060a086880312156112a857600080fd5b6112b1866111fd565b9450602086013567ffffffffffffffff808211156112ce57600080fd5b818801915088601f8301126112e257600080fd5b8135818111156112f4576112f4611250565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561133a5761133a611250565b816040528281528b602084870101111561135357600080fd5b82602086016020830137600060208483010152809850505050505060408601359250606086013591506113886080870161127f565b90509295509295909350565b6000806000606084860312156113a957600080fd5b6113b2846111fd565b92506113c0602085016111fd565b9150604084013590509250925092565b6000602082840312156113e257600080fd5b610d0e826111fd565b600080604083850312156113fe57600080fd5b611407836111fd565b9150611415602084016111fd565b90509250929050565b600181811c9082168061143257607f821691505b6020821081141561146c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600073ffffffffffffffffffffffffffffffffffffffff8086168352808516602084015250606060408301526114ab60608301846111a0565b95945050505050565b600083516114c6818460208801611174565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251611510818460208701611174565b9190910192915050565b60008219821115611554577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50019056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122069689f46d5b2aa846e3f6e30945c9550252dbbbf0572678b78cdd17606c49b1564736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b5641494f5420546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035641490000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): VAIOT Token
Arg [1] : symbol_ (string): VAI

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 5641494f5420546f6b656e000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5641490000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41503:455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9125:201;;;;;;;;;;-1:-1:-1;9125:201:0;;;;;:::i;:::-;;:::i;:::-;;;1449:14:1;;1442:22;1424:41;;1412:2;1397:18;9125:201:0;1284:187:1;38497:1142:0;;;;;;:::i;:::-;;:::i;35683:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7894:108;;;;;;;;;;-1:-1:-1;7982:12:0;;7894:108;;;3462:25:1;;;3450:2;3435:18;7894:108:0;3316:177:1;36693:101:0;;;;;;;;;;-1:-1:-1;36771:15:0;;36693:101;;9906:295;;;;;;;;;;-1:-1:-1;9906:295:0;;;;;:::i;:::-;;:::i;40065:107::-;;;;;;;;;;-1:-1:-1;40065:107:0;;;;;:::i;:::-;40152:12;;40118:13;40152:12;;;:6;:12;;;;;;;40065:107;7736:93;;;;;;;;;;-1:-1:-1;7736:93:0;;7819:2;4346:36:1;;4334:2;4319:18;7736:93:0;4204:184:1;36802:161:0;;;;;;;;;;-1:-1:-1;36916:9:0;36802:161;;10610:240;;;;;;;;;;-1:-1:-1;10610:240:0;;;;;:::i;:::-;;:::i;8065:127::-;;;;;;;;;;-1:-1:-1;8065:127:0;;;;;:::i;:::-;8166:18;;8139:7;8166:18;;;;;;;;;;;;8065:127;6993:104;;;;;;;;;;;;;:::i;11353:438::-;;;;;;;;;;-1:-1:-1;11353:438:0;;;;;:::i;:::-;;:::i;8398:193::-;;;;;;;;;;-1:-1:-1;8398:193:0;;;;;:::i;:::-;;:::i;8654:151::-;;;;;;;;;;-1:-1:-1;8654:151:0;;;;;:::i;:::-;8770:18;;;;8743:7;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8654:151;6774:100;6828:13;6861:5;6854:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774:100;:::o;9125:201::-;9208:4;9225:13;9241:12;:10;:12::i;:::-;9225:28;;9264:32;9273:5;9280:7;9289:6;9264:8;:32::i;:::-;-1:-1:-1;9314:4:0;;9125:201;-1:-1:-1;;;9125:201:0:o;38497:1142::-;38755:152;;;38698:12;38755:152;;;;;38793:19;;;38723:29;38793:19;;;:6;:19;;;;;;;;;38755:152;;;;;;;;;;;38942:45;38800:11;38755:152;38970:4;38976;38982;38942:6;:45::i;:::-;38920:128;;;;;;;5302:2:1;38920:128:0;;;5284:21:1;5341:2;5321:18;;;5314:30;5380:34;5360:18;;;5353:62;5451:3;5431:18;;;5424:31;5472:19;;38920:128:0;;;;;;;;;39137:19;;;;;;;:6;:19;;;;;;:26;;39161:1;39137:23;:26::i;:::-;39115:19;;;;;;;:6;:19;;;;;;;:48;;;;39181:117;;;;;39122:11;;39245:10;;39270:17;;39181:117;:::i;:::-;;;;;;;;39409:12;39423:23;39458:4;39450:18;;39500:17;39519:11;39483:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;39450:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39408:134;;;;39561:7;39553:48;;;;;;;6882:2:1;39553:48:0;;;6864:21:1;6921:2;6901:18;;;6894:30;6960;6940:18;;;6933:58;7008:18;;39553:48:0;6680:352:1;39553:48:0;39621:10;38497:1142;-1:-1:-1;;;;;;;;38497:1142:0:o;9906:295::-;10037:4;10054:15;10072:12;:10;:12::i;:::-;10054:30;;10095:38;10111:4;10117:7;10126:6;10095:15;:38::i;:::-;10144:27;10154:4;10160:2;10164:6;10144:9;:27::i;:::-;-1:-1:-1;10189:4:0;;9906:295;-1:-1:-1;;;;9906:295:0:o;10610:240::-;10698:4;10715:13;10731:12;:10;:12::i;:::-;10779:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;10715:28;;-1:-1:-1;10754:66:0;;10715:28;;10770:7;;10779:40;;10809:10;;10779:40;:::i;:::-;10754:8;:66::i;6993:104::-;7049:13;7082:7;7075:14;;;;;:::i;11353:438::-;11446:4;11463:13;11479:12;:10;:12::i;:::-;11529:18;;;;11502:24;11529:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;11463:28;;-1:-1:-1;11575:35:0;;;;11567:85;;;;;;;7526:2:1;11567:85:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:34;7584:18;;;7577:62;7675:7;7655:18;;;7648:35;7700:19;;11567:85:0;7324:401:1;11567:85:0;11688:60;11697:5;11704:7;11732:15;11713:16;:34;11688:8;:60::i;8398:193::-;8477:4;8494:13;8510:12;:10;:12::i;:::-;8494:28;;8533;8543:5;8550:2;8554:6;8533:9;:28::i;13228:399::-;13312:21;;;13304:65;;;;;;;7932:2:1;13304:65:0;;;7914:21:1;7971:2;7951:18;;;7944:30;8010:33;7990:18;;;7983:61;8061:18;;13304:65:0;7730:355:1;13304:65:0;13460:6;13444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13477:18:0;;;:9;:18;;;;;;;;;;:28;;13499:6;;13477:9;:28;;13499:6;;13477:28;:::i;:::-;;;;-1:-1:-1;;13521:37:0;;3462:25:1;;;13521:37:0;;;;13538:1;;13521:37;;3450:2:1;3435:18;13521:37:0;;;;;;;13228:399;;:::o;40786:633::-;40857:14;40893:10;40915:4;40893:27;40889:499;;;40937:18;40958:8;;40937:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;40997:8:0;41208:17;41202:24;41249:42;41176:134;;-1:-1:-1;40889:499:0;;-1:-1:-1;40889:499:0;;-1:-1:-1;41366:10:0;40889:499;40786:633;:::o;25879:326::-;26174:19;;;:23;;;25879:326::o;41801:154::-;41891:7;41923:24;:22;:24::i;:::-;41916:31;;41801:154;:::o;14989:380::-;15125:19;;;15117:68;;;;;;;8292:2:1;15117:68:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;8441:6;8421:18;;;8414:34;8465:19;;15117:68:0;8090:400:1;15117:68:0;15204:21;;;15196:68;;;;;;;8697:2:1;15196:68:0;;;8679:21:1;8736:2;8716:18;;;8709:30;8775:34;8755:18;;;8748:62;8846:4;8826:18;;;8819:32;8868:19;;15196:68:0;8495:398:1;15196:68:0;15277:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15329:32;;3462:25:1;;;15329:32:0;;3435:18:1;15329:32:0;;;;;;;14989:380;;;:::o;40180:486::-;40358:4;40383:20;;;40375:70;;;;;;;9100:2:1;40375:70:0;;;9082:21:1;9139:2;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;9249:7;9229:18;;;9222:35;9274:19;;40375:70:0;8898:401:1;40375:70:0;40499:159;40527:47;40546:27;40566:6;40546:19;:27::i;:::-;40527:18;:47::i;:::-;40499:159;;;;;;;;;;;;9531:25:1;;;;9604:4;9592:17;;9572:18;;;9565:45;9626:18;;;9619:34;;;9669:18;;;9662:34;;;9503:19;;40499:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40476:182;;:6;:182;;;40456:202;;40180:486;;;;;;;:::o;20439:98::-;20497:7;20524:5;20528:1;20524;:5;:::i;:::-;20517:12;20439:98;-1:-1:-1;;;20439:98:0:o;15656:453::-;8770:18;;;;15791:24;8770:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15878:17;15858:37;;15854:248;;15940:6;15920:16;:26;;15912:68;;;;;;;9909:2:1;15912:68:0;;;9891:21:1;9948:2;9928:18;;;9921:30;9987:31;9967:18;;;9960:59;10036:18;;15912:68:0;9707:353:1;15912:68:0;16024:51;16033:5;16040:7;16068:6;16049:16;:25;16024:8;:51::i;:::-;15780:329;15656:453;;;:::o;12270:671::-;12401:18;;;12393:68;;;;;;;10267:2:1;12393:68:0;;;10249:21:1;10306:2;10286:18;;;10279:30;10345:34;10325:18;;;10318:62;10416:7;10396:18;;;10389:35;10441:19;;12393:68:0;10065:401:1;12393:68:0;12480:16;;;12472:64;;;;;;;10673:2:1;12472:64:0;;;10655:21:1;10712:2;10692:18;;;10685:30;10751:34;10731:18;;;10724:62;10822:5;10802:18;;;10795:33;10845:19;;12472:64:0;10471:399:1;12472:64:0;12622:15;;;12600:19;12622:15;;;;;;;;;;;12656:21;;;;12648:72;;;;;;;11077:2:1;12648:72:0;;;11059:21:1;11116:2;11096:18;;;11089:30;11155:34;11135:18;;;11128:62;11226:8;11206:18;;;11199:36;11252:19;;12648:72:0;10875:402:1;12648:72:0;12756:15;;;;:9;:15;;;;;;;;;;;12774:20;;;12756:38;;12816:13;;;;;;;;:23;;12788:6;;12756:9;12816:23;;12788:6;;12816:23;:::i;:::-;;;;;;;;12872:2;12857:26;;12866:4;12857:26;;;12876:6;12857:26;;;;3462:25:1;;3450:2;3435:18;;3316:177;12857:26:0;;;;;;;;12896:37;16709:125;39647:410;39757:7;37841:100;;;;;;;;;;;;;;;;;37821:127;;;;;;;39911:12;;39946:11;;;;39990:24;;;;;39980:35;;;;;;39830:204;;;;;11513:25:1;;;11569:2;11554:18;;11547:34;;;;11629:42;11617:55;11612:2;11597:18;;11590:83;11704:2;11689:18;;11682:34;11500:3;11485:19;;11282:440;39830:204:0;;;;;;;;;;;;;39802:247;;;;;;39782:267;;39647:410;;;:::o;37332:258::-;37431:7;37533:20;36771:15;;;36693:101;37533:20;37504:63;;11997:66:1;37504:63:0;;;11985:79:1;12080:11;;;12073:27;;;;12116:12;;;12109:28;;;12153:12;;37504:63:0;11727:444:1;14:258;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:317::-;319:3;357:5;351:12;384:6;379:3;372:19;400:63;456:6;449:4;444:3;440:14;433:4;426:5;422:16;400:63;:::i;:::-;508:2;496:15;513:66;492:88;483:98;;;;583:4;479:109;;277:317;-1:-1:-1;;277:317:1:o;599:220::-;748:2;737:9;730:21;711:4;768:45;809:2;798:9;794:18;786:6;768:45;:::i;824:196::-;892:20;;952:42;941:54;;931:65;;921:93;;1010:1;1007;1000:12;921:93;824:196;;;:::o;1025:254::-;1093:6;1101;1154:2;1142:9;1133:7;1129:23;1125:32;1122:52;;;1170:1;1167;1160:12;1122:52;1193:29;1212:9;1193:29;:::i;:::-;1183:39;1269:2;1254:18;;;;1241:32;;-1:-1:-1;;;1025:254:1:o;1476:184::-;1528:77;1525:1;1518:88;1625:4;1622:1;1615:15;1649:4;1646:1;1639:15;1665:156;1731:20;;1791:4;1780:16;;1770:27;;1760:55;;1811:1;1808;1801:12;1826:1262;1928:6;1936;1944;1952;1960;2013:3;2001:9;1992:7;1988:23;1984:33;1981:53;;;2030:1;2027;2020:12;1981:53;2053:29;2072:9;2053:29;:::i;:::-;2043:39;;2133:2;2122:9;2118:18;2105:32;2156:18;2197:2;2189:6;2186:14;2183:34;;;2213:1;2210;2203:12;2183:34;2251:6;2240:9;2236:22;2226:32;;2296:7;2289:4;2285:2;2281:13;2277:27;2267:55;;2318:1;2315;2308:12;2267:55;2354:2;2341:16;2376:2;2372;2369:10;2366:36;;;2382:18;;:::i;:::-;2516:2;2510:9;2578:4;2570:13;;2421:66;2566:22;;;2590:2;2562:31;2558:40;2546:53;;;2614:18;;;2634:22;;;2611:46;2608:72;;;2660:18;;:::i;:::-;2700:10;2696:2;2689:22;2735:2;2727:6;2720:18;2775:7;2770:2;2765;2761;2757:11;2753:20;2750:33;2747:53;;;2796:1;2793;2786:12;2747:53;2852:2;2847;2843;2839:11;2834:2;2826:6;2822:15;2809:46;2897:1;2892:2;2887;2879:6;2875:15;2871:24;2864:35;2918:6;2908:16;;;;;;;2971:2;2960:9;2956:18;2943:32;2933:42;;3022:2;3011:9;3007:18;2994:32;2984:42;;3045:37;3077:3;3066:9;3062:19;3045:37;:::i;:::-;3035:47;;1826:1262;;;;;;;;:::o;3680:328::-;3757:6;3765;3773;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;3865:29;3884:9;3865:29;:::i;:::-;3855:39;;3913:38;3947:2;3936:9;3932:18;3913:38;:::i;:::-;3903:48;;3998:2;3987:9;3983:18;3970:32;3960:42;;3680:328;;;;;:::o;4013:186::-;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:52;;;4141:1;4138;4131:12;4093:52;4164:29;4183:9;4164:29;:::i;4393:260::-;4461:6;4469;4522:2;4510:9;4501:7;4497:23;4493:32;4490:52;;;4538:1;4535;4528:12;4490:52;4561:29;4580:9;4561:29;:::i;:::-;4551:39;;4609:38;4643:2;4632:9;4628:18;4609:38;:::i;:::-;4599:48;;4393:260;;;;;:::o;4658:437::-;4737:1;4733:12;;;;4780;;;4801:61;;4855:4;4847:6;4843:17;4833:27;;4801:61;4908:2;4900:6;4897:14;4877:18;4874:38;4871:218;;;4945:77;4942:1;4935:88;5046:4;5043:1;5036:15;5074:4;5071:1;5064:15;4871:218;;4658:437;;;:::o;5502:439::-;5668:4;5697:42;5778:2;5770:6;5766:15;5755:9;5748:34;5830:2;5822:6;5818:15;5813:2;5802:9;5798:18;5791:43;;5870:2;5865;5854:9;5850:18;5843:30;5890:45;5931:2;5920:9;5916:18;5908:6;5890:45;:::i;:::-;5882:53;5502:439;-1:-1:-1;;;;;5502:439:1:o;5946:450::-;6103:3;6141:6;6135:13;6157:53;6203:6;6198:3;6191:4;6183:6;6179:17;6157:53;:::i;:::-;6279:2;6275:15;;;;6292:66;6271:88;6232:16;;;;6257:103;;;6387:2;6376:14;;5946:450;-1:-1:-1;;5946:450:1:o;6401:274::-;6530:3;6568:6;6562:13;6584:53;6630:6;6625:3;6618:4;6610:6;6606:17;6584:53;:::i;:::-;6653:16;;;;;6401:274;-1:-1:-1;;6401:274:1:o;7037:282::-;7077:3;7108:1;7104:6;7101:1;7098:13;7095:193;;;7144:77;7141:1;7134:88;7245:4;7242:1;7235:15;7273:4;7270:1;7263:15;7095:193;-1:-1:-1;7304:9:1;;7037:282::o

Swarm Source

ipfs://69689f46d5b2aa846e3f6e30945c9550252dbbbf0572678b78cdd17606c49b15

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

VAIOT offers a portfolio of blockchain-based AI assistants for businesses and consumers to provide automated services and transactions

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.