ETH Price: $3,334.49 (-0.78%)

Token

POPCHAIN CASH (PCH)
 

Overview

Max Total Supply

2,000,000,000 PCH

Holders

1,565 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10 PCH

Value
$0.00
0x916ac2ebdb8f54432101b4f1cc7fa9af3bd6ed86
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A brand new blockchain for K-Pop & Asian content market

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
POPCHAINCASH

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-05-02
*/

pragma solidity ^0.4.18;

library SafeMath {

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

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

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}


contract Ownable {
    address public owner;
    address public newOwner;

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

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

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    modifier onlyNewOwner() {
        require(msg.sender != address(0));
        require(msg.sender == newOwner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        require(_newOwner != address(0));
        newOwner = _newOwner;
    }

    function acceptOwnership() public onlyNewOwner returns(bool) {
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

contract ERC20 {
    function totalSupply() public view returns (uint256);
    function balanceOf(address who) public view returns (uint256);
    function allowance(address owner, address spender) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    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);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract POPCHAINCASH is ERC20, Ownable {

    using SafeMath for uint256;

    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 internal initialSupply;
    uint256 internal _totalSupply;
    
                                 
    uint256 internal LOCKUP_TERM = 6 * 30 * 24 * 3600;

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

    mapping(address => uint256) internal _lockupBalances;
    mapping(address => uint256) internal _lockupExpireTime;

    function POPCHAINCASH() public {
        name = "POPCHAIN CASH";
        symbol = "PCH";
        decimals = 18;


        //Total Supply  2,000,000,000
        initialSupply = 2000000000;
        _totalSupply = initialSupply * 10 ** uint(decimals);
        _balances[owner] = _totalSupply;
        emit Transfer(address(0), owner, _totalSupply);
    }

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

   
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_to != address(this));
        require(msg.sender != address(0));
        require(_value <= _balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        _balances[msg.sender] = _balances[msg.sender].sub(_value);
        _balances[_to] = _balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    function balanceOf(address _holder) public view returns (uint256 balance) {
        return _balances[_holder].add(_lockupBalances[_holder]);
    }

      
    function lockupBalanceOf(address _holder) public view returns (uint256 balance) {
        return _lockupBalances[_holder];
    }

   
    function unlockTimeOf(address _holder) public view returns (uint256 lockTime) {
        return _lockupExpireTime[_holder];
    }

    
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_from != address(0));
        require(_to != address(0));
        require(_to != address(this));
        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;
    }

    function approve(address _spender, uint256 _value) public returns (bool) {
        require(_value > 0);
        _allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    
    function allowance(address _holder, address _spender) public view returns (uint256) {
        return _allowed[_holder][_spender];
    }

    
    function () public payable {
        revert();
    }

    
    function burn(uint256 _value) public onlyOwner returns (bool success) {
        require(_value <= _balances[msg.sender]);
        address burner = msg.sender;
        _balances[burner] = _balances[burner].sub(_value);
        _totalSupply = _totalSupply.sub(_value);
        return true;
    }

    
    function distribute(address _to, uint256 _value, uint256 _lockupRate) public onlyOwner returns (bool) {
        require(_to != address(0));
        require(_to != address(this));
        //Do not allow multiple distributions of the same address. Avoid locking time reset.
        require(_lockupBalances[_to] == 0);     
        require(_value <= _balances[owner]);
        require(_lockupRate == 50 || _lockupRate == 100);

        _balances[owner] = _balances[owner].sub(_value);

        uint256 lockupValue = _value.mul(_lockupRate).div(100);
        uint256 givenValue = _value.sub(lockupValue);
        uint256 ExpireTime = now + LOCKUP_TERM; //six months

        if (_lockupRate == 100) {
            ExpireTime += LOCKUP_TERM;          //one year.
        }
        
        _balances[_to] = _balances[_to].add(givenValue);
        _lockupBalances[_to] = _lockupBalances[_to].add(lockupValue);
        _lockupExpireTime[_to] = ExpireTime;

        emit Transfer(owner, _to, _value);
        return true;
    }

    function unlock() public returns(bool) {
        address tokenHolder = msg.sender;
        require(_lockupBalances[tokenHolder] > 0);
        require(_lockupExpireTime[tokenHolder] <= now);

        uint256 value = _lockupBalances[tokenHolder];

        _balances[tokenHolder] = _balances[tokenHolder].add(value);  
        _lockupBalances[tokenHolder] = 0;

        return true;
    }

    
    function acceptOwnership() public onlyNewOwner returns(bool) {
        uint256 ownerAmount = _balances[owner];
        _balances[owner] = _balances[owner].sub(ownerAmount);
        _balances[newOwner] = _balances[newOwner].add(ownerAmount);
        emit Transfer(owner, newOwner, ownerAmount);   
        owner = newOwner;
        newOwner = address(0);
        emit OwnershipTransferred(owner, newOwner);

        return true;
    }
}

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":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"unlockTimeOf","outputs":[{"name":"lockTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"lockupBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[{"name":"","type":"bool"}],"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":"unlock","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":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_holder","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":"_lockupRate","type":"uint256"}],"name":"distribute","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"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"}]

