POL Price: $0.717394 (+2.47%)
Gas: 41.6 GWei
 

Overview

Max Total Supply

1,000,000,000 GREENGOLD

Holders

740

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-05-24
*/

/**
 *Submitted for verification at BscScan.com on 2021-04-21
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.6.12;

interface IERC20 {

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}
interface IToken {
    function transfer(address _to, uint256 _value) external;
}

contract Token is Context, IERC20, Ownable{
    using SafeMath for uint256;
    using Address for address;

    string public name;
    string public symbol;
    uint8   public decimals;
    uint256 public _totalSupply;


    mapping (address => uint256) private _balanceOf;
    mapping (address => mapping (address => uint256)) private _allowance;
    mapping (address => bool) public blacklist;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Burn(address indexed from, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event SetBlacklist(address user,bool isBlacklist);

    constructor () public{
        _balanceOf[msg.sender] = 1000000000000000;            // Give the creator all initial tokens
        _totalSupply = 1000000000000000;                    // Update total supply
        name = 'GREENGOLD';                                 // Set the name for display purposes
        symbol = 'GREENGOLD';                                   // Set the symbol for display purposes
        decimals = 6;                                      // Amount of decimals for display purposes
        emit Transfer(0x0000000000000000000000000000000000000000, msg.sender, _totalSupply);
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balanceOf[account];
    }
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowance[owner][spender];
    }
    function setSymbol(string memory _symbol) external onlyOwner() {
        symbol = _symbol;
    }

    function setName(string memory _name) external onlyOwner() {
        name = _name;
    }

    function transfer(address _to, uint256 _value) public override returns (bool success){/* Send coins */
        require (_to != address(0x0) && !blacklist[msg.sender]);    // Prevent transfer to 0x0 address. Use burn() instead
        require (_value >= 0) ;
        require (_balanceOf[msg.sender] >= _value) ;           // Check if the sender has enough
        _balanceOf[msg.sender] = _balanceOf[msg.sender].sub(_value); // Subtract from the sender
        _balanceOf[_to] = _balanceOf[_to].add(_value);               // Add the same to the recipient
        emit Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
        return true;
    }

    function approve(address _spender, uint256 _value) public override returns (bool success) {/* Allow another contract to spend some tokens in your behalf */
        _allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public override returns (bool success) {/* A contract attempts to get the coins */
        require (_to != address(0x0) && !blacklist[_from]) ;                                // Prevent transfer to 0x0 address. Use burn() instead
        require (_value >= 0) ;
        require (_balanceOf[_from] >= _value) ;                 // Check if the sender has enough
        require (_value <= _allowance[_from][msg.sender]) ;     // Check allowance
        _balanceOf[_from] = _balanceOf[_from].sub(_value);                           // Subtract from the sender
        _balanceOf[_to] = _balanceOf[_to].add(_value);                             // Add the same to the recipient
        _allowance[_from][msg.sender] = _allowance[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    function burn(uint256 _value) public returns (bool success) {
        require (_balanceOf[msg.sender] >= _value) ;            // Check if the sender has enough
        require (_value > 0) ;
        _balanceOf[msg.sender] = _balanceOf[msg.sender].sub(_value);            // Subtract from the sender
        _totalSupply = _totalSupply.sub(_value);                                // Updates totalSupply
        emit Burn(msg.sender, _value);
        emit Transfer(msg.sender, address(0), _value);
        return true;
    }

    function setBlacklist(address _user,bool _isBlacklist) external onlyOwner(){
        blacklist[_user] = _isBlacklist;
        emit SetBlacklist(_user,_isBlacklist);
    }

    // transfer balance to owner
    function withdrawToken(address token, uint amount,address payable  toAdd) external onlyOwner(){
        if (token == address(0x0))
            toAdd.transfer(amount);
        else
            IToken(token).transfer(toAdd, amount);
    }

receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklist","type":"bool"}],"name":"SetBlacklist","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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_isBlacklist","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"toAdd","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060006200001e6200013b565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3503360009081526007602090815260409182902066038d7ea4c6800090819055600655815180830190925260098083526811d491515391d3d31160ba1b92909101918252620000b9916003916200013f565b506040805180820190915260098082526811d491515391d3d31160ba1b6020909201918252620000ec916004916200013f565b506005805460ff1916600690811790915554604080519182525133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3620001db565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b6113fd80620001eb6000396000f3fe6080604052600436106101395760003560e01c80638da5cb5b116100ab578063b84c82461161006f578063b84c824614610461578063c47f002714610514578063dd467064146105c7578063dd62ed3e146105f1578063f2fde38b1461062c578063f9f92be41461065f57610140565b80638da5cb5b146103b857806395d89b41146103e9578063a69df4b5146103fe578063a9059cbb14610413578063b6c523241461044c57610140565b8063313ce567116100fd578063313ce567146102c35780633ccdbb28146102ee5780633eaaf86b1461033157806342966c681461034657806370a0823114610370578063715018a6146103a357610140565b806306fdde0314610145578063095ea7b3146101cf578063153b0d1e1461021c57806318160ddd1461025957806323b872dd1461028057610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610692565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101db57600080fd5b50610208600480360360408110156101f257600080fd5b506001600160a01b038135169060200135610720565b604080519115158252519081900360200190f35b34801561022857600080fd5b506102576004803603604081101561023f57600080fd5b506001600160a01b0381351690602001351515610786565b005b34801561026557600080fd5b5061026e610842565b60408051918252519081900360200190f35b34801561028c57600080fd5b50610208600480360360608110156102a357600080fd5b506001600160a01b03813581169160208101359091169060400135610848565b3480156102cf57600080fd5b506102d86109d4565b6040805160ff9092168252519081900360200190f35b3480156102fa57600080fd5b506102576004803603606081101561031157600080fd5b506001600160a01b038135811691602081013591604090910135166109dd565b34801561033d57600080fd5b5061026e610af4565b34801561035257600080fd5b506102086004803603602081101561036957600080fd5b5035610afa565b34801561037c57600080fd5b5061026e6004803603602081101561039357600080fd5b50356001600160a01b0316610bd3565b3480156103af57600080fd5b50610257610bee565b3480156103c457600080fd5b506103cd610c7e565b604080516001600160a01b039092168252519081900360200190f35b3480156103f557600080fd5b5061015a610c8d565b34801561040a57600080fd5b50610257610ce8565b34801561041f57600080fd5b506102086004803603604081101561043657600080fd5b506001600160a01b038135169060200135610dd6565b34801561045857600080fd5b5061026e610ec9565b34801561046d57600080fd5b506102576004803603602081101561048457600080fd5b81019060208101813564010000000081111561049f57600080fd5b8201836020820111156104b157600080fd5b803590602001918460018302840111640100000000831117156104d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ecf945050505050565b34801561052057600080fd5b506102576004803603602081101561053757600080fd5b81019060208101813564010000000081111561055257600080fd5b82018360208201111561056457600080fd5b8035906020019184600183028401116401000000008311171561058657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f3e945050505050565b3480156105d357600080fd5b50610257600480360360208110156105ea57600080fd5b5035610fa9565b3480156105fd57600080fd5b5061026e6004803603604081101561061457600080fd5b506001600160a01b0381358116916020013516611047565b34801561063857600080fd5b506102576004803603602081101561064f57600080fd5b50356001600160a01b0316611072565b34801561066b57600080fd5b506102086004803603602081101561068257600080fd5b50356001600160a01b0316611158565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b61078e61116d565b6000546001600160a01b039081169116146107de576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517ffed07c88bd5d31bfd0ce77ed7ffdc74a163a61cfc5edcec801e3a7954e33d6e79281900390910190a15050565b60065490565b60006001600160a01b0383161580159061087b57506001600160a01b03841660009081526009602052604090205460ff16155b61088457600080fd5b6001600160a01b0384166000908152600760205260409020548211156108a957600080fd5b6001600160a01b03841660009081526008602090815260408083203384529091529020548211156108d957600080fd5b6001600160a01b0384166000908152600760205260409020546108fc9083611171565b6001600160a01b03808616600090815260076020526040808220939093559085168152205461092b90836111ba565b6001600160a01b0380851660009081526007602090815260408083209490945591871681526008825282812033825290915220546109699083611171565b6001600160a01b03808616600081815260086020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b6109e561116d565b6000546001600160a01b03908116911614610a35576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b038316610a7f576040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b50610aef565b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ad657600080fd5b505af1158015610aea573d6000803e3d6000fd5b505050505b505050565b60065481565b33600090815260076020526040812054821115610b1657600080fd5b60008211610b2357600080fd5b33600090815260076020526040902054610b3d9083611171565b33600090815260076020526040902055600654610b5a9083611171565b60065560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a260408051838152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001919050565b6001600160a01b031660009081526007602052604090205490565b610bf661116d565b6000546001600160a01b03908116911614610c46576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020611385833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107185780601f106106ed57610100808354040283529160200191610718565b6001546001600160a01b03163314610d315760405162461bcd60e51b81526004018080602001828103825260238152602001806113a56023913960400191505060405180910390fd5b6002544211610d87576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061138583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b03831615801590610e0057503360009081526009602052604090205460ff16155b610e0957600080fd5b33600090815260076020526040902054821115610e2557600080fd5b33600090815260076020526040902054610e3f9083611171565b33600090815260076020526040808220929092556001600160a01b03851681522054610e6b90836111ba565b6001600160a01b0384166000818152600760209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60025490565b610ed761116d565b6000546001600160a01b03908116911614610f27576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b8051610f3a9060049060208401906112ab565b5050565b610f4661116d565b6000546001600160a01b03908116911614610f96576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b8051610f3a9060039060208401906112ab565b610fb161116d565b6000546001600160a01b03908116911614611001576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020611385833981519152908290a350565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61107a61116d565b6000546001600160a01b039081169116146110ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b03811661110f5760405162461bcd60e51b815260040180806020018281038252602681526020018061133f6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061138583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205460ff1681565b3390565b60006111b383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611214565b9392505050565b6000828201838110156111b3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156112a35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611268578181015183820152602001611250565b50505050905090810190601f1680156112955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106112ec57805160ff1916838001178555611319565b82800160010185558215611319579182015b828111156113195782518255916020019190600101906112fe565b50611325929150611329565b5090565b5b80821115611325576000815560010161132a56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220714a3480cc46029accbf9ed0e0c7575815354b6c6db7b6c8c3484a4671759d4864736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106101395760003560e01c80638da5cb5b116100ab578063b84c82461161006f578063b84c824614610461578063c47f002714610514578063dd467064146105c7578063dd62ed3e146105f1578063f2fde38b1461062c578063f9f92be41461065f57610140565b80638da5cb5b146103b857806395d89b41146103e9578063a69df4b5146103fe578063a9059cbb14610413578063b6c523241461044c57610140565b8063313ce567116100fd578063313ce567146102c35780633ccdbb28146102ee5780633eaaf86b1461033157806342966c681461034657806370a0823114610370578063715018a6146103a357610140565b806306fdde0314610145578063095ea7b3146101cf578063153b0d1e1461021c57806318160ddd1461025957806323b872dd1461028057610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610692565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101db57600080fd5b50610208600480360360408110156101f257600080fd5b506001600160a01b038135169060200135610720565b604080519115158252519081900360200190f35b34801561022857600080fd5b506102576004803603604081101561023f57600080fd5b506001600160a01b0381351690602001351515610786565b005b34801561026557600080fd5b5061026e610842565b60408051918252519081900360200190f35b34801561028c57600080fd5b50610208600480360360608110156102a357600080fd5b506001600160a01b03813581169160208101359091169060400135610848565b3480156102cf57600080fd5b506102d86109d4565b6040805160ff9092168252519081900360200190f35b3480156102fa57600080fd5b506102576004803603606081101561031157600080fd5b506001600160a01b038135811691602081013591604090910135166109dd565b34801561033d57600080fd5b5061026e610af4565b34801561035257600080fd5b506102086004803603602081101561036957600080fd5b5035610afa565b34801561037c57600080fd5b5061026e6004803603602081101561039357600080fd5b50356001600160a01b0316610bd3565b3480156103af57600080fd5b50610257610bee565b3480156103c457600080fd5b506103cd610c7e565b604080516001600160a01b039092168252519081900360200190f35b3480156103f557600080fd5b5061015a610c8d565b34801561040a57600080fd5b50610257610ce8565b34801561041f57600080fd5b506102086004803603604081101561043657600080fd5b506001600160a01b038135169060200135610dd6565b34801561045857600080fd5b5061026e610ec9565b34801561046d57600080fd5b506102576004803603602081101561048457600080fd5b81019060208101813564010000000081111561049f57600080fd5b8201836020820111156104b157600080fd5b803590602001918460018302840111640100000000831117156104d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ecf945050505050565b34801561052057600080fd5b506102576004803603602081101561053757600080fd5b81019060208101813564010000000081111561055257600080fd5b82018360208201111561056457600080fd5b8035906020019184600183028401116401000000008311171561058657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f3e945050505050565b3480156105d357600080fd5b50610257600480360360208110156105ea57600080fd5b5035610fa9565b3480156105fd57600080fd5b5061026e6004803603604081101561061457600080fd5b506001600160a01b0381358116916020013516611047565b34801561063857600080fd5b506102576004803603602081101561064f57600080fd5b50356001600160a01b0316611072565b34801561066b57600080fd5b506102086004803603602081101561068257600080fd5b50356001600160a01b0316611158565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b61078e61116d565b6000546001600160a01b039081169116146107de576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517ffed07c88bd5d31bfd0ce77ed7ffdc74a163a61cfc5edcec801e3a7954e33d6e79281900390910190a15050565b60065490565b60006001600160a01b0383161580159061087b57506001600160a01b03841660009081526009602052604090205460ff16155b61088457600080fd5b6001600160a01b0384166000908152600760205260409020548211156108a957600080fd5b6001600160a01b03841660009081526008602090815260408083203384529091529020548211156108d957600080fd5b6001600160a01b0384166000908152600760205260409020546108fc9083611171565b6001600160a01b03808616600090815260076020526040808220939093559085168152205461092b90836111ba565b6001600160a01b0380851660009081526007602090815260408083209490945591871681526008825282812033825290915220546109699083611171565b6001600160a01b03808616600081815260086020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b6109e561116d565b6000546001600160a01b03908116911614610a35576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b038316610a7f576040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b50610aef565b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610ad657600080fd5b505af1158015610aea573d6000803e3d6000fd5b505050505b505050565b60065481565b33600090815260076020526040812054821115610b1657600080fd5b60008211610b2357600080fd5b33600090815260076020526040902054610b3d9083611171565b33600090815260076020526040902055600654610b5a9083611171565b60065560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a260408051838152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001919050565b6001600160a01b031660009081526007602052604090205490565b610bf661116d565b6000546001600160a01b03908116911614610c46576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020611385833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107185780601f106106ed57610100808354040283529160200191610718565b6001546001600160a01b03163314610d315760405162461bcd60e51b81526004018080602001828103825260238152602001806113a56023913960400191505060405180910390fd5b6002544211610d87576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061138583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b03831615801590610e0057503360009081526009602052604090205460ff16155b610e0957600080fd5b33600090815260076020526040902054821115610e2557600080fd5b33600090815260076020526040902054610e3f9083611171565b33600090815260076020526040808220929092556001600160a01b03851681522054610e6b90836111ba565b6001600160a01b0384166000818152600760209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60025490565b610ed761116d565b6000546001600160a01b03908116911614610f27576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b8051610f3a9060049060208401906112ab565b5050565b610f4661116d565b6000546001600160a01b03908116911614610f96576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b8051610f3a9060039060208401906112ab565b610fb161116d565b6000546001600160a01b03908116911614611001576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020611385833981519152908290a350565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61107a61116d565b6000546001600160a01b039081169116146110ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611365833981519152604482015290519081900360640190fd5b6001600160a01b03811661110f5760405162461bcd60e51b815260040180806020018281038252602681526020018061133f6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061138583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205460ff1681565b3390565b60006111b383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611214565b9392505050565b6000828201838110156111b3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156112a35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611268578181015183820152602001611250565b50505050905090810190601f1680156112955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106112ec57805160ff1916838001178555611319565b82800160010185558215611319579182015b828111156113195782518255916020019190600101906112fe565b50611325929150611329565b5090565b5b80821115611325576000815560010161132a56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636ba2646970667358221220714a3480cc46029accbf9ed0e0c7575815354b6c6db7b6c8c3484a4671759d4864736f6c634300060c0033

Deployed Bytecode Sourcemap

17665:4853:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17781:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20282:290;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20282:290:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22026:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22026:173:0;;;;;;;;;;:::i;:::-;;18977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20580:900;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20580:900:0;;;;;;;;;;;;;;;;;:::i;17833:23::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22241:241;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22241:241:0;;;;;;;;;;;;;;;;;:::i;17863:27::-;;;;;;;;;;;;;:::i;21488:530::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21488:530:0;;:::i;19085:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19085:120:0;-1:-1:-1;;;;;19085:120:0;;:::i;16274:148::-;;;;;;;;;;;;;:::i;15638:79::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;15638:79:0;;;;;;;;;;;;;;17806:20;;;;;;;;;;;;;:::i;17280:293::-;;;;;;;;;;;;;:::i;19563:711::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19563:711:0;;;;;;;;:::i;16829:89::-;;;;;;;;;;;;;:::i;19359:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19359:98:0;;-1:-1:-1;19359:98:0;;-1:-1:-1;;;;;19359:98:0:i;19465:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19465:90:0;;-1:-1:-1;19465:90:0;;-1:-1:-1;;;;;19465:90:0:i;16994:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16994:214:0;;:::i;19211:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19211:142:0;;;;;;;;;;:::i;16577:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16577:244:0;-1:-1:-1;;;;;16577:244:0;;:::i;18030:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18030:42:0;-1:-1:-1;;;;;18030:42:0;;:::i;17781:18::-;;;;;;;;;;;;;;;-1:-1:-1;;17781:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20282:290::-;20458:10;20358:12;20447:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;20447:32:0;;;;;;;;;;;:41;;;20504:38;;;;;;;20358:12;;20447:32;;20458:10;;20504:38;;;;;;;;-1:-1:-1;20560:4:0;20282:290;;;;:::o;22026:173::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22112:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;;;;:31;;-1:-1:-1;;22112:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;22159:32;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;22026:173:::0;;:::o;18977:100::-;19057:12;;18977:100;:::o;20580:900::-;20671:12;-1:-1:-1;;;;;20747:19:0;;;;;;:40;;-1:-1:-1;;;;;;20771:16:0;;;;;;:9;:16;;;;;;;;20770:17;20747:40;20738:50;;;;;;-1:-1:-1;;;;;20928:17:0;;;;;;:10;:17;;;;;;:27;-1:-1:-1;20928:27:0;20919:37;;;;;;-1:-1:-1;;;;;21037:17:0;;;;;;:10;:17;;;;;;;;21055:10;21037:29;;;;;;;;21027:39;;;21018:49;;;;;;-1:-1:-1;;;;;21122:17:0;;;;;;:10;:17;;;;;;:29;;21144:6;21122:21;:29::i;:::-;-1:-1:-1;;;;;21102:17:0;;;;;;;:10;:17;;;;;;:49;;;;21234:15;;;;;;;:27;;21254:6;21234:19;:27::i;:::-;-1:-1:-1;;;;;21216:15:0;;;;;;;:10;:15;;;;;;;;:45;;;;21365:17;;;;;:10;:17;;;;;21383:10;21365:29;;;;;;;:41;;21399:6;21365:33;:41::i;:::-;-1:-1:-1;;;;;21333:17:0;;;;;;;:10;:17;;;;;;;;21351:10;21333:29;;;;;;;;:73;;;;21422:28;;;;;;;;;;;21333:17;;21422:28;;;;;;;;;;;-1:-1:-1;21468:4:0;20580:900;;;;;:::o;17833:23::-;;;;;;:::o;22241:241::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22350:21:0;::::1;22346:128;;22386:22;::::0;-1:-1:-1;;;;;22386:14:0;::::1;::::0;:22;::::1;;;::::0;22401:6;;22386:22:::1;::::0;;;22401:6;22386:14;:22;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;22346:128;;;22444:5;-1:-1:-1::0;;;;;22437:22:0::1;;22460:5;22467:6;22437:37;;;;;;;;;;;;;-1:-1:-1::0;;;;;22437:37:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;22346:128;22241:241:::0;;;:::o;17863:27::-;;;;:::o;21488:530::-;21579:10;21534:12;21568:22;;;:10;:22;;;;;;:32;-1:-1:-1;21568:32:0;21559:42;;;;;;21676:1;21667:6;:10;21658:20;;;;;;21726:10;21715:22;;;;:10;:22;;;;;;:34;;21742:6;21715:26;:34::i;:::-;21701:10;21690:22;;;;:10;:22;;;;;:59;21814:12;;:24;;21831:6;21814:16;:24::i;:::-;21799:12;:39;21908:24;;;;;;;;21913:10;;21908:24;;;;;;;;;;21948:40;;;;;;;;21977:1;;21957:10;;21948:40;;;;;;;;;-1:-1:-1;22006:4:0;21488:530;;;:::o;19085:120::-;-1:-1:-1;;;;;19178:19:0;19151:7;19178:19;;;:10;:19;;;;;;;19085:120::o;16274:148::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;16381:1:::1;16365:6:::0;;16344:40:::1;::::0;-1:-1:-1;;;;;16365:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16344:40:0;16381:1;;16344:40:::1;16412:1;16395:19:::0;;-1:-1:-1;;;;;;16395:19:0::1;::::0;;16274:148::o;15638:79::-;15676:7;15703:6;-1:-1:-1;;;;;15703:6:0;15638:79;:::o;17806:20::-;;;;;;;;;;;;;;;-1:-1:-1;;17806:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17280:293;17332:14;;-1:-1:-1;;;;;17332:14:0;17350:10;17332:28;17324:76;;;;-1:-1:-1;;;17324:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17425:9;;17419:3;:15;17411:60;;;;;-1:-1:-1;;;17411:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17516:14;;;17508:6;;17487:44;;-1:-1:-1;;;;;17516:14:0;;;;17508:6;;;;-1:-1:-1;;;;;;;;;;;17487:44:0;;17551:14;;;17542:23;;-1:-1:-1;;;;;;17542:23:0;-1:-1:-1;;;;;17551:14:0;;;17542:23;;;;;;17280:293::o;19563:711::-;19635:12;-1:-1:-1;;;;;19684:19:0;;;;;;:45;;-1:-1:-1;19718:10:0;19708:21;;;;:9;:21;;;;;;;;19707:22;19684:45;19675:55;;;;;;19852:10;19841:22;;;;:10;:22;;;;;;:32;-1:-1:-1;19841:32:0;19832:42;;;;;;19966:10;19955:22;;;;:10;:22;;;;;;:34;;19982:6;19955:26;:34::i;:::-;19941:10;19930:22;;;;:10;:22;;;;;;:59;;;;-1:-1:-1;;;;;20046:15:0;;;;;;:27;;20066:6;20046:19;:27::i;:::-;-1:-1:-1;;;;;20028:15:0;;;;;;:10;:15;;;;;;;;;:45;;;;20136:33;;;;;;;20028:15;;20145:10;;20136:33;;;;;;;;;;-1:-1:-1;20262:4:0;19563:711;;;;:::o;16829:89::-;16901:9;;16829:89;:::o;19359:98::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;19433:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;19359:98:::0;:::o;19465:90::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;19535:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;16994:214::-:0;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;17075:6:::1;::::0;;;17058:23;;-1:-1:-1;;;;;;17058:23:0;;::::1;-1:-1:-1::0;;;;;17075:6:0;::::1;17058:23;::::0;;;17092:19:::1;::::0;;17134:3:::1;:10:::0;::::1;17122:9;:22:::0;17160:40:::1;::::0;17075:6;;-1:-1:-1;;;;;;;;;;;17160:40:0;17075:6;;17160:40:::1;16994:214:::0;:::o;19211:142::-;-1:-1:-1;;;;;19319:17:0;;;19292:7;19319:17;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;19211:142::o;16577:244::-;15860:12;:10;:12::i;:::-;15850:6;;-1:-1:-1;;;;;15850:6:0;;;:22;;;15842:67;;;;;-1:-1:-1;;;15842:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15842:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16666:22:0;::::1;16658:73;;;;-1:-1:-1::0;;;16658:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16768:6;::::0;;16747:38:::1;::::0;-1:-1:-1;;;;;16747:38:0;;::::1;::::0;16768:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16747:38:0;::::1;16796:6;:17:::0;;-1:-1:-1;;;;;;16796:17:0::1;-1:-1:-1::0;;;;;16796:17:0;;;::::1;::::0;;;::::1;::::0;;16577:244::o;18030:42::-;;;;;;;;;;;;;;;:::o;8044:106::-;8132:10;8044:106;:::o;4015:136::-;4073:7;4100:43;4104:1;4107;4100:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4093:50;4015:136;-1:-1:-1;;;4015:136:0:o;3551:181::-;3609:7;3641:5;;;3665:6;;;;3657:46;;;;;-1:-1:-1;;;3657:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4454:192;4540:7;4576:12;4568:6;;;;4560:29;;;;-1:-1:-1;;;4560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4612:5:0;;;4454:192::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

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