ETH Price: $2,388.76 (+2.01%)

Token

PizzaToken (PZ)
 

Overview

Max Total Supply

10,000 PZ

Holders

196

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000001964208536 PZ

Value
$0.00
0xc26e3a00a1d356f0ed0fb57140d1089fa9c124ce
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:
ICoinToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-03
*/

/**
 *Submitted for verification at Etherscan.io on 2020-09-29
*/

pragma solidity ^0.4.23;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization
control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the
sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == 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 {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
/**
* @dev Allows the current owner to relinquish control of the contract.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
}
/**
* @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) {
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;
}
}
/**
* @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);
}
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) {
require((_value == 0 ) || (allowed[msg.sender][_spender] == 0));
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;
}
}
contract ICoinToken is StandardToken{
string public constant name = "PizzaToken"; // solium-disable-line uppercase
string public constant symbol = "PZ"; // solium-disable-line uppercase
uint8 public constant decimals = 18; // solium-disable-line uppercase
uint256 public constant INITIAL_SUPPLY = 10000*1e18; //这里是发行总量 * 精度


/**
* @dev Constructor that gives msg.sender all of existing tokens.
*/
constructor() ICoinToken() public {
totalSupply_ = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
emit Transfer(0x0, msg.sender, INITIAL_SUPPLY);
}
/**
* The fallback function.
*/
function() payable public {
revert();
}
}

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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","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":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":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]

608060405234801561001057600080fd5b5069021e19e0c9bab2400000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a361087b806100776000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103b3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b9565b3480156101dd57600080fd5b50610195610530565b3480156101f257600080fd5b506101fb61053e565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610543565b34801561024157600080fd5b50610195600160a060020a0360043516610633565b34801561026257600080fd5b506100d361064e565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610685565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610766565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107ff565b60408051808201909152600a81527f50697a7a61546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115806103415750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561034c57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156103d057600080fd5b600160a060020a0384166000908152602081905260409020548211156103f557600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561042557600080fd5b600160a060020a03841660009081526020819052604090205461044e908363ffffffff61082a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610483908363ffffffff61083c16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104c5908363ffffffff61082a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b69021e19e0c9bab240000081565b601281565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561059857336000908152600260209081526040808320600160a060020a03881684529091528120556105cd565b6105a8818463ffffffff61082a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600281527f505a000000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561069c57600080fd5b336000908152602081905260409020548211156106b857600080fd5b336000908152602081905260409020546106d8908363ffffffff61082a16565b3360009081526020819052604080822092909255600160a060020a0385168152205461070a908363ffffffff61083c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461079a908363ffffffff61083c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561083657fe5b50900390565b8181018281101561084957fe5b929150505600a165627a7a723058202bddbfdd8d6134345b175aa68a4bbcf59bdf53e846d938e0c8f903e304b7375e0029

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103b3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b9565b3480156101dd57600080fd5b50610195610530565b3480156101f257600080fd5b506101fb61053e565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610543565b34801561024157600080fd5b50610195600160a060020a0360043516610633565b34801561026257600080fd5b506100d361064e565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610685565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610766565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107ff565b60408051808201909152600a81527f50697a7a61546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115806103415750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561034c57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156103d057600080fd5b600160a060020a0384166000908152602081905260409020548211156103f557600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561042557600080fd5b600160a060020a03841660009081526020819052604090205461044e908363ffffffff61082a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610483908363ffffffff61083c16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104c5908363ffffffff61082a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b69021e19e0c9bab240000081565b601281565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561059857336000908152600260209081526040808320600160a060020a03881684529091528120556105cd565b6105a8818463ffffffff61082a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600281527f505a000000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561069c57600080fd5b336000908152602081905260409020548211156106b857600080fd5b336000908152602081905260409020546106d8908363ffffffff61082a16565b3360009081526020819052604080822092909255600160a060020a0385168152205461070a908363ffffffff61083c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461079a908363ffffffff61083c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561083657fe5b50900390565b8181018281101561084957fe5b929150505600a165627a7a723058202bddbfdd8d6134345b175aa68a4bbcf59bdf53e846d938e0c8f903e304b7375e0029

Deployed Bytecode Sourcemap

