ETH Price: $3,319.77 (-2.90%)

Token

WIGL (WIGL)
 

Overview

Max Total Supply

93,999,971 WIGL

Holders

378

Market

Price

$0.10 @ 0.000029 ETH (-0.30%)

Onchain Market Cap

$8,969,195.23

Circulating Supply Market Cap

$508,350.00

Other Info

Token Contract (WITH 9 Decimals)

Balance
7,687.5 WIGL

Value
$733.52 ( ~0.220954798241339 Eth) [0.0082%]
0x84cc1a251fce321dbdba9951e211f3260a1bc23f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WIGL

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 4 : WIGLE.sol
// SPDX-License-Identifier: MIT
// WIGL 

pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import {IERC20Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol";

contract WIGL is Context, IERC20, IERC20Errors {

    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    uint256 constant thirtyDays = 30 days;

    uint8  private _decimals;
    string private _name;
    string private _symbol;
    uint256 immutable private _maxSupply;
    uint256 public immutable _startTime;
    uint256 public immutable _vestingsLength;

    struct Vesting {
        uint256 cliffDuration;
        uint8   vestingDuration;
        uint256 maxSupply;
        uint256 monthlySupply;
        uint256 totalSupply;
        address wallet;
    }

    Vesting[] public vestings;

    // Declare constant private variables for the addresses
    address private constant ICO_PRIVATE_WALLET       = 0x1f80b02335E3413ED1AEDfbe93b8608d4185D5a6;
    address private constant ICO_PRE_SALE_WALLET      = 0x085496Aa5090fb916F8FF75593374e60B263b3C8;
    address private constant ICO_PUBLIC_1_WALLET      = 0xF6E261B27bf5bEB9764e6931855b32531AF6CC13;
    address private constant ICO_PUBLIC_2_WALLET      = 0x1fb6B44d50EB9Bb423846ed360a58DfeBbF03b90;
    address private constant ICO_PUBLIC_3_WALLET      = 0x1B35e57651ECe7681Db9A28C50EF0B29b00b0383;
    address private constant ADVANTAGES_WALLET        = 0x49Ab0a436bEDcE1b90FF146E46d20Df957bF0B05;
    address private constant TREASURY_LISTING_WALLET  = 0x7922057F408A5bA46743D2D7A0Ad5a00CEEA76f9;
    address private constant PARTNERS_ADVISORS_WALLET = 0xFbB5D1B767C9D0CF48724d16ca1D8cF8dcD4Ec00;
    address private constant TEAM_WALLET              = 0xBC576dE2A47e0480a5F9F4D3E5A3e2a07B075166;


    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        _name                 = "WIGL";
        _symbol               = "WIGL";
        _decimals             = 9;
        _maxSupply            = 600_000_000 * 10 ** decimals();
        _totalSupply = 73_999_969 * 10**decimals(); 

        _startTime = block.timestamp;

        _balances[TEAM_WALLET]         = 53_999_967 * 10**decimals();
        _balances[ICO_PRE_SALE_WALLET] = 4_166_667  * 10**decimals();
        _balances[ICO_PUBLIC_1_WALLET] = 833_334    * 10**decimals();
        _balances[ICO_PUBLIC_2_WALLET] = 1_250_000  * 10**decimals();
        _balances[ICO_PUBLIC_3_WALLET] = 3_333_334  * 10**decimals();
        _balances[ADVANTAGES_WALLET  ] = 10_416_667 * 10**decimals();

        // initiate cliff & visting 
        vestings.push(Vesting({
            cliffDuration: 6 * thirtyDays,
            vestingDuration: 24 ,
            maxSupply: 37_500_000 * 10**decimals(),
            monthlySupply: 37_500_000 * 10**decimals() / 24,
            totalSupply: 0,
            wallet: ICO_PRIVATE_WALLET  
        }));

        vestings.push(Vesting({
            cliffDuration: 0,
            vestingDuration: 8 ,
            maxSupply: 33_333_336 * 10**decimals(),
            monthlySupply: 33_333_336 * 10**decimals() / 8,
            totalSupply: 0,
            wallet: ICO_PRE_SALE_WALLET 
        }));

        vestings.push(Vesting({
            cliffDuration: 0,
            vestingDuration: 8 ,
            maxSupply: 6_666_672 * 10**decimals(),
            monthlySupply: 6_666_672 * 10**decimals() / 8,
            totalSupply: 0,
            wallet: ICO_PUBLIC_1_WALLET 
        }));

        vestings.push(Vesting({
            cliffDuration: 0,
            vestingDuration: 5 ,
            maxSupply: 6_250_000 * 10**decimals(),
            monthlySupply: 6_250_000 * 10**decimals() / 5,
            totalSupply: 0,
            wallet: ICO_PUBLIC_2_WALLET
        }));

        vestings.push(Vesting({
            cliffDuration: 0,
            vestingDuration: 2 ,
            maxSupply: 6_666_668 * 10**decimals(),
            monthlySupply: 6_666_668 * 10**decimals() / 2,
            totalSupply: 0,
            wallet: ICO_PUBLIC_3_WALLET
        }));

        vestings.push(Vesting({
            cliffDuration: 0,
            vestingDuration: 35 ,
            maxSupply: 364_583_345 * 10**decimals(),
            monthlySupply: 364_583_345 * 10**decimals() / 35,
            totalSupply: 0,
            wallet: ADVANTAGES_WALLET 
        }));

        vestings.push(Vesting({
            cliffDuration: 7 * thirtyDays,
            vestingDuration: 18 ,
            maxSupply: 17_000_010 * 10**decimals(),
            monthlySupply: 17_000_010 * 10**decimals() / 18,
            totalSupply: 0,
            wallet: TREASURY_LISTING_WALLET
        }));

        vestings.push(Vesting({
            cliffDuration: 12 * thirtyDays,
            vestingDuration: 24 ,
            maxSupply: 54_000_000 * 10**decimals(),
            monthlySupply: 54_000_000 * 10**decimals() / 24,
            totalSupply: 0,
            wallet: PARTNERS_ADVISORS_WALLET
        }));
        _vestingsLength = vestings.length;
    }

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

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

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

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

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

    /**
      * @dev Returns the cap on the token's total supply.
      */
    function maxSupply() public view  returns (uint256) {
        return _maxSupply;
    }
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

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

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

function getVestingsCount() external view returns (uint256) {
    return vestings.length;
}
  /**
 * @dev Mints tokens based on vesting schedules.
 * 
 * This function iterates over all the vesting schedules, checks if the vesting period has started 
 * (i.e., the current time is past the cliff duration), calculates the amount of tokens to be minted 
 * based on the time elapsed, and mints the appropriate amount of tokens to the respective wallets.
 * 
 * Returns `true` if the minting process is completed successfully.
 */
function mint() external returns (bool) {
    for (uint256 i = 0; i < _vestingsLength; i++) {
        Vesting storage vesting = vestings[i];

        // Check if the current timestamp is past the cliff duration
        if (block.timestamp >= _startTime + vesting.cliffDuration) {
            
            // Calculate the number of months passed since the end of the cliff duration
            uint256 monthsPassed = (block.timestamp - (_startTime + vesting.cliffDuration)) / thirtyDays;

            // Cap the monthsPassed to the maximum allowed number of months for this vesting schedule
            monthsPassed = monthsPassed > vesting.vestingDuration ? vesting.vestingDuration : monthsPassed;
            
            
            // Calculate the total vested amount based on the number of months passed
            uint256 vestedAmount = monthsPassed * vesting.monthlySupply;
            
            // Calculate the unreleased amount (the amount that hasn't been minted yet)
            uint256 unreleased = vestedAmount > vesting.totalSupply ? vestedAmount - vesting.totalSupply : 0;

            // Mint the unreleased amount if it is greater than 0 and does not exceed max supply limits
            if (unreleased > 0 && (vesting.totalSupply + unreleased) <= vesting.maxSupply && (totalSupply() + unreleased) <= _maxSupply) {
                
                // Update the total supply of the vesting
                vesting.totalSupply += unreleased;
                
                // Mint the unreleased amount to the vesting wallet
                _mint(vesting.wallet, unreleased);
            }
        }
    }
    return true;
}


    /**
      * @dev Destroys `amount` tokens from the caller.
      *
      * See {ERC20-_burn}.
      */
   
   function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }


    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }
  
    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 2 of 4 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 4 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 4 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"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":"_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_vestingsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVestingsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestings","outputs":[{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint8","name":"vestingDuration","type":"uint8"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"monthlySupply","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"view","type":"function"}]

