ETH Price: $2,989.45 (+1.46%)
Gas: 7 Gwei

Token

MoCo Token (MoCo)
 

Overview

Max Total Supply

8,000,000,000 MoCo

Holders

1,785

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

MoCo Platform creates the next age of social networking services and live streaming, in 3D and 4K VR, while providing a means for its users to monetize their creativity and talents

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoCoToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.4.19;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

/*
 * Token related contracts
 */

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    function totalSupply() public view returns (uint256);
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender)
    public view returns (uint256);

    function transferFrom(address from, address to, uint256 value)
    public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256) {
        return balances[_owner];
    }
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
    public returns (bool)
    {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * 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
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(
        address _owner,
        address _spender
    )
    public
    view
    returns (uint256)
    {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(
        address _spender,
        uint _addedValue
    )
    public
    returns (bool)
    {
        allowed[msg.sender][_spender] = (
        allowed[msg.sender][_spender].add(_addedValue));
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(
        address _spender,
        uint _subtractedValue
    )
    public
    returns (bool)
    {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}


/*
 * Ownable
 *
 * Base contract with an owner.
 * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
 */

contract Ownable {
    address public owner;
    address public newOwner;

    function Ownable() public {
        owner = msg.sender;
    }

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    modifier onlyNewOwner() {
        require(msg.sender == newOwner);
        _;
    }
    /*
    // This code is dangerous because an error in the newOwner
    // means that this contract will be ownerless
    function transfer(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        owner = newOwner;
    }
   */

    function proposeNewOwner(address _newOwner) external onlyOwner {
        require(_newOwner != address(0));
        newOwner = _newOwner;
    }

    function acceptOwnership() external onlyNewOwner {
        require(newOwner != owner);
        owner = newOwner;
    }
}



/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
    event Mint(address indexed to, uint256 amount);
    event MintFinished();

    bool public mintingFinished = false;


    modifier canMint() {
        require(!mintingFinished);
        _;
    }

    modifier hasMintPermission() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(
        address _to,
        uint256 _amount
    )
    hasMintPermission
    canMint
    public
    returns (bool)
    {
        totalSupply_ = totalSupply_.add(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Mint(_to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;
    }

    /**
     * @dev Function to stop minting new tokens.
     * @return True if the operation was successful.
     */
    function finishMinting() onlyOwner canMint public returns (bool) {
        mintingFinished = true;
        emit MintFinished();
        return true;
    }
}


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        _burn(msg.sender, _value);
    }

    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }
}



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


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

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

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() onlyOwner whenNotPaused public {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() onlyOwner whenPaused public {
        paused = false;
        emit Unpause();
    }
}


/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, 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 increaseApproval(
        address _spender,
        uint _addedValue
    )
    public
    whenNotPaused
    returns (bool success)
    {
        return super.increaseApproval(_spender, _addedValue);
    }

    function decreaseApproval(
        address _spender,
        uint _subtractedValue
    )
    public
    whenNotPaused
    returns (bool success)
    {
        return super.decreaseApproval(_spender, _subtractedValue);
    }
}


/*
 * Actual token contract
 */

