ETH Price: $2,718.03 (+0.62%)

Token

iVipCoin (IVIP)
 

Overview

Max Total Supply

11,999,999,998 IVIP

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 5 Decimals)

Balance
0 IVIP

Value
$0.00
0x0ec55a7507d872f20eb0fd7e5694664546e63e5d
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:
ERC20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-19
*/

/**
 *Submitted for verification at Etherscan.io on 2023-01-05
*/

/**
 *Submitted for verification at Bscscan.com on 2023-01-04
*/

//SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() internal {}

    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;
    }
}
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
interface IERC20 {

    function totalSupply() external view returns (uint256);
    function preMineSupply() external view returns (uint256);
    function maxSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function symbol() external view returns (string memory);
    function name() external view returns (string memory);
    function getOwner() external view returns (address);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address _owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
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;
    }

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}
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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

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

contract ERC20 is Context, IERC20, Ownable {

    /**
     *      in the momento f its creation, 60% of the maximum supply will be created and sent directly to @dev wallet.
     *
     *      The maximum supply will be 20 billions of tokens, 
     *      which means a difference of 8 billions from the moment of creation until the maximum supplied amount.
     *
    */
    uint256 private constant _preMineSupply = 11999999998 * (10 ** 5); // 12 billions (60% supply)
    uint256 private constant _maxSupply = 20000000000 * (10 ** 5); // 20 billions max. supply (100% supply)

    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;

    /**
     * `_previousOwner` saves an address to check if @dev has sent the request.
     * `_locktime` stores the time that the tokens will be released to be minted.
     * `_nownow` stores the time that the issuing request was opened.
     * `_amountt` stores the amount of tokens that will be issued.
     * `amountMint` stores and makes public the amount of tokens that are intended to be issued.
    */
    address public _previousOwner;
    uint256 public _locktime;
    uint256 public _nownow;
    uint256 private _amountt;
    uint256 public amountMint;

    address _addressburn = 0x000000000000000000000000000000000000dEaD;

    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 5;

        _mint(msg.sender, _preMineSupply);
    }

    function getOwner() external override view returns (address) {
        return owner();
    }
    function name() public override view returns (string memory) {
        return _name;
    }
    function decimals() public override view returns (uint8) {
        return _decimals;
    }
    function symbol() public override view returns (string memory) {
        return _symbol;
    }
    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }
    /**
     *      Do a calculation in order to find out how many tokens are in circulation.
     *
     *  To find it out, we call the function balanceOf e execute the call on the burn wallet. 
     *  To find out how many tokens are in the burn wallet, we reduce this amount from the total supply.
     *  
    */
    function circulatingSupply() public view returns (uint256) {
        return _totalSupply.sub(balanceOf(_addressburn))/100000;
    }
    /**
     *      To do a calculation to find out how many tokens were burnt.
     *
     *   makes the call “return balanceOf(_addressburn)/100000;” to find out how many tokens the burn wallet has in it. 
     *   After that, the result is divided by “100,000” thus removing the number of decimals from the burn calculation. 
     *
    */
    function burn() public view returns (uint256) {
        return balanceOf(_addressburn)/100000;
    }
    function preMineSupply() public override view returns (uint256) {
        return _preMineSupply;
    }
    function maxSupply() public override view returns (uint256) {
        return _maxSupply;
    }
    function balanceOf(address account) public override view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {BEP20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {BEP20-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 {BEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20};
     *
     * 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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, 'BEP20: 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 {BEP20-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 {BEP20-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, 'BEP20: decreased allowance below zero')
        );
        return true;
    }

    /**
     *      before minting new coins, it goes through a “freezing” time / cooling off period.
     *
     *  'require(amount <= (_maxSupply / 5));' checks if the amount of coins to be created is 
     *  less or greater than 5% of the total supply. 
     *
     *  'require(time >= 7);' puts a limit so that that the variable ‘time’ needs to be equal or greater than 7.
     *
     *  '_locktime = now + (time ** 86400);' adds to the Variable ‘_locktime’ the current time + the time calculation. 
     *  This calculation is done by 'time ** 86400' , which means that the value inputted will be multiplied by 86400, 
     *  since the variable 'now' brings values in seconds. Therefore, if the variable ‘time’ receives 7, it will be multiplied by 86400. 
     *  In conclusion, in case the value of 'time' is equal to 7, there will be a “freezing time / cooling off period” until new tokens 
     *  can be minted again.
     *
     *  ' _nownow = now;' stores in the variable ‘_nownow’ the actual time that the variable ‘now’ entered in the 
     *  moment that it was used in the calculations above, and can be used as a comparison between the variable '_nownow’ and '_locktime’.
     *
     *  '_amountt = amount * (10 ** 5);' saves in the variable ‘_amountt’ the amount of tokens that will be minted. 
     *  This calculation is used in the next function.
     *
     *  'amountMint = amount;’ saves in the variable ‘amountMint’ the amount of tokens that will be minted. This variable is public.
    */
    function minttocome(uint256 time, uint256 amount) public virtual onlyOwner {
        _previousOwner = _msgSender();
        _amountt = amount * (10 ** 5);
        require(_amountt <= (_maxSupply / 5));
        require(time >= 7);
        _locktime = now + (time * 86400);
        _nownow = now;
        amountMint = amount;
    }

    /**
     *      Function that could be callled after the '_locktime' value has been exceeded.
     * 
     *  'require(now > _locktime , "mint Now");' checks if the current time is greater than the time stored in the variable '_locktime'.
     * 
     *  'require(_previousOwner == _msgSender(), "You don't have permission to unlock");' checks if @dev has issued the request.
     *
     *  '_mint(_msgSender(), _amountt);' calls the function ‘_mint’ to mint the quantity of tokens stored in the variable ‘_amountt’.
     *
     *  'return true;' returns ‘true’ for the Boolean.
     *
     */
    function mintnow() public virtual onlyOwner returns (bool) {
        require(now > _locktime , "mint Now");
        require(_previousOwner == _msgSender(), "You don't have permission to unlock");
        _mint(_msgSender(), _amountt);
        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), 'BEP20: transfer from the zero address');
        require(recipient != address(0), 'BEP20: transfer to the zero address');

        _balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance');
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     *      Function that will be used for minting new tokens.
     *  
     *  Firstly, it checks if the wallet is different from the null wallet. 
     *  Next, a verification is carried out to check if the total supply won’t be 
     *  surpassed after minting new iVips.
     * 
     *  '_locktime = now + now;' creates a new value for the variable ‘_locktime’ so as not to occur a new request 
     *  in the function ‘mintnow’ without having passed the function again 'minttocome'.
     *
     */
    function _mint(address account, uint256 amount) internal returns(bool) {
        require(account != address(0), 'BEP20: mint to the zero address');
        if (amount.add(_totalSupply) > _maxSupply) {
            return false;
        }

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
        _locktime = now + now;
        amountMint = 0;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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), 'BEP20: approve from the zero address');
        require(spender != address(0), 'BEP20: approve to the zero address');

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_locktime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nownow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_previousOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"amountMint","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":"burn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintnow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"minttocome","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMineSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261dead600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005457600080fd5b50604051620024eb380380620024eb833981810160405260408110156200007a57600080fd5b81019080805160405193929190846401000000008211156200009b57600080fd5b83820191506020820185811115620000b257600080fd5b8251866001820283011164010000000082111715620000d057600080fd5b8083526020830192505050908051906020019080838360005b8381101562000106578082015181840152602081019050620000e9565b50505050905090810190601f168015620001345780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200015857600080fd5b838201915060208201858111156200016f57600080fd5b82518660018202830111640100000000821117156200018d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620001c3578082015181840152602081019050620001a6565b50505050905090810190601f168015620001f15780820380516001836020036101000a031916815260200191505b5060405250505060006200020a6200031860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160049080519060200190620002c0929190620005bf565b508060059080519060200190620002d9929190620005bf565b506005600660006101000a81548160ff021916908360ff1602179055506200030f3366044364c5b7f2c06200032060201b60201c565b50505062000665565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620003c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b66071afd498d0000620003e9600354846200053660201b6200136a1790919060201c565b1115620003fa576000905062000530565b62000416826003546200053660201b6200136a1790919060201c565b6003819055506200047582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200053660201b6200136a1790919060201c565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a34242016007819055506000600a819055505b92915050565b600080828401905083811015620005b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200060257805160ff191683800117855562000633565b8280016001018555821562000633579182015b828111156200063257825182559160200191906001019062000615565b5b50905062000642919062000646565b5090565b5b808211156200066157600081600090555060010162000647565b5090565b611e7680620006756000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb01146106bd578063d9fd29d1146106db578063dd62ed3e146106f9578063f2fde38b1461077157610173565b8063a457c2d7146105bd578063a9059cbb14610621578063bc29b9cb1461068557610173565b8063715018a61461048c578063893d20e81461049657806389897789146104ca5780638da5cb5b146104e85780639358928b1461051c57806395d89b411461053a57610173565b806323b872dd1161013057806323b872dd146102d9578063313ce5671461035d578063395093511461037e57806344df8e70146103e25780636e63cd961461040057806370a082311461043457610173565b806306fdde0314610178578063095ea7b3146101fb5780630c16ea831461025f57806310fd3e451461027d57806318160ddd1461029b57806323b0a88a146102b9575b600080fd5b6101806107b5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610857565b60405180821515815260200191505060405180910390f35b610267610875565b6040518082815260200191505060405180910390f35b610285610884565b6040518082815260200191505060405180910390f35b6102a361088a565b6040518082815260200191505060405180910390f35b6102c1610894565b60405180821515815260200191505060405180910390f35b610345600480360360608110156102ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a9d565b60405180821515815260200191505060405180910390f35b610365610b76565b604051808260ff16815260200191505060405180910390f35b6103ca6004803603604081101561039457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b8d565b60405180821515815260200191505060405180910390f35b6103ea610c40565b6040518082815260200191505060405180910390f35b610408610c7e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca4565b6040518082815260200191505060405180910390f35b610494610ced565b005b61049e610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d2610e82565b6040518082815260200191505060405180910390f35b6104f0610e88565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610524610eb1565b6040518082815260200191505060405180910390f35b610542610f03565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610582578082015181840152602081019050610567565b50505050905090810190601f1680156105af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610609600480360360408110156105d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b61066d6004803603604081101561063757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611072565b60405180821515815260200191505060405180910390f35b6106bb6004803603604081101561069b57600080fd5b810190808035906020019092919080359060200190929190505050611090565b005b6106c56111fa565b6040518082815260200191505060405180910390f35b6106e3611209565b6040518082815260200191505060405180910390f35b61075b6004803603604081101561070f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061120f565b6040518082815260200191505060405180910390f35b6107b36004803603602081101561078757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611296565b005b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b600061086b6108646113f2565b84846113fa565b6001905092915050565b600066044364c5b7f2c0905090565b600a5481565b6000600354905090565b600061089e6113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60075442116109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f6d696e74204e6f7700000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6109dd6113f2565b73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611e1e6023913960400191505060405180910390fd5b610a95610a8d6113f2565b6009546115f1565b506001905090565b6000610aaa8484846117ef565b610b6b84610ab66113f2565b610b6685604051806060016040528060288152602001611d6660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1c6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b6113fa565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610c36610b9a6113f2565b84610c318560026000610bab6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b6113fa565b6001905092915050565b6000620186a0610c71600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ca4565b81610c7857fe5b04905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf56113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610e7d610e88565b905090565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620186a0610ef6610ee5600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ca4565b600354611b6990919063ffffffff16565b81610efd57fe5b04905090565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b5050505050905090565b6000611068610fb26113f2565b8461106385604051806060016040528060258152602001611dd76025913960026000610fdc6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b6113fa565b6001905092915050565b600061108661107f6113f2565b84846117ef565b6001905092915050565b6110986113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6111606113f2565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620186a08102600981905550600566071afd498d0000816111bd57fe5b0460095411156111cc57600080fd5b60078210156111da57600080fd5b62015180820242016007819055504260088190555080600a819055505050565b600066071afd498d0000905090565b60085481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61129e6113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61136781611bb3565b50565b6000808284019050838110156113e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611d1c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611506576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611dfc6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b66071afd498d00006116b26003548461136a90919063ffffffff16565b11156116c157600090506117e9565b6116d68260035461136a90919063ffffffff16565b60038190555061172e82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a34242016007819055506000600a819055505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611875576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611cf76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611db46023913960400191505060405180910390fd5b61196781604051806060016040528060268152602001611d8e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119fc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611b56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1b578082015181840152602081019050611b00565b50505050905090810190601f168015611b485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000611bab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aa9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611d406026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a20617070726f766520746f20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220a5b25a8aa86f643ba4f14cd6527632d309170d179e66dae4be93d5689b23b59764736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000869566970436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044956495000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb01146106bd578063d9fd29d1146106db578063dd62ed3e146106f9578063f2fde38b1461077157610173565b8063a457c2d7146105bd578063a9059cbb14610621578063bc29b9cb1461068557610173565b8063715018a61461048c578063893d20e81461049657806389897789146104ca5780638da5cb5b146104e85780639358928b1461051c57806395d89b411461053a57610173565b806323b872dd1161013057806323b872dd146102d9578063313ce5671461035d578063395093511461037e57806344df8e70146103e25780636e63cd961461040057806370a082311461043457610173565b806306fdde0314610178578063095ea7b3146101fb5780630c16ea831461025f57806310fd3e451461027d57806318160ddd1461029b57806323b0a88a146102b9575b600080fd5b6101806107b5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610857565b60405180821515815260200191505060405180910390f35b610267610875565b6040518082815260200191505060405180910390f35b610285610884565b6040518082815260200191505060405180910390f35b6102a361088a565b6040518082815260200191505060405180910390f35b6102c1610894565b60405180821515815260200191505060405180910390f35b610345600480360360608110156102ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a9d565b60405180821515815260200191505060405180910390f35b610365610b76565b604051808260ff16815260200191505060405180910390f35b6103ca6004803603604081101561039457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b8d565b60405180821515815260200191505060405180910390f35b6103ea610c40565b6040518082815260200191505060405180910390f35b610408610c7e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca4565b6040518082815260200191505060405180910390f35b610494610ced565b005b61049e610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d2610e82565b6040518082815260200191505060405180910390f35b6104f0610e88565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610524610eb1565b6040518082815260200191505060405180910390f35b610542610f03565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610582578082015181840152602081019050610567565b50505050905090810190601f1680156105af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610609600480360360408110156105d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b61066d6004803603604081101561063757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611072565b60405180821515815260200191505060405180910390f35b6106bb6004803603604081101561069b57600080fd5b810190808035906020019092919080359060200190929190505050611090565b005b6106c56111fa565b6040518082815260200191505060405180910390f35b6106e3611209565b6040518082815260200191505060405180910390f35b61075b6004803603604081101561070f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061120f565b6040518082815260200191505060405180910390f35b6107b36004803603602081101561078757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611296565b005b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b600061086b6108646113f2565b84846113fa565b6001905092915050565b600066044364c5b7f2c0905090565b600a5481565b6000600354905090565b600061089e6113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461095e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60075442116109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f6d696e74204e6f7700000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6109dd6113f2565b73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611e1e6023913960400191505060405180910390fd5b610a95610a8d6113f2565b6009546115f1565b506001905090565b6000610aaa8484846117ef565b610b6b84610ab66113f2565b610b6685604051806060016040528060288152602001611d6660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1c6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b6113fa565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610c36610b9a6113f2565b84610c318560026000610bab6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b6113fa565b6001905092915050565b6000620186a0610c71600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ca4565b81610c7857fe5b04905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf56113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610e7d610e88565b905090565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620186a0610ef6610ee5600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ca4565b600354611b6990919063ffffffff16565b81610efd57fe5b04905090565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b5050505050905090565b6000611068610fb26113f2565b8461106385604051806060016040528060258152602001611dd76025913960026000610fdc6113f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b6113fa565b6001905092915050565b600061108661107f6113f2565b84846117ef565b6001905092915050565b6110986113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6111606113f2565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620186a08102600981905550600566071afd498d0000816111bd57fe5b0460095411156111cc57600080fd5b60078210156111da57600080fd5b62015180820242016007819055504260088190555080600a819055505050565b600066071afd498d0000905090565b60085481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61129e6113f2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61136781611bb3565b50565b6000808284019050838110156113e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611d1c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611506576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611dfc6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b66071afd498d00006116b26003548461136a90919063ffffffff16565b11156116c157600090506117e9565b6116d68260035461136a90919063ffffffff16565b60038190555061172e82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a34242016007819055506000600a819055505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611875576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611cf76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611db46023913960400191505060405180910390fd5b61196781604051806060016040528060268152602001611d8e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa99092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119fc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611b56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1b578082015181840152602081019050611b00565b50505050905090810190601f168015611b485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000611bab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aa9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611d406026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a20617070726f766520746f20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220a5b25a8aa86f643ba4f14cd6527632d309170d179e66dae4be93d5689b23b59764736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000869566970436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044956495000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): iVipCoin
Arg [1] : symbol (string): IVIP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 69566970436f696e000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4956495000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15338:12363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17205:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19599:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18538:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16800:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17503:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24614:266;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20231:397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17303:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21036:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18430:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16673:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18750:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1893:140;;;:::i;:::-;;17105:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16709:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1251:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17933:133;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17401:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21748:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19081:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23647:337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18648:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16740:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19310:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2188:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17205:92;17251:13;17284:5;17277:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17205:92;:::o;19599:161::-;19674:4;19691:39;19700:12;:10;:12::i;:::-;19714:7;19723:6;19691:8;:39::i;:::-;19748:4;19741:11;;19599:161;;;;:::o;18538:104::-;18593:7;15764:23;18613:21;;18538:104;:::o;16800:25::-;;;;:::o;17503:100::-;17556:7;17583:12;;17576:19;;17503:100;:::o;24614:266::-;24667:4;1473:12;:10;:12::i;:::-;1463:22;;:6;;;;;;;;;;:22;;;1455:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24698:9:::1;;24692:3;:15;24684:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;24758:12;:10;:12::i;:::-;24740:30;;:14;;;;;;;;;;;:30;;;24732:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24821:29;24827:12;:10;:12::i;:::-;24841:8;;24821:5;:29::i;:::-;;24868:4;24861:11;;24614:266:::0;:::o;20231:397::-;20363:4;20380:36;20390:6;20398:9;20409:6;20380:9;:36::i;:::-;20427:171;20450:6;20471:12;:10;:12::i;:::-;20498:89;20536:6;20498:89;;;;;;;;;;;;;;;;;:11;:19;20510:6;20498:19;;;;;;;;;;;;;;;:33;20518:12;:10;:12::i;:::-;20498:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20427:8;:171::i;:::-;20616:4;20609:11;;20231:397;;;;;:::o;17303:92::-;17353:5;17378:9;;;;;;;;;;;17371:16;;17303:92;:::o;21036:210::-;21116:4;21133:83;21142:12;:10;:12::i;:::-;21156:7;21165:50;21204:10;21165:11;:25;21177:12;:10;:12::i;:::-;21165:25;;;;;;;;;;;;;;;:34;21191:7;21165:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21133:8;:83::i;:::-;21234:4;21227:11;;21036:210;;;;:::o;18430:102::-;18467:7;18518:6;18494:23;18504:12;;;;;;;;;;;18494:9;:23::i;:::-;:30;;;;;;18487:37;;18430:102;:::o;16673:29::-;;;;;;;;;;;;;:::o;18750:119::-;18816:7;18843:9;:18;18853:7;18843:18;;;;;;;;;;;;;;;;18836:25;;18750:119;;;:::o;1893:140::-;1473:12;:10;:12::i;:::-;1463:22;;:6;;;;;;;;;;:22;;;1455:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1992:1:::1;1955:40;;1976:6;::::0;::::1;;;;;;;;1955:40;;;;;;;;;;;;2023:1;2006:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1893:140::o:0;17105:94::-;17157:7;17184;:5;:7::i;:::-;17177:14;;17105:94;:::o;16709:24::-;;;;:::o;1251:79::-;1289:7;1316:6;;;;;;;;;;;1309:13;;1251:79;:::o;17933:133::-;17983:7;18052:6;18010:41;18027:23;18037:12;;;;;;;;;;;18027:9;:23::i;:::-;18010:12;;:16;;:41;;;;:::i;:::-;:48;;;;;;18003:55;;17933:133;:::o;17401:96::-;17449:13;17482:7;17475:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17401:96;:::o;21748:311::-;21833:4;21850:179;21873:12;:10;:12::i;:::-;21900:7;21922:96;21961:15;21922:96;;;;;;;;;;;;;;;;;:11;:25;21934:12;:10;:12::i;:::-;21922:25;;;;;;;;;;;;;;;:34;21948:7;21922:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21850:8;:179::i;:::-;22047:4;22040:11;;21748:311;;;;:::o;19081:167::-;19159:4;19176:42;19186:12;:10;:12::i;:::-;19200:9;19211:6;19176:9;:42::i;:::-;19236:4;19229:11;;19081:167;;;;:::o;23647:337::-;1473:12;:10;:12::i;:::-;1463:22;;:6;;;;;;;;;;:22;;;1455:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23750:12:::1;:10;:12::i;:::-;23733:14;;:29;;;;;;;;;;;;;;;;;;23794:7;23784:6;:18;23773:8;:29;;;;23847:1;15860:23;23834:14;;;;;;23821:8;;:28;;23813:37;;;::::0;::::1;;23877:1;23869:4;:9;;23861:18;;;::::0;::::1;;23916:5;23909:4;:12;23902:3;:20;23890:9;:32;;;;23943:3;23933:7;:13;;;;23970:6;23957:10;:19;;;;23647:337:::0;;:::o;18648:96::-;18699:7;15860:23;18719:17;;18648:96;:::o;16740:22::-;;;;:::o;19310:143::-;19391:7;19418:11;:18;19430:5;19418:18;;;;;;;;;;;;;;;:27;19437:7;19418:27;;;;;;;;;;;;;;;;19411:34;;19310:143;;;;:::o;2188:109::-;1473:12;:10;:12::i;:::-;1463:22;;:6;;;;;;;;;;:22;;;1455:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2261:28:::1;2280:8;2261:18;:28::i;:::-;2188:109:::0;:::o;3974:181::-;4032:7;4052:9;4068:1;4064;:5;4052:17;;4093:1;4088;:6;;4080:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4146:1;4139:8;;;3974:181;;;;:::o;415:98::-;460:15;495:10;488:17;;415:98;:::o;27326:372::-;27471:1;27454:19;;:5;:19;;;;27446:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27552:1;27533:21;;:7;:21;;;;27525:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27636:6;27606:11;:18;27618:5;27606:18;;;;;;;;;;;;;;;:27;27625:7;27606:27;;;;;;;;;;;;;;;:36;;;;27674:7;27658:32;;27667:5;27658:32;;;27683:6;27658:32;;;;;;;;;;;;;;;;;;27326:372;;;:::o;26415:471::-;26480:4;26524:1;26505:21;;:7;:21;;;;26497:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15860:23;26577:24;26588:12;;26577:6;:10;;:24;;;;:::i;:::-;:37;26573:82;;;26638:5;26631:12;;;;26573:82;26682:24;26699:6;26682:12;;:16;;:24;;;;:::i;:::-;26667:12;:39;;;;26738:30;26761:6;26738:9;:18;26748:7;26738:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;26717:9;:18;26727:7;26717:18;;;;;;;;;;;;;;;:51;;;;26805:7;26784:37;;26801:1;26784:37;;;26814:6;26784:37;;;;;;;;;;;;;;;;;;26850:3;26844;:9;26832;:21;;;;26877:1;26864:10;:14;;;;26415:471;;;;;:::o;25370:505::-;25520:1;25502:20;;:6;:20;;;;25494:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25604:1;25583:23;;:9;:23;;;;25575:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25679;25701:6;25679:71;;;;;;;;;;;;;;;;;:9;:17;25689:6;25679:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25659:9;:17;25669:6;25659:17;;;;;;;;;;;;;;;:91;;;;25784:32;25809:6;25784:9;:20;25794:9;25784:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;25761:9;:20;25771:9;25761:20;;;;;;;;;;;;;;;:55;;;;25849:9;25832:35;;25841:6;25832:35;;;25860:6;25832:35;;;;;;;;;;;;;;;;;;25370:505;;;:::o;4877:226::-;4997:7;5030:1;5025;:6;;5033:12;5017:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5057:9;5073:1;5069;:5;5057:17;;5094:1;5087:8;;;4877:226;;;;;:::o;4438:136::-;4496:7;4523:43;4527:1;4530;4523:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4516:50;;4438:136;;;;:::o;2403:229::-;2497:1;2477:22;;:8;:22;;;;2469:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587:8;2558:38;;2579:6;;;;;;;;;;2558:38;;;;;;;;;;;;2616:8;2607:6;;:17;;;;;;;;;;;;;;;;;;2403:229;:::o

Swarm Source

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