Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,000,000,000 CBO
Holders
964
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Colorbay
Compiler Version
v0.4.23+commit.124ca40d
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-07 */ pragma solidity ^0.4.23; /** * @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; } } /** * @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 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 { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @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 unpauseunpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } /** * @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) { 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, uint256 _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, uint256 _subtractedValue) public returns (bool) { uint256 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; } } /** * @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, uint256 _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint256 _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } /** * @title Frozenable Token * @dev Illegal address that can be frozened. */ contract FrozenableToken is Ownable { mapping (address => bool) public frozenAccount; event FrozenFunds(address indexed to, bool frozen); modifier whenNotFrozen(address _who) { require(!frozenAccount[msg.sender] && !frozenAccount[_who]); _; } function freezeAccount(address _to, bool _freeze) public onlyOwner { require(_to != address(0)); frozenAccount[_to] = _freeze; emit FrozenFunds(_to, _freeze); } } /** * @title Colorbay Token * @dev Global digital painting asset platform token. * @author colorbay.org */ contract Colorbay is PausableToken, FrozenableToken { string public name = "Colorbay Token"; string public symbol = "CBO"; uint256 public decimals = 18; uint256 INITIAL_SUPPLY = 2000000000 * (10 ** uint256(decimals)); /** * @dev Initializes the total release */ constructor() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = totalSupply_; emit Transfer(address(0), msg.sender, totalSupply_); } /** * if ether is sent to this address, send it back. */ function() public payable { revert(); } /** * @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 whenNotFrozen(_to) returns (bool) { return super.transfer(_to, _value); } /** * @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 whenNotFrozen(_from) returns (bool) { return super.transferFrom(_from, _to, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"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":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"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":"_freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"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":"to","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"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"}]
Contract Creation Code
6003805460a060020a60ff021916905560c0604052600e60808190527f436f6c6f7262617920546f6b656e00000000000000000000000000000000000060a090815261004e9160059190610126565b506040805180820190915260038082527f43424f0000000000000000000000000000000000000000000000000000000000602090920191825261009391600691610126565b5060126007556b06765c793fa10079d00000006008553480156100b557600080fd5b5060038054600160a060020a03191633600160a060020a0316908117909155600854600181905560008281526020818152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36101c1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016757805160ff1916838001178555610194565b82800160010185558215610194579182015b82811115610194578251825591602001919060010190610179565b506101a09291506101a4565b5090565b6101be91905b808211156101a057600081556001016101aa565b90565b610df4806101d06000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce567146102135780633f4ba83a146102285780635c975abb1461023f578063661884631461025457806370a08231146102785780638456cb59146102995780638da5cb5b146102ae57806395d89b41146102df578063a9059cbb146102f4578063b414d4b614610318578063d73dd62314610339578063dd62ed3e1461035d578063e724529c14610384578063f2fde38b146103aa575b600080fd5b34801561010c57600080fd5b506101156103cb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a0360043516602435610459565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d7610484565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a036004358116906024351660443561048a565b34801561021f57600080fd5b506101d76104ed565b34801561023457600080fd5b5061023d6104f3565b005b34801561024b57600080fd5b506101ae61056f565b34801561026057600080fd5b506101ae600160a060020a036004351660243561057f565b34801561028457600080fd5b506101d7600160a060020a03600435166105a3565b3480156102a557600080fd5b5061023d6105be565b3480156102ba57600080fd5b506102c361063f565b60408051600160a060020a039092168252519081900360200190f35b3480156102eb57600080fd5b5061011561064e565b34801561030057600080fd5b506101ae600160a060020a03600435166024356106a9565b34801561032457600080fd5b506101ae600160a060020a036004351661070a565b34801561034557600080fd5b506101ae600160a060020a036004351660243561071f565b34801561036957600080fd5b506101d7600160a060020a0360043581169060243516610743565b34801561039057600080fd5b5061023d600160a060020a0360043516602435151561076e565b3480156103b657600080fd5b5061023d600160a060020a03600435166107fe565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104515780601f1061042657610100808354040283529160200191610451565b820191906000526020600020905b81548152906001019060200180831161043457829003601f168201915b505050505081565b60035460009060a060020a900460ff161561047357600080fd5b61047d8383610825565b9392505050565b60015490565b600160a060020a033316600090815260046020526040812054849060ff161580156104ce5750600160a060020a03811660009081526004602052604090205460ff16155b15156104d957600080fd5b6104e48585856108c8565b95945050505050565b60075481565b60035433600160a060020a0390811691161461050e57600080fd5b60035460a060020a900460ff16151561052657600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561059957600080fd5b61047d83836108ed565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146105d957600080fd5b60035460a060020a900460ff16156105f057600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104515780601f1061042657610100808354040283529160200191610451565b600160a060020a033316600090815260046020526040812054839060ff161580156106ed5750600160a060020a03811660009081526004602052604090205460ff16155b15156106f857600080fd5b61070284846109e6565b949350505050565b60046020526000908152604090205460ff1681565b60035460009060a060020a900460ff161561073957600080fd5b61047d8383610a0a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461078957600080fd5b600160a060020a038216151561079e57600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff1916851515908117909155825190815291517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a25050565b60035433600160a060020a0390811691161461081957600080fd5b61082281610aac565b50565b60008115806108575750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561086257600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b60035460009060a060020a900460ff16156108e257600080fd5b610702848484610b2a565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561094a57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610981565b61095a818463ffffffff610caa16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60035460009060a060020a900460ff1615610a0057600080fd5b61047d8383610cbc565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a42908363ffffffff610db516565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a0381161515610ac157600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610b4157600080fd5b600160a060020a038416600090815260208190526040902054821115610b6657600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b9957600080fd5b600160a060020a038416600090815260208190526040902054610bc2908363ffffffff610caa16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bf7908363ffffffff610db516565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c3d908363ffffffff610caa16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610cb657fe5b50900390565b6000600160a060020a0383161515610cd357600080fd5b600160a060020a033316600090815260208190526040902054821115610cf857600080fd5b600160a060020a033316600090815260208190526040902054610d21908363ffffffff610caa16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610d56908363ffffffff610db516565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b81810182811015610dc257fe5b929150505600a165627a7a72305820f7d56f4416ab212167dd33ce27854b883d995d98f63b41e6a9523b3228dd01c80029
Deployed Bytecode
0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce567146102135780633f4ba83a146102285780635c975abb1461023f578063661884631461025457806370a08231146102785780638456cb59146102995780638da5cb5b146102ae57806395d89b41146102df578063a9059cbb146102f4578063b414d4b614610318578063d73dd62314610339578063dd62ed3e1461035d578063e724529c14610384578063f2fde38b146103aa575b600080fd5b34801561010c57600080fd5b506101156103cb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a0360043516602435610459565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d7610484565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a036004358116906024351660443561048a565b34801561021f57600080fd5b506101d76104ed565b34801561023457600080fd5b5061023d6104f3565b005b34801561024b57600080fd5b506101ae61056f565b34801561026057600080fd5b506101ae600160a060020a036004351660243561057f565b34801561028457600080fd5b506101d7600160a060020a03600435166105a3565b3480156102a557600080fd5b5061023d6105be565b3480156102ba57600080fd5b506102c361063f565b60408051600160a060020a039092168252519081900360200190f35b3480156102eb57600080fd5b5061011561064e565b34801561030057600080fd5b506101ae600160a060020a03600435166024356106a9565b34801561032457600080fd5b506101ae600160a060020a036004351661070a565b34801561034557600080fd5b506101ae600160a060020a036004351660243561071f565b34801561036957600080fd5b506101d7600160a060020a0360043581169060243516610743565b34801561039057600080fd5b5061023d600160a060020a0360043516602435151561076e565b3480156103b657600080fd5b5061023d600160a060020a03600435166107fe565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104515780601f1061042657610100808354040283529160200191610451565b820191906000526020600020905b81548152906001019060200180831161043457829003601f168201915b505050505081565b60035460009060a060020a900460ff161561047357600080fd5b61047d8383610825565b9392505050565b60015490565b600160a060020a033316600090815260046020526040812054849060ff161580156104ce5750600160a060020a03811660009081526004602052604090205460ff16155b15156104d957600080fd5b6104e48585856108c8565b95945050505050565b60075481565b60035433600160a060020a0390811691161461050e57600080fd5b60035460a060020a900460ff16151561052657600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561059957600080fd5b61047d83836108ed565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146105d957600080fd5b60035460a060020a900460ff16156105f057600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104515780601f1061042657610100808354040283529160200191610451565b600160a060020a033316600090815260046020526040812054839060ff161580156106ed5750600160a060020a03811660009081526004602052604090205460ff16155b15156106f857600080fd5b61070284846109e6565b949350505050565b60046020526000908152604090205460ff1681565b60035460009060a060020a900460ff161561073957600080fd5b61047d8383610a0a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461078957600080fd5b600160a060020a038216151561079e57600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff1916851515908117909155825190815291517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a25050565b60035433600160a060020a0390811691161461081957600080fd5b61082281610aac565b50565b60008115806108575750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561086257600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b60035460009060a060020a900460ff16156108e257600080fd5b610702848484610b2a565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561094a57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610981565b61095a818463ffffffff610caa16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60035460009060a060020a900460ff1615610a0057600080fd5b61047d8383610cbc565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a42908363ffffffff610db516565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a0381161515610ac157600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610b4157600080fd5b600160a060020a038416600090815260208190526040902054821115610b6657600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b9957600080fd5b600160a060020a038416600090815260208190526040902054610bc2908363ffffffff610caa16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bf7908363ffffffff610db516565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c3d908363ffffffff610caa16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610cb657fe5b50900390565b6000600160a060020a0383161515610cd357600080fd5b600160a060020a033316600090815260208190526040902054821115610cf857600080fd5b600160a060020a033316600090815260208190526040902054610d21908363ffffffff610caa16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610d56908363ffffffff610db516565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b81810182811015610dc257fe5b929150505600a165627a7a72305820f7d56f4416ab212167dd33ce27854b883d995d98f63b41e6a9523b3228dd01c80029
Deployed Bytecode Sourcemap
11549:1427:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12155:8;;;11612:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11612:37: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;11612:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10329:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10329:138:0;-1:-1:-1;;;;;10329:138:0;;;;;;;;;;;;;;;;;;;;;;;;;4857:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4857:85:0;;;;;;;;;;;;;;;;;;;;12786:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12786:173:0;-1:-1:-1;;;;;12786:173:0;;;;;;;;;;;;11691:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11691:28:0;;;;3530:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3530:95:0;;;;;;2904:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2904:26:0;;;;10653:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10653:184:0;-1:-1:-1;;;;;10653:184:0;;;;;;;5641:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5641:101:0;-1:-1:-1;;;;;5641:101:0;;;;;3343:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3343:93:0;;;;1650:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1650:20:0;;;;;;;;-1:-1:-1;;;;;1650:20:0;;;;;;;;;;;;;;11656:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11656:28:0;;;;12348:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12348:141:0;-1:-1:-1;;;;;12348:141:0;;;;;;;10984:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10984:46:0;-1:-1:-1;;;;;10984:46:0;;;;;10473:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10473:174:0;-1:-1:-1;;;;;10473:174:0;;;;;;;8103:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8103:128:0;-1:-1:-1;;;;;8103:128:0;;;;;;;;;;11229:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11229:192:0;-1:-1:-1;;;;;11229:192:0;;;;;;;;;2277:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2277:105:0;-1:-1:-1;;;;;2277:105:0;;;;;11612:37;;;;;;;;;;;;;;;-1:-1:-1;;11612:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10329:138::-;3078:6;;10410:4;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;10430:31;10444:8;10454:6;10430:13;:31::i;:::-;10423:38;10329:138;-1:-1:-1;;;10329:138:0:o;4857:85::-;4924:12;;4857:85;:::o;12786:173::-;-1:-1:-1;;;;;11167:10:0;11153:25;12889:4;11153:25;;;:13;:25;;;;;;12873:5;;11153:25;;11152:26;:50;;;;-1:-1:-1;;;;;;11183:19:0;;;;;;:13;:19;;;;;;;;11182:20;11152:50;11144:59;;;;;;;;12913:38;12932:5;12939:3;12944:6;12913:18;:38::i;:::-;12906:45;12786:173;-1:-1:-1;;;;;12786:173:0:o;11691:28::-;;;;:::o;3530:95::-;2089:5;;2075:10;-1:-1:-1;;;;;2075:19:0;;;2089:5;;2075:19;2067:28;;;;;;3238:6;;-1:-1:-1;;;3238:6:0;;;;3230:15;;;;;;;;3584:6;:14;;-1:-1:-1;;3584:14:0;;;3610:9;;;;3593:5;;3610:9;3530:95::o;2904:26::-;;;-1:-1:-1;;;2904:26:0;;;;;:::o;10653:184::-;3078:6;;10753:12;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;10781:50;10804:8;10814:16;10781:22;:50::i;5641:101::-;-1:-1:-1;;;;;5720:16:0;5697:7;5720:16;;;;;;;;;;;;5641:101::o;3343:93::-;2089:5;;2075:10;-1:-1:-1;;;;;2075:19:0;;;2089:5;;2075:19;2067:28;;;;;;3078:6;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;3398:6;:13;;-1:-1:-1;;3398:13:0;-1:-1:-1;;;3398:13:0;;;3423:7;;;;3398:13;;3423:7;3343:93::o;1650:20::-;;;-1:-1:-1;;;;;1650:20:0;;:::o;11656:28::-;;;;;;;;;;;;;;;-1:-1:-1;;11656:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12348:141;-1:-1:-1;;;;;11167:10:0;11153:25;12430:4;11153:25;;;:13;:25;;;;;;12416:3;;11153:25;;11152:26;:50;;;;-1:-1:-1;;;;;;11183:19:0;;;;;;:13;:19;;;;;;;;11182:20;11152:50;11144:59;;;;;;;;12454:27;12469:3;12474:6;12454:14;:27::i;:::-;12447:34;12348:141;-1:-1:-1;;;;12348:141:0:o;10984:46::-;;;;;;;;;;;;;;;:::o;10473:174::-;3078:6;;10568:12;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;10596:45;10619:8;10629:11;10596:22;:45::i;8103:128::-;-1:-1:-1;;;;;8200:15:0;;;8177:7;8200:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8103:128::o;11229:192::-;2089:5;;2075:10;-1:-1:-1;;;;;2075:19:0;;;2089:5;;2075:19;2067:28;;;;;;-1:-1:-1;;;;;11315:17:0;;;;11307:26;;;;;;-1:-1:-1;;;;;11344:18:0;;;;;;:13;:18;;;;;;;;;:28;;-1:-1:-1;;11344:28:0;;;;;;;;;;11388:25;;;;;;;;;;;;;;;;;11229:192;;:::o;2277:105::-;2089:5;;2075:10;-1:-1:-1;;;;;2075:19:0;;;2089:5;;2075:19;2067:28;;;;;;2347:29;2366:9;2347:18;:29::i;:::-;2277:105;:::o;7515:261::-;7582:4;7604:11;;;7603:53;;-1:-1:-1;;;;;;7629:10:0;7621:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;7603:53;7595:62;;;;;;;;-1:-1:-1;;;;;7672:10:0;7664:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;7714;;;;;;;;;;;;;;;;;-1:-1:-1;7766:4:0;7515:261;;;;:::o;10163:160::-;3078:6;;10259:4;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;10279:38;10298:5;10305:3;10310:6;10279:18;:38::i;9445:418::-;-1:-1:-1;;;;;9571:10:0;9563:19;;9531:4;9563:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;9603:27;;;9599:168;;;-1:-1:-1;;;;;9649:10:0;9641:19;;9673:1;9641:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;9599:168;;;9729:30;:8;9742:16;9729:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;9705:10:0;9697:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;9599:168;-1:-1:-1;;;;;9787:10:0;9778:61;;9809:19;;;;:7;:19;;;;;;;;9778:61;;;9809:29;;;;;;;;;;;9778:61;;;;;;;;;;;;;;;;;-1:-1:-1;9853:4:0;;9445:418;-1:-1:-1;;;9445:418:0:o;10027:130::-;3078:6;;10104:4;;-1:-1:-1;;;3078:6:0;;;;3077:7;3069:16;;;;;;10124:27;10139:3;10144:6;10124:14;:27::i;8700:271::-;-1:-1:-1;;;;;8835:10:0;8827:19;;8781:4;8827:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;8861:11;8827:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;8802:10:0;8794:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:80;;;8886:61;;;;;;;8794:29;;:19;;8886:61;;;;;;;;;;-1:-1:-1;8961:4:0;8700:271;;;;:::o;2523:175::-;-1:-1:-1;;;;;2594:23:0;;;;2586:32;;;;;;2651:5;;2630:38;;-1:-1:-1;;;;;2630:38:0;;;;2651:5;;2630:38;;2651:5;;2630:38;2675:5;:17;;-1:-1:-1;;2675:17:0;-1:-1:-1;;;;;2675:17:0;;;;;;;;;;2523:175::o;6426:454::-;6508:4;-1:-1:-1;;;;;6529:17:0;;;;6521:26;;;;;;-1:-1:-1;;;;;6572:15:0;;:8;:15;;;;;;;;;;;6562:25;;;6554:34;;;;;;-1:-1:-1;;;;;6613:14:0;;;;;;;:7;:14;;;;;;;;6628:10;6613:26;;;;;;;;;;6603:36;;;6595:45;;;;;;-1:-1:-1;;;;;6667:15:0;;:8;:15;;;;;;;;;;;:27;;6687:6;6667:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6649:15:0;;;:8;:15;;;;;;;;;;;:45;;;;6717:13;;;;;;;:25;;6735:6;6717:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6701:13:0;;;:8;:13;;;;;;;;;;;:41;;;;6778:14;;;;;:7;:14;;;;;6793:10;6778:26;;;;;;;;;;;:38;;6809:6;6778:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6749:14:0;;;;;;;:7;:14;;;;;;;;6764:10;6749:26;;;;;;;;;;:67;;;;6828:28;;;;;;;;;;;6749:14;;6828:28;;;;;;;;;;;-1:-1:-1;6870:4:0;6426:454;;;;;:::o;1111:113::-;1169:7;1192:6;;;;1185:14;;;;-1:-1:-1;1213:5:0;;;1111:113::o;5103:329::-;5166:4;-1:-1:-1;;;;;5187:17:0;;;;5179:26;;;;;;-1:-1:-1;;;;;5239:10:0;5230:20;:8;:20;;;;;;;;;;;5220:30;;;5212:39;;;;;;-1:-1:-1;;;;;5292:10:0;5283:20;:8;:20;;;;;;;;;;;:32;;5308:6;5283:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;5269:10:0;5260:20;;:8;:20;;;;;;;;;;;:55;;;;5338:13;;;;;;;:25;;5356:6;5338:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5322:13:0;;;:8;:13;;;;;;;;;;;;:41;;;;5375:33;;;;;;;5322:13;;5384:10;5375:33;;;;;;;;;;;;;-1:-1:-1;5422:4:0;5103:329;;;;:::o;1293:127::-;1373:5;;;1392:6;;;;1385:14;;;;1293:127;;;;:::o
Swarm Source
bzzr://f7d56f4416ab212167dd33ce27854b883d995d98f63b41e6a9523b3228dd01c8
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.