ETH Price: $1,881.23 (-12.26%)
 

Overview

Max Total Supply

555,555 CWT

Holders

23 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CryptoWars is a decentralized platform that was developed to gamify liquidity mining. The platform adopts a modular design which refers to the combination of various elements of the product to form a subsystem with specific functions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CWToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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 GSN 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.
 */
contract Context {
    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @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 guidelines: functions revert instead
 * of 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 {
    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;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), 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};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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 {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 {
        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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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


contract CWToken is ERC20 {

	address public MINING_ADDRESS;
	address public PRODUCT_DEVELOPMENT_ADDRESS;
	address public MARKETING_ADDRESS;
	address public PRESALE_ADDRESS;
	address public TEAM_ADDRESS;
	address public AIRDROP_ADDRESS;

	uint public constant MINING_SUPPLY 							= 394444.05e18;
	uint public constant PRODUCT_DEVELOPMENT_SUPPLY 			= 61111.05e18;
	uint public constant MARKETING_SUPPLY 						= 27777.75e18;
	uint public constant PRESALE_SUPPLY 						= 38888.85e18;
	uint public constant TEAM_SUPPLY 							= 27777.75e18;
	uint public constant AIRDROP_SUPPLY 						= 5555.55e18;

	uint public startingTime;

	constructor(address miningAddress,
				address productDevelopmentAddress, 
				address marketingAddress, 
				address presaleAddress, 
				address teamAddress, 
				address airdropAddress) public ERC20("CryptoWars Token", "CWT") {

		MINING_ADDRESS = miningAddress;
		PRODUCT_DEVELOPMENT_ADDRESS = productDevelopmentAddress;
		MARKETING_ADDRESS = marketingAddress;
		PRESALE_ADDRESS = presaleAddress;
		TEAM_ADDRESS = teamAddress;
		AIRDROP_ADDRESS = airdropAddress;

		_mint(MINING_ADDRESS, MINING_SUPPLY);
		_mint(PRODUCT_DEVELOPMENT_ADDRESS, PRODUCT_DEVELOPMENT_SUPPLY);
		_mint(MARKETING_ADDRESS, MARKETING_SUPPLY);
		_mint(PRESALE_ADDRESS, PRESALE_SUPPLY);
		_mint(TEAM_ADDRESS, TEAM_SUPPLY);
		_mint(AIRDROP_ADDRESS, AIRDROP_SUPPLY);

		startingTime = block.timestamp;
	}

	function transfer(address recipient, uint256 amount) public override returns (bool) {
		if(msg.sender == TEAM_ADDRESS && block.timestamp < startingTime.add(182 days)) {
			require(balanceOf(msg.sender).sub(amount) >= TEAM_SUPPLY, "half of year lockup");
		}

		return super.transfer(recipient, amount);
	}

	function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
		if(sender == TEAM_ADDRESS && block.timestamp < startingTime.add(182 days)) {
			require(balanceOf(sender).sub(amount) >= TEAM_SUPPLY, "half of year lockup");
		}
		
		return super.transferFrom(sender, recipient, amount);
	}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"miningAddress","type":"address"},{"internalType":"address","name":"productDevelopmentAddress","type":"address"},{"internalType":"address","name":"marketingAddress","type":"address"},{"internalType":"address","name":"presaleAddress","type":"address"},{"internalType":"address","name":"teamAddress","type":"address"},{"internalType":"address","name":"airdropAddress","type":"address"}],"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":"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":"AIRDROP_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AIRDROP_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINING_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINING_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRODUCT_DEVELOPMENT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRODUCT_DEVELOPMENT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"startingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001eda38038062001eda833981810160405260c08110156200003757600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506040518060400160405280601081526020017f43727970746f5761727320546f6b656e000000000000000000000000000000008152506040518060400160405280600381526020017f43575400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000fe929190620006af565b50806004908051906020019062000117929190620006af565b506012600560006101000a81548160ff021916908360ff160217905550505085600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002fa600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16695386dad3f4db227500006200044360201b60201c565b62000338600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16690cf0d62f42c7cf4100006200044360201b60201c565b62000376600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166905e1d5b8642c46ef00006200044360201b60201c565b620003b4600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1669083c2b35590ac9b500006200044360201b60201c565b620003f2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166905e1d5b8642c46ef00006200044360201b60201c565b62000430600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1669012d2abe7a6f416300006200044360201b60201c565b42600b8190555050505050505062000755565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620004fb600083836200062160201b60201c565b62000517816002546200062660201b62000ef01790919060201c565b60028190555062000575816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200062660201b62000ef01790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620006a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006f257805160ff191683800117855562000723565b8280016001018555821562000723579182015b828111156200072257825182559160200191906001019062000705565b5b50905062000732919062000736565b5090565b5b808211156200075157600081600090555060010162000737565b5090565b61177580620007656000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806373138e4f116100c3578063bf417b9f1161007c578063bf417b9f14610640578063dd62ed3e1461065e578063e689c476146106d6578063ea03d6541461070a578063f015bc931461073e578063fb2f66561461077257610158565b806373138e4f1461049b5780638a857bc1146104b957806395d89b41146104d7578063a457c2d71461055a578063a9059cbb146105be578063b9c3a8181461062257610158565b8063351509a811610115578063351509a81461033b578063395093511461036f57806339518b5e146103d357806341bd5071146103f15780636bdd23271461042557806370a082311461044357610158565b806302b043841461015d57806306fdde0314610191578063095ea7b31461021457806318160ddd1461027857806323b872dd14610296578063313ce5671461031a575b600080fd5b610165610790565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101996107b6565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101d95780820151818401526020810190506101be565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102606004803603604081101561022a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610858565b60405180821515815260200191505060405180910390f35b610280610876565b6040518082815260200191505060405180910390f35b610302600480360360608110156102ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610880565b60405180821515815260200191505060405180910390f35b6103226109a9565b604051808260ff16815260200191505060405180910390f35b6103436109c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103bb6004803603604081101561038557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e6565b60405180821515815260200191505060405180910390f35b6103db610a99565b6040518082815260200191505060405180910390f35b6103f9610a9f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61042d610ac5565b6040518082815260200191505060405180910390f35b6104856004803603602081101561045957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ad3565b6040518082815260200191505060405180910390f35b6104a3610b1b565b6040518082815260200191505060405180910390f35b6104c1610b29565b6040518082815260200191505060405180910390f35b6104df610b37565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561051f578082015181840152602081019050610504565b50505050905090810190601f16801561054c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105a66004803603604081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bd9565b60405180821515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca6565b60405180821515815260200191505060405180910390f35b61062a610dcd565b6040518082815260200191505060405180910390f35b610648610ddb565b6040518082815260200191505060405180910390f35b6106c06004803603604081101561067457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610de9565b6040518082815260200191505060405180910390f35b6106de610e70565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610712610e96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610746610ebc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077a610ee2565b6040518082815260200191505060405180910390f35b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600061086c610865610f78565b8484610f80565b6001905092915050565b6000600254905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156108f557506108f262eff100600b54610ef090919063ffffffff16565b42105b15610995576905e1d5b8642c46ef00006109208361091287610ad3565b61117790919063ffffffff16565b1015610994576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f68616c66206f662079656172206c6f636b75700000000000000000000000000081525060200191505060405180910390fd5b5b6109a08484846111c1565b90509392505050565b6000600560009054906101000a900460ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a8f6109f3610f78565b84610a8a8560016000610a04610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef090919063ffffffff16565b610f80565b6001905092915050565b600b5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b690cf0d62f42c7cf41000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b69083c2b35590ac9b5000081565b69012d2abe7a6f4163000081565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b5050505050905090565b6000610c9c610be6610f78565b84610c978560405180606001604052806025815260200161171b6025913960016000610c10610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b610f80565b6001905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610d1b5750610d1862eff100600b54610ef090919063ffffffff16565b42105b15610dbb576905e1d5b8642c46ef0000610d4683610d3833610ad3565b61117790919063ffffffff16565b1015610dba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f68616c66206f662079656172206c6f636b75700000000000000000000000000081525060200191505060405180910390fd5b5b610dc5838361135a565b905092915050565b6905e1d5b8642c46ef000081565b695386dad3f4db2275000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6905e1d5b8642c46ef000081565b600080828401905083811015610f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806116f76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806116626022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006111b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061129a565b905092915050565b60006111ce848484611378565b61128f846111da610f78565b61128a856040518060600160405280602881526020016116aa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611240610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b610f80565b600190509392505050565b6000838311158290611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561130c5780820151818401526020810190506112f1565b50505050905090810190601f1680156113395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061136e611367610f78565b8484611378565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806116d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061163f6023913960400191505060405180910390fd5b61148f838383611639565b6114fa81604051806060016040528060268152602001611684602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061158d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a5ae5373ac5e1b4dc9f53bd9d5e65a778b4ee9aa66aeff619f86a1111e49e10364736f6c634300060c003300000000000000000000000022d13c06d10bab29a630824af62c1c592de22f14000000000000000000000000873dc40b9c4b4b551a0f3e8f289792f4ebd019ee000000000000000000000000bf1904f7b7e48d3556215a31d3c81969d5c01979000000000000000000000000b9ff9a4073b5ced227dbb8fa9867d72e8a3a5d8d000000000000000000000000364141392bb76e96410659bd8ce13e1d5ae06e220000000000000000000000008351f5a26d543714f071df3700f2ed56d7bc1eb1

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806373138e4f116100c3578063bf417b9f1161007c578063bf417b9f14610640578063dd62ed3e1461065e578063e689c476146106d6578063ea03d6541461070a578063f015bc931461073e578063fb2f66561461077257610158565b806373138e4f1461049b5780638a857bc1146104b957806395d89b41146104d7578063a457c2d71461055a578063a9059cbb146105be578063b9c3a8181461062257610158565b8063351509a811610115578063351509a81461033b578063395093511461036f57806339518b5e146103d357806341bd5071146103f15780636bdd23271461042557806370a082311461044357610158565b806302b043841461015d57806306fdde0314610191578063095ea7b31461021457806318160ddd1461027857806323b872dd14610296578063313ce5671461031a575b600080fd5b610165610790565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101996107b6565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101d95780820151818401526020810190506101be565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102606004803603604081101561022a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610858565b60405180821515815260200191505060405180910390f35b610280610876565b6040518082815260200191505060405180910390f35b610302600480360360608110156102ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610880565b60405180821515815260200191505060405180910390f35b6103226109a9565b604051808260ff16815260200191505060405180910390f35b6103436109c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103bb6004803603604081101561038557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e6565b60405180821515815260200191505060405180910390f35b6103db610a99565b6040518082815260200191505060405180910390f35b6103f9610a9f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61042d610ac5565b6040518082815260200191505060405180910390f35b6104856004803603602081101561045957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ad3565b6040518082815260200191505060405180910390f35b6104a3610b1b565b6040518082815260200191505060405180910390f35b6104c1610b29565b6040518082815260200191505060405180910390f35b6104df610b37565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561051f578082015181840152602081019050610504565b50505050905090810190601f16801561054c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105a66004803603604081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bd9565b60405180821515815260200191505060405180910390f35b61060a600480360360408110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca6565b60405180821515815260200191505060405180910390f35b61062a610dcd565b6040518082815260200191505060405180910390f35b610648610ddb565b6040518082815260200191505060405180910390f35b6106c06004803603604081101561067457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610de9565b6040518082815260200191505060405180910390f35b6106de610e70565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610712610e96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610746610ebc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077a610ee2565b6040518082815260200191505060405180910390f35b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b600061086c610865610f78565b8484610f80565b6001905092915050565b6000600254905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156108f557506108f262eff100600b54610ef090919063ffffffff16565b42105b15610995576905e1d5b8642c46ef00006109208361091287610ad3565b61117790919063ffffffff16565b1015610994576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f68616c66206f662079656172206c6f636b75700000000000000000000000000081525060200191505060405180910390fd5b5b6109a08484846111c1565b90509392505050565b6000600560009054906101000a900460ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a8f6109f3610f78565b84610a8a8560016000610a04610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef090919063ffffffff16565b610f80565b6001905092915050565b600b5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b690cf0d62f42c7cf41000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b69083c2b35590ac9b5000081565b69012d2abe7a6f4163000081565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b5050505050905090565b6000610c9c610be6610f78565b84610c978560405180606001604052806025815260200161171b6025913960016000610c10610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b610f80565b6001905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610d1b5750610d1862eff100600b54610ef090919063ffffffff16565b42105b15610dbb576905e1d5b8642c46ef0000610d4683610d3833610ad3565b61117790919063ffffffff16565b1015610dba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f68616c66206f662079656172206c6f636b75700000000000000000000000000081525060200191505060405180910390fd5b5b610dc5838361135a565b905092915050565b6905e1d5b8642c46ef000081565b695386dad3f4db2275000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6905e1d5b8642c46ef000081565b600080828401905083811015610f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806116f76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806116626022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006111b983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061129a565b905092915050565b60006111ce848484611378565b61128f846111da610f78565b61128a856040518060600160405280602881526020016116aa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611240610f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b610f80565b600190509392505050565b6000838311158290611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561130c5780820151818401526020810190506112f1565b50505050905090810190601f1680156113395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061136e611367610f78565b8484611378565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806116d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061163f6023913960400191505060405180910390fd5b61148f838383611639565b6114fa81604051806060016040528060268152602001611684602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061158d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a5ae5373ac5e1b4dc9f53bd9d5e65a778b4ee9aa66aeff619f86a1111e49e10364736f6c634300060c0033

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