60e060405234801562000010575f80fd5b506040805180820190915260048082526315d251d360e21b6020830152906200003a908262000cd7565b5060408051808201909152600481526315d251d360e21b602082015260059062000065908262000cd7565b506003805460ff191660099081179091556200008390600a62000eae565b62000093906323c3460062000ec5565b60805260035460ff16620000a990600a62000eae565b620000b990630469266162000ec5565b6002554260a05260035460ff16620000d390600a62000eae565b620000e390630337f95f62000ec5565b73bc576de2a47e0480a5f9f4d3e5a3e2a07b0751665f9081526020527fbe2631be788173c414f49e2e9dc8a3bddf3cfad8353cd6cf03e5d3c7548b18825560035460ff166200013490600a62000eae565b6200014390623f940b62000ec5565b73085496aa5090fb916f8ff75593374e60b263b3c85f9081526020527ff7a22d88237c19db10e3a6efcc088653cebfe121bb9cb7cd6201a2b1a24e97b45560035460ff166200019490600a62000eae565b620001a390620cb73662000ec5565b73f6e261b27bf5beb9764e6931855b32531af6cc135f9081526020527f13f2716f6ebe929e5ac504c8701350f2eec4bbc6abc5110b0534f99b115581355560035460ff16620001f490600a62000eae565b6200020390621312d062000ec5565b731fb6b44d50eb9bb423846ed360a58dfebbf03b905f9081526020527fb7cc6f3c47774e8a5033093e5fceae532dba966e55c4b77aa49b0a7307d6bf345560035460ff166200025490600a62000eae565b62000263906232dcd662000ec5565b731b35e57651ece7681db9a28c50ef0b29b00b03835f9081526020527fec8a6db76a6e424bc6eb93da1b9dfa67ef916364d3abbc528b81d8462e76355a5560035460ff16620002b490600a62000eae565b620002c390629ef21b62000ec5565b7349ab0a436bedce1b90ff146e46d20df957bf0b055f9081526020527f29668335631239b026055a0a64a0e6e2b0cf53eadab3d1881af2ffccd8560210556040805160c08101909152600690806200031f62278d008462000ec5565b8152601860208201526040016200033860035460ff1690565b6200034590600a62000eae565b620003559063023c346062000ec5565b815260200160186200036960035460ff1690565b6200037690600a62000eae565b620003869063023c346062000ec5565b62000392919062000edf565b81525f6020808301829052731f80b02335e3413ed1aedfbe93b8608d4185d5a66040938401528454600180820187559583528183208551600692830290910190815585830151968101805460ff191660ff90981697909717909655848401516002870155606085015160038701556080850151600487015560a090940151600590950180546001600160a01b0319166001600160a01b0390961695909517909455815160c08101835290815260089381019390935290919081016200045960035460ff1690565b6200046690600a62000eae565b62000476906301fca05862000ec5565b815260200160086200048a60035460ff1690565b6200049790600a62000eae565b620004a7906301fca05862000ec5565b620004b3919062000edf565b81525f602080830182905273085496aa5090fb916f8ff75593374e60b263b3c86040938401528454600180820187559583528183208551600692830290910190815585830151968101805460ff191660ff90981697909717909655848401516002870155606085015160038701556080850151600487015560a090940151600590950180546001600160a01b0319166001600160a01b0390961695909517909455815160c08101835290815260089381019390935290919081016200057a60035460ff1690565b6200058790600a62000eae565b62000596906265b9b062000ec5565b81526020016008620005aa60035460ff1690565b620005b790600a62000eae565b620005c6906265b9b062000ec5565b620005d2919062000edf565b81525f602080830182905273f6e261b27bf5beb9764e6931855b32531af6cc136040938401528454600180820187559583528183208551600692830290910190815585830151968101805460ff191660ff90981697909717909655848401516002870155606085015160038701556080850151600487015560a090940151600595860180546001600160a01b0319166001600160a01b03909216919091179055825160c08101845291825281019390935290919081016200069560035460ff1690565b620006a290600a62000eae565b620006b190625f5e1062000ec5565b81526020016005620006c560035460ff1690565b620006d290600a62000eae565b620006e190625f5e1062000ec5565b620006ed919062000edf565b81525f6020808301829052731fb6b44d50eb9bb423846ed360a58dfebbf03b906040938401528454600180820187559583528183208551600692830290910190815585830151968101805460ff191660ff9098169790971790965584840151600280880191909155606086015160038801556080860151600488015560a090950151600590960180546001600160a01b0319166001600160a01b0390971696909617909555825160c0810184529182528101929092528101620007b260035460ff1690565b620007bf90600a62000eae565b620007ce906265b9ac62000ec5565b81526020016002620007e260035460ff1690565b620007ef90600a62000eae565b620007fe906265b9ac62000ec5565b6200080a919062000edf565b81525f6020808301829052731b35e57651ece7681db9a28c50ef0b29b00b03836040938401528454600180820187559583528183208551600692830290910190815585830151968101805460ff191660ff90981697909717909655848401516002870155606085015160038701556080850151600487015560a090940151600590950180546001600160a01b0319166001600160a01b0390961695909517909455815160c0810183529081526023938101939093529091908101620008d160035460ff1690565b620008de90600a62000eae565b620008ee906315bb19b162000ec5565b815260200160236200090260035460ff1690565b6200090f90600a62000eae565b6200091f906315bb19b162000ec5565b6200092b919062000edf565b81525f60208083018290527349ab0a436bedce1b90ff146e46d20df957bf0b05604093840152845460018082018755958352918190208451600693840290910190815590840151948101805460ff191660ff90961695909517909455828201516002850155606083015160038501556080830151600485015560a090920151600590930180546001600160a01b0319166001600160a01b0390941693909317909255815160c081019092529080620009e862278d00600762000ec5565b81526012602082015260400162000a0160035460ff1690565b62000a0e90600a62000eae565b62000a1e90630103664a62000ec5565b8152602001601262000a3260035460ff1690565b62000a3f90600a62000eae565b62000a4f90630103664a62000ec5565b62000a5b919062000edf565b81525f6020808301829052737922057f408a5ba46743d2d7a0ad5a00ceea76f9604093840152845460018082018755958352918190208451600693840290910190815590840151948101805460ff191660ff90961695909517909455828201516002850155606083015160038501556080830151600485015560a090920151600590930180546001600160a01b0319166001600160a01b0390941693909317909255815160c08101909252908062000b1862278d00600c62000ec5565b81526018602082015260400162000b3160035460ff1690565b62000b3e90600a62000eae565b62000b4e90630337f98062000ec5565b8152602001601862000b6260035460ff1690565b62000b6f90600a62000eae565b62000b7f90630337f98062000ec5565b62000b8b919062000edf565b81525f602080830182905273fbb5d1b767c9d0cf48724d16ca1d8cf8dcd4ec00604093840152845460018082018755958352918190208451600693840290910190815590840151948101805460ff191660ff90961695909517909455908201516002840155606082015160038401556080820151600484015560a090910151600590920180546001600160a01b0319166001600160a01b03909316929092179091555460c05262000eff565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000c6057607f821691505b60208210810362000c7f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000cd2575f81815260208120601f850160051c8101602086101562000cad5750805b601f850160051c820191505b8181101562000cce5782815560010162000cb9565b5050505b505050565b81516001600160401b0381111562000cf35762000cf362000c37565b62000d0b8162000d04845462000c4b565b8462000c85565b602080601f83116001811462000d41575f841562000d295750858301515b5f19600386901b1c1916600185901b17855562000cce565b5f85815260208120601f198616915b8281101562000d715788860151825594840194600190910190840162000d50565b508582101562000d8f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000df357815f190482111562000dd75762000dd762000d9f565b8085161562000de557918102915b93841c939080029062000db8565b509250929050565b5f8262000e0b5750600162000ea8565b8162000e1957505f62000ea8565b816001811462000e32576002811462000e3d5762000e5d565b600191505062000ea8565b60ff84111562000e515762000e5162000d9f565b50506001821b62000ea8565b5060208310610133831016604e8410600b841016171562000e82575081810a62000ea8565b62000e8e838362000db3565b805f190482111562000ea45762000ea462000d9f565b0290505b92915050565b5f62000ebe60ff84168362000dfb565b9392505050565b808202811582820484141762000ea85762000ea862000d9f565b5f8262000efa57634e487b7160e01b5f52601260045260245ffd5b500490565b60805160a05160c051610b8762000f465f395f818161025c015261035301525f8181610283015281816103a101526103df01525f8181610220015261049a0152610b875ff3fe608060405234801561000f575f80fd5b50600436106100d9575f3560e01c806306fdde03146100dd578063095ea7b3146100fb5780631249c58b1461011e57806318160ddd1461012657806323b872dd146101385780633138b0a91461014b578063313ce5671461015357806342966c681461016857806370a082311461017d57806379cc6790146101a5578063821bee73146101b857806395d89b4114610203578063a9059cbb1461020b578063d5abeb011461021e578063dd62ed3e14610244578063dd8aec2014610257578063fa1acb5c1461027e575b5f80fd5b6100e56102a5565b6040516100f29190610919565b60405180910390f35b61010e61010936600461097f565b610335565b60405190151581526020016100f2565b61010e61034e565b6002545b6040519081526020016100f2565b61010e6101463660046109a7565b610524565b60065461012a565b60035460405160ff90911681526020016100f2565b61017b6101763660046109e0565b610547565b005b61012a61018b3660046109f7565b6001600160a01b03165f9081526020819052604090205490565b61017b6101b336600461097f565b610554565b6101cb6101c63660046109e0565b61056d565b6040805196875260ff909516602087015293850192909252606084015260808301526001600160a01b031660a082015260c0016100f2565b6100e56105be565b61010e61021936600461097f565b6105cd565b7f000000000000000000000000000000000000000000000000000000000000000061012a565b61012a610252366004610a17565b6105da565b61012a7f000000000000000000000000000000000000000000000000000000000000000081565b61012a7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546102b490610a48565b80601f01602080910402602001604051908101604052809291908181526020018280546102e090610a48565b801561032b5780601f106103025761010080835404028352916020019161032b565b820191905f5260205f20905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b5f33610342818585610604565b60019150505b92915050565b5f805b7f000000000000000000000000000000000000000000000000000000000000000081101561051c575f6006828154811061038d5761038d610a80565b905f5260205f2090600602019050805f01547f00000000000000000000000000000000000000000000000000000000000000006103ca9190610aa8565b42106105095780545f9062278d0090610403907f0000000000000000000000000000000000000000000000000000000000000000610aa8565b61040d9042610abb565b6104179190610ace565b600183015490915060ff16811161042e5780610437565b600182015460ff165b90505f82600301548261044a9190610aed565b90505f8360040154821161045e575f61046d565b600484015461046d9083610abb565b90505f811180156104915750836002015481856004015461048e9190610aa8565b11155b80156104d057507f0000000000000000000000000000000000000000000000000000000000000000816104c360025490565b6104cd9190610aa8565b11155b156105055780846004015f8282546104e89190610aa8565b90915550506005840154610505906001600160a01b031682610616565b5050505b508061051481610b04565b915050610351565b506001905090565b5f33610531858285610653565b61053c8585856106a3565b506001949350505050565b6105513382610700565b50565b61055f823383610653565b6105698282610700565b5050565b6006818154811061057c575f80fd5b5f91825260209091206006909102018054600182015460028301546003840154600485015460059095015493955060ff9092169390926001600160a01b031686565b6060600580546102b490610a48565b5f336103428185856106a3565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106118383836001610734565b505050565b6001600160a01b038216610648575f60405163ec442f0560e01b815260040161063f9190610b1c565b60405180910390fd5b6105695f8383610806565b5f61065e84846105da565b90505f19811461069d578181101561068f57828183604051637dc7a0d960e11b815260040161063f93929190610b30565b61069d84848484035f610734565b50505050565b6001600160a01b0383166106cc575f604051634b637e8f60e11b815260040161063f9190610b1c565b6001600160a01b0382166106f5575f60405163ec442f0560e01b815260040161063f9190610b1c565b610611838383610806565b6001600160a01b038216610729575f604051634b637e8f60e11b815260040161063f9190610b1c565b610569825f83610806565b6001600160a01b03841661075d575f60405163e602df0560e01b815260040161063f9190610b1c565b6001600160a01b038316610786575f604051634a1406b160e11b815260040161063f9190610b1c565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561069d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f891815260200190565b60405180910390a350505050565b6001600160a01b038316610830578060025f8282546108259190610aa8565b9091555061088d9050565b6001600160a01b0383165f908152602081905260409020548181101561086f5783818360405163391434e360e21b815260040161063f93929190610b30565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108a9576002805482900390556108c7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161090c91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b8181101561094457858101830151858201604001528201610928565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097a575f80fd5b919050565b5f8060408385031215610990575f80fd5b61099983610964565b946020939093013593505050565b5f805f606084860312156109b9575f80fd5b6109c284610964565b92506109d060208501610964565b9150604084013590509250925092565b5f602082840312156109f0575f80fd5b5035919050565b5f60208284031215610a07575f80fd5b610a1082610964565b9392505050565b5f8060408385031215610a28575f80fd5b610a3183610964565b9150610a3f60208401610964565b90509250929050565b600181811c90821680610a5c57607f821691505b602082108103610a7a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561034857610348610a94565b8181038181111561034857610348610a94565b5f82610ae857634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761034857610348610a94565b5f60018201610b1557610b15610a94565b5060010190565b6001600160a01b0391909116815260200190565b6001600160a01b03939093168352602083019190915260408201526060019056fea26469706673582212200cbd0dc64ceec6c46bca399e67a57b8a34961a2a05f1da302ab4909d5354577364736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100d9575f3560e01c806306fdde03146100dd578063095ea7b3146100fb5780631249c58b1461011e57806318160ddd1461012657806323b872dd146101385780633138b0a91461014b578063313ce5671461015357806342966c681461016857806370a082311461017d57806379cc6790146101a5578063821bee73146101b857806395d89b4114610203578063a9059cbb1461020b578063d5abeb011461021e578063dd62ed3e14610244578063dd8aec2014610257578063fa1acb5c1461027e575b5f80fd5b6100e56102a5565b6040516100f29190610919565b60405180910390f35b61010e61010936600461097f565b610335565b60405190151581526020016100f2565b61010e61034e565b6002545b6040519081526020016100f2565b61010e6101463660046109a7565b610524565b60065461012a565b60035460405160ff90911681526020016100f2565b61017b6101763660046109e0565b610547565b005b61012a61018b3660046109f7565b6001600160a01b03165f9081526020819052604090205490565b61017b6101b336600461097f565b610554565b6101cb6101c63660046109e0565b61056d565b6040805196875260ff909516602087015293850192909252606084015260808301526001600160a01b031660a082015260c0016100f2565b6100e56105be565b61010e61021936600461097f565b6105cd565b7f0000000000000000000000000000000000000000000000000853a0d2313c000061012a565b61012a610252366004610a17565b6105da565b61012a7f000000000000000000000000000000000000000000000000000000000000000881565b61012a7f0000000000000000000000000000000000000000000000000000000066e056eb81565b6060600480546102b490610a48565b80601f01602080910402602001604051908101604052809291908181526020018280546102e090610a48565b801561032b5780601f106103025761010080835404028352916020019161032b565b820191905f5260205f20905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b5f33610342818585610604565b60019150505b92915050565b5f805b7f000000000000000000000000000000000000000000000000000000000000000881101561051c575f6006828154811061038d5761038d610a80565b905f5260205f2090600602019050805f01547f0000000000000000000000000000000000000000000000000000000066e056eb6103ca9190610aa8565b42106105095780545f9062278d0090610403907f0000000000000000000000000000000000000000000000000000000066e056eb610aa8565b61040d9042610abb565b6104179190610ace565b600183015490915060ff16811161042e5780610437565b600182015460ff165b90505f82600301548261044a9190610aed565b90505f8360040154821161045e575f61046d565b600484015461046d9083610abb565b90505f811180156104915750836002015481856004015461048e9190610aa8565b11155b80156104d057507f0000000000000000000000000000000000000000000000000853a0d2313c0000816104c360025490565b6104cd9190610aa8565b11155b156105055780846004015f8282546104e89190610aa8565b90915550506005840154610505906001600160a01b031682610616565b5050505b508061051481610b04565b915050610351565b506001905090565b5f33610531858285610653565b61053c8585856106a3565b506001949350505050565b6105513382610700565b50565b61055f823383610653565b6105698282610700565b5050565b6006818154811061057c575f80fd5b5f91825260209091206006909102018054600182015460028301546003840154600485015460059095015493955060ff9092169390926001600160a01b031686565b6060600580546102b490610a48565b5f336103428185856106a3565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106118383836001610734565b505050565b6001600160a01b038216610648575f60405163ec442f0560e01b815260040161063f9190610b1c565b60405180910390fd5b6105695f8383610806565b5f61065e84846105da565b90505f19811461069d578181101561068f57828183604051637dc7a0d960e11b815260040161063f93929190610b30565b61069d84848484035f610734565b50505050565b6001600160a01b0383166106cc575f604051634b637e8f60e11b815260040161063f9190610b1c565b6001600160a01b0382166106f5575f60405163ec442f0560e01b815260040161063f9190610b1c565b610611838383610806565b6001600160a01b038216610729575f604051634b637e8f60e11b815260040161063f9190610b1c565b610569825f83610806565b6001600160a01b03841661075d575f60405163e602df0560e01b815260040161063f9190610b1c565b6001600160a01b038316610786575f604051634a1406b160e11b815260040161063f9190610b1c565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561069d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107f891815260200190565b60405180910390a350505050565b6001600160a01b038316610830578060025f8282546108259190610aa8565b9091555061088d9050565b6001600160a01b0383165f908152602081905260409020548181101561086f5783818360405163391434e360e21b815260040161063f93929190610b30565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108a9576002805482900390556108c7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161090c91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b8181101561094457858101830151858201604001528201610928565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097a575f80fd5b919050565b5f8060408385031215610990575f80fd5b61099983610964565b946020939093013593505050565b5f805f606084860312156109b9575f80fd5b6109c284610964565b92506109d060208501610964565b9150604084013590509250925092565b5f602082840312156109f0575f80fd5b5035919050565b5f60208284031215610a07575f80fd5b610a1082610964565b9392505050565b5f8060408385031215610a28575f80fd5b610a3183610964565b9150610a3f60208401610964565b90509250929050565b600181811c90821680610a5c57607f821691505b602082108103610a7a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561034857610348610a94565b8181038181111561034857610348610a94565b5f82610ae857634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761034857610348610a94565b5f60018201610b1557610b15610a94565b5060010190565b6001600160a01b0391909116815260200190565b6001600160a01b03939093168352602083019190915260408201526060019056fea26469706673582212200cbd0dc64ceec6c46bca399e67a57b8a34961a2a05f1da302ab4909d5354577364736f6c63430008140033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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