contract MoCoToken is BurnableToken, MintableToken, PausableToken {
    using SafeMath for uint256;

    string public constant name = "MoCo Token";
    string public constant symbol = "MoCo";
    uint public constant decimals = 18;
    uint256 public totalSupply;

    function MoCoToken() public {
        totalSupply = 8000000000 ether;
        balances[msg.sender] = totalSupply;
        paused = true;
    }

    function activate() external onlyOwner {
        unpause();
        finishMinting();
    }

    // This method will be used by the crowdsale smart contract
    // that owns the MoCoToken and will distribute
    // the tokens to the contributors
    function initialTransfer(address _to, uint _value) external onlyOwner returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

//    function burn(uint256 _amount) public onlyOwner {
//        super.burn(_amount);
//    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":false,"inputs":[],"name":"activate","outputs":[],"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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"proposeNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"initialTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"},{"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"}]

60606040526004805460a060020a61ffff0219169055341561002057600080fd5b60038054600160a060020a033316600160a060020a031990911681179091556b19d971e4fe8401e7400000006005819055600091825260208290526040909120556004805460a860020a60ff0219167501000000000000000000000000000000000000000000179055610ffa806100986000396000f30060606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde0314610169578063095ea7b3146101f35780630f15f4c01461021557806318160ddd1461022a57806323b872dd1461024f578063313ce567146102775780633f4ba83a1461028a57806340c10f191461029d57806342966c68146102bf5780635c975abb146102d557806366188463146102e857806370a082311461030a57806379ba5097146103295780637d64bcb41461033c5780638456cb591461034f5780638da5cb5b1461036257806395d89b4114610391578063a9059cbb146103a4578063b1f8100d146103c6578063d4ee1d90146103e5578063d73dd623146103f8578063dd62ed3e1461041a578063eee392c81461043f575b600080fd5b341561014d57600080fd5b610155610461565b604051901515815260200160405180910390f35b341561017457600080fd5b61017c610482565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b85780820151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fe57600080fd5b610155600160a060020a03600435166024356104b9565b341561022057600080fd5b6102286104e4565b005b341561023557600080fd5b61023d610512565b60405190815260200160405180910390f35b341561025a57600080fd5b610155600160a060020a0360043581169060243516604435610518565b341561028257600080fd5b61023d610545565b341561029557600080fd5b61022861054a565b34156102a857600080fd5b610155600160a060020a03600435166024356105ca565b34156102ca57600080fd5b6102286004356106d7565b34156102e057600080fd5b6101556106e1565b34156102f357600080fd5b610155600160a060020a03600435166024356106f1565b341561031557600080fd5b61023d600160a060020a0360043516610715565b341561033457600080fd5b610228610730565b341561034757600080fd5b61015561079a565b341561035a57600080fd5b610228610847565b341561036d57600080fd5b6103756108cc565b604051600160a060020a03909116815260200160405180910390f35b341561039c57600080fd5b61017c6108db565b34156103af57600080fd5b610155600160a060020a0360043516602435610912565b34156103d157600080fd5b610228600160a060020a0360043516610936565b34156103f057600080fd5b610375610995565b341561040357600080fd5b610155600160a060020a03600435166024356109a4565b341561042557600080fd5b61023d600160a060020a03600435811690602435166109c8565b341561044a57600080fd5b610155600160a060020a03600435166024356109f3565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051908101604052600a81527f4d6f436f20546f6b656e00000000000000000000000000000000000000000000602082015281565b60045460009060a860020a900460ff16156104d357600080fd5b6104dd8383610b0f565b9392505050565b60035433600160a060020a039081169116146104ff57600080fd5b61050761054a565b61050f61079a565b50565b60055481565b60045460009060a860020a900460ff161561053257600080fd5b61053d848484610b7b565b949350505050565b601281565b60035433600160a060020a0390811691161461056557600080fd5b60045460a860020a900460ff16151561057d57600080fd5b6004805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a039081169116146105e857600080fd5b60045474010000000000000000000000000000000000000000900460ff161561061057600080fd5b600154610623908363ffffffff610ce916565b600155600160a060020a03831660009081526020819052604090205461064f908363ffffffff610ce916565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a0383166000600080516020610faf8339815191528460405190815260200160405180910390a350600192915050565b61050f3382610cfc565b60045460a860020a900460ff1681565b60045460009060a860020a900460ff161561070b57600080fd5b6104dd8383610de7565b600160a060020a031660009081526020819052604090205490565b60045433600160a060020a0390811691161461074b57600080fd5b600354600454600160a060020a039081169116141561076957600080fd5b6004546003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055565b60035460009033600160a060020a039081169116146107b857600080fd5b60045474010000000000000000000000000000000000000000900460ff16156107e057600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035433600160a060020a0390811691161461086257600080fd5b60045460a860020a900460ff161561087957600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600481527f4d6f436f00000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a860020a900460ff161561092c57600080fd5b6104dd8383610ee1565b60035433600160a060020a0390811691161461095157600080fd5b600160a060020a038116151561096657600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a031681565b60045460009060a860020a900460ff16156109be57600080fd5b6104dd8383610ef8565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460009033600160a060020a03908116911614610a1157600080fd5b600160a060020a0383161515610a2657600080fd5b600160a060020a033316600090815260208190526040902054821115610a4b57600080fd5b600160a060020a033316600090815260208190526040902054610a74908363ffffffff610f9c16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aa9908363ffffffff610ce916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610faf8339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b9257600080fd5b600160a060020a038416600090815260208190526040902054821115610bb757600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610bea57600080fd5b600160a060020a038416600090815260208190526040902054610c13908363ffffffff610f9c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c48908363ffffffff610ce916565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c8e908363ffffffff610f9c16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610faf8339815191529085905190815260200160405180910390a35060019392505050565b81810182811015610cf657fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610d2157600080fd5b600160a060020a038216600090815260208190526040902054610d4a908263ffffffff610f9c16565b600160a060020a038316600090815260208190526040902055600154610d76908263ffffffff610f9c16565b600155600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a038316600080516020610faf8339815191528360405190815260200160405180910390a35050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610e4457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610e7b565b610e54818463ffffffff610f9c16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610a2657600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f30908363ffffffff610ce916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600082821115610fa857fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820177b410f5588908dca62577248eccbe9ad215ac9581c9af8fc5e0cd6c58f55230029

Deployed Bytecode

0x60606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde0314610169578063095ea7b3146101f35780630f15f4c01461021557806318160ddd1461022a57806323b872dd1461024f578063313ce567146102775780633f4ba83a1461028a57806340c10f191461029d57806342966c68146102bf5780635c975abb146102d557806366188463146102e857806370a082311461030a57806379ba5097146103295780637d64bcb41461033c5780638456cb591461034f5780638da5cb5b1461036257806395d89b4114610391578063a9059cbb146103a4578063b1f8100d146103c6578063d4ee1d90146103e5578063d73dd623146103f8578063dd62ed3e1461041a578063eee392c81461043f575b600080fd5b341561014d57600080fd5b610155610461565b604051901515815260200160405180910390f35b341561017457600080fd5b61017c610482565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b85780820151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fe57600080fd5b610155600160a060020a03600435166024356104b9565b341561022057600080fd5b6102286104e4565b005b341561023557600080fd5b61023d610512565b60405190815260200160405180910390f35b341561025a57600080fd5b610155600160a060020a0360043581169060243516604435610518565b341561028257600080fd5b61023d610545565b341561029557600080fd5b61022861054a565b34156102a857600080fd5b610155600160a060020a03600435166024356105ca565b34156102ca57600080fd5b6102286004356106d7565b34156102e057600080fd5b6101556106e1565b34156102f357600080fd5b610155600160a060020a03600435166024356106f1565b341561031557600080fd5b61023d600160a060020a0360043516610715565b341561033457600080fd5b610228610730565b341561034757600080fd5b61015561079a565b341561035a57600080fd5b610228610847565b341561036d57600080fd5b6103756108cc565b604051600160a060020a03909116815260200160405180910390f35b341561039c57600080fd5b61017c6108db565b34156103af57600080fd5b610155600160a060020a0360043516602435610912565b34156103d157600080fd5b610228600160a060020a0360043516610936565b34156103f057600080fd5b610375610995565b341561040357600080fd5b610155600160a060020a03600435166024356109a4565b341561042557600080fd5b61023d600160a060020a03600435811690602435166109c8565b341561044a57600080fd5b610155600160a060020a03600435166024356109f3565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051908101604052600a81527f4d6f436f20546f6b656e00000000000000000000000000000000000000000000602082015281565b60045460009060a860020a900460ff16156104d357600080fd5b6104dd8383610b0f565b9392505050565b60035433600160a060020a039081169116146104ff57600080fd5b61050761054a565b61050f61079a565b50565b60055481565b60045460009060a860020a900460ff161561053257600080fd5b61053d848484610b7b565b949350505050565b601281565b60035433600160a060020a0390811691161461056557600080fd5b60045460a860020a900460ff16151561057d57600080fd5b6004805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a039081169116146105e857600080fd5b60045474010000000000000000000000000000000000000000900460ff161561061057600080fd5b600154610623908363ffffffff610ce916565b600155600160a060020a03831660009081526020819052604090205461064f908363ffffffff610ce916565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a0383166000600080516020610faf8339815191528460405190815260200160405180910390a350600192915050565b61050f3382610cfc565b60045460a860020a900460ff1681565b60045460009060a860020a900460ff161561070b57600080fd5b6104dd8383610de7565b600160a060020a031660009081526020819052604090205490565b60045433600160a060020a0390811691161461074b57600080fd5b600354600454600160a060020a039081169116141561076957600080fd5b6004546003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055565b60035460009033600160a060020a039081169116146107b857600080fd5b60045474010000000000000000000000000000000000000000900460ff16156107e057600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035433600160a060020a0390811691161461086257600080fd5b60045460a860020a900460ff161561087957600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600481527f4d6f436f00000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a860020a900460ff161561092c57600080fd5b6104dd8383610ee1565b60035433600160a060020a0390811691161461095157600080fd5b600160a060020a038116151561096657600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a031681565b60045460009060a860020a900460ff16156109be57600080fd5b6104dd8383610ef8565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460009033600160a060020a03908116911614610a1157600080fd5b600160a060020a0383161515610a2657600080fd5b600160a060020a033316600090815260208190526040902054821115610a4b57600080fd5b600160a060020a033316600090815260208190526040902054610a74908363ffffffff610f9c16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aa9908363ffffffff610ce916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610faf8339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b9257600080fd5b600160a060020a038416600090815260208190526040902054821115610bb757600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610bea57600080fd5b600160a060020a038416600090815260208190526040902054610c13908363ffffffff610f9c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c48908363ffffffff610ce916565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c8e908363ffffffff610f9c16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610faf8339815191529085905190815260200160405180910390a35060019392505050565b81810182811015610cf657fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610d2157600080fd5b600160a060020a038216600090815260208190526040902054610d4a908263ffffffff610f9c16565b600160a060020a038316600090815260208190526040902055600154610d76908263ffffffff610f9c16565b600155600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a038316600080516020610faf8339815191528360405190815260200160405180910390a35050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610e4457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610e7b565b610e54818463ffffffff610f9c16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610a2657600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f30908363ffffffff610ce916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600082821115610fa857fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820177b410f5588908dca62577248eccbe9ad215ac9581c9af8fc5e0cd6c58f55230029

Deployed Bytecode Sourcemap

13993:1165:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9693:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14101:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14101:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13288:189;;;;;;;;;;-1:-1:-1;;;;;13288:189:0;;;;;;;14425:93;;;;;;;;;;;;;;14236:26;;;;;;;;;;;;;;;;;;;;;;;;;;;13060:220;;;;;;;;;;-1:-1:-1;;;;;13060:220:0;;;;;;;;;;;;14195:34;;;;;;;;;;;;12604:105;;;;;;;;;;;;10168:360;;;;;;;;;;-1:-1:-1;;;;;10168:360:0;;;;;;;11147:81;;;;;;;;;;;;;;11921:26;;;;;;;;;;;;13715:232;;;;;;;;;;-1:-1:-1;;;;;13715:232:0;;;;;;;3650:107;;;;;;;;;;-1:-1:-1;;;;;3650:107:0;;;;;9123:121;;;;;;;;;;;;10658:158;;;;;;;;;;;;12406:103;;;;;;;;;;;;8392:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;8392:20:0;;;;;;;;;;;;;;14150:38;;;;;;;;;;;;12871:181;;;;;;;;;;-1:-1:-1;;;;;12871:181:0;;;;;;;8970:145;;;;;;;;;;-1:-1:-1;;;;;8970:145:0;;;;;8419:23;;;;;;;;;;;;13485:222;;;;;;;;;;-1:-1:-1;;;;;13485:222:0;;;;;;;6193:179;;;;;;;;;;-1:-1:-1;;;;;6193:179:0;;;;;;;;;;14682:371;;;;;;;;;;-1:-1:-1;;;;;14682:371:0;;;;;;;9693:35;;;;;;;;;:::o;14101:42::-;;;;;;;;;;;;;;;;;;:::o;13288:189::-;12109:6;;13409:4;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;13438:31;13452:8;13462:6;13438:13;:31::i;:::-;13431:38;13288:189;-1:-1:-1;;;13288:189:0:o;14425:93::-;8576:5;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;14475:9;:7;:9::i;:::-;14495:15;:13;:15::i;:::-;;14425:93::o;14236:26::-;;;;:::o;13060:220::-;12109:6;;13205:4;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;13234:38;13253:5;13260:3;13265:6;13234:18;:38::i;:::-;13227:45;13060:220;-1:-1:-1;;;;13060:220:0:o;14195:34::-;14227:2;14195:34;:::o;12604:105::-;8576:5;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;12287:6;;-1:-1:-1;;;12287:6:0;;;;12279:15;;;;;;;;12662:6;:14;;-1:-1:-1;;12662:14:0;;;12692:9;;;;;;;;;;12604:105::o;10168:360::-;9884:5;;10299:4;;9870:10;-1:-1:-1;;;;;9870:19:0;;;9884:5;;9870:19;9862:28;;;;;;9778:15;;;;;;;9777:16;9769:25;;;;;;10336:12;;:25;;10353:7;10336:25;:16;:25;:::i;:::-;10321:12;:40;-1:-1:-1;;;;;10388:13:0;;:8;:13;;;;;;;;;;;:26;;10406:7;10388:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10372:13:0;;:8;:13;;;;;;;;;;;;:42;;;;:13;10430:18;;10440:7;;10430:18;;;;;;;;;;;;;-1:-1:-1;;;;;10464:34:0;;10481:1;-1:-1:-1;;;;;;;;;;;10490:7:0;10464:34;;;;;;;;;;;;;;-1:-1:-1;10516:4:0;10168:360;;;;:::o;11147:81::-;11195:25;11201:10;11213:6;11195:5;:25::i;11921:26::-;;;-1:-1:-1;;;11921:26:0;;;;;:::o;13715:232::-;12109:6;;13852:12;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;13889:50;13912:8;13922:16;13889:22;:50::i;3650:107::-;-1:-1:-1;;;;;3733:16:0;3706:7;3733:16;;;;;;;;;;;;3650:107::o;9123:121::-;8667:8;;8653:10;-1:-1:-1;;;;;8653:22:0;;;8667:8;;8653:22;8645:31;;;;;;9203:5;;9191:8;;-1:-1:-1;;;;;9191:8:0;;;9203:5;;9191:17;;9183:26;;;;;;9228:8;;9220:5;:16;;-1:-1:-1;;9220:16:0;-1:-1:-1;;;;;9228:8:0;;;9220:16;;;;;;9123:121::o;10658:158::-;8576:5;;10717:4;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;9778:15;;;;;;;9777:16;9769:25;;;;;;10734:15;:22;;-1:-1:-1;;10734:22:0;;;;;10772:14;;;;;;;;;;-1:-1:-1;10804:4:0;10658:158;:::o;12406:103::-;8576:5;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;12109:6;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;12465:6;:13;;-1:-1:-1;;12465:13:0;-1:-1:-1;;;12465:13:0;;;12494:7;;;;;;;;;;12406:103::o;8392:20::-;;;-1:-1:-1;;;;;8392:20:0;;:::o;14150:38::-;;;;;;;;;;;;;;;;;;:::o;12871:181::-;12109:6;;12988:4;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;13017:27;13032:3;13037:6;13017:14;:27::i;8970:145::-;8576:5;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;-1:-1:-1;;;;;9052:23:0;;;;9044:32;;;;;;9087:8;:20;;-1:-1:-1;;9087:20:0;-1:-1:-1;;;;;9087:20:0;;;;;;;;;;8970:145::o;8419:23::-;;;-1:-1:-1;;;;;8419:23:0;;:::o;13485:222::-;12109:6;;13617:12;;-1:-1:-1;;;12109:6:0;;;;12108:7;12100:16;;;;;;13654:45;13677:8;13687:11;13654:22;:45::i;6193:179::-;-1:-1:-1;;;;;6339:15:0;;;6307:7;6339:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6193:179::o;14682:371::-;8576:5;;14761:4;;8562:10;-1:-1:-1;;;;;8562:19:0;;;8576:5;;8562:19;8554:28;;;;;;-1:-1:-1;;;;;14786:17:0;;;;14778:26;;;;;;-1:-1:-1;;;;;14842:10:0;14833:20;:8;:20;;;;;;;;;;;14823:30;;;14815:39;;;;;;-1:-1:-1;;;;;14899:10:0;14890:20;:8;:20;;;;;;;;;;;:32;;14915:6;14890:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14876:10:0;14867:20;;:8;:20;;;;;;;;;;;:55;;;;14949:13;;;;;;;:25;;14967:6;14949:25;:17;:25;:::i;:::-;14933:8;:13;14942:3;-1:-1:-1;;;;;14933:13:0;-1:-1:-1;;;;;14933:13:0;;;;;;;;;;;;:41;;;;15011:3;-1:-1:-1;;;;;14990:33:0;14999:10;-1:-1:-1;;;;;14990:33:0;-1:-1:-1;;;;;;;;;;;15016:6:0;14990:33;;;;;;;;;;;;;;-1:-1:-1;15041:4:0;14682:371;;;;:::o;5646:206::-;-1:-1:-1;;;;;5738:10:0;5730:19;;5713:4;5730:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;5713:4;;5730:29;:19;5784:38;;5762:6;;5784:38;;;;;;;;;;;;;-1:-1:-1;5840:4:0;5646:206;;;;:::o;4457:532::-;4578:4;-1:-1:-1;;;;;4608:17:0;;;;4600:26;;;;;;-1:-1:-1;;;;;4655:15:0;;:8;:15;;;;;;;;;;;4645:25;;;4637:34;;;;;;-1:-1:-1;;;;;4700:14:0;;;;;;;:7;:14;;;;;;;;4715:10;4700:26;;;;;;;;;;4690:36;;;4682:45;;;;;;-1:-1:-1;;;;;4758:15:0;;:8;:15;;;;;;;;;;;:27;;4778:6;4758:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4740:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4812:13;;;;;;;:25;;4830:6;4812:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4796:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4877:14;;;;;:7;:14;;;;;4892:10;4877:26;;;;;;;;;;;:38;;4908:6;4877:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4848:14:0;;;;;;;:7;:14;;;;;;;;4863:10;4848:26;;;;;;;;;;;:67;;;;4931:28;;;;-1:-1:-1;;;;;;;;;;;4931:28:0;4952:6;;4931:28;;;;;;;;;;;;;-1:-1:-1;4977:4:0;4457:532;;;;;:::o;1356:141::-;1440:5;;;1463:6;;;;1456:14;;;;1356:141;;;;:::o;11236:477::-;-1:-1:-1;;;;;11319:14:0;;:8;:14;;;;;;;;;;;11309:24;;;11301:33;;;;;;-1:-1:-1;;;;;11545:14:0;;:8;:14;;;;;;;;;;;:26;;11564:6;11545:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;11528:14:0;;:8;:14;;;;;;;;;;:43;11597:12;;:24;;11614:6;11597:24;:16;:24;:::i;:::-;11582:12;:39;-1:-1:-1;;;;;11637:18:0;;;11648:6;11637:18;;;;;;;;;;;;;;11694:1;-1:-1:-1;;;;;11671:34:0;;-1:-1:-1;;;;;;;;;;;11698:6:0;11671:34;;;;;;;;;;;;;;11236:477;;:::o;7691:490::-;-1:-1:-1;;;;;7855:10:0;7847:19;;7809:4;7847:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;7891:27;;;7887:188;;;-1:-1:-1;;;;;7943:10:0;7935:19;;7967:1;7935:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;7887:188;;;8033:30;:8;8046:16;8033:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;8009:10:0;8001:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;7887:188;-1:-1:-1;;;;;8099:10:0;8090:61;;8121:19;;;;:7;:19;;;;;;;;8090:61;;;8121:29;;;;;;;;;;;;8090:61;;;;;;;;;;;;;;;-1:-1:-1;8169:4:0;;7691:490;-1:-1:-1;;;7691:490:0:o;3074:355::-;3137:4;-1:-1:-1;;;;;3162:17:0;;;;3154:26;;;;;6863:332;-1:-1:-1;;;;;7049:10:0;7041:19;;6976:4;7041:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;7075:11;7041:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;7006:10:0;6998:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:90;;;:29;;:19;;7104:61;;6998:90;7104:61;;;;;;;;;;;;;-1:-1:-1;7183:4:0;6863:332;;;;:::o;1158:123::-;1216:7;1243:6;;;;1236:14;;;;-1:-1:-1;1268:5:0;;;1158:123::o

Swarm Source

bzzr://177b410f5588908dca62577248eccbe9ad215ac9581c9af8fc5e0cd6c58f5523
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.