00000000000000000000000022d13c06d10bab29a630824af62c1c592de22f14000000000000000000000000873dc40b9c4b4b551a0f3e8f289792f4ebd019ee000000000000000000000000bf1904f7b7e48d3556215a31d3c81969d5c01979000000000000000000000000b9ff9a4073b5ced227dbb8fa9867d72e8a3a5d8d000000000000000000000000364141392bb76e96410659bd8ce13e1d5ae06e220000000000000000000000008351f5a26d543714f071df3700f2ed56d7bc1eb1

-----Decoded View---------------
Arg [0] : miningAddress (address): 0x22d13C06D10bAB29A630824af62C1c592dE22F14
Arg [1] : productDevelopmentAddress (address): 0x873Dc40b9C4B4b551A0F3E8f289792F4eBD019ee
Arg [2] : marketingAddress (address): 0xbF1904F7b7E48D3556215a31d3C81969d5C01979
Arg [3] : presaleAddress (address): 0xB9ff9a4073B5CEd227dbb8Fa9867d72E8A3a5d8D
Arg [4] : teamAddress (address): 0x364141392Bb76E96410659bd8Ce13e1D5aE06e22
Arg [5] : airdropAddress (address): 0x8351f5a26D543714f071DF3700F2ED56D7bc1EB1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000022d13c06d10bab29a630824af62c1c592de22f14
Arg [1] : 000000000000000000000000873dc40b9c4b4b551a0f3e8f289792f4ebd019ee
Arg [2] : 000000000000000000000000bf1904f7b7e48d3556215a31d3c81969d5c01979
Arg [3] : 000000000000000000000000b9ff9a4073b5ced227dbb8fa9867d72e8a3a5d8d
Arg [4] : 000000000000000000000000364141392bb76e96410659bd8ce13e1d5ae06e22
Arg [5] : 0000000000000000000000008351f5a26d543714f071df3700f2ed56d7bc1eb1


