ETH Price: $3,116.52 (+0.61%)
Gas: 5 Gwei

Token

Vehicle Mining System (VMS)
 

Overview

Max Total Supply

3,998,000,000 VMS

Holders

17,372

Market

Price

$0.00 @ 0.000000 ETH (-0.57%)

Onchain Market Cap

$4,182,405.13

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
197,300 VMS

Value
$206.40 ( ~0.066227812881888 Eth) [0.0049%]
0xfc95841138f6a9c2d0bf43cca90744605f2f9054
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VMS Coin stands for Vehicle Mining System and is a system that mines by installing a mining computer on all vehicles with engines.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 VMS
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Create_Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-20
*/

// SPDX-License-Identifier: MIT

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


pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @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 Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

        (bool success, bytes memory returndata) = target.delegatecall(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);
            }
        }
    }
}


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


pragma solidity ^0.8.0;

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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 {
    using SafeMath for uint256;
    using Address for address;

    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, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            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 {}
}

pragma solidity ^0.8.0;

contract ERC20Base is Context, ERC20, Ownable {
    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_){}

    function mint(address account, uint256 amount) internal virtual onlyOwner {
        _mint(account, amount);
    }

    function burn(uint256 amount) public virtual onlyOwner {
        _burn(_msgSender(), amount*(10**uint256(decimals())));
    }
}