606060405262ed4e00600755341561001657600080fd5b60008054600160a060020a033316600160a060020a03199182161790915560018054909116905560408051908101604052600d81527f504f50434841494e2043415348000000000000000000000000000000000000006020820152600290805161008492916020019061014e565b506040805190810160405260038082527f504348000000000000000000000000000000000000000000000000000000000060208301529080516100cb92916020019061014e565b506004805460ff1916601217908190556377359400600581905560ff91909116600a0a02600681905560008054600160a060020a039081168252600860205260408083208490558254909116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef915190815260200160405180910390a36101e9565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018f57805160ff19168380011785556101bc565b828001600101855582156101bc579182015b828111156101bc5782518255916020019190600101906101a1565b506101c89291506101cc565b5090565b6101e691905b808211156101c857600081556001016101d2565b90565b610e7e80620001f96000396000f3006060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c057806323b872dd146101e5578063313ce5671461020d57806342966c6814610236578063469a69471461024c5780634728537c1461026b57806370a082311461028a57806379ba5097146102a95780638da5cb5b146102bc57806395d89b41146102eb578063a69df4b5146102fe578063a9059cbb14610311578063d4ee1d9014610333578063dd62ed3e14610346578063e2c92a521461036b578063f2fde38b14610390575b600080fd5b341561010b57600080fd5b6101136103b1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014f578082015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019557600080fd5b6101ac600160a060020a036004351660243561044f565b604051901515815260200160405180910390f35b34156101cb57600080fd5b6101d36104c6565b60405190815260200160405180910390f35b34156101f057600080fd5b6101ac600160a060020a03600435811690602435166044356104cc565b341561021857600080fd5b610220610672565b60405160ff909116815260200160405180910390f35b341561024157600080fd5b6101ac60043561067b565b341561025757600080fd5b6101d3600160a060020a036004351661071b565b341561027657600080fd5b6101d3600160a060020a0360043516610736565b341561029557600080fd5b6101d3600160a060020a0360043516610751565b34156102b457600080fd5b6101ac61078a565b34156102c757600080fd5b6102cf6108d9565b604051600160a060020a03909116815260200160405180910390f35b34156102f657600080fd5b6101136108e8565b341561030957600080fd5b6101ac610953565b341561031c57600080fd5b6101ac600160a060020a0360043516602435610a0a565b341561033e57600080fd5b6102cf610b29565b341561035157600080fd5b6101d3600160a060020a0360043581169060243516610b38565b341561037657600080fd5b6101ac600160a060020a0360043516602435604435610b63565b341561039b57600080fd5b6103af600160a060020a0360043516610d65565b005b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104475780601f1061041c57610100808354040283529160200191610447565b820191906000526020600020905b81548152906001019060200180831161042a57829003601f168201915b505050505081565b600080821161045d57600080fd5b600160a060020a03338116600081815260096020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065490565b6000600160a060020a03841615156104e357600080fd5b600160a060020a03831615156104f857600080fd5b30600160a060020a031683600160a060020a03161415151561051957600080fd5b600160a060020a03841660009081526008602052604090205482111561053e57600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052205482111561057157600080fd5b600160a060020a03841660009081526008602052604090205461059a908363ffffffff610dc416565b600160a060020a0380861660009081526008602052604080822093909355908516815220546105cf908363ffffffff610dd616565b600160a060020a03808516600090815260086020908152604080832094909455878316825260098152838220339093168252919091522054610617908363ffffffff610dc416565b600160a060020a0380861660008181526009602090815260408083203386168452909152908190209390935590851691600080516020610e338339815191529085905190815260200160405180910390a35060019392505050565b60045460ff1681565b60008054819033600160a060020a0390811691161461069957600080fd5b600160a060020a0333166000908152600860205260409020548311156106be57600080fd5b5033600160a060020a0381166000908152600860205260409020546106e39084610dc4565b600160a060020a03821660009081526008602052604090205560065461070f908463ffffffff610dc416565b60065550600192915050565b600160a060020a03166000908152600b602052604090205490565b600160a060020a03166000908152600a602052604090205490565b600160a060020a0381166000908152600a602090815260408083205460089092528220546107849163ffffffff610dd616565b92915050565b60008033600160a060020a031615156107a257600080fd5b60015433600160a060020a039081169116146107bd57600080fd5b5060008054600160a060020a03168152600860205260409020546107e7818063ffffffff610dc416565b60008054600160a060020a0390811682526008602052604080832093909355600154168152205461081e908263ffffffff610dd616565b60018054600160a060020a03908116600090815260086020526040808220949094559154915491811692911690600080516020610e338339815191529084905190815260200160405180910390a36001805460008054600160a060020a0380841673ffffffffffffffffffffffffffffffffffffffff19928316178084559190931690935591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600191505090565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104475780601f1061041c57610100808354040283529160200191610447565b33600160a060020a0381166000908152600a6020526040812054909190829081901161097e57600080fd5b600160a060020a0382166000908152600b6020526040902054429011156109a457600080fd5b50600160a060020a0381166000908152600a60209081526040808320546008909252909120546109da908263ffffffff610dd616565b600160a060020a038316600090815260086020908152604080832093909355600a90529081205560019250505090565b6000600160a060020a0383161515610a2157600080fd5b30600160a060020a031683600160a060020a031614151515610a4257600080fd5b33600160a060020a03161515610a5757600080fd5b600160a060020a033316600090815260086020526040902054821115610a7c57600080fd5b600160a060020a033316600090815260086020526040902054610aa5908363ffffffff610dc416565b600160a060020a033381166000908152600860205260408082209390935590851681522054610ada908363ffffffff610dd616565b600160a060020a038085166000818152600860205260409081902093909355913390911690600080516020610e338339815191529085905190815260200160405180910390a350600192915050565b600154600160a060020a031681565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b6000805481908190819033600160a060020a03908116911614610b8557600080fd5b600160a060020a0387161515610b9a57600080fd5b30600160a060020a031687600160a060020a031614151515610bbb57600080fd5b600160a060020a0387166000908152600a602052604090205415610bde57600080fd5b60008054600160a060020a0316815260086020526040902054861115610c0357600080fd5b8460321480610c125750846064145b1515610c1d57600080fd5b60008054600160a060020a0316815260086020526040902054610c46908763ffffffff610dc416565b60008054600160a060020a0316815260086020526040902055610c806064610c74888863ffffffff610df016565b9063ffffffff610e1b16565b9250610c92868463ffffffff610dc416565b9150600754420190508460641415610ca957600754015b600160a060020a038716600090815260086020526040902054610cd2908363ffffffff610dd616565b600160a060020a038816600090815260086020908152604080832093909355600a90522054610d07908463ffffffff610dd616565b600160a060020a038089166000818152600a6020908152604080832095909555600b9052838120859055549092911690600080516020610e338339815191529089905190815260200160405180910390a35060019695505050505050565b60005433600160a060020a03908116911614610d8057600080fd5b600160a060020a0381161515610d9557600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610dd057fe5b50900390565b600082820183811015610de557fe5b8091505b5092915050565b600080831515610e035760009150610de9565b50828202828482811515610e1357fe5b0414610de557fe5b6000808284811515610e2957fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582078ea1c2461c24f619cce93f0d640628815b035b99edbe53c566d1f5e2ce166c30029

