ERC-20
Overview
Max Total Supply
300,000,000 0xC
Holders
259
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token0xC
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-02-03 */ pragma solidity ^0.4.24; // // .#########' // .###############+ // ,#################### // `#######################+ // ;########################## // #############################. // ###############################, // +##################, ###########` // .################### .########### // ##############, .###########+ // #############` .############` // ###########+ ############ // ###########; ########### // ##########' ########### // '########## '#. `, ########## // ########## ####' ####. :#########; // `#########' :#####; ###### ########## // :######### #######: ####### :######### // +######### :#######.######## #########` // #########; ###############' #########: // ######### #############+ '########' // ######### ############ :######### // ######### ########## ,######### // ######### :######## ,######### // ######### ,########## ,######### // ######### ,############ :########+ // ######### .#############+ '########' // #########: `###############' #########, // +########+ ;#######`;####### ######### // ,######### '######` '###### :######### // #########; .#####` '##### ########## // ########## '###` +### :#########: // ;#########+ ` ########## // ##########, ########### // ###########; ############ // +############ .############` // ###########+ ,#############; // `########### ;++################# // :##########, ################### // '###########.'################### // +############################## // '############################` // .########################## // #######################: // ###################+ // +##############: // :#######+` // // // // Play0x.com (The ONLY gaming platform for all ERC20 Tokens) // ------------------------------------------------------------------------------------------------------- // * Multiple types of game platforms // * Build your own game zone - Not only playing games, but also allowing other players to join your game. // * Support all ERC20 tokens. // // // // 0xC Token (Contract address : 0x60d8234a662651e586173c17eb45ca9833a7aa6c) // ------------------------------------------------------------------------------------------------------- // * 0xC Token is an ERC20 Token specifically for digital entertainment. // * No ICO and private sales,fair access. // * There will be hundreds of games using 0xC as a game token. // * Token holders can permanently get ETH's profit sharing. // /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring '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; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @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; /** * @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 { if (newOwner != address(0)) { owner = newOwner; } } } /** * @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 { mapping (address => mapping (address => uint256)) internal allowed; using SafeMath for uint256; uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); 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)); require(_value <= balances[msg.sender]); require(balances[msg.sender] >= _value && balances[_to].add(_value) >= balances[_to]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @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]; } /** * @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 amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); 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 Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @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) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 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 specifing the amount of tokens still avaible for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /*Token Contract*/ contract Token0xC is StandardToken, Ownable { using SafeMath for uint256; // Token Information string public constant name = "0xC"; string public constant symbol = "0xC"; uint8 public constant decimals = 18; // Sale period1. uint256 public startDate1; uint256 public endDate1; uint256 public rate1; // Sale period2. uint256 public startDate2; uint256 public endDate2; uint256 public rate2; // Sale period3. uint256 public startDate3; uint256 public endDate3; uint256 public rate3; //2018 08 16 uint256 BaseTimestamp = 1534377600; //SaleCap uint256 public dailyCap; uint256 public saleCap; uint256 public LastbetDay; uint256 public LeftDailyCap; uint256 public EtheLowLimit = 500000000000000000; //0.5 ether // Address Where Token are keep address public tokenWallet; // Address where funds are collected. address public fundWallet; // Event event TokenPurchase(address indexed purchaser, uint256 value, uint256 amount); event TransferToken(address indexed buyer, uint256 amount); // Modifiers modifier uninitialized() { require(tokenWallet == 0x0); require(fundWallet == 0x0); _; } constructor() public {} // Trigger with Transfer event // Fallback function can be used to buy tokens function () public payable { buyTokens(msg.sender, msg.value); } //Initial Contract function initialize(address _tokenWallet, address _fundWallet, uint256 _start1, uint256 _end1, uint256 _dailyCap, uint256 _saleCap, uint256 _totalSupply) public onlyOwner uninitialized { require(_start1 < _end1); require(_tokenWallet != 0x0); require(_fundWallet != 0x0); require(_totalSupply >= _saleCap); startDate1 = _start1; endDate1 = _end1; saleCap = _saleCap; dailyCap = _dailyCap; tokenWallet = _tokenWallet; fundWallet = _fundWallet; totalSupply = _totalSupply; balances[tokenWallet] = saleCap; balances[0xb1] = _totalSupply.sub(saleCap); } //Set Sale Period function setPeriod(uint256 period, uint256 _start, uint256 _end) public onlyOwner { require(_end > _start); if (period == 1) { startDate1 = _start; endDate1 = _end; }else if (period == 2) { require(_start > endDate1); startDate2 = _start; endDate2 = _end; }else if (period == 3) { require(_start > endDate2); startDate3 = _start; endDate3 = _end; } } //Set Sale Period function setPeriodRate(uint256 _period, uint256 _rate) public onlyOwner { if (_period == 1) { rate1 = _rate; }else if (_period == 2) { rate2 = _rate; }else if (_period == 3) { rate3 = _rate; } } // For transferToken function transferToken(address _to, uint256 amount) public onlyOwner { require(saleCap >= amount,' Not Enough' ); require(_to != address(0)); require(_to != tokenWallet); require(amount <= balances[tokenWallet]); saleCap = saleCap.sub(amount); // Transfer balances[tokenWallet] = balances[tokenWallet].sub(amount); balances[_to] = balances[_to].add(amount); emit TransferToken(_to, amount); emit Transfer(tokenWallet, _to, amount); } function setDailyCap(uint256 _dailyCap) public onlyOwner{ dailyCap = _dailyCap; } function setSaleLimit(uint256 _etherLimit) public onlyOwner{ EtheLowLimit = _etherLimit; } //Set SaleCap function setSaleCap(uint256 _saleCap) public onlyOwner { require(balances[0xb1].add(balances[tokenWallet]).sub(_saleCap) >= 0); uint256 amount = 0; //Check SaleCap if (balances[tokenWallet] > _saleCap) { amount = balances[tokenWallet].sub(_saleCap); balances[0xb1] = balances[0xb1].add(amount); } else { amount = _saleCap.sub(balances[tokenWallet]); balances[0xb1] = balances[0xb1].sub(amount); } balances[tokenWallet] = _saleCap; saleCap = _saleCap; } //Calcute Bouns function getBonusByTime() public constant returns (uint256) { if (now < startDate1) { return 0; } else if (endDate1 > now && now > startDate1) { return rate1; } else if (endDate2 > now && now > startDate2) { return rate2; } else if (endDate3 > now && now > startDate3) { return rate3; } else { return 0; } } //Stop Contract function finalize() public onlyOwner { require(!saleActive()); // Transfer the rest of token to tokenWallet balances[tokenWallet] = balances[tokenWallet].add(balances[0xb1]); balances[0xb1] = 0; } //Purge the time in the timestamp. function DateConverter(uint256 ts) public view returns(uint256 currentDayWithoutTime){ uint256 dayInterval = ts.sub(BaseTimestamp); uint256 dayCount = dayInterval.div(86400); return BaseTimestamp.add(dayCount.mul(86400)); } //Check SaleActive function saleActive() public constant returns (bool) { return ( (now >= startDate1 && now < endDate1 && saleCap > 0) || (now >= startDate2 && now < endDate2 && saleCap > 0) || (now >= startDate3 && now < endDate3 && saleCap > 0) ); } //Buy Token function buyTokens(address sender, uint256 value) internal { //Check Sale Status require(saleActive()); //Minum buying limit require(value >= EtheLowLimit); require(sender != tokenWallet); if(DateConverter(now) > LastbetDay ) { LastbetDay = DateConverter(now); LeftDailyCap = dailyCap; } // Calculate token amount to be purchased uint256 bonus = getBonusByTime(); uint256 amount = value.mul(bonus); // We have enough token to sale require(LeftDailyCap >= amount, "cap not enough"); require(balances[tokenWallet] >= amount); LeftDailyCap = LeftDailyCap.sub(amount); // Transfer balances[tokenWallet] = balances[tokenWallet].sub(amount); balances[sender] = balances[sender].add(amount); emit TokenPurchase(sender, value, amount); emit Transfer(tokenWallet, sender, amount); saleCap = saleCap.sub(amount); // Forward the fund to fund collection wallet. fundWallet.transfer(msg.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":true,"inputs":[],"name":"saleCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_dailyCap","type":"uint256"}],"name":"setDailyCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDate2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LastbetDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EtheLowLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_period","type":"uint256"},{"name":"_rate","type":"uint256"}],"name":"setPeriodRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fundWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"ts","type":"uint256"}],"name":"DateConverter","outputs":[{"name":"currentDayWithoutTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDate3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LeftDailyCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDate3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"period","type":"uint256"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"name":"setPeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"rate3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDate2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBonusByTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDate1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_saleCap","type":"uint256"}],"name":"setSaleCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_etherLimit","type":"uint256"}],"name":"setSaleLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"dailyCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDate1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenWallet","type":"address"},{"name":"_fundWallet","type":"address"},{"name":"_start1","type":"uint256"},{"name":"_end1","type":"uint256"},{"name":"_dailyCap","type":"uint256"},{"name":"_saleCap","type":"uint256"},{"name":"_totalSupply","type":"uint256"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rate2","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":"purchaser","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TransferToken","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"},{"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"}]
Contract Creation Code
6080604052635b74be80600d556706f05b59d3b2000060125534801561002457600080fd5b5060038054600160a060020a031916331790556115f8806100466000396000f3006080604052600436106101d75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e3578063078fd9ea1461026d5780630840a44a14610294578063095ea7b3146102ac5780631072cbea146102e457806318160ddd1461030857806323b872dd1461031d578063313ce5671461034757806339c480c9146103725780633e4e279b146103875780634bb278f31461039c5780634e3c73e6146103b15780635d756ecb146103c6578063664a1ad6146103e157806368428a1b146104125780636a427b471461042757806370a082311461043f57806378e5a48514610460578063795630fa146104755780638d3fbc051461048a5780638da5cb5b1461049f5780638feadcb7146104b457806395d89b41146101e3578063a9059cbb146104d2578063aff1f15f146104f6578063b45156fc1461050b578063bff99c6c14610520578063c399330d14610535578063c5ddba021461054a578063cf8549691461055f578063d3d37a3114610574578063d87d6bd51461058c578063dd62ed3e146105a4578063eb339391146105cb578063eb89022e146105e0578063edbf4ac2146105f5578063f2fde38b1461062b578063f555b8151461064c575b6101e13334610661565b005b3480156101ef57600080fd5b506101f86108d8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023257818101518382015260200161021a565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027957600080fd5b5061028261090f565b60408051918252519081900360200190f35b3480156102a057600080fd5b506101e1600435610915565b3480156102b857600080fd5b506102d0600160a060020a0360043516602435610931565b604080519115158252519081900360200190f35b3480156102f057600080fd5b506101e1600160a060020a03600435166024356109cf565b34801561031457600080fd5b50610282610bb0565b34801561032957600080fd5b506102d0600160a060020a0360043581169060243516604435610bb6565b34801561035357600080fd5b5061035c610d18565b6040805160ff9092168252519081900360200190f35b34801561037e57600080fd5b50610282610d1d565b34801561039357600080fd5b50610282610d23565b3480156103a857600080fd5b506101e1610d29565b3480156103bd57600080fd5b50610282610dc0565b3480156103d257600080fd5b506101e1600435602435610dc6565b3480156103ed57600080fd5b506103f6610e16565b60408051600160a060020a039092168252519081900360200190f35b34801561041e57600080fd5b506102d0610e25565b34801561043357600080fd5b50610282600435610e9c565b34801561044b57600080fd5b50610282600160a060020a0360043516610efa565b34801561046c57600080fd5b50610282610f15565b34801561048157600080fd5b50610282610f1b565b34801561049657600080fd5b50610282610f21565b3480156104ab57600080fd5b506103f6610f27565b3480156104c057600080fd5b506101e1600435602435604435610f36565b3480156104de57600080fd5b506102d0600160a060020a0360043516602435610fbe565b34801561050257600080fd5b506102826110e0565b34801561051757600080fd5b506102826110e6565b34801561052c57600080fd5b506103f66110ec565b34801561054157600080fd5b506102826110fb565b34801561055657600080fd5b50610282611177565b34801561056b57600080fd5b5061028261117d565b34801561058057600080fd5b506101e1600435611183565b34801561059857600080fd5b506101e1600435611329565b3480156105b057600080fd5b50610282600160a060020a0360043581169060243516611345565b3480156105d757600080fd5b5061028261136e565b3480156105ec57600080fd5b50610282611374565b34801561060157600080fd5b506101e1600160a060020a036004358116906024351660443560643560843560a43560c43561137a565b34801561063757600080fd5b506101e1600160a060020a036004351661149b565b34801561065857600080fd5b506102826114ed565b60008061066c610e25565b151561067757600080fd5b60125483101561068657600080fd5b601354600160a060020a03858116911614156106a157600080fd5b6010546106ad42610e9c565b11156106c6576106bc42610e9c565b601055600e546011555b6106ce6110fb565b91506106e0838363ffffffff6114f316565b9050806011541015151561075557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f636170206e6f7420656e6f756768000000000000000000000000000000000000604482015290519081900360640190fd5b601354600160a060020a031660009081526002602052604090205481111561077c57600080fd5b60115461078f908263ffffffff61152c16565b601155601354600160a060020a03166000908152600260205260409020546107bd908263ffffffff61152c16565b601354600160a060020a0390811660009081526002602052604080822093909355908616815220546107f5908263ffffffff61154316565b600160a060020a038516600081815260026020908152604091829020939093558051868152928301849052805191927fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f929081900390910190a2601354604080518381529051600160a060020a0380881693169160008051602061158d833981519152919081900360200190a3600f54610895908263ffffffff61152c16565b600f55601454604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156108d1573d6000803e3d6000fd5b5050505050565b60408051808201909152600381527f3078430000000000000000000000000000000000000000000000000000000000602082015281565b600f5481565b600354600160a060020a0316331461092c57600080fd5b600e55565b600081158061095f575033600090815260208181526040808320600160a060020a0387168452909152902054155b151561096a57600080fd5b33600081815260208181526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600354600160a060020a031633146109e657600080fd5b600f54811115610a5757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f204e6f7420456e6f756768000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515610a6c57600080fd5b601354600160a060020a0383811691161415610a8757600080fd5b601354600160a060020a0316600090815260026020526040902054811115610aae57600080fd5b600f54610ac1908263ffffffff61152c16565b600f55601354600160a060020a0316600090815260026020526040902054610aef908263ffffffff61152c16565b601354600160a060020a039081166000908152600260205260408082209390935590841681522054610b27908263ffffffff61154316565b600160a060020a038316600081815260026020908152604091829020939093558051848152905191927f9dd3045b6df532ed81beb2a333cec6249dafd3c2fc54c80c50155cb0e1a0ba1e92918290030190a2601354604080518381529051600160a060020a0380861693169160008051602061158d833981519152919081900360200190a35050565b60015481565b6000600160a060020a0383161515610bcd57600080fd5b600160a060020a038416600090815260026020526040902054821115610bf257600080fd5b600160a060020a038416600090815260208181526040808320338452909152902054821115610c2057600080fd5b600160a060020a038416600090815260026020526040902054610c49908363ffffffff61152c16565b600160a060020a038086166000908152600260205260408082209390935590851681522054610c7e908363ffffffff61154316565b600160a060020a0380851660009081526002602090815260408083209490945591871681528082528281203382529091522054610cc1908363ffffffff61152c16565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061158d833981519152929181900390910190a35060019392505050565b601281565b60085481565b60105481565b600354600160a060020a03163314610d4057600080fd5b610d48610e25565b15610d5257600080fd5b60026020526000805160206115ad83398151915254601354600160a060020a031660009081526040902054610d8c9163ffffffff61154316565b601354600160a060020a031660009081526002602052604081209190915560b181526000805160206115ad83398151915255565b60125481565b600354600160a060020a03163314610ddd57600080fd5b8160011415610df0576006819055610e12565b8160021415610e03576009819055610e12565b8160031415610e1257600c8190555b5050565b601454600160a060020a031681565b60006004544210158015610e3a575060055442105b8015610e4857506000600f54115b80610e6f57506007544210158015610e61575060085442105b8015610e6f57506000600f54115b80610e965750600a544210158015610e885750600b5442105b8015610e9657506000600f54115b90505b90565b6000806000610eb6600d548561152c90919063ffffffff16565b9150610ecb826201518063ffffffff61155516565b9050610ef2610ee3826201518063ffffffff6114f316565b600d549063ffffffff61154316565b949350505050565b600160a060020a031660009081526002602052604090205490565b600b5481565b60115481565b600a5481565b600354600160a060020a031681565b600354600160a060020a03163314610f4d57600080fd5b818111610f5957600080fd5b8260011415610f715760048290556005819055610fb9565b8260021415610f97576005548211610f8857600080fd5b60078290556008819055610fb9565b8260031415610fb9576008548211610fae57600080fd5b600a829055600b8190555b505050565b6000600160a060020a0383161515610fd557600080fd5b33600090815260026020526040902054821115610ff157600080fd5b3360009081526002602052604090205482118015906110375750600160a060020a038316600090815260026020526040902054611034818463ffffffff61154316565b10155b151561104257600080fd5b33600090815260026020526040902054611062908363ffffffff61152c16565b3360009081526002602052604080822092909255600160a060020a03851681522054611094908363ffffffff61154316565b600160a060020a03841660008181526002602090815260409182902093909355805185815290519192339260008051602061158d8339815191529281900390910190a350600192915050565b600c5481565b60075481565b601354600160a060020a031681565b600060045442101561110f57506000610e99565b42600554118015611121575060045442115b1561112f5750600654610e99565b42600854118015611141575060075442115b1561114f5750600954610e99565b42600b541180156111615750600a5442115b1561116f5750600c54610e99565b506000610e99565b60045481565b60065481565b600354600090600160a060020a0316331461119d57600080fd5b601354600160a060020a031660009081526002602052604081205460b182526000805160206115ad833981519152546111ed9185916111e19163ffffffff61154316565b9063ffffffff61152c16565b10156111f857600080fd5b50601354600160a060020a031660009081526002602052604081205482101561129257601354600160a060020a0316600090815260026020526040902054611246908363ffffffff61152c16565b60b160005260026020526000805160206115ad83398151915254909150611273908263ffffffff61154316565b60b160005260026020526000805160206115ad83398151915255611306565b601354600160a060020a03166000908152600260205260409020546112be90839063ffffffff61152c16565b60b160005260026020526000805160206115ad833981519152549091506112eb908263ffffffff61152c16565b60b160005260026020526000805160206115ad833981519152555b50601354600160a060020a03166000908152600260205260409020819055600f55565b600354600160a060020a0316331461134057600080fd5b601255565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600e5481565b60055481565b600354600160a060020a0316331461139157600080fd5b601354600160a060020a0316156113a757600080fd5b601454600160a060020a0316156113bd57600080fd5b8385106113c957600080fd5b600160a060020a03871615156113de57600080fd5b600160a060020a03861615156113f357600080fd5b8181101561140057600080fd5b60048590556005849055600f829055600e83905560138054600160a060020a03808a1673ffffffffffffffffffffffffffffffffffffffff199283161792839055601480548a83169316929092179091556001839055166000908152600260205260409020829055611478818363ffffffff61152c16565b60b160005260026020526000805160206115ad8339815191525550505050505050565b600354600160a060020a031633146114b257600080fd5b600160a060020a038116156114ea576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60095481565b6000808315156115065760009150611525565b5082820282848281151561151657fe5b041461152157600080fd5b8091505b5092915050565b6000808383111561153c57600080fd5b5050900390565b60008282018381101561152157600080fd5b60008080831161156457600080fd5b828481151561156f57fe5b049050828481151561157d57fe5b06818402018414151561152157fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efb92de9c4fce464c7d8425e4d5ca679f18426b2c0dfd7978846157222ccd1b08ca165627a7a72305820a4d36bdf6b6f2f78d0b7b24aceb062f7df5c71782831879a913edc19e56a20fe0029
Deployed Bytecode
0x6080604052600436106101d75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e3578063078fd9ea1461026d5780630840a44a14610294578063095ea7b3146102ac5780631072cbea146102e457806318160ddd1461030857806323b872dd1461031d578063313ce5671461034757806339c480c9146103725780633e4e279b146103875780634bb278f31461039c5780634e3c73e6146103b15780635d756ecb146103c6578063664a1ad6146103e157806368428a1b146104125780636a427b471461042757806370a082311461043f57806378e5a48514610460578063795630fa146104755780638d3fbc051461048a5780638da5cb5b1461049f5780638feadcb7146104b457806395d89b41146101e3578063a9059cbb146104d2578063aff1f15f146104f6578063b45156fc1461050b578063bff99c6c14610520578063c399330d14610535578063c5ddba021461054a578063cf8549691461055f578063d3d37a3114610574578063d87d6bd51461058c578063dd62ed3e146105a4578063eb339391146105cb578063eb89022e146105e0578063edbf4ac2146105f5578063f2fde38b1461062b578063f555b8151461064c575b6101e13334610661565b005b3480156101ef57600080fd5b506101f86108d8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023257818101518382015260200161021a565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027957600080fd5b5061028261090f565b60408051918252519081900360200190f35b3480156102a057600080fd5b506101e1600435610915565b3480156102b857600080fd5b506102d0600160a060020a0360043516602435610931565b604080519115158252519081900360200190f35b3480156102f057600080fd5b506101e1600160a060020a03600435166024356109cf565b34801561031457600080fd5b50610282610bb0565b34801561032957600080fd5b506102d0600160a060020a0360043581169060243516604435610bb6565b34801561035357600080fd5b5061035c610d18565b6040805160ff9092168252519081900360200190f35b34801561037e57600080fd5b50610282610d1d565b34801561039357600080fd5b50610282610d23565b3480156103a857600080fd5b506101e1610d29565b3480156103bd57600080fd5b50610282610dc0565b3480156103d257600080fd5b506101e1600435602435610dc6565b3480156103ed57600080fd5b506103f6610e16565b60408051600160a060020a039092168252519081900360200190f35b34801561041e57600080fd5b506102d0610e25565b34801561043357600080fd5b50610282600435610e9c565b34801561044b57600080fd5b50610282600160a060020a0360043516610efa565b34801561046c57600080fd5b50610282610f15565b34801561048157600080fd5b50610282610f1b565b34801561049657600080fd5b50610282610f21565b3480156104ab57600080fd5b506103f6610f27565b3480156104c057600080fd5b506101e1600435602435604435610f36565b3480156104de57600080fd5b506102d0600160a060020a0360043516602435610fbe565b34801561050257600080fd5b506102826110e0565b34801561051757600080fd5b506102826110e6565b34801561052c57600080fd5b506103f66110ec565b34801561054157600080fd5b506102826110fb565b34801561055657600080fd5b50610282611177565b34801561056b57600080fd5b5061028261117d565b34801561058057600080fd5b506101e1600435611183565b34801561059857600080fd5b506101e1600435611329565b3480156105b057600080fd5b50610282600160a060020a0360043581169060243516611345565b3480156105d757600080fd5b5061028261136e565b3480156105ec57600080fd5b50610282611374565b34801561060157600080fd5b506101e1600160a060020a036004358116906024351660443560643560843560a43560c43561137a565b34801561063757600080fd5b506101e1600160a060020a036004351661149b565b34801561065857600080fd5b506102826114ed565b60008061066c610e25565b151561067757600080fd5b60125483101561068657600080fd5b601354600160a060020a03858116911614156106a157600080fd5b6010546106ad42610e9c565b11156106c6576106bc42610e9c565b601055600e546011555b6106ce6110fb565b91506106e0838363ffffffff6114f316565b9050806011541015151561075557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f636170206e6f7420656e6f756768000000000000000000000000000000000000604482015290519081900360640190fd5b601354600160a060020a031660009081526002602052604090205481111561077c57600080fd5b60115461078f908263ffffffff61152c16565b601155601354600160a060020a03166000908152600260205260409020546107bd908263ffffffff61152c16565b601354600160a060020a0390811660009081526002602052604080822093909355908616815220546107f5908263ffffffff61154316565b600160a060020a038516600081815260026020908152604091829020939093558051868152928301849052805191927fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f929081900390910190a2601354604080518381529051600160a060020a0380881693169160008051602061158d833981519152919081900360200190a3600f54610895908263ffffffff61152c16565b600f55601454604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156108d1573d6000803e3d6000fd5b5050505050565b60408051808201909152600381527f3078430000000000000000000000000000000000000000000000000000000000602082015281565b600f5481565b600354600160a060020a0316331461092c57600080fd5b600e55565b600081158061095f575033600090815260208181526040808320600160a060020a0387168452909152902054155b151561096a57600080fd5b33600081815260208181526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600354600160a060020a031633146109e657600080fd5b600f54811115610a5757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f204e6f7420456e6f756768000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515610a6c57600080fd5b601354600160a060020a0383811691161415610a8757600080fd5b601354600160a060020a0316600090815260026020526040902054811115610aae57600080fd5b600f54610ac1908263ffffffff61152c16565b600f55601354600160a060020a0316600090815260026020526040902054610aef908263ffffffff61152c16565b601354600160a060020a039081166000908152600260205260408082209390935590841681522054610b27908263ffffffff61154316565b600160a060020a038316600081815260026020908152604091829020939093558051848152905191927f9dd3045b6df532ed81beb2a333cec6249dafd3c2fc54c80c50155cb0e1a0ba1e92918290030190a2601354604080518381529051600160a060020a0380861693169160008051602061158d833981519152919081900360200190a35050565b60015481565b6000600160a060020a0383161515610bcd57600080fd5b600160a060020a038416600090815260026020526040902054821115610bf257600080fd5b600160a060020a038416600090815260208181526040808320338452909152902054821115610c2057600080fd5b600160a060020a038416600090815260026020526040902054610c49908363ffffffff61152c16565b600160a060020a038086166000908152600260205260408082209390935590851681522054610c7e908363ffffffff61154316565b600160a060020a0380851660009081526002602090815260408083209490945591871681528082528281203382529091522054610cc1908363ffffffff61152c16565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061158d833981519152929181900390910190a35060019392505050565b601281565b60085481565b60105481565b600354600160a060020a03163314610d4057600080fd5b610d48610e25565b15610d5257600080fd5b60026020526000805160206115ad83398151915254601354600160a060020a031660009081526040902054610d8c9163ffffffff61154316565b601354600160a060020a031660009081526002602052604081209190915560b181526000805160206115ad83398151915255565b60125481565b600354600160a060020a03163314610ddd57600080fd5b8160011415610df0576006819055610e12565b8160021415610e03576009819055610e12565b8160031415610e1257600c8190555b5050565b601454600160a060020a031681565b60006004544210158015610e3a575060055442105b8015610e4857506000600f54115b80610e6f57506007544210158015610e61575060085442105b8015610e6f57506000600f54115b80610e965750600a544210158015610e885750600b5442105b8015610e9657506000600f54115b90505b90565b6000806000610eb6600d548561152c90919063ffffffff16565b9150610ecb826201518063ffffffff61155516565b9050610ef2610ee3826201518063ffffffff6114f316565b600d549063ffffffff61154316565b949350505050565b600160a060020a031660009081526002602052604090205490565b600b5481565b60115481565b600a5481565b600354600160a060020a031681565b600354600160a060020a03163314610f4d57600080fd5b818111610f5957600080fd5b8260011415610f715760048290556005819055610fb9565b8260021415610f97576005548211610f8857600080fd5b60078290556008819055610fb9565b8260031415610fb9576008548211610fae57600080fd5b600a829055600b8190555b505050565b6000600160a060020a0383161515610fd557600080fd5b33600090815260026020526040902054821115610ff157600080fd5b3360009081526002602052604090205482118015906110375750600160a060020a038316600090815260026020526040902054611034818463ffffffff61154316565b10155b151561104257600080fd5b33600090815260026020526040902054611062908363ffffffff61152c16565b3360009081526002602052604080822092909255600160a060020a03851681522054611094908363ffffffff61154316565b600160a060020a03841660008181526002602090815260409182902093909355805185815290519192339260008051602061158d8339815191529281900390910190a350600192915050565b600c5481565b60075481565b601354600160a060020a031681565b600060045442101561110f57506000610e99565b42600554118015611121575060045442115b1561112f5750600654610e99565b42600854118015611141575060075442115b1561114f5750600954610e99565b42600b541180156111615750600a5442115b1561116f5750600c54610e99565b506000610e99565b60045481565b60065481565b600354600090600160a060020a0316331461119d57600080fd5b601354600160a060020a031660009081526002602052604081205460b182526000805160206115ad833981519152546111ed9185916111e19163ffffffff61154316565b9063ffffffff61152c16565b10156111f857600080fd5b50601354600160a060020a031660009081526002602052604081205482101561129257601354600160a060020a0316600090815260026020526040902054611246908363ffffffff61152c16565b60b160005260026020526000805160206115ad83398151915254909150611273908263ffffffff61154316565b60b160005260026020526000805160206115ad83398151915255611306565b601354600160a060020a03166000908152600260205260409020546112be90839063ffffffff61152c16565b60b160005260026020526000805160206115ad833981519152549091506112eb908263ffffffff61152c16565b60b160005260026020526000805160206115ad833981519152555b50601354600160a060020a03166000908152600260205260409020819055600f55565b600354600160a060020a0316331461134057600080fd5b601255565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600e5481565b60055481565b600354600160a060020a0316331461139157600080fd5b601354600160a060020a0316156113a757600080fd5b601454600160a060020a0316156113bd57600080fd5b8385106113c957600080fd5b600160a060020a03871615156113de57600080fd5b600160a060020a03861615156113f357600080fd5b8181101561140057600080fd5b60048590556005849055600f829055600e83905560138054600160a060020a03808a1673ffffffffffffffffffffffffffffffffffffffff199283161792839055601480548a83169316929092179091556001839055166000908152600260205260409020829055611478818363ffffffff61152c16565b60b160005260026020526000805160206115ad8339815191525550505050505050565b600354600160a060020a031633146114b257600080fd5b600160a060020a038116156114ea576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60095481565b6000808315156115065760009150611525565b5082820282848281151561151657fe5b041461152157600080fd5b8091505b5092915050565b6000808383111561153c57600080fd5b5050900390565b60008282018381101561152157600080fd5b60008080831161156457600080fd5b828481151561156f57fe5b049050828481151561157d57fe5b06818402018414151561152157fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efb92de9c4fce464c7d8425e4d5ca679f18426b2c0dfd7978846157222ccd1b08ca165627a7a72305820a4d36bdf6b6f2f78d0b7b24aceb062f7df5c71782831879a913edc19e56a20fe0029
Swarm Source
bzzr://a4d36bdf6b6f2f78d0b7b24aceb062f7df5c71782831879a913edc19e56a20fe
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.