Overview
Max Total Supply
50,000,000 MIND
Holders
327 (0.00%)
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:
MINDToken
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-11-17 */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant 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() { 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 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) 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) 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 The MINDToken contract * @dev The MINDToken Token contract * @dev inherite from StandardToken and Ownable by Zeppelin * @author Request.network */ contract MINDToken is StandardToken, Ownable { string public constant name = "MIND Token"; string public constant symbol = "MIND"; uint8 public constant decimals = 18; uint public transferableStartTime; address public tokenSaleContract; address public fullTokenWallet; function gettransferableStartTime() constant returns (uint){return now - transferableStartTime;} modifier onlyWhenTransferEnabled() { if ( now < transferableStartTime ) { require(msg.sender == tokenSaleContract || msg.sender == fullTokenWallet || msg.sender == owner); } _; } modifier validDestination(address to) { require(to != address(this)); _; } modifier onlySaleContract() { require(msg.sender == tokenSaleContract); _; } function MINDToken( uint tokenTotalAmount, uint _transferableStartTime, address _admin, address _fullTokenWallet) { // Mint all tokens. Then disable minting forever. totalSupply = tokenTotalAmount * (10 ** uint256(decimals)); balances[msg.sender] = totalSupply; Transfer(address(0x0), msg.sender, totalSupply); transferableStartTime = _transferableStartTime; tokenSaleContract = msg.sender; fullTokenWallet = _fullTokenWallet; transferOwnership(_admin); // admin could drain tokens and eth that were sent here by mistake } /** * @dev override transfer token for a specified address to add onlyWhenTransferEnabled and validDestination * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) public validDestination(_to) onlyWhenTransferEnabled returns (bool) { return super.transfer(_to, _value); } /** * @dev override transferFrom token for a specified address to add onlyWhenTransferEnabled and validDestination * @param _from The address to transfer from. * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transferFrom(address _from, address _to, uint _value) public validDestination(_to) onlyWhenTransferEnabled returns (bool) { return super.transferFrom(_from, _to, _value); } event Burn(address indexed _burner, uint _value); /** * @dev burn tokens * @param _value The amount to be burned. * @return always true (necessary in case of override) */ function burn(uint _value) public onlyWhenTransferEnabled onlyOwner returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); totalSupply = totalSupply.sub(_value); Burn(msg.sender, _value); Transfer(msg.sender, address(0x0), _value); return true; } /** * @dev burn tokens in the behalf of someone * @param _from The address of the owner of the token. * @param _value The amount to be burned. * @return always true (necessary in case of override) */ function burnFrom(address _from, uint256 _value) public onlyWhenTransferEnabled onlyOwner returns(bool) { assert(transferFrom(_from, msg.sender, _value)); return burn(_value); } /** * enable transfer earlier (only presale contract can enable the sale earlier) */ function enableTransferEarlier () public onlySaleContract { transferableStartTime = now + 3 days; } /** * @dev transfer to owner any tokens send by mistake on this contracts * @param token The address of the token to transfer. * @param amount The amount to be transfered. */ function emergencyERC20Drain(ERC20 token, uint amount ) public onlyOwner { token.transfer(owner, amount); } } /** * @title StandardCrowdsale * @dev StandardCrowdsale is a base contract for managing a token crowdsale. * Crowdsales have a start and end timestamps, where investors can make * token purchases and the crowdsale will assign them tokens based * on a token per ETH rate. Funds collected are forwarded to a wallet * as they arrive. * @dev from Crowdsale by Zepellin with small changes. Changes are commented with "Request Modification" */ contract StandardCrowdsale { using SafeMath for uint256; // The token being sold StandardToken public token; // Request Modification : change to not mintable // start and end timestamps where investments are allowed (both inclusive) uint256 public startTime; uint256 public endTime; // address where funds are collected address public wallet; // how many token units a buyer gets per wei uint256 public rate; // amount of raised money in wei uint256 public weiRaised; /** * event for token purchase logging * @param purchaser who paid for the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase(address indexed purchaser, uint256 value, uint256 amount); function StandardCrowdsale( uint256 _startTime, uint256 _endTime, uint256 _rate, address _wallet) { require(_startTime >= now); require(_endTime >= _startTime); require(_rate > 0); require(_wallet != 0x0); startTime = _startTime; endTime = _endTime; rate = _rate; wallet = _wallet; token = createTokenContract(); // Request Modification : change to StandardToken + position } // creates the token to be sold. // Request Modification : change to StandardToken // override this method to have crowdsale of a specific mintable token. function createTokenContract() internal returns(StandardToken) { return new StandardToken(); } // fallback function can be used to buy tokens function () payable { buyTokens(); } // low level token purchase function // Request Modification : change to not mint but transfer from this contract function buyTokens() public payable { require(validPurchase()); uint256 weiAmount = msg.value; // calculate token amount to be created uint256 tokens = weiAmount.mul(rate); tokens += getBonus(tokens); // update state weiRaised = weiRaised.add(weiAmount); require(token.transfer(msg.sender, tokens)); // Request Modification : changed here - tranfer instead of mintable TokenPurchase(msg.sender, weiAmount, tokens); forwardFunds(); postBuyTokens(); } // Action after buying tokens function postBuyTokens () internal { } // send ether to the fund collection wallet // override to create custom fund forwarding mechanisms function forwardFunds() internal { wallet.transfer(msg.value); } // @return true if the transaction can buy tokens function validPurchase() internal returns(bool) { bool withinPeriod = now >= startTime && now <= endTime; bool nonZeroPurchase = msg.value != 0; return withinPeriod && nonZeroPurchase; } // @return true if crowdsale event has ended function hasEnded() public constant returns(bool) { return now > endTime; } modifier onlyBeforeSale() { require(now < startTime); _; } // Request Modification : Add check 24hours before token sale modifier only24HBeforeSale() { require(now < startTime.sub(1 days)); _; } function getBonus(uint256 _tokens) constant returns (uint256 bonus) { return 0; } } /** * @title CappedCrowdsale * @dev Extension of Crowdsale with a max amount of funds raised */ contract CappedCrowdsale is StandardCrowdsale { using SafeMath for uint256; uint256 public cap; function CappedCrowdsale(uint256 _cap) { require(_cap > 0); cap = _cap; } // overriding Crowdsale#validPurchase to add extra cap logic // @return true if investors can buy at the moment // Request Modification : delete constant because needed in son contract function validPurchase() internal returns (bool) { bool withinCap = weiRaised.add(msg.value) <= cap; return super.validPurchase() && withinCap; } // overriding Crowdsale#hasEnded to add cap logic // @return true if crowdsale event has ended function hasEnded() public constant returns (bool) { bool capReached = weiRaised >= cap; return super.hasEnded() || capReached; } } /** * @title MINDTokenPreSale * @dev * We add new features to a base crowdsale using multiple inheritance. * We are using the following extensions: * CappedCrowdsale - sets a max boundary for raised funds * * The code is based on the contracts of Open Zeppelin and we add our contracts : MINDTokenPreSale and the Request Token * * @author Request.network */ contract MINDTokenPreSale is Ownable, CappedCrowdsale { // hard cap of the token pre-sale in ether uint private constant HARD_CAP_IN_WEI = 10000 ether; // Total of MIND Token supply uint public constant TOTAL_MIND_TOKEN_SUPPLY = 50000000; // Token sale rate from ETH to MIND uint private constant RATE_ETH_MIND = 1000; // Token initialy distributed for the team (15%) address public constant TEAM_VESTING_WALLET = 0xb3F3D774C3575aB01bce9d9a9Fe92Aa41926a92e; uint public constant TEAM_VESTING_AMOUNT = 7500000e18; // Token initialy distributed for the full token sale (20%) address public constant FULL_TOKEN_WALLET = 0x8759A03B3BEB1aa1A7bA765792cF83CaAe4f28E9; uint public constant FULL_TOKEN_AMOUNT = 20000000e18; // Token initialy distributed for the early foundation (15%) // wallet use also to gather the ether of the token sale address private constant MIND_FOUNDATION_WALLET = 0xDfD5e09bB845d39bd05be4664271e471FA8dA4E6; uint public constant MIND_FOUNDATION_AMOUNT = 7500000e18; // PERIOD WHEN TOKEN IS NOT TRANSFERABLE AFTER THE SALE uint public constant PERIOD_AFTERSALE_NOT_TRANSFERABLE_IN_SEC = 3 days; event PreSaleTokenSoldout(); function MINDTokenPreSale(uint256 _startTime, uint256 _endTime) CappedCrowdsale(HARD_CAP_IN_WEI) StandardCrowdsale(_startTime, _endTime, RATE_ETH_MIND, MIND_FOUNDATION_WALLET) { token.transfer(TEAM_VESTING_WALLET, TEAM_VESTING_AMOUNT); token.transfer(FULL_TOKEN_WALLET, FULL_TOKEN_AMOUNT); token.transfer(MIND_FOUNDATION_WALLET, MIND_FOUNDATION_AMOUNT); } /** * @dev Create the MIND token (override createTokenContract of StandardCrowdsale) * @return the StandardToken created */ function createTokenContract () internal returns(StandardToken) { return new MINDToken(TOTAL_MIND_TOKEN_SUPPLY, endTime.add(PERIOD_AFTERSALE_NOT_TRANSFERABLE_IN_SEC), MIND_FOUNDATION_WALLET, FULL_TOKEN_WALLET); } /** * @dev Get the bonus based on the buy time (override getBonus of StandardCrowdsale) * @return the number of bonus token */ function getBonus(uint256 _tokens) constant returns (uint256 bonus) { require(_tokens != 0); if (startTime <= now && now < startTime + 1 days) { return _tokens.div(2); } else if (startTime + 1 days <= now && now < startTime + 2 days ) { return _tokens.div(4); } else if (startTime + 2 days <= now && now < startTime + 3 days ) { return _tokens.div(10); } return 0; } /** * @dev Transfer the unsold tokens to the MIND Foundation multisign wallet * @dev Only for owner * @return the StandardToken created */ function drainRemainingToken () public onlyOwner { require(hasEnded()); token.transfer(MIND_FOUNDATION_WALLET, token.balanceOf(this)); } /** * @dev Action after buying tokens: check if all sold out and enable transfer immediately */ function postBuyTokens () internal { if ( weiRaised >= HARD_CAP_IN_WEI ) { MINDToken mindToken = MINDToken (token); mindToken.enableTransferEarlier(); PreSaleTokenSoldout(); } } }
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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"enableTransferEarlier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fullTokenWallet","outputs":[{"name":"","type":"address"}],"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":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_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":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","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":"gettransferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"_transferableStartTime","type":"uint256"},{"name":"_admin","type":"address"},{"name":"_fullTokenWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","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
6060604052341561000f57600080fd5b604051608080610f918339810160405280805191906020018051919060200180519190602001805160038054600160a060020a03191633600160a060020a0316908117909155670de0b6b3a7640000870260008181558281526001602052604080822083905593955091935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a3600483905560058054600160a060020a03338116600160a060020a03199283161790925560068054928416929091169190911790556100fa82640100000000610b0361010382021704565b50505050610191565b60035433600160a060020a0390811691161461011e57600080fd5b600160a060020a038116151561013357600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0392909216919091179055565b610df1806101a06000396000f30060606040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806318160ddd146101e157806323b872dd14610206578063313ce5671461022e57806342966c68146102575780635d5aa2771461026d57806360c715461461029c57806362d3755b146102b157806366188463146102c457806370a08231146102e657806379cc6790146103055780638da5cb5b1461032757806395d89b411461033a578063a9059cbb1461034d578063d73dd6231461036f578063db0e16f114610391578063dd62ed3e146103b3578063e033192c146103d8578063f2fde38b146103eb578063f6f5eb591461040a575b600080fd5b341561012c57600080fd5b61013461041d565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610170578082015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b657600080fd5b6101cd600160a060020a0360043516602435610454565b604051901515815260200160405180910390f35b34156101ec57600080fd5b6101f46104c0565b60405190815260200160405180910390f35b341561021157600080fd5b6101cd600160a060020a03600435811690602435166044356104c6565b341561023957600080fd5b610241610557565b60405160ff909116815260200160405180910390f35b341561026257600080fd5b6101cd60043561055c565b341561027857600080fd5b6102806106af565b604051600160a060020a03909116815260200160405180910390f35b34156102a757600080fd5b6102af6106be565b005b34156102bc57600080fd5b6102806106e4565b34156102cf57600080fd5b6101cd600160a060020a03600435166024356106f3565b34156102f157600080fd5b6101f4600160a060020a03600435166107ed565b341561031057600080fd5b6101cd600160a060020a0360043516602435610808565b341561033257600080fd5b6102806108a1565b341561034557600080fd5b6101346108b0565b341561035857600080fd5b6101cd600160a060020a03600435166024356108e7565b341561037a57600080fd5b6101cd600160a060020a0360043516602435610976565b341561039c57600080fd5b6102af600160a060020a0360043516602435610a1a565b34156103be57600080fd5b6101f4600160a060020a0360043581169060243516610ad0565b34156103e357600080fd5b6101f4610afb565b34156103f657600080fd5b6102af600160a060020a0360043516610b03565b341561041557600080fd5b6101f4610b9e565b60408051908101604052600a81527f4d494e4420546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b60008230600160a060020a031681600160a060020a0316141515156104ea57600080fd5b6004544210156105435760055433600160a060020a039081169116148061051f575060065433600160a060020a039081169116145b80610538575060035433600160a060020a039081169116145b151561054357600080fd5b61054e858585610ba4565b95945050505050565b601281565b60006004544210156105b75760055433600160a060020a0390811691161480610593575060065433600160a060020a039081169116145b806105ac575060035433600160a060020a039081169116145b15156105b757600080fd5b60035433600160a060020a039081169116146105d257600080fd5b600160a060020a0333166000908152600160205260409020546105fb908363ffffffff610cce16565b600160a060020a03331660009081526001602052604081209190915554610628908363ffffffff610cce16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2600033600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001919050565b600554600160a060020a031681565b60055433600160a060020a039081169116146106d957600080fd5b6203f4804201600455565b600654600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561075057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610787565b610760818463ffffffff610cce16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60006004544210156108635760055433600160a060020a039081169116148061083f575060065433600160a060020a039081169116145b80610858575060035433600160a060020a039081169116145b151561086357600080fd5b60035433600160a060020a0390811691161461087e57600080fd5b6108898333846104c6565b151561089157fe5b61089a8261055c565b9392505050565b600354600160a060020a031681565b60408051908101604052600481527f4d494e4400000000000000000000000000000000000000000000000000000000602082015281565b60008230600160a060020a031681600160a060020a03161415151561090b57600080fd5b6004544210156109645760055433600160a060020a0390811691161480610940575060065433600160a060020a039081169116145b80610959575060035433600160a060020a039081169116145b151561096457600080fd5b61096e8484610ce0565b949350505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546109ae908363ffffffff610db616565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a03908116911614610a3557600080fd5b600354600160a060020a038084169163a9059cbb9116836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610ab157600080fd5b6102c65a03f11515610ac257600080fd5b505050604051805150505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454420390565b60035433600160a060020a03908116911614610b1e57600080fd5b600160a060020a0381161515610b3357600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045481565b600080600160a060020a0384161515610bbc57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610c02908463ffffffff610cce16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610c37908463ffffffff610db616565b600160a060020a038516600090815260016020526040902055610c60818463ffffffff610cce16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b600082821115610cda57fe5b50900390565b6000600160a060020a0383161515610cf757600080fd5b600160a060020a033316600090815260016020526040902054610d20908363ffffffff610cce16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610d55908363ffffffff610db616565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60008282018381101561089a57fe00a165627a7a7230582029e619335ccf4ba9f569fb76b1721bd8f0c101202157583eb18f6014a738ac1d00290000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000005a391b60000000000000000000000000dfd5e09bb845d39bd05be4664271e471fa8da4e60000000000000000000000008759a03b3beb1aa1a7ba765792cf83caae4f28e9
Deployed Bytecode
0x60606040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806318160ddd146101e157806323b872dd14610206578063313ce5671461022e57806342966c68146102575780635d5aa2771461026d57806360c715461461029c57806362d3755b146102b157806366188463146102c457806370a08231146102e657806379cc6790146103055780638da5cb5b1461032757806395d89b411461033a578063a9059cbb1461034d578063d73dd6231461036f578063db0e16f114610391578063dd62ed3e146103b3578063e033192c146103d8578063f2fde38b146103eb578063f6f5eb591461040a575b600080fd5b341561012c57600080fd5b61013461041d565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610170578082015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b657600080fd5b6101cd600160a060020a0360043516602435610454565b604051901515815260200160405180910390f35b34156101ec57600080fd5b6101f46104c0565b60405190815260200160405180910390f35b341561021157600080fd5b6101cd600160a060020a03600435811690602435166044356104c6565b341561023957600080fd5b610241610557565b60405160ff909116815260200160405180910390f35b341561026257600080fd5b6101cd60043561055c565b341561027857600080fd5b6102806106af565b604051600160a060020a03909116815260200160405180910390f35b34156102a757600080fd5b6102af6106be565b005b34156102bc57600080fd5b6102806106e4565b34156102cf57600080fd5b6101cd600160a060020a03600435166024356106f3565b34156102f157600080fd5b6101f4600160a060020a03600435166107ed565b341561031057600080fd5b6101cd600160a060020a0360043516602435610808565b341561033257600080fd5b6102806108a1565b341561034557600080fd5b6101346108b0565b341561035857600080fd5b6101cd600160a060020a03600435166024356108e7565b341561037a57600080fd5b6101cd600160a060020a0360043516602435610976565b341561039c57600080fd5b6102af600160a060020a0360043516602435610a1a565b34156103be57600080fd5b6101f4600160a060020a0360043581169060243516610ad0565b34156103e357600080fd5b6101f4610afb565b34156103f657600080fd5b6102af600160a060020a0360043516610b03565b341561041557600080fd5b6101f4610b9e565b60408051908101604052600a81527f4d494e4420546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b60008230600160a060020a031681600160a060020a0316141515156104ea57600080fd5b6004544210156105435760055433600160a060020a039081169116148061051f575060065433600160a060020a039081169116145b80610538575060035433600160a060020a039081169116145b151561054357600080fd5b61054e858585610ba4565b95945050505050565b601281565b60006004544210156105b75760055433600160a060020a0390811691161480610593575060065433600160a060020a039081169116145b806105ac575060035433600160a060020a039081169116145b15156105b757600080fd5b60035433600160a060020a039081169116146105d257600080fd5b600160a060020a0333166000908152600160205260409020546105fb908363ffffffff610cce16565b600160a060020a03331660009081526001602052604081209190915554610628908363ffffffff610cce16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2600033600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3506001919050565b600554600160a060020a031681565b60055433600160a060020a039081169116146106d957600080fd5b6203f4804201600455565b600654600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561075057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610787565b610760818463ffffffff610cce16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60006004544210156108635760055433600160a060020a039081169116148061083f575060065433600160a060020a039081169116145b80610858575060035433600160a060020a039081169116145b151561086357600080fd5b60035433600160a060020a0390811691161461087e57600080fd5b6108898333846104c6565b151561089157fe5b61089a8261055c565b9392505050565b600354600160a060020a031681565b60408051908101604052600481527f4d494e4400000000000000000000000000000000000000000000000000000000602082015281565b60008230600160a060020a031681600160a060020a03161415151561090b57600080fd5b6004544210156109645760055433600160a060020a0390811691161480610940575060065433600160a060020a039081169116145b80610959575060035433600160a060020a039081169116145b151561096457600080fd5b61096e8484610ce0565b949350505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546109ae908363ffffffff610db616565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a03908116911614610a3557600080fd5b600354600160a060020a038084169163a9059cbb9116836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610ab157600080fd5b6102c65a03f11515610ac257600080fd5b505050604051805150505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454420390565b60035433600160a060020a03908116911614610b1e57600080fd5b600160a060020a0381161515610b3357600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60045481565b600080600160a060020a0384161515610bbc57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610c02908463ffffffff610cce16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610c37908463ffffffff610db616565b600160a060020a038516600090815260016020526040902055610c60818463ffffffff610cce16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b600082821115610cda57fe5b50900390565b6000600160a060020a0383161515610cf757600080fd5b600160a060020a033316600090815260016020526040902054610d20908363ffffffff610cce16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610d55908363ffffffff610db616565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60008282018381101561089a57fe00a165627a7a7230582029e619335ccf4ba9f569fb76b1721bd8f0c101202157583eb18f6014a738ac1d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000002faf080000000000000000000000000000000000000000000000000000000005a391b60000000000000000000000000dfd5e09bb845d39bd05be4664271e471fa8da4e60000000000000000000000008759a03b3beb1aa1a7ba765792cf83caae4f28e9
-----Decoded View---------------
Arg [0] : tokenTotalAmount (uint256): 50000000
Arg [1] : _transferableStartTime (uint256): 1513692000
Arg [2] : _admin (address): 0xDfD5e09bB845d39bd05be4664271e471FA8dA4E6
Arg [3] : _fullTokenWallet (address): 0x8759A03B3BEB1aa1A7bA765792cF83CaAe4f28E9
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [1] : 000000000000000000000000000000000000000000000000000000005a391b60
Arg [2] : 000000000000000000000000dfd5e09bb845d39bd05be4664271e471fa8da4e6
Arg [3] : 0000000000000000000000008759a03b3beb1aa1a7ba765792cf83caae4f28e9
Swarm Source
bzzr://29e619335ccf4ba9f569fb76b1721bd8f0c101202157583eb18f6014a738ac1d
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.