8040:666:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8691:8;;;8079:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8079:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8079:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5857:244:0;-1:-1:-1;;;;;5857:244:0;;;;;;;;;;;;;;;;;;;;;;;;;3365:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3365:79:0;;;;;;;;;;;;;;;;;;;;4832:419;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4832:419:0;-1:-1:-1;;;;;4832:419:0;;;;;;;;;;;;8300:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8300:51:0;;;;8229:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8229:35:0;;;;;;;;;;;;;;;;;;;;;;;7660:375;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7660:375:0;-1:-1:-1;;;;;7660:375:0;;;;;;;4087:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4087:95:0;-1:-1:-1;;;;;4087:95:0;;;;;8157:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8157:36:0;;;;3591:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3591:301:0;-1:-1:-1;;;;;3591:301:0;;;;;;;6966:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6966:253:0;-1:-1:-1;;;;;6966:253:0;;;;;;;6408:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6408:122:0;-1:-1:-1;;;;;6408:122:0;;;;;;;;;;8079:42;;;;;;;;;;;;;;;;;;;:::o;5857:244::-;5924:4;5942:11;;;5941:54;;-1:-1:-1;5968:10:0;5960:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5960:29:0;;;;;;;;;;:34;5941:54;5933:63;;;;;;;;6007:10;5999:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5999:29:0;;;;;;;;;;;;:38;;;6045;;;;;;;5999:29;;6007:10;6045:38;;;;;;;;;;;-1:-1:-1;6093:4:0;5857:244;;;;:::o;3365:79::-;3428:12;;3365:79;:::o;4832:419::-;4915:4;-1:-1:-1;;;;;4932:17:0;;;;4924:26;;;;;;-1:-1:-1;;;;;4971:15:0;;:8;:15;;;;;;;;;;;4961:25;;;4953:34;;;;;;-1:-1:-1;;;;;5008:14:0;;;;;;:7;:14;;;;;;;;5023:10;5008:26;;;;;;;;4998:36;;;4990:45;;;;;;-1:-1:-1;;;;;5056:15:0;;:8;:15;;;;;;;;;;;:27;;5076:6;5056:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5038:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5102:13;;;;;;;:25;;5120:6;5102:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5086:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5159:14;;;;;:7;:14;;;;;5174:10;5159:26;;;;;;;:38;;5190:6;5159:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5130:14:0;;;;;;;:7;:14;;;;;;;;5145:10;5130:26;;;;;;;;:67;;;;5205:28;;;;;;;;;;;5130:14;;5205:28;;;;;;;;;;;-1:-1:-1;5243:4:0;4832:419;;;;;:::o;8300:51::-;8341:10;8300:51;:::o;8229:35::-;8262:2;8229:35;:::o;7660:375::-;7777:10;7744:4;7769:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7769:29:0;;;;;;;;;;7805:27;;;7801:148;;;7845:10;7869:1;7837:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7837:29:0;;;;;;;;;:33;7801:148;;;7915:30;:8;7928:16;7915:30;:12;:30;:::i;:::-;7891:10;7883:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7883:29:0;;;;;;;;;:62;7801:148;7965:10;7987:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7956:61:0;;7987:29;;;;;;;;;;;7956:61;;;;;;;;;7965:10;7956:61;;;;;;;;;;;-1:-1:-1;8027:4:0;;7660:375;-1:-1:-1;;;7660:375:0:o;4087:95::-;-1:-1:-1;;;;;4162:16:0;4143:7;4162:16;;;;;;;;;;;;4087:95::o;8157:36::-;;;;;;;;;;;;;;;;;;;:::o;3591:301::-;3654:4;-1:-1:-1;;;;;3671:17:0;;;;3663:26;;;;;;3719:10;3710:8;:20;;;;;;;;;;;3700:30;;;3692:39;;;;;;3766:10;3757:8;:20;;;;;;;;;;;:32;;3782:6;3757:32;:24;:32;:::i;:::-;3743:10;3734:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3808:13:0;;;;;;:25;;3826:6;3808:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3792:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3841:33;;;;;;;3792:13;;3850:10;;3841:33;;;;;;;;;;-1:-1:-1;3884:4:0;3591:301;;;;:::o;6966:253::-;7094:10;7044:4;7086:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7086:29:0;;;;;;;;;;:46;;7120:11;7086:46;:33;:46;:::i;:::-;7062:10;7054:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7054:29:0;;;;;;;;;;;;:78;;;7140:61;;;;;;7054:29;;7140:61;;;;;;;;;;;-1:-1:-1;7211:4:0;6966:253;;;;:::o;6408:122::-;-1:-1:-1;;;;;6501:15:0;;;6482:7;6501:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6408:122::o;2040:103::-;2098:7;2117:6;;;;2110:14;;;;-1:-1:-1;2134:5:0;;;2040:103::o;2200:113::-;2276:5;;;2291:6;;;;2284:14;;;;2200:113;;;;:::o

Swarm Source

bzzr://2bddbfdd8d6134345b175aa68a4bbcf59bdf53e846d938e0c8f903e304b7375e
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.