Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,000,000,000 CAT
Holders
220,277
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$111,040.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
1 CATValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
CAToken
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-12-25
*/
pragma solidity ^0.4.11;
//
// SafeMath
//
// Ownable
// Destructible
// Pausable
//
// ERC20Basic
// ERC20 : ERC20Basic
// BasicToken : ERC20Basic
// StandardToken : ERC20, BasicToken
// MintableToken : StandardToken, Ownable
// PausableToken : StandardToken, Pausable
//
// CAToken : MintableToken, PausableToken
//
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || 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;
}
}
/**
* @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.
*/
function Ownable() 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) onlyOwner public {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title Destructible
* @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
*/
contract Destructible is Ownable {
function Destructible() payable public { }
/**
* @dev Transfers the current balance to the owner and terminates the contract.
*/
function destroy() onlyOwner public {
selfdestruct(owner);
}
function destroyAndSend(address _recipient) onlyOwner public {
selfdestruct(_recipient);
}
}
/**
* @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;
Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
Unpause();
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant 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 constant 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;
/**
* @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));
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
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 constant returns (uint256 balance) {
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)) 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));
uint256 _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// require (_value <= _allowance);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
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 constant returns (uint256 remaining) {
return allowed[_owner][_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
*/
function increaseApproval (address _spender, uint _addedValue) public
returns (bool success) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function decreaseApproval (address _spender, uint _subtractedValue) public
returns (bool success) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount);
Transfer(0x0, _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner public returns (bool) {
mintingFinished = true;
MintFinished();
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, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
}
contract MintableMasterToken is MintableToken {
event MintMasterTransferred(address indexed previousMaster, address indexed newMaster);
address public mintMaster;
modifier onlyMintMasterOrOwner() {
require(msg.sender == mintMaster || msg.sender == owner);
_;
}
function MintableMasterToken() public {
mintMaster = msg.sender;
}
function transferMintMaster(address newMaster) onlyOwner public {
require(newMaster != address(0));
MintMasterTransferred(mintMaster, newMaster);
mintMaster = newMaster;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyMintMasterOrOwner canMint public returns (bool) {
address oldOwner = owner;
owner = msg.sender;
bool result = super.mint(_to, _amount);
owner = oldOwner;
return result;
}
}
/**
* @dev Pre main Bitcalve CAT token ERC20 contract
* Based on references from OpenZeppelin: https://github.com/OpenZeppelin/zeppelin-solidity
*/
contract CAToken is MintableMasterToken, PausableToken {
// Metadata
string public constant symbol = "CAT";
string public constant name = "BitClave";
uint8 public constant decimals = 18;
string public constant version = "2.0";
function mintToAddresses(address[] addresses, uint256 amount) public onlyMintMasterOrOwner canMint {
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amount));
}
}
function mintToAddressesAndAmounts(address[] addresses, uint256[] amounts) public onlyMintMasterOrOwner canMint {
require(addresses.length == amounts.length);
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amounts[i]));
}
}
/**
* @dev Override MintableTokenn.finishMinting() to add canMint modifier
*/
function finishMinting() onlyOwner canMint public returns(bool) {
return super.finishMinting();
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":false,"inputs":[{"name":"newMaster","type":"address"}],"name":"transferMintMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"mintToAddressesAndAmounts","outputs":[],"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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"mintToAddresses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousMaster","type":"address"},{"indexed":true,"name":"newMaster","type":"address"}],"name":"MintMasterTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"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
60606040526003805460048054600160a060020a033316600160a860020a0319938416811790945591909116909117905561117f8061003f6000396000f30060606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde0314610169578063095ea7b3146101f357806318160ddd1461021557806323b872dd1461023a578063249bc2911461026257806327de1a4d14610283578063313ce567146103125780633f4ba83a1461033b57806340c10f191461034e57806354fd4d50146103705780635c975abb14610383578063661884631461039657806370a08231146103b85780637d64bcb4146103d75780638456cb59146103ea5780638da5cb5b146103fd57806395d89b411461042c578063a9059cbb1461043f578063d73dd62314610461578063d991c58f14610483578063dd62ed3e14610496578063f190ac5f146104bb578063f2fde38b1461050c575b600080fd5b341561014d57600080fd5b61015561052b565b604051901515815260200160405180910390f35b341561017457600080fd5b61017c61053b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b85780820151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fe57600080fd5b610155600160a060020a0360043516602435610572565b341561022057600080fd5b61022861059d565b60405190815260200160405180910390f35b341561024557600080fd5b610155600160a060020a03600435811690602435166044356105a3565b341561026d57600080fd5b610281600160a060020a03600435166105d0565b005b341561028e57600080fd5b61028160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061066b95505050505050565b341561031d57600080fd5b610325610722565b60405160ff909116815260200160405180910390f35b341561034657600080fd5b610281610727565b341561035957600080fd5b610155600160a060020a03600435166024356107a6565b341561037b57600080fd5b61017c610869565b341561038e57600080fd5b6101556108a0565b34156103a157600080fd5b610155600160a060020a03600435166024356108b0565b34156103c357600080fd5b610228600160a060020a03600435166108d4565b34156103e257600080fd5b6101556108ef565b34156103f557600080fd5b610281610931565b341561040857600080fd5b6104106109b5565b604051600160a060020a03909116815260200160405180910390f35b341561043757600080fd5b61017c6109c4565b341561044a57600080fd5b610155600160a060020a03600435166024356109fb565b341561046c57600080fd5b610155600160a060020a0360043516602435610a1f565b341561048e57600080fd5b610410610a43565b34156104a157600080fd5b610228600160a060020a0360043581169060243516610a52565b34156104c657600080fd5b61028160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610a7d92505050565b341561051757600080fd5b610281600160a060020a0360043516610b0c565b60035460a060020a900460ff1681565b60408051908101604052600881527f426974436c617665000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff161561058c57600080fd5b6105968383610ba7565b9392505050565b60005481565b60045460009060a060020a900460ff16156105bd57600080fd5b6105c8848484610c13565b949350505050565b60035433600160a060020a039081169116146105eb57600080fd5b600160a060020a038116151561060057600080fd5b600454600160a060020a0380831691167fd8526677367b3ec896585b1f6119440c967be13b48865327e4e181db6a104a2a60405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045460009033600160a060020a0390811691161480610699575060035433600160a060020a039081169116145b15156106a457600080fd5b60035460a060020a900460ff16156106bb57600080fd5b81518351146106c957600080fd5b5060005b825181101561071d5761070a8382815181106106e557fe5b906020019060200201518383815181106106fb57fe5b906020019060200201516107a6565b151561071557600080fd5b6001016106cd565b505050565b601281565b60035433600160a060020a0390811691161461074257600080fd5b60045460a060020a900460ff16151561075a57600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6004546000908190819033600160a060020a03908116911614806107d8575060035433600160a060020a039081169116145b15156107e357600080fd5b60035460a060020a900460ff16156107fa57600080fd5b6003805433600160a060020a0390811673ffffffffffffffffffffffffffffffffffffffff198316179092551691506108338585610d3d565b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255509392505050565b60408051908101604052600381527f322e300000000000000000000000000000000000000000000000000000000000602082015281565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff16156108ca57600080fd5b6105968383610e4a565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461090d57600080fd5b60035460a060020a900460ff161561092457600080fd5b61092c610f44565b905090565b60035433600160a060020a0390811691161461094c57600080fd5b60045460a060020a900460ff161561096357600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4341540000000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff1615610a1557600080fd5b6105968383610fb8565b60045460009060a060020a900460ff1615610a3957600080fd5b610596838361108e565b600454600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045460009033600160a060020a0390811691161480610aab575060035433600160a060020a039081169116145b1515610ab657600080fd5b60035460a060020a900460ff1615610acd57600080fd5b5060005b825181101561071d57610af9838281518110610ae957fe5b90602001906020020151836107a6565b1515610b0457600080fd5b600101610ad1565b60035433600160a060020a03908116911614610b2757600080fd5b600160a060020a0381161515610b3c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600080600160a060020a0384161515610c2b57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610c71908463ffffffff61113216565b600160a060020a038087166000908152600160205260408082209390935590861681522054610ca6908463ffffffff61114416565b600160a060020a038516600090815260016020526040902055610ccf818463ffffffff61113216565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60035460009033600160a060020a03908116911614610d5b57600080fd5b60035460a060020a900460ff1615610d7257600080fd5b600054610d85908363ffffffff61114416565b6000908155600160a060020a038416815260016020526040902054610db0908363ffffffff61114416565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610ea757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ede565b610eb7818463ffffffff61113216565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009033600160a060020a03908116911614610f6257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b6000600160a060020a0383161515610fcf57600080fd5b600160a060020a033316600090815260016020526040902054610ff8908363ffffffff61113216565b600160a060020a03338116600090815260016020526040808220939093559085168152205461102d908363ffffffff61114416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546110c6908363ffffffff61114416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561113e57fe5b50900390565b60008282018381101561059657fe00a165627a7a723058201c38dd53f48066b47ee28fc512a3d5a297b46f376f02bec38ca97003ab2233d80029
Deployed Bytecode
0x60606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde0314610169578063095ea7b3146101f357806318160ddd1461021557806323b872dd1461023a578063249bc2911461026257806327de1a4d14610283578063313ce567146103125780633f4ba83a1461033b57806340c10f191461034e57806354fd4d50146103705780635c975abb14610383578063661884631461039657806370a08231146103b85780637d64bcb4146103d75780638456cb59146103ea5780638da5cb5b146103fd57806395d89b411461042c578063a9059cbb1461043f578063d73dd62314610461578063d991c58f14610483578063dd62ed3e14610496578063f190ac5f146104bb578063f2fde38b1461050c575b600080fd5b341561014d57600080fd5b61015561052b565b604051901515815260200160405180910390f35b341561017457600080fd5b61017c61053b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b85780820151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fe57600080fd5b610155600160a060020a0360043516602435610572565b341561022057600080fd5b61022861059d565b60405190815260200160405180910390f35b341561024557600080fd5b610155600160a060020a03600435811690602435166044356105a3565b341561026d57600080fd5b610281600160a060020a03600435166105d0565b005b341561028e57600080fd5b61028160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061066b95505050505050565b341561031d57600080fd5b610325610722565b60405160ff909116815260200160405180910390f35b341561034657600080fd5b610281610727565b341561035957600080fd5b610155600160a060020a03600435166024356107a6565b341561037b57600080fd5b61017c610869565b341561038e57600080fd5b6101556108a0565b34156103a157600080fd5b610155600160a060020a03600435166024356108b0565b34156103c357600080fd5b610228600160a060020a03600435166108d4565b34156103e257600080fd5b6101556108ef565b34156103f557600080fd5b610281610931565b341561040857600080fd5b6104106109b5565b604051600160a060020a03909116815260200160405180910390f35b341561043757600080fd5b61017c6109c4565b341561044a57600080fd5b610155600160a060020a03600435166024356109fb565b341561046c57600080fd5b610155600160a060020a0360043516602435610a1f565b341561048e57600080fd5b610410610a43565b34156104a157600080fd5b610228600160a060020a0360043581169060243516610a52565b34156104c657600080fd5b61028160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610a7d92505050565b341561051757600080fd5b610281600160a060020a0360043516610b0c565b60035460a060020a900460ff1681565b60408051908101604052600881527f426974436c617665000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff161561058c57600080fd5b6105968383610ba7565b9392505050565b60005481565b60045460009060a060020a900460ff16156105bd57600080fd5b6105c8848484610c13565b949350505050565b60035433600160a060020a039081169116146105eb57600080fd5b600160a060020a038116151561060057600080fd5b600454600160a060020a0380831691167fd8526677367b3ec896585b1f6119440c967be13b48865327e4e181db6a104a2a60405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045460009033600160a060020a0390811691161480610699575060035433600160a060020a039081169116145b15156106a457600080fd5b60035460a060020a900460ff16156106bb57600080fd5b81518351146106c957600080fd5b5060005b825181101561071d5761070a8382815181106106e557fe5b906020019060200201518383815181106106fb57fe5b906020019060200201516107a6565b151561071557600080fd5b6001016106cd565b505050565b601281565b60035433600160a060020a0390811691161461074257600080fd5b60045460a060020a900460ff16151561075a57600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6004546000908190819033600160a060020a03908116911614806107d8575060035433600160a060020a039081169116145b15156107e357600080fd5b60035460a060020a900460ff16156107fa57600080fd5b6003805433600160a060020a0390811673ffffffffffffffffffffffffffffffffffffffff198316179092551691506108338585610d3d565b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039490941693909317909255509392505050565b60408051908101604052600381527f322e300000000000000000000000000000000000000000000000000000000000602082015281565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff16156108ca57600080fd5b6105968383610e4a565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461090d57600080fd5b60035460a060020a900460ff161561092457600080fd5b61092c610f44565b905090565b60035433600160a060020a0390811691161461094c57600080fd5b60045460a060020a900460ff161561096357600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4341540000000000000000000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff1615610a1557600080fd5b6105968383610fb8565b60045460009060a060020a900460ff1615610a3957600080fd5b610596838361108e565b600454600160a060020a031681565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045460009033600160a060020a0390811691161480610aab575060035433600160a060020a039081169116145b1515610ab657600080fd5b60035460a060020a900460ff1615610acd57600080fd5b5060005b825181101561071d57610af9838281518110610ae957fe5b90602001906020020151836107a6565b1515610b0457600080fd5b600101610ad1565b60035433600160a060020a03908116911614610b2757600080fd5b600160a060020a0381161515610b3c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600080600160a060020a0384161515610c2b57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610c71908463ffffffff61113216565b600160a060020a038087166000908152600160205260408082209390935590861681522054610ca6908463ffffffff61114416565b600160a060020a038516600090815260016020526040902055610ccf818463ffffffff61113216565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60035460009033600160a060020a03908116911614610d5b57600080fd5b60035460a060020a900460ff1615610d7257600080fd5b600054610d85908363ffffffff61114416565b6000908155600160a060020a038416815260016020526040902054610db0908363ffffffff61114416565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610ea757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ede565b610eb7818463ffffffff61113216565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009033600160a060020a03908116911614610f6257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b6000600160a060020a0383161515610fcf57600080fd5b600160a060020a033316600090815260016020526040902054610ff8908363ffffffff61113216565b600160a060020a03338116600090815260016020526040808220939093559085168152205461102d908363ffffffff61114416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546110c6908363ffffffff61114416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561113e57fe5b50900390565b60008282018381101561059657fe00a165627a7a723058201c38dd53f48066b47ee28fc512a3d5a297b46f376f02bec38ca97003ab2233d80029
Swarm Source
bzzr://1c38dd53f48066b47ee28fc512a3d5a297b46f376f02bec38ca97003ab2233d8
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.
Add Token to MetaMask (Web3)