ETH Price: $2,587.04 (-2.85%)

Token

Golden Griffin Stone (GGS)
 

Overview

Max Total Supply

150,000,000 GGS

Holders

961

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
79 GGS

Value
$0.00
0x811f6ed60a86e5fc82a4ff238dd6fc69ee9f92b2
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:
GGSToken

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-23
*/

pragma solidity 0.5.10;

/**
 * @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) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }
}

contract Ownable {
    address public owner;

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


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */

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

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param _newOwner The address to transfer ownership to.
     */
    function transferOwnership(address _newOwner) public onlyOwner {
        _transferOwnership(_newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param _newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address _newOwner) internal {
        require(_newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }
}

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the `IERC20` interface.
 *
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;
    mapping (address => mapping (address => uint256)) internal _allowances;

    uint256 internal _totalSupply;

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

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

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

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 */
contract Pausable is Ownable {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initialize the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Return true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyOwner whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyOwner whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

contract GGSToken is ERC20Pausable {
    string public constant name = "Golden Griffin Stone";
    string public constant symbol = "GGS";
    uint8 public constant decimals = 18;
    uint256 internal constant INIT_TOTALSUPPLY = 150000000;  // Total amount of tokens
    address wallet = 0x114Adc53945dBAD3886279D1B87B6f207cA62c4D;

    constructor() public {
        _totalSupply = INIT_TOTALSUPPLY * 10 ** uint256(decimals);
        _balances[wallet] = _totalSupply;
        owner = wallet;
        emit Transfer(address(0), wallet, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

6080604052600480546001600160a01b03191673114adc53945dbad3886279d1b87b6f207ca62c4d17905534801561003657600080fd5b506003805460ff60a01b191681556a7c13bc4b2c133c560000006002819055600480546001600160a01b03908116600090815260208181526040808320869055935486546001600160a01b031916931692831790955582519384529151909391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a3610eb0806100cf6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102c8578063a9059cbb146102f4578063dd62ed3e14610320578063f2fde38b1461034e57610100565b806370a082311461026e5780638456cb59146102945780638da5cb5b1461029c57806395d89b41146102c057610100565b8063313ce567116100d3578063313ce5671461021257806339509351146102305780633f4ba83a1461025c5780635c975abb1461026657610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610374565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103a4565b604080519115158252519081900360200190f35b6101ca61040a565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b03813581169160208101359091169060400135610410565b61021a610478565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b03813516906020013561047d565b6102646104dc565b005b6101ae6105bc565b6101ca6004803603602081101561028457600080fd5b50356001600160a01b03166105cc565b6102646105e7565b6102a46106ca565b604080516001600160a01b039092168252519081900360200190f35b61010d6106d9565b6101ae600480360360408110156102de57600080fd5b506001600160a01b0381351690602001356106f8565b6101ae6004803603604081101561030a57600080fd5b506001600160a01b038135169060200135610757565b6101ca6004803603604081101561033657600080fd5b506001600160a01b03813581169160200135166107b6565b6102646004803603602081101561036457600080fd5b50356001600160a01b03166107e1565b60405180604001604052806014815260200173476f6c64656e204772696666696e2053746f6e6560601b81525081565b600354600090600160a01b900460ff16156103f9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104038383610836565b9392505050565b60025490565b600354600090600160a01b900460ff1615610465576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61047084848461084c565b949350505050565b601281565b600354600090600160a01b900460ff16156104d2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61040383836108bb565b6003546001600160a01b031633146105255760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b600354600160a01b900460ff1661057a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6003805460ff60a01b191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600354600160a01b900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b031633146106305760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b600354600160a01b900460ff1615610682576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6003546001600160a01b031681565b6040518060400160405280600381526020016247475360e81b81525081565b600354600090600160a01b900460ff161561074d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61040383836108f7565b600354600090600160a01b900460ff16156107ac576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610403838361094c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461082a5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b61083381610959565b50565b60006108433384846109fa565b50600192915050565b6000610859848484610ae6565b6108b184336108ac85604051806060016040528060288152602001610dc5602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff610c4216565b6109fa565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108439185906108ac908663ffffffff610cd916565b600061084333846108ac85604051806060016040528060258152602001610e57602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff610c4216565b6000610843338484610ae6565b6001600160a01b03811661099e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610d576026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610a3f5760405162461bcd60e51b8152600401808060200182810382526024815260200180610e126024913960400191505060405180910390fd5b6001600160a01b038216610a845760405162461bcd60e51b8152600401808060200182810382526022815260200180610d7d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b2b5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ded6025913960400191505060405180910390fd5b6001600160a01b038216610b705760405162461bcd60e51b8152600401808060200182810382526023815260200180610d346023913960400191505060405180910390fd5b610bb381604051806060016040528060268152602001610d9f602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c4216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610be8908263ffffffff610cd916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cd15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c96578181015183820152602001610c7e565b50505050905090810190601f168015610cc35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610403576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a207468652063616c6c6572206d757374206265206f776e657245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723058206aa867a1540353432c3bd3f31b430e792c22df7c7c6f2334c9000eeec58ea5d964736f6c634300050a0032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102c8578063a9059cbb146102f4578063dd62ed3e14610320578063f2fde38b1461034e57610100565b806370a082311461026e5780638456cb59146102945780638da5cb5b1461029c57806395d89b41146102c057610100565b8063313ce567116100d3578063313ce5671461021257806339509351146102305780633f4ba83a1461025c5780635c975abb1461026657610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610374565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103a4565b604080519115158252519081900360200190f35b6101ca61040a565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b03813581169160208101359091169060400135610410565b61021a610478565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b03813516906020013561047d565b6102646104dc565b005b6101ae6105bc565b6101ca6004803603602081101561028457600080fd5b50356001600160a01b03166105cc565b6102646105e7565b6102a46106ca565b604080516001600160a01b039092168252519081900360200190f35b61010d6106d9565b6101ae600480360360408110156102de57600080fd5b506001600160a01b0381351690602001356106f8565b6101ae6004803603604081101561030a57600080fd5b506001600160a01b038135169060200135610757565b6101ca6004803603604081101561033657600080fd5b506001600160a01b03813581169160200135166107b6565b6102646004803603602081101561036457600080fd5b50356001600160a01b03166107e1565b60405180604001604052806014815260200173476f6c64656e204772696666696e2053746f6e6560601b81525081565b600354600090600160a01b900460ff16156103f9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104038383610836565b9392505050565b60025490565b600354600090600160a01b900460ff1615610465576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61047084848461084c565b949350505050565b601281565b600354600090600160a01b900460ff16156104d2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61040383836108bb565b6003546001600160a01b031633146105255760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b600354600160a01b900460ff1661057a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6003805460ff60a01b191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600354600160a01b900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b031633146106305760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b600354600160a01b900460ff1615610682576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6003546001600160a01b031681565b6040518060400160405280600381526020016247475360e81b81525081565b600354600090600160a01b900460ff161561074d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61040383836108f7565b600354600090600160a01b900460ff16156107ac576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610403838361094c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461082a5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e366021913960400191505060405180910390fd5b61083381610959565b50565b60006108433384846109fa565b50600192915050565b6000610859848484610ae6565b6108b184336108ac85604051806060016040528060288152602001610dc5602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff610c4216565b6109fa565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108439185906108ac908663ffffffff610cd916565b600061084333846108ac85604051806060016040528060258152602001610e57602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff610c4216565b6000610843338484610ae6565b6001600160a01b03811661099e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610d576026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610a3f5760405162461bcd60e51b8152600401808060200182810382526024815260200180610e126024913960400191505060405180910390fd5b6001600160a01b038216610a845760405162461bcd60e51b8152600401808060200182810382526022815260200180610d7d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b2b5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ded6025913960400191505060405180910390fd5b6001600160a01b038216610b705760405162461bcd60e51b8152600401808060200182810382526023815260200180610d346023913960400191505060405180910390fd5b610bb381604051806060016040528060268152602001610d9f602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c4216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610be8908263ffffffff610cd916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cd15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c96578181015183820152602001610c7e565b50505050905090810190601f168015610cc35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610403576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a207468652063616c6c6572206d757374206265206f776e657245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723058206aa867a1540353432c3bd3f31b430e792c22df7c7c6f2334c9000eeec58ea5d964736f6c634300050a0032

Deployed Bytecode Sourcemap

16853:569:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16853:569:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16895:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16895:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16346:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16346:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9551:91;;;:::i;:::-;;;;;;;;;;;;;;;;16178:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16178:160:0;;;;;;;;;;;;;;;;;:::i;16998:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16494:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16494:167:0;;;;;;;;:::i;15780:117::-;;;:::i;:::-;;14990:78;;;:::i;9705:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9705:110:0;-1:-1:-1;;;;;9705:110:0;;:::i;15570:115::-;;;:::i;5354:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;5354:20:0;;;;;;;;;;;;;;16954:37;;;:::i;16669:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16669:177:0;;;;;;;;:::i;16038:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16038:132:0;;;;;;;;:::i;10247:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10247:134:0;;;;;;;;;;:::i;5987:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5987:111:0;-1:-1:-1;;;;;5987:111:0;;:::i;16895:52::-;;;;;;;;;;;;;;-1:-1:-1;;;16895:52:0;;;;:::o;16346:140::-;15227:7;;16425:4;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;16449:29;16463:7;16472:5;16449:13;:29::i;:::-;16442:36;16346:140;-1:-1:-1;;;16346:140:0:o;9551:91::-;9622:12;;9551:91;:::o;16178:160::-;15227:7;;16271:4;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;16295:35;16314:4;16320:2;16324:5;16295:18;:35::i;:::-;16288:42;16178:160;-1:-1:-1;;;;16178:160:0:o;16998:35::-;17031:2;16998:35;:::o;16494:167::-;15227:7;;16585:4;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;16609:44;16633:7;16642:10;16609:23;:44::i;15780:117::-;5746:5;;-1:-1:-1;;;;;5746:5:0;5732:10;:19;5724:65;;;;-1:-1:-1;;;5724:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15426:7;;-1:-1:-1;;;15426:7:0;;;;15418:40;;;;;-1:-1:-1;;;15418:40:0;;;;;;;;;;;;-1:-1:-1;;;15418:40:0;;;;;;;;;;;;;;;15838:7;:15;;-1:-1:-1;;;;15838:15:0;;;15869:20;;;15878:10;15869:20;;;;;;;;;;;;;15780:117::o;14990:78::-;15053:7;;-1:-1:-1;;;15053:7:0;;;;;14990:78::o;9705:110::-;-1:-1:-1;;;;;9789:18:0;9762:7;9789:18;;;;;;;;;;;;9705:110::o;15570:115::-;5746:5;;-1:-1:-1;;;;;5746:5:0;5732:10;:19;5724:65;;;;-1:-1:-1;;;5724:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15227:7;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;15629:7;:14;;-1:-1:-1;;;;15629:14:0;-1:-1:-1;;;15629:14:0;;;15659:18;;;15666:10;15659:18;;;;;;;;;;;;;15570:115::o;5354:20::-;;;-1:-1:-1;;;;;5354:20:0;;:::o;16954:37::-;;;;;;;;;;;;;;-1:-1:-1;;;16954:37:0;;;;:::o;16669:177::-;15227:7;;16765:4;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;16789:49;16813:7;16822:15;16789:23;:49::i;16038:132::-;15227:7;;16113:4;;-1:-1:-1;;;15227:7:0;;;;15226:8;15218:37;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;-1:-1:-1;;;15218:37:0;;;;;;;;;;;;;;;16137:25;16152:2;16156:5;16137:14;:25::i;10247:134::-;-1:-1:-1;;;;;10346:18:0;;;10319:7;10346:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10247:134::o;5987:111::-;5746:5;;-1:-1:-1;;;;;5746:5:0;5732:10;:19;5724:65;;;;-1:-1:-1;;;5724:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6061:29;6080:9;6061:18;:29::i;:::-;5987:111;:::o;10528:148::-;10593:4;10610:36;10619:10;10631:7;10640:5;10610:8;:36::i;:::-;-1:-1:-1;10664:4:0;10528:148;;;;:::o;11147:300::-;11236:4;11253:36;11263:6;11271:9;11282:6;11253:9;:36::i;:::-;11300:117;11309:6;11317:10;11329:87;11365:6;11329:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11329:19:0;;;;;;:11;:19;;;;;;;;11349:10;11329:31;;;;;;;;;:87;;:35;:87;:::i;:::-;11300:8;:117::i;:::-;-1:-1:-1;11435:4:0;11147:300;;;;;:::o;11856:206::-;11962:10;11936:4;11983:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11983:32:0;;;;;;;;;;11936:4;;11953:79;;11974:7;;11983:48;;12020:10;11983:48;:36;:48;:::i;12565:257::-;12650:4;12667:125;12676:10;12688:7;12697:94;12734:15;12697:94;;;;;;;;;;;;;;;;;12709:10;12697:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12697:32:0;;;;;;;;;;;:94;;:36;:94;:::i;10028:156::-;10097:4;10114:40;10124:10;10136:9;10147:6;10114:9;:40::i;6249:231::-;-1:-1:-1;;;;;6324:23:0;;6316:74;;;;-1:-1:-1;;;6316:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6427:5;;6406:38;;-1:-1:-1;;;;;6406:38:0;;;;6427:5;;6406:38;;6427:5;;6406:38;6455:5;:17;;-1:-1:-1;;;;;;6455:17:0;-1:-1:-1;;;;;6455:17:0;;;;;;;;;;6249:231::o;13892:335::-;-1:-1:-1;;;;;13985:19:0;;13977:68;;;;-1:-1:-1;;;13977:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14064:21:0;;14056:68;;;;-1:-1:-1;;;14056:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14137:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14188:31;;;;;;;;;;;;;;;;;13892:335;;;:::o;13312:471::-;-1:-1:-1;;;;;13410:20:0;;13402:70;;;;-1:-1:-1;;;13402:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13491:23:0;;13483:71;;;;-1:-1:-1;;;13483:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13587;13609:6;13587:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13587:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;13567:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13692:20;;;;;;;:32;;13717:6;13692:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13669:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13740:35;;;;;;;13669:20;;13740:35;;;;;;;;;;;;;13312:471;;;:::o;1746:192::-;1832:7;1868:12;1860:6;;;;1852:29;;;;-1:-1:-1;;;1852:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1852:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1904:5:0;;;1746:192::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://6aa867a1540353432c3bd3f31b430e792c22df7c7c6f2334c9000eeec58ea5d9
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.