contract Create_Token is ERC20Base {
    constructor() ERC20Base("Vehicle Mining System", "VMS") {
        mint(msg.sender, 40*(10**8)*(10**uint256(decimals())));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601581526020017f56656869636c65204d696e696e672053797374656d00000000000000000000008152506040518060400160405280600381526020017f564d530000000000000000000000000000000000000000000000000000000000815250818181600390805190602001906200009892919062000448565b508060049080519060200190620000b192919062000448565b505050620000d4620000c86200011f60201b60201c565b6200012760201b60201c565b50506200011933620000eb620001ed60201b60201c565b60ff16600a620000fc919062000681565b63ee6b28006200010d9190620007be565b620001f660201b60201c565b6200091c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b620002066200011f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022c6200029b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027c9062000557565b60405180910390fd5b620002978282620002c560201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032f9062000579565b60405180910390fd5b6200034c600083836200043e60201b60201c565b8060026000828254620003609190620005c9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003b79190620005c9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200041e91906200059b565b60405180910390a36200043a600083836200044360201b60201c565b5050565b505050565b505050565b828054620004569062000829565b90600052602060002090601f0160209004810192826200047a5760008555620004c6565b82601f106200049557805160ff1916838001178555620004c6565b82800160010185558215620004c6579182015b82811115620004c5578251825591602001919060010190620004a8565b5b509050620004d59190620004d9565b5090565b5b80821115620004f4576000816000905550600101620004da565b5090565b600062000507602083620005b8565b91506200051482620008ca565b602082019050919050565b60006200052e601f83620005b8565b91506200053b82620008f3565b602082019050919050565b62000551816200081f565b82525050565b600060208201905081810360008301526200057281620004f8565b9050919050565b6000602082019050818103600083015262000594816200051f565b9050919050565b6000602082019050620005b2600083018462000546565b92915050565b600082825260208201905092915050565b6000620005d6826200081f565b9150620005e3836200081f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200061b576200061a6200085f565b5b828201905092915050565b6000808291508390505b6001851115620006785780860481111562000650576200064f6200085f565b5b6001851615620006605780820291505b80810290506200067085620008bd565b945062000630565b94509492505050565b60006200068e826200081f565b91506200069b836200081f565b9250620006ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006d2565b905092915050565b600082620006e45760019050620007b7565b81620006f45760009050620007b7565b81600181146200070d576002811462000718576200074e565b6001915050620007b7565b60ff8411156200072d576200072c6200085f565b5b8360020a9150848211156200074757620007466200085f565b5b50620007b7565b5060208310610133831016604e8410600b8410161715620007885782820a9050838111156200078257620007816200085f565b5b620007b7565b62000797848484600162000626565b92509050818404811115620007b157620007b06200085f565b5b81810290505b9392505050565b6000620007cb826200081f565b9150620007d8836200081f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200081457620008136200085f565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200084257607f821691505b602082108114156200085957620008586200088e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c91806200092c6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113b0565b60405180910390f35b610132600480360381019061012d9190611117565b6103b4565b60405161013f9190611395565b60405180910390f35b6101506103d7565b60405161015d9190611532565b60405180910390f35b610180600480360381019061017b91906110c4565b6103e1565b60405161018d9190611395565b60405180910390f35b61019e610410565b6040516101ab919061154d565b60405180910390f35b6101ce60048036038101906101c99190611117565b610419565b6040516101db9190611395565b60405180910390f35b6101fe60048036038101906101f99190611157565b610450565b005b61021a60048036038101906102159190611057565b610501565b6040516102279190611532565b60405180910390f35b610238610549565b005b6102426105d1565b60405161024f919061137a565b60405180910390f35b6102606105fb565b60405161026d91906113b0565b60405180910390f35b610290600480360381019061028b9190611117565b61068d565b60405161029d9190611395565b60405180910390f35b6102c060048036038101906102bb9190611117565b610704565b6040516102cd9190611395565b60405180910390f35b6102f060048036038101906102eb9190611084565b610727565b6040516102fd9190611532565b60405180910390f35b610320600480360381019061031b9190611057565b6107ae565b005b60606003805461033190611861565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611861565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf6108a6565b90506103cc8185856108ae565b600191505092915050565b6000600254905090565b6000806103ec6108a6565b90506103f9858285610a79565b610404858585610b05565b60019150509392505050565b60006012905090565b6000806104246108a6565b90506104458185856104368589610727565b6104409190611584565b6108ae565b600191505092915050565b6104586108a6565b73ffffffffffffffffffffffffffffffffffffffff166104766105d1565b73ffffffffffffffffffffffffffffffffffffffff16146104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c390611492565b60405180910390fd5b6104fe6104d76108a6565b6104df610410565b60ff16600a6104ee919061162d565b836104f9919061174b565b610d86565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105516108a6565b73ffffffffffffffffffffffffffffffffffffffff1661056f6105d1565b73ffffffffffffffffffffffffffffffffffffffff16146105c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bc90611492565b60405180910390fd5b6105cf6000610f5d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060a90611861565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611861565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b6000806106986108a6565b905060006106a68286610727565b9050838110156106eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e290611512565b60405180910390fd5b6106f882868684036108ae565b60019250505092915050565b60008061070f6108a6565b905061071c818585610b05565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b66108a6565b73ffffffffffffffffffffffffffffffffffffffff166107d46105d1565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611412565b60405180910390fd5b6108a381610f5d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906114f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590611432565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6c9190611532565b60405180910390a3505050565b6000610a858484610727565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aff5781811015610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890611452565b60405180910390fd5b610afe84848484036108ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c906114d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906113d2565b60405180910390fd5b610bf0838383611023565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611472565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d099190611584565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6d9190611532565b60405180910390a3610d80848484611028565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906114b2565b60405180910390fd5b610e0282600083611023565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906113f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610edf91906117a5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f449190611532565b60405180910390a3610f5883600084611028565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061103c81611c2d565b92915050565b60008135905061105181611c44565b92915050565b60006020828403121561106d5761106c6118f1565b5b600061107b8482850161102d565b91505092915050565b6000806040838503121561109b5761109a6118f1565b5b60006110a98582860161102d565b92505060206110ba8582860161102d565b9150509250929050565b6000806000606084860312156110dd576110dc6118f1565b5b60006110eb8682870161102d565b93505060206110fc8682870161102d565b925050604061110d86828701611042565b9150509250925092565b6000806040838503121561112e5761112d6118f1565b5b600061113c8582860161102d565b925050602061114d85828601611042565b9150509250929050565b60006020828403121561116d5761116c6118f1565b5b600061117b84828501611042565b91505092915050565b61118d816117d9565b82525050565b61119c816117eb565b82525050565b60006111ad82611568565b6111b78185611573565b93506111c781856020860161182e565b6111d0816118f6565b840191505092915050565b60006111e8602383611573565b91506111f382611914565b604082019050919050565b600061120b602283611573565b915061121682611963565b604082019050919050565b600061122e602683611573565b9150611239826119b2565b604082019050919050565b6000611251602283611573565b915061125c82611a01565b604082019050919050565b6000611274601d83611573565b915061127f82611a50565b602082019050919050565b6000611297602683611573565b91506112a282611a79565b604082019050919050565b60006112ba602083611573565b91506112c582611ac8565b602082019050919050565b60006112dd602183611573565b91506112e882611af1565b604082019050919050565b6000611300602583611573565b915061130b82611b40565b604082019050919050565b6000611323602483611573565b915061132e82611b8f565b604082019050919050565b6000611346602583611573565b915061135182611bde565b604082019050919050565b61136581611817565b82525050565b61137481611821565b82525050565b600060208201905061138f6000830184611184565b92915050565b60006020820190506113aa6000830184611193565b92915050565b600060208201905081810360008301526113ca81846111a2565b905092915050565b600060208201905081810360008301526113eb816111db565b9050919050565b6000602082019050818103600083015261140b816111fe565b9050919050565b6000602082019050818103600083015261142b81611221565b9050919050565b6000602082019050818103600083015261144b81611244565b9050919050565b6000602082019050818103600083015261146b81611267565b9050919050565b6000602082019050818103600083015261148b8161128a565b9050919050565b600060208201905081810360008301526114ab816112ad565b9050919050565b600060208201905081810360008301526114cb816112d0565b9050919050565b600060208201905081810360008301526114eb816112f3565b9050919050565b6000602082019050818103600083015261150b81611316565b9050919050565b6000602082019050818103600083015261152b81611339565b9050919050565b6000602082019050611547600083018461135c565b92915050565b6000602082019050611562600083018461136b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061158f82611817565b915061159a83611817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115cf576115ce611893565b5b828201905092915050565b6000808291508390505b600185111561162457808604811115611600576115ff611893565b5b600185161561160f5780820291505b808102905061161d85611907565b94506115e4565b94509492505050565b600061163882611817565b915061164383611817565b92506116707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611678565b905092915050565b6000826116885760019050611744565b816116965760009050611744565b81600181146116ac57600281146116b6576116e5565b6001915050611744565b60ff8411156116c8576116c7611893565b5b8360020a9150848211156116df576116de611893565b5b50611744565b5060208310610133831016604e8410600b841016171561171a5782820a90508381111561171557611714611893565b5b611744565b61172784848460016115da565b9250905081840481111561173e5761173d611893565b5b81810290505b9392505050565b600061175682611817565b915061176183611817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561179a57611799611893565b5b828202905092915050565b60006117b082611817565b91506117bb83611817565b9250828210156117ce576117cd611893565b5b828203905092915050565b60006117e4826117f7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561184c578082015181840152602081019050611831565b8381111561185b576000848401525b50505050565b6000600282049050600182168061187957607f821691505b6020821081141561188d5761188c6118c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c36816117d9565b8114611c4157600080fd5b50565b611c4d81611817565b8114611c5857600080fd5b5056fea264697066735822122090f9fab503ad89e88494f4fe5f52ee95fbcd086b5894cf14c99a4d06214e65f164736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113b0565b60405180910390f35b610132600480360381019061012d9190611117565b6103b4565b60405161013f9190611395565b60405180910390f35b6101506103d7565b60405161015d9190611532565b60405180910390f35b610180600480360381019061017b91906110c4565b6103e1565b60405161018d9190611395565b60405180910390f35b61019e610410565b6040516101ab919061154d565b60405180910390f35b6101ce60048036038101906101c99190611117565b610419565b6040516101db9190611395565b60405180910390f35b6101fe60048036038101906101f99190611157565b610450565b005b61021a60048036038101906102159190611057565b610501565b6040516102279190611532565b60405180910390f35b610238610549565b005b6102426105d1565b60405161024f919061137a565b60405180910390f35b6102606105fb565b60405161026d91906113b0565b60405180910390f35b610290600480360381019061028b9190611117565b61068d565b60405161029d9190611395565b60405180910390f35b6102c060048036038101906102bb9190611117565b610704565b6040516102cd9190611395565b60405180910390f35b6102f060048036038101906102eb9190611084565b610727565b6040516102fd9190611532565b60405180910390f35b610320600480360381019061031b9190611057565b6107ae565b005b60606003805461033190611861565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611861565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf6108a6565b90506103cc8185856108ae565b600191505092915050565b6000600254905090565b6000806103ec6108a6565b90506103f9858285610a79565b610404858585610b05565b60019150509392505050565b60006012905090565b6000806104246108a6565b90506104458185856104368589610727565b6104409190611584565b6108ae565b600191505092915050565b6104586108a6565b73ffffffffffffffffffffffffffffffffffffffff166104766105d1565b73ffffffffffffffffffffffffffffffffffffffff16146104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c390611492565b60405180910390fd5b6104fe6104d76108a6565b6104df610410565b60ff16600a6104ee919061162d565b836104f9919061174b565b610d86565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105516108a6565b73ffffffffffffffffffffffffffffffffffffffff1661056f6105d1565b73ffffffffffffffffffffffffffffffffffffffff16146105c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bc90611492565b60405180910390fd5b6105cf6000610f5d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060a90611861565b80601f016020809104026020016040519081016040528092919081815260200182805461063690611861565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b6000806106986108a6565b905060006106a68286610727565b9050838110156106eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e290611512565b60405180910390fd5b6106f882868684036108ae565b60019250505092915050565b60008061070f6108a6565b905061071c818585610b05565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b66108a6565b73ffffffffffffffffffffffffffffffffffffffff166107d46105d1565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611412565b60405180910390fd5b6108a381610f5d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906114f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590611432565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6c9190611532565b60405180910390a3505050565b6000610a858484610727565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aff5781811015610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890611452565b60405180910390fd5b610afe84848484036108ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c906114d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906113d2565b60405180910390fd5b610bf0838383611023565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611472565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d099190611584565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6d9190611532565b60405180910390a3610d80848484611028565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906114b2565b60405180910390fd5b610e0282600083611023565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906113f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610edf91906117a5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f449190611532565b60405180910390a3610f5883600084611028565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061103c81611c2d565b92915050565b60008135905061105181611c44565b92915050565b60006020828403121561106d5761106c6118f1565b5b600061107b8482850161102d565b91505092915050565b6000806040838503121561109b5761109a6118f1565b5b60006110a98582860161102d565b92505060206110ba8582860161102d565b9150509250929050565b6000806000606084860312156110dd576110dc6118f1565b5b60006110eb8682870161102d565b93505060206110fc8682870161102d565b925050604061110d86828701611042565b9150509250925092565b6000806040838503121561112e5761112d6118f1565b5b600061113c8582860161102d565b925050602061114d85828601611042565b9150509250929050565b60006020828403121561116d5761116c6118f1565b5b600061117b84828501611042565b91505092915050565b61118d816117d9565b82525050565b61119c816117eb565b82525050565b60006111ad82611568565b6111b78185611573565b93506111c781856020860161182e565b6111d0816118f6565b840191505092915050565b60006111e8602383611573565b91506111f382611914565b604082019050919050565b600061120b602283611573565b915061121682611963565b604082019050919050565b600061122e602683611573565b9150611239826119b2565b604082019050919050565b6000611251602283611573565b915061125c82611a01565b604082019050919050565b6000611274601d83611573565b915061127f82611a50565b602082019050919050565b6000611297602683611573565b91506112a282611a79565b604082019050919050565b60006112ba602083611573565b91506112c582611ac8565b602082019050919050565b60006112dd602183611573565b91506112e882611af1565b604082019050919050565b6000611300602583611573565b915061130b82611b40565b604082019050919050565b6000611323602483611573565b915061132e82611b8f565b604082019050919050565b6000611346602583611573565b915061135182611bde565b604082019050919050565b61136581611817565b82525050565b61137481611821565b82525050565b600060208201905061138f6000830184611184565b92915050565b60006020820190506113aa6000830184611193565b92915050565b600060208201905081810360008301526113ca81846111a2565b905092915050565b600060208201905081810360008301526113eb816111db565b9050919050565b6000602082019050818103600083015261140b816111fe565b9050919050565b6000602082019050818103600083015261142b81611221565b9050919050565b6000602082019050818103600083015261144b81611244565b9050919050565b6000602082019050818103600083015261146b81611267565b9050919050565b6000602082019050818103600083015261148b8161128a565b9050919050565b600060208201905081810360008301526114ab816112ad565b9050919050565b600060208201905081810360008301526114cb816112d0565b9050919050565b600060208201905081810360008301526114eb816112f3565b9050919050565b6000602082019050818103600083015261150b81611316565b9050919050565b6000602082019050818103600083015261152b81611339565b9050919050565b6000602082019050611547600083018461135c565b92915050565b6000602082019050611562600083018461136b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061158f82611817565b915061159a83611817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115cf576115ce611893565b5b828201905092915050565b6000808291508390505b600185111561162457808604811115611600576115ff611893565b5b600185161561160f5780820291505b808102905061161d85611907565b94506115e4565b94509492505050565b600061163882611817565b915061164383611817565b92506116707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611678565b905092915050565b6000826116885760019050611744565b816116965760009050611744565b81600181146116ac57600281146116b6576116e5565b6001915050611744565b60ff8411156116c8576116c7611893565b5b8360020a9150848211156116df576116de611893565b5b50611744565b5060208310610133831016604e8410600b841016171561171a5782820a90508381111561171557611714611893565b5b611744565b61172784848460016115da565b9250905081840481111561173e5761173d611893565b5b81810290505b9392505050565b600061175682611817565b915061176183611817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561179a57611799611893565b5b828202905092915050565b60006117b082611817565b91506117bb83611817565b9250828210156117ce576117cd611893565b5b828203905092915050565b60006117e4826117f7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561184c578082015181840152602081019050611831565b8381111561185b576000848401525b50505050565b6000600282049050600182168061187957607f821691505b6020821081141561188d5761188c6118c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c36816117d9565b8114611c4157600080fd5b50565b611c4d81611817565b8114611c5857600080fd5b5056fea264697066735822122090f9fab503ad89e88494f4fe5f52ee95fbcd086b5894cf14c99a4d06214e65f164736f6c63430008070033

Deployed Bytecode Sourcemap

35127:174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26259:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27040:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24870:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27744:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34993:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17698:103;;;:::i;:::-;;17047:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24127:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28485:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25532:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25788:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17956:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23908:100;23962:13;23995:5;23988:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908:100;:::o;26259:201::-;26342:4;26359:13;26375:12;:10;:12::i;:::-;26359:28;;26398:32;26407:5;26414:7;26423:6;26398:8;:32::i;:::-;26448:4;26441:11;;;26259:201;;;;:::o;25028:108::-;25089:7;25116:12;;25109:19;;25028:108;:::o;27040:295::-;27171:4;27188:15;27206:12;:10;:12::i;:::-;27188:30;;27229:38;27245:4;27251:7;27260:6;27229:15;:38::i;:::-;27278:27;27288:4;27294:2;27298:6;27278:9;:27::i;:::-;27323:4;27316:11;;;27040:295;;;;;:::o;24870:93::-;24928:5;24953:2;24946:9;;24870:93;:::o;27744:238::-;27832:4;27849:13;27865:12;:10;:12::i;:::-;27849:28;;27888:64;27897:5;27904:7;27941:10;27913:25;27923:5;27930:7;27913:9;:25::i;:::-;:38;;;;:::i;:::-;27888:8;:64::i;:::-;27970:4;27963:11;;;27744:238;;;;:::o;34993:127::-;17278:12;:10;:12::i;:::-;17267:23;;:7;:5;:7::i;:::-;:23;;;17259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35059:53:::1;35065:12;:10;:12::i;:::-;35099:10;:8;:10::i;:::-;35091:19;;35087:2;:23;;;;:::i;:::-;35079:6;:32;;;;:::i;:::-;35059:5;:53::i;:::-;34993:127:::0;:::o;25199:::-;25273:7;25300:9;:18;25310:7;25300:18;;;;;;;;;;;;;;;;25293:25;;25199:127;;;:::o;17698:103::-;17278:12;:10;:12::i;:::-;17267:23;;:7;:5;:7::i;:::-;:23;;;17259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17763:30:::1;17790:1;17763:18;:30::i;:::-;17698:103::o:0;17047:87::-;17093:7;17120:6;;;;;;;;;;;17113:13;;17047:87;:::o;24127:104::-;24183:13;24216:7;24209:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24127:104;:::o;28485:436::-;28578:4;28595:13;28611:12;:10;:12::i;:::-;28595:28;;28634:24;28661:25;28671:5;28678:7;28661:9;:25::i;:::-;28634:52;;28725:15;28705:16;:35;;28697:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28818:60;28827:5;28834:7;28862:15;28843:16;:34;28818:8;:60::i;:::-;28909:4;28902:11;;;;28485:436;;;;:::o;25532:193::-;25611:4;25628:13;25644:12;:10;:12::i;:::-;25628:28;;25667;25677:5;25684:2;25688:6;25667:9;:28::i;:::-;25713:4;25706:11;;;25532:193;;;;:::o;25788:151::-;25877:7;25904:11;:18;25916:5;25904:18;;;;;;;;;;;;;;;:27;25923:7;25904:27;;;;;;;;;;;;;;;;25897:34;;25788:151;;;;:::o;17956:201::-;17278:12;:10;:12::i;:::-;17267:23;;:7;:5;:7::i;:::-;:23;;;17259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18065:1:::1;18045:22;;:8;:22;;;;18037:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18121:28;18140:8;18121:18;:28::i;:::-;17956:201:::0;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;32119:380::-;32272:1;32255:19;;:5;:19;;;;32247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32353:1;32334:21;;:7;:21;;;;32326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32437:6;32407:11;:18;32419:5;32407:18;;;;;;;;;;;;;;;:27;32426:7;32407:27;;;;;;;;;;;;;;;:36;;;;32475:7;32459:32;;32468:5;32459:32;;;32484:6;32459:32;;;;;;:::i;:::-;;;;;;;;32119:380;;;:::o;32790:453::-;32925:24;32952:25;32962:5;32969:7;32952:9;:25::i;:::-;32925:52;;33012:17;32992:16;:37;32988:248;;33074:6;33054:16;:26;;33046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:51;33167:5;33174:7;33202:6;33183:16;:25;33158:8;:51::i;:::-;32988:248;32914:329;32790:453;;;:::o;29400:671::-;29547:1;29531:18;;:4;:18;;;;29523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29624:1;29610:16;;:2;:16;;;;29602:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29679:38;29700:4;29706:2;29710:6;29679:20;:38::i;:::-;29730:19;29752:9;:15;29762:4;29752:15;;;;;;;;;;;;;;;;29730:37;;29801:6;29786:11;:21;;29778:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;29918:6;29904:11;:20;29886:9;:15;29896:4;29886:15;;;;;;;;;;;;;;;:38;;;;29963:6;29946:9;:13;29956:2;29946:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;30002:2;29987:26;;29996:4;29987:26;;;30006:6;29987:26;;;;;;:::i;:::-;;;;;;;;30026:37;30046:4;30052:2;30056:6;30026:19;:37::i;:::-;29512:559;29400:671;;;:::o;31090:591::-;31193:1;31174:21;;:7;:21;;;;31166:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31246:49;31267:7;31284:1;31288:6;31246:20;:49::i;:::-;31308:22;31333:9;:18;31343:7;31333:18;;;;;;;;;;;;;;;;31308:43;;31388:6;31370:14;:24;;31362:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31507:6;31490:14;:23;31469:9;:18;31479:7;31469:18;;;;;;;;;;;;;;;:44;;;;31551:6;31535:12;;:22;;;;;;;:::i;:::-;;;;;;;;31601:1;31575:37;;31584:7;31575:37;;;31605:6;31575:37;;;;;;:::i;:::-;;;;;;;;31625:48;31645:7;31662:1;31666:6;31625:19;:48::i;:::-;31155:526;31090:591;;:::o;18317:191::-;18391:16;18410:6;;;;;;;;;;;18391:25;;18436:8;18427:6;;:17;;;;;;;;;;;;;;;;;;18491:8;18460:40;;18481:8;18460:40;;;;;;;;;;;;18380:128;18317:191;:::o;33843:125::-;;;;:::o;34572:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:118::-;7340:24;7358:5;7340:24;:::i;:::-;7335:3;7328:37;7253:118;;:::o;7377:112::-;7460:22;7476:5;7460:22;:::i;:::-;7455:3;7448:35;7377:112;;:::o;7495:222::-;7588:4;7626:2;7615:9;7611:18;7603:26;;7639:71;7707:1;7696:9;7692:17;7683:6;7639:71;:::i;:::-;7495:222;;;;:::o;7723:210::-;7810:4;7848:2;7837:9;7833:18;7825:26;;7861:65;7923:1;7912:9;7908:17;7899:6;7861:65;:::i;:::-;7723:210;;;;:::o;7939:313::-;8052:4;8090:2;8079:9;8075:18;8067:26;;8139:9;8133:4;8129:20;8125:1;8114:9;8110:17;8103:47;8167:78;8240:4;8231:6;8167:78;:::i;:::-;8159:86;;7939:313;;;;:::o;8258:419::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:131;8665:4;8539:131;:::i;:::-;8531:139;;8258:419;;;:::o;8683:::-;8849:4;8887:2;8876:9;8872:18;8864:26;;8936:9;8930:4;8926:20;8922:1;8911:9;8907:17;8900:47;8964:131;9090:4;8964:131;:::i;:::-;8956:139;;8683:419;;;:::o;9108:::-;9274:4;9312:2;9301:9;9297:18;9289:26;;9361:9;9355:4;9351:20;9347:1;9336:9;9332:17;9325:47;9389:131;9515:4;9389:131;:::i;:::-;9381:139;;9108:419;;;:::o;9533:::-;9699:4;9737:2;9726:9;9722:18;9714:26;;9786:9;9780:4;9776:20;9772:1;9761:9;9757:17;9750:47;9814:131;9940:4;9814:131;:::i;:::-;9806:139;;9533:419;;;:::o;9958:::-;10124:4;10162:2;10151:9;10147:18;10139:26;;10211:9;10205:4;10201:20;10197:1;10186:9;10182:17;10175:47;10239:131;10365:4;10239:131;:::i;:::-;10231:139;;9958:419;;;:::o;10383:::-;10549:4;10587:2;10576:9;10572:18;10564:26;;10636:9;10630:4;10626:20;10622:1;10611:9;10607:17;10600:47;10664:131;10790:4;10664:131;:::i;:::-;10656:139;;10383:419;;;:::o;10808:::-;10974:4;11012:2;11001:9;10997:18;10989:26;;11061:9;11055:4;11051:20;11047:1;11036:9;11032:17;11025:47;11089:131;11215:4;11089:131;:::i;:::-;11081:139;;10808:419;;;:::o;11233:::-;11399:4;11437:2;11426:9;11422:18;11414:26;;11486:9;11480:4;11476:20;11472:1;11461:9;11457:17;11450:47;11514:131;11640:4;11514:131;:::i;:::-;11506:139;;11233:419;;;:::o;11658:::-;11824:4;11862:2;11851:9;11847:18;11839:26;;11911:9;11905:4;11901:20;11897:1;11886:9;11882:17;11875:47;11939:131;12065:4;11939:131;:::i;:::-;11931:139;;11658:419;;;:::o;12083:::-;12249:4;12287:2;12276:9;12272:18;12264:26;;12336:9;12330:4;12326:20;12322:1;12311:9;12307:17;12300:47;12364:131;12490:4;12364:131;:::i;:::-;12356:139;;12083:419;;;:::o;12508:::-;12674:4;12712:2;12701:9;12697:18;12689:26;;12761:9;12755:4;12751:20;12747:1;12736:9;12732:17;12725:47;12789:131;12915:4;12789:131;:::i;:::-;12781:139;;12508:419;;;:::o;12933:222::-;13026:4;13064:2;13053:9;13049:18;13041:26;;13077:71;13145:1;13134:9;13130:17;13121:6;13077:71;:::i;:::-;12933:222;;;;:::o;13161:214::-;13250:4;13288:2;13277:9;13273:18;13265:26;;13301:67;13365:1;13354:9;13350:17;13341:6;13301:67;:::i;:::-;13161:214;;;;:::o;13462:99::-;13514:6;13548:5;13542:12;13532:22;;13462:99;;;:::o;13567:169::-;13651:11;13685:6;13680:3;13673:19;13725:4;13720:3;13716:14;13701:29;;13567:169;;;;:::o;13742:305::-;13782:3;13801:20;13819:1;13801:20;:::i;:::-;13796:25;;13835:20;13853:1;13835:20;:::i;:::-;13830:25;;13989:1;13921:66;13917:74;13914:1;13911:81;13908:107;;;13995:18;;:::i;:::-;13908:107;14039:1;14036;14032:9;14025:16;;13742:305;;;;:::o;14053:848::-;14114:5;14121:4;14145:6;14136:15;;14169:5;14160:14;;14183:712;14204:1;14194:8;14191:15;14183:712;;;14299:4;14294:3;14290:14;14284:4;14281:24;14278:50;;;14308:18;;:::i;:::-;14278:50;14358:1;14348:8;14344:16;14341:451;;;14773:4;14766:5;14762:16;14753:25;;14341:451;14823:4;14817;14813:15;14805:23;;14853:32;14876:8;14853:32;:::i;:::-;14841:44;;14183:712;;;14053:848;;;;;;;:::o;14907:285::-;14967:5;14991:23;15009:4;14991:23;:::i;:::-;14983:31;;15035:27;15053:8;15035:27;:::i;:::-;15023:39;;15081:104;15118:66;15108:8;15102:4;15081:104;:::i;:::-;15072:113;;14907:285;;;;:::o;15198:1073::-;15252:5;15443:8;15433:40;;15464:1;15455:10;;15466:5;;15433:40;15492:4;15482:36;;15509:1;15500:10;;15511:5;;15482:36;15578:4;15626:1;15621:27;;;;15662:1;15657:191;;;;15571:277;;15621:27;15639:1;15630:10;;15641:5;;;15657:191;15702:3;15692:8;15689:17;15686:43;;;15709:18;;:::i;:::-;15686:43;15758:8;15755:1;15751:16;15742:25;;15793:3;15786:5;15783:14;15780:40;;;15800:18;;:::i;:::-;15780:40;15833:5;;;15571:277;;15957:2;15947:8;15944:16;15938:3;15932:4;15929:13;15925:36;15907:2;15897:8;15894:16;15889:2;15883:4;15880:12;15876:35;15860:111;15857:246;;;16013:8;16007:4;16003:19;15994:28;;16048:3;16041:5;16038:14;16035:40;;;16055:18;;:::i;:::-;16035:40;16088:5;;15857:246;16128:42;16166:3;16156:8;16150:4;16147:1;16128:42;:::i;:::-;16113:57;;;;16202:4;16197:3;16193:14;16186:5;16183:25;16180:51;;;16211:18;;:::i;:::-;16180:51;16260:4;16253:5;16249:16;16240:25;;15198:1073;;;;;;:::o;16277:348::-;16317:7;16340:20;16358:1;16340:20;:::i;:::-;16335:25;;16374:20;16392:1;16374:20;:::i;:::-;16369:25;;16562:1;16494:66;16490:74;16487:1;16484:81;16479:1;16472:9;16465:17;16461:105;16458:131;;;16569:18;;:::i;:::-;16458:131;16617:1;16614;16610:9;16599:20;;16277:348;;;;:::o;16631:191::-;16671:4;16691:20;16709:1;16691:20;:::i;:::-;16686:25;;16725:20;16743:1;16725:20;:::i;:::-;16720:25;;16764:1;16761;16758:8;16755:34;;;16769:18;;:::i;:::-;16755:34;16814:1;16811;16807:9;16799:17;;16631:191;;;;:::o;16828:96::-;16865:7;16894:24;16912:5;16894:24;:::i;:::-;16883:35;;16828:96;;;:::o;16930:90::-;16964:7;17007:5;17000:13;16993:21;16982:32;;16930:90;;;:::o;17026:126::-;17063:7;17103:42;17096:5;17092:54;17081:65;;17026:126;;;:::o;17158:77::-;17195:7;17224:5;17213:16;;17158:77;;;:::o;17241:86::-;17276:7;17316:4;17309:5;17305:16;17294:27;;17241:86;;;:::o;17333:307::-;17401:1;17411:113;17425:6;17422:1;17419:13;17411:113;;;17510:1;17505:3;17501:11;17495:18;17491:1;17486:3;17482:11;17475:39;17447:2;17444:1;17440:10;17435:15;;17411:113;;;17542:6;17539:1;17536:13;17533:101;;;17622:1;17613:6;17608:3;17604:16;17597:27;17533:101;17382:258;17333:307;;;:::o;17646:320::-;17690:6;17727:1;17721:4;17717:12;17707:22;;17774:1;17768:4;17764:12;17795:18;17785:81;;17851:4;17843:6;17839:17;17829:27;;17785:81;17913:2;17905:6;17902:14;17882:18;17879:38;17876:84;;;17932:18;;:::i;:::-;17876:84;17697:269;17646:320;;;:::o;17972:180::-;18020:77;18017:1;18010:88;18117:4;18114:1;18107:15;18141:4;18138:1;18131:15;18158:180;18206:77;18203:1;18196:88;18303:4;18300:1;18293:15;18327:4;18324:1;18317:15;18467:117;18576:1;18573;18566:12;18590:102;18631:6;18682:2;18678:7;18673:2;18666:5;18662:14;18658:28;18648:38;;18590:102;;;:::o;18698:::-;18740:8;18787:5;18784:1;18780:13;18759:34;;18698:102;;;:::o;18806:222::-;18946:34;18942:1;18934:6;18930:14;18923:58;19015:5;19010:2;19002:6;18998:15;18991:30;18806:222;:::o;19034:221::-;19174:34;19170:1;19162:6;19158:14;19151:58;19243:4;19238:2;19230:6;19226:15;19219:29;19034:221;:::o;19261:225::-;19401:34;19397:1;19389:6;19385:14;19378:58;19470:8;19465:2;19457:6;19453:15;19446:33;19261:225;:::o;19492:221::-;19632:34;19628:1;19620:6;19616:14;19609:58;19701:4;19696:2;19688:6;19684:15;19677:29;19492:221;:::o;19719:179::-;19859:31;19855:1;19847:6;19843:14;19836:55;19719:179;:::o;19904:225::-;20044:34;20040:1;20032:6;20028:14;20021:58;20113:8;20108:2;20100:6;20096:15;20089:33;19904:225;:::o;20135:182::-;20275:34;20271:1;20263:6;20259:14;20252:58;20135:182;:::o;20323:220::-;20463:34;20459:1;20451:6;20447:14;20440:58;20532:3;20527:2;20519:6;20515:15;20508:28;20323:220;:::o;20549:224::-;20689:34;20685:1;20677:6;20673:14;20666:58;20758:7;20753:2;20745:6;20741:15;20734:32;20549:224;:::o;20779:223::-;20919:34;20915:1;20907:6;20903:14;20896:58;20988:6;20983:2;20975:6;20971:15;20964:31;20779:223;:::o;21008:224::-;21148:34;21144:1;21136:6;21132:14;21125:58;21217:7;21212:2;21204:6;21200:15;21193:32;21008:224;:::o;21238:122::-;21311:24;21329:5;21311:24;:::i;:::-;21304:5;21301:35;21291:63;;21350:1;21347;21340:12;21291:63;21238:122;:::o;21366:::-;21439:24;21457:5;21439:24;:::i;:::-;21432:5;21429:35;21419:63;;21478:1;21475;21468:12;21419:63;21366:122;:::o

Swarm Source

ipfs://90f9fab503ad89e88494f4fe5f52ee95fbcd086b5894cf14c99a4d06214e65f1
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.