Deployed Bytecode

0x6060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c057806323b872dd146101e5578063313ce5671461020d57806342966c6814610236578063469a69471461024c5780634728537c1461026b57806370a082311461028a57806379ba5097146102a95780638da5cb5b146102bc57806395d89b41146102eb578063a69df4b5146102fe578063a9059cbb14610311578063d4ee1d9014610333578063dd62ed3e14610346578063e2c92a521461036b578063f2fde38b14610390575b600080fd5b341561010b57600080fd5b6101136103b1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014f578082015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019557600080fd5b6101ac600160a060020a036004351660243561044f565b604051901515815260200160405180910390f35b34156101cb57600080fd5b6101d36104c6565b60405190815260200160405180910390f35b34156101f057600080fd5b6101ac600160a060020a03600435811690602435166044356104cc565b341561021857600080fd5b610220610672565b60405160ff909116815260200160405180910390f35b341561024157600080fd5b6101ac60043561067b565b341561025757600080fd5b6101d3600160a060020a036004351661071b565b341561027657600080fd5b6101d3600160a060020a0360043516610736565b341561029557600080fd5b6101d3600160a060020a0360043516610751565b34156102b457600080fd5b6101ac61078a565b34156102c757600080fd5b6102cf6108d9565b604051600160a060020a03909116815260200160405180910390f35b34156102f657600080fd5b6101136108e8565b341561030957600080fd5b6101ac610953565b341561031c57600080fd5b6101ac600160a060020a0360043516602435610a0a565b341561033e57600080fd5b6102cf610b29565b341561035157600080fd5b6101d3600160a060020a0360043581169060243516610b38565b341561037657600080fd5b6101ac600160a060020a0360043516602435604435610b63565b341561039b57600080fd5b6103af600160a060020a0360043516610d65565b005b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104475780601f1061041c57610100808354040283529160200191610447565b820191906000526020600020905b81548152906001019060200180831161042a57829003601f168201915b505050505081565b600080821161045d57600080fd5b600160a060020a03338116600081815260096020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065490565b6000600160a060020a03841615156104e357600080fd5b600160a060020a03831615156104f857600080fd5b30600160a060020a031683600160a060020a03161415151561051957600080fd5b600160a060020a03841660009081526008602052604090205482111561053e57600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052205482111561057157600080fd5b600160a060020a03841660009081526008602052604090205461059a908363ffffffff610dc416565b600160a060020a0380861660009081526008602052604080822093909355908516815220546105cf908363ffffffff610dd616565b600160a060020a03808516600090815260086020908152604080832094909455878316825260098152838220339093168252919091522054610617908363ffffffff610dc416565b600160a060020a0380861660008181526009602090815260408083203386168452909152908190209390935590851691600080516020610e338339815191529085905190815260200160405180910390a35060019392505050565b60045460ff1681565b60008054819033600160a060020a0390811691161461069957600080fd5b600160a060020a0333166000908152600860205260409020548311156106be57600080fd5b5033600160a060020a0381166000908152600860205260409020546106e39084610dc4565b600160a060020a03821660009081526008602052604090205560065461070f908463ffffffff610dc416565b60065550600192915050565b600160a060020a03166000908152600b602052604090205490565b600160a060020a03166000908152600a602052604090205490565b600160a060020a0381166000908152600a602090815260408083205460089092528220546107849163ffffffff610dd616565b92915050565b60008033600160a060020a031615156107a257600080fd5b60015433600160a060020a039081169116146107bd57600080fd5b5060008054600160a060020a03168152600860205260409020546107e7818063ffffffff610dc416565b60008054600160a060020a0390811682526008602052604080832093909355600154168152205461081e908263ffffffff610dd616565b60018054600160a060020a03908116600090815260086020526040808220949094559154915491811692911690600080516020610e338339815191529084905190815260200160405180910390a36001805460008054600160a060020a0380841673ffffffffffffffffffffffffffffffffffffffff19928316178084559190931690935591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600191505090565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104475780601f1061041c57610100808354040283529160200191610447565b33600160a060020a0381166000908152600a6020526040812054909190829081901161097e57600080fd5b600160a060020a0382166000908152600b6020526040902054429011156109a457600080fd5b50600160a060020a0381166000908152600a60209081526040808320546008909252909120546109da908263ffffffff610dd616565b600160a060020a038316600090815260086020908152604080832093909355600a90529081205560019250505090565b6000600160a060020a0383161515610a2157600080fd5b30600160a060020a031683600160a060020a031614151515610a4257600080fd5b33600160a060020a03161515610a5757600080fd5b600160a060020a033316600090815260086020526040902054821115610a7c57600080fd5b600160a060020a033316600090815260086020526040902054610aa5908363ffffffff610dc416565b600160a060020a033381166000908152600860205260408082209390935590851681522054610ada908363ffffffff610dd616565b600160a060020a038085166000818152600860205260409081902093909355913390911690600080516020610e338339815191529085905190815260200160405180910390a350600192915050565b600154600160a060020a031681565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b6000805481908190819033600160a060020a03908116911614610b8557600080fd5b600160a060020a0387161515610b9a57600080fd5b30600160a060020a031687600160a060020a031614151515610bbb57600080fd5b600160a060020a0387166000908152600a602052604090205415610bde57600080fd5b60008054600160a060020a0316815260086020526040902054861115610c0357600080fd5b8460321480610c125750846064145b1515610c1d57600080fd5b60008054600160a060020a0316815260086020526040902054610c46908763ffffffff610dc416565b60008054600160a060020a0316815260086020526040902055610c806064610c74888863ffffffff610df016565b9063ffffffff610e1b16565b9250610c92868463ffffffff610dc416565b9150600754420190508460641415610ca957600754015b600160a060020a038716600090815260086020526040902054610cd2908363ffffffff610dd616565b600160a060020a038816600090815260086020908152604080832093909355600a90522054610d07908463ffffffff610dd616565b600160a060020a038089166000818152600a6020908152604080832095909555600b9052838120859055549092911690600080516020610e338339815191529089905190815260200160405180910390a35060019695505050505050565b60005433600160a060020a03908116911614610d8057600080fd5b600160a060020a0381161515610d9557600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610dd057fe5b50900390565b600082820183811015610de557fe5b8091505b5092915050565b600080831515610e035760009150610de9565b50828202828482811515610e1357fe5b0414610de557fe5b6000808284811515610e2957fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582078ea1c2461c24f619cce93f0d640628815b035b99edbe53c566d1f5e2ce166c30029

Swarm Source

bzzr://78ea1c2461c24f619cce93f0d640628815b035b99edbe53c566d1f5e2ce166c3
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.