Deployed Bytecode Sourcemap

25751:2103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25963:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17006:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19104:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18081:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27514:337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17933:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25932:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20469:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26364:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25816:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26059:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18244:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26188:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26304:54;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17208:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21182:261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27198:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26247:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25999:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18814:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25862:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25783:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25898:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26127:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25963:30;;;;;;;;;;;;;:::o;17006:83::-;17043:13;17076:5;17069:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17006:83;:::o;19104:161::-;19179:4;19196:39;19205:12;:10;:12::i;:::-;19219:7;19228:6;19196:8;:39::i;:::-;19253:4;19246:11;;19104:161;;;;:::o;18081:100::-;18134:7;18161:12;;18154:19;;18081:100;:::o;27514:337::-;27612:4;27636:12;;;;;;;;;;;27626:22;;:6;:22;;;:70;;;;;27670:26;27687:8;27670:12;;:16;;:26;;;;:::i;:::-;27652:15;:44;27626:70;27623:163;;;26289:11;27712:29;27734:6;27712:17;27722:6;27712:9;:17::i;:::-;:21;;:29;;;;:::i;:::-;:44;;27704:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27623:163;27801:45;27820:6;27828:9;27839:6;27801:18;:45::i;:::-;27794:52;;27514:337;;;;;:::o;17933:83::-;17974:5;17999:9;;;;;;;;;;;17992:16;;17933:83;:::o;25932:27::-;;;;;;;;;;;;;:::o;20469:210::-;20549:4;20566:83;20575:12;:10;:12::i;:::-;20589:7;20598:50;20637:10;20598:11;:25;20610:12;:10;:12::i;:::-;20598:25;;;;;;;;;;;;;;;:34;20624:7;20598:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20566:8;:83::i;:::-;20667:4;20660:11;;20469:210;;;;:::o;26364:24::-;;;;:::o;25816:42::-;;;;;;;;;;;;;:::o;26059:64::-;26112:11;26059:64;:::o;18244:119::-;18310:7;18337:9;:18;18347:7;18337:18;;;;;;;;;;;;;;;;18330:25;;18244:119;;;:::o;26188:55::-;26232:11;26188:55;:::o;26304:54::-;26348:10;26304:54;:::o;17208:87::-;17247:13;17280:7;17273:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17208:87;:::o;21182:261::-;21267:4;21284:129;21293:12;:10;:12::i;:::-;21307:7;21316:96;21355:15;21316:96;;;;;;;;;;;;;;;;;:11;:25;21328:12;:10;:12::i;:::-;21316:25;;;;;;;;;;;;;;;:34;21342:7;21316:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21284:8;:129::i;:::-;21431:4;21424:11;;21182:261;;;;:::o;27198:311::-;27276:4;27304:12;;;;;;;;;;;27290:26;;:10;:26;;;:74;;;;;27338:26;27355:8;27338:12;;:16;;:26;;;;:::i;:::-;27320:15;:44;27290:74;27287:171;;;26289:11;27380:33;27406:6;27380:21;27390:10;27380:9;:21::i;:::-;:25;;:33;;;;:::i;:::-;:48;;27372:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27287:171;27471:33;27486:9;27497:6;27471:14;:33::i;:::-;27464:40;;27198:311;;;;:::o;26247:53::-;26289:11;26247:53;:::o;25999:56::-;26043:12;25999:56;:::o;18814:143::-;18895:7;18922:11;:18;18934:5;18922:18;;;;;;;;;;;;;;;:27;18941:7;18922:27;;;;;;;;;;;;;;;;18915:34;;18814:143;;;;:::o;25862:32::-;;;;;;;;;;;;;:::o;25783:29::-;;;;;;;;;;;;;:::o;25898:30::-;;;;;;;;;;;;;:::o;26127:57::-;26173:11;26127:57;:::o;1776:181::-;1834:7;1854:9;1870:1;1866;:5;1854:17;;1895:1;1890;:6;;1882:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948:1;1941:8;;;1776:181;;;;:::o;596:98::-;641:15;676:10;669:17;;596:98;:::o;24295:338::-;24406:1;24389:19;;:5;:19;;;;24381:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24487:1;24468:21;;:7;:21;;;;24460:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24571:6;24541:11;:18;24553:5;24541:18;;;;;;;;;;;;;;;:27;24560:7;24541:27;;;;;;;;;;;;;;;:36;;;;24609:7;24593:32;;24602:5;24593:32;;;24618:6;24593:32;;;;;;;;;;;;;;;;;;24295:338;;;:::o;2240:136::-;2298:7;2325:43;2329:1;2332;2325:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2318:50;;2240:136;;;;:::o;19739:321::-;19845:4;19862:36;19872:6;19880:9;19891:6;19862:9;:36::i;:::-;19909:121;19918:6;19926:12;:10;:12::i;:::-;19940:89;19978:6;19940:89;;;;;;;;;;;;;;;;;:11;:19;19952:6;19940:19;;;;;;;;;;;;;;;:33;19960:12;:10;:12::i;:::-;19940:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;19909:8;:121::i;:::-;20048:4;20041:11;;19739:321;;;;;:::o;2679:192::-;2765:7;2798:1;2793;:6;;2801:12;2785:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2825:9;2841:1;2837;:5;2825:17;;2862:1;2855:8;;;2679:192;;;;;:::o;18576:175::-;18662:4;18679:42;18689:12;:10;:12::i;:::-;18703:9;18714:6;18679:9;:42::i;:::-;18739:4;18732:11;;18576:175;;;;:::o;21933:531::-;22049:1;22031:20;;:6;:20;;;;22023:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22133:1;22112:23;;:9;:23;;;;22104:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22188:47;22209:6;22217:9;22228:6;22188:20;:47::i;:::-;22268:71;22290:6;22268:71;;;;;;;;;;;;;;;;;:9;:17;22278:6;22268:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22248:9;:17;22258:6;22248:17;;;;;;;;;;;;;;;:91;;;;22373:32;22398:6;22373:9;:20;22383:9;22373:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22350:9;:20;22360:9;22350:20;;;;;;;;;;;;;;;:55;;;;22438:9;22421:35;;22430:6;22421:35;;;22449:6;22421:35;;;;;;;;;;;;;;;;;;21933:531;;;:::o;25658:84::-;;;;:::o

Swarm Source

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