Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TheMoveToken
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-13
*/
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
pragma solidity ^0.4.18;
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);
}
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);
}
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;
}
}
contract BasicToken is ERC20Basic {
// timestamps for PRE-ICO phase
uint public preicoStartDate;
uint public preicoEndDate;
// timestamps for ICO phase
uint public icoStartDate;
uint public icoEndDate;
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(now > icoEndDate);
balances[_to] = balances[_to].add(_value);
balances[msg.sender] = balances[msg.sender].sub(_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];
}
}
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 amout of tokens to be transfered
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
var _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[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
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;
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];
}
}
contract Ownable {
address public owner;
/**
* @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() {
assert(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;
}
}
}
contract TheMoveToken is StandardToken, Ownable {
string public constant name = "MOVE Token";
string public constant symbol = "MOVE";
uint public constant decimals = 18;
using SafeMath for uint256;
// address where funds are collected
address public wallet;
// how many token units a buyer gets per wei
uint256 public rate;
uint256 public minTransactionAmount;
uint256 public raisedForEther = 0;
uint256 private preicoSupply = 3072000000000000000000000;
uint256 private icoSupply = 10000000000000000000000000;
uint256 private bonusesSupply = 3000000000000000000000000;
uint256 public bonusesSold = 0;
uint256 public tokensSold = 0;
// PRE-ICO stages
uint256 public stage1 = 240000000000000000000000;
uint256 public stage2 = 360000000000000000000000;
uint256 public stage3 = 960000000000000000000000;
uint256 public stage4 = 1512000000000000000000000;
modifier inActivePeriod() {
require((preicoStartDate < now && now <= preicoEndDate) || (icoStartDate < now && now <= icoEndDate));
_;
}
function TheMoveToken(uint _preicostart, uint _preicoend,uint _icostart, uint _icoend, address _wallet) public {
require(_wallet != 0x0);
require(_preicostart < _preicoend);
require(_preicoend < _icostart);
require(_icostart < _icoend);
totalSupply = 21172000000000000000000000;
rate = 600;
// minimal invest
minTransactionAmount = 0.1 ether;
icoStartDate = _icostart;
icoEndDate = _icoend;
preicoStartDate = _preicostart;
preicoEndDate = _preicoend;
wallet = _wallet;
// Store the ico funds in the contract and send the rest to the developer wallet
uint256 amountInContract = preicoSupply + icoSupply + bonusesSupply;
balances[this] = balances[this].add(amountInContract);
balances[_wallet] = balances[_wallet].add(totalSupply - amountInContract);
}
function setupPREICOPeriod(uint _start, uint _end) public onlyOwner {
require(_start < _end);
preicoStartDate = _start;
preicoEndDate = _end;
}
function setupICOPeriod(uint _start, uint _end) public onlyOwner {
require(_start < _end);
icoStartDate = _start;
icoEndDate = _end;
}
// fallback function can be used to buy tokens
function () public inActivePeriod payable {
buyTokens(msg.sender);
}
function burnPREICOTokens() public onlyOwner {
int256 amountToBurn = int256(preicoSupply) - int256(tokensSold);
if (amountToBurn > 0) {
balances[this] = balances[this].sub(uint256(amountToBurn));
}
}
// Use with extreme caution this will burn the rest of the tokens in the contract
function burnICOTokens() public onlyOwner {
balances[this] = 0;
}
function burnBonuses() public onlyOwner {
int256 amountToBurn = int256(bonusesSupply) - int256(bonusesSold);
if (amountToBurn > 0) {
balances[this] = balances[this].sub(uint256(amountToBurn));
}
}
// low level token purchase function
function buyTokens(address _sender) public inActivePeriod payable {
require(_sender != 0x0);
require(msg.value >= minTransactionAmount);
uint256 weiAmount = msg.value;
raisedForEther = raisedForEther.add(weiAmount);
// calculate token amount to be issued
uint256 tokens = weiAmount.mul(rate);
tokens += getBonus(tokens);
if (isPREICO()) {
require(tokensSold + tokens < preicoSupply);
} else if (isICO()) {
require(tokensSold + tokens <= (icoSupply + bonusesSupply));
}
issueTokens(_sender, tokens);
tokensSold += tokens;
}
// High level token issue function
// This will be used by the script which distributes tokens
// to those who contributed in BTC or LTC.
function sendTokens(address _sender, uint256 amount) public inActivePeriod onlyOwner {
// calculate token amount to be issued
uint256 tokens = amount.mul(rate);
tokens += getBonus(tokens);
if (isPREICO()) {
require(tokensSold + tokens < preicoSupply);
} else if (isICO()) {
require(tokensSold + tokens <= (icoSupply + bonusesSupply));
}
issueTokens(_sender, tokens);
tokensSold += tokens;
}
function withdrawEther(uint256 amount) external onlyOwner {
owner.transfer(amount);
}
function isPREICO() public view returns (bool) {
return (preicoStartDate < now && now <= preicoEndDate);
}
function isICO() public view returns (bool) {
return (icoStartDate < now && now <= icoEndDate);
}
function getBonus(uint256 _tokens) public returns (uint256) {
require(_tokens != 0);
uint256 bonuses = 0;
uint256 multiplier = 0;
// First case if PRE-ICO is happening
if (isPREICO()) {
// Bonus depends on the amount of tokens sold.
if (tokensSold < stage1) {
// 100% bonus for stage1
multiplier = 100;
} else if (stage1 < tokensSold && tokensSold < (stage1 + stage2)) {
// 80% bonus for stage2
multiplier = 80;
} else if ((stage1 + stage2) < tokensSold && tokensSold < (stage1 + stage2 + stage3)) {
// 60% bonus for stage2
multiplier = 60;
} else if ((stage1 + stage2 + stage3) < tokensSold && tokensSold < (stage1 + stage2 + stage3 + stage4)) {
// 40% bonus for stage2
multiplier = 40;
}
bonuses = _tokens.mul(multiplier).div(100);
return bonuses;
}
// Second case if ICO is happening
else if (isICO()) {
// Bonus depends on the week of the ICO and the bonus supply
if (icoStartDate < now && now <= icoStartDate + 7 days) {
// 20% bonus week 1
multiplier = 20;
} else if (icoStartDate + 7 days < now && now <= icoStartDate + 14 days ) {
// 10% bonus week 2
multiplier = 10;
} else if (icoStartDate + 14 days < now && now <= icoStartDate + 21 days ) {
// 5% bonus week 3
multiplier = 5;
}
bonuses = _tokens.mul(multiplier).div(100);
// Bonus supply limit reached.
if (bonusesSold + bonuses > bonusesSupply) {
bonuses = 0;
} else {
bonusesSold += bonuses;
}
return bonuses;
}
}
// This function transfers tokens to the contributor's account.
function issueTokens(address _to, uint256 _value) internal returns (bool) {
balances[_to] = balances[_to].add(_value);
balances[this] = balances[this].sub(_value);
Transfer(msg.sender, _to, _value);
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_sender","type":"address"},{"name":"amount","type":"uint256"}],"name":"sendTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"minTransactionAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"name":"setupICOPeriod","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":"burnPREICOTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"icoEndDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"raisedForEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokens","type":"uint256"}],"name":"getBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"preicoEndDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burnICOTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isPREICO","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preicoStartDate","outputs":[{"name":"","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":"isICO","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stage3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stage2","outputs":[{"name":"","type":"uint256"}],"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":"burnBonuses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusesSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"name":"setupPREICOPeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stage4","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stage1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoStartDate","outputs":[{"name":"","type":"uint256"}],"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":"_sender","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_preicostart","type":"uint256"},{"name":"_preicoend","type":"uint256"},{"name":"_icostart","type":"uint256"},{"name":"_icoend","type":"uint256"},{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]Contract Creation Code
60606040526000600b556a028a857425466f80000000600c556a084595161401484a000000600d556a027b46536c66c8e3000000600e556000600f5560006010556932d26d12e980b6000000601155694c3ba39c5e411100000060125569cb49b44ba602d80000006013556a01402daf2a58aae1000000601455341561008457600080fd5b60405160a080611264833981016040528080519190602001805191906020018051919060200180519190602001805160078054600160a060020a03191633600160a060020a039081169190911790915590925060009150821615156100e857600080fd5b8486106100f457600080fd5b83851061010057600080fd5b82841061010c57600080fd5b506a1183586b77906fc8800000600090815561025860095567016345785d8a0000600a55600384905560048390556001869055600285905560088054600160a060020a031916600160a060020a0384811691909117909155600e54600d54600c543090931684526005602052604090932054919092019091019061019d90826401000000006102088102610ed01704565b600160a060020a03308116600090815260056020526040808220939093558054918516815291909120546101e091839003640100000000610ed061020882021704565b600160a060020a039092166000908152600560205260409020919091555061021e9350505050565b60008282018381101561021757fe5b9392505050565b6110378061022d6000396000f3006060604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305ab421d811461020357806306fdde0314610225578063095ea7b3146102af57806317a5d4df146102e557806317e63bff1461030a57806318160ddd14610323578063210d14b81461033657806323b872dd146103495780632a62738b146103715780632c4e722e146103845780632f90daf414610397578063313ce567146103aa5780633bed33ce146103bd5780634aa66b28146103d35780634ef02cf3146103e9578063518ab2a8146103fc578063521eb2731461040f578063546169111461043e5780635e3d3b8a14610451578063679b45671461046457806370a08231146104775780637ee55c97146104965780638da5cb5b146104a957806394e0d371146104bc57806395d89b41146104cf578063a1fcc3bc146104e2578063a9059cbb146104f5578063ac5c915f14610517578063b02af0381461052a578063b4bd5c751461053d578063cd3882d514610556578063cff3d4d814610569578063d73019e91461057c578063dd62ed3e1461058f578063ec8ac4d8146105b4578063f2fde38b146105c8575b426001541080156101d457506002544211155b806101ed5750426003541080156101ed57506004544211155b15156101f857600080fd5b610201336105e7565b005b341561020e57600080fd5b610201600160a060020a03600435166024356106e0565b341561023057600080fd5b610238610745565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561027457808201518382015260200161025c565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ba57600080fd5b6102d1600160a060020a036004351660243561077c565b604051901515815260200160405180910390f35b34156102f057600080fd5b6102f8610822565b60405190815260200160405180910390f35b341561031557600080fd5b610201600435602435610828565b341561032e57600080fd5b6102f8610857565b341561034157600080fd5b61020161085d565b341561035457600080fd5b6102d1600160a060020a03600435811690602435166044356108cf565b341561037c57600080fd5b6102f86109e2565b341561038f57600080fd5b6102f86109e8565b34156103a257600080fd5b6102f86109ee565b34156103b557600080fd5b6102f86109f4565b34156103c857600080fd5b6102016004356109f9565b34156103de57600080fd5b6102f8600435610a44565b34156103f457600080fd5b6102f8610bf3565b341561040757600080fd5b6102f8610bf9565b341561041a57600080fd5b610422610bff565b604051600160a060020a03909116815260200160405180910390f35b341561044957600080fd5b610201610c0e565b341561045c57600080fd5b6102d1610c41565b341561046f57600080fd5b6102f8610c5b565b341561048257600080fd5b6102f8600160a060020a0360043516610c61565b34156104a157600080fd5b6102d1610c7c565b34156104b457600080fd5b610422610c94565b34156104c757600080fd5b6102f8610ca3565b34156104da57600080fd5b610238610ca9565b34156104ed57600080fd5b6102f8610ce0565b341561050057600080fd5b6102d1600160a060020a0360043516602435610ce6565b341561052257600080fd5b610201610db5565b341561053557600080fd5b6102f8610e0a565b341561054857600080fd5b610201600435602435610e10565b341561056157600080fd5b6102f8610e3f565b341561057457600080fd5b6102f8610e45565b341561058757600080fd5b6102f8610e4b565b341561059a57600080fd5b6102f8600160a060020a0360043581169060243516610e51565b610201600160a060020a03600435166105e7565b34156105d357600080fd5b610201600160a060020a0360043516610e7c565b600080426001541080156105fd57506002544211155b8061061657504260035410801561061657506004544211155b151561062157600080fd5b600160a060020a038316151561063657600080fd5b600a5434101561064557600080fd5b600b5434925061065b908363ffffffff610ed016565b600b5560095461067290839063ffffffff610ee616565b905061067d81610a44565b01610686610c41565b156106a257600c5460105482011061069d57600080fd5b6106c8565b6106aa610c7c565b156106c857600e54600d54018160105401111515156106c857600080fd5b6106d28382610f0a565b506010805490910190555050565b6000426001541080156106f557506002544211155b8061070e57504260035410801561070e57506004544211155b151561071957600080fd5b60075433600160a060020a0390811691161461073157fe5b60095461067290839063ffffffff610ee616565b60408051908101604052600a81527f4d4f564520546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115806107ae5750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b15156107b957600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600a5481565b60075433600160a060020a0390811691161461084057fe5b80821061084c57600080fd5b600391909155600455565b60005481565b60075460009033600160a060020a0390811691161461087857fe5b50601054600c540360008113156108cc57600160a060020a0330166000908152600560205260409020546108b2908263ffffffff610fe216565b600160a060020a0330166000908152600560205260409020555b50565b600160a060020a038084166000908152600660209081526040808320338516845282528083205493861683526005909152812054909190610916908463ffffffff610ed016565b600160a060020a03808616600090815260056020526040808220939093559087168152205461094b908463ffffffff610fe216565b600160a060020a038616600090815260056020526040902055610974818463ffffffff610fe216565b600160a060020a03808716600081815260066020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60045481565b60095481565b600b5481565b601281565b60075433600160a060020a03908116911614610a1157fe5b600754600160a060020a031681156108fc0282604051600060405180830381858888f1935050505015156108cc57600080fd5b60008080831515610a5457600080fd5b506000905080610a62610c41565b15610b2f576011546010541015610a7b57506064610b04565b601054601154108015610a95575060125460115401601054105b15610aa257506050610b04565b60105460125460115401108015610ac457506013546012546011540101601054105b15610ad15750603c610b04565b6010546013546012546011540101108015610afb5750601454601354601254601154010101601054105b15610b04575060285b610b256064610b19868463ffffffff610ee616565b9063ffffffff610ff416565b9150819250610bec565b610b37610c7c565b15610bec5742600354108015610b54575060035462093a80014211155b15610b6157506014610bb1565b4260035462093a8001108015610b7e575060035462127500014211155b15610b8b5750600a610bb1565b426003546212750001108015610ba85750600354621baf80014211155b15610bb1575060055b610bc66064610b19868463ffffffff610ee616565b9150600e5482600f54011115610bdf5760009150610be8565b600f8054830190555b8192505b5050919050565b60025481565b60105481565b600854600160a060020a031681565b60075433600160a060020a03908116911614610c2657fe5b600160a060020a033016600090815260056020526040812055565b600042600154108015610c5657506002544211155b905090565b60015481565b600160a060020a031660009081526005602052604090205490565b600042600354108015610c5657505060045442111590565b600754600160a060020a031681565b60135481565b60408051908101604052600481527f4d4f564500000000000000000000000000000000000000000000000000000000602082015281565b60125481565b6004546000904211610cf757600080fd5b600160a060020a038316600090815260056020526040902054610d20908363ffffffff610ed016565b600160a060020a03808516600090815260056020526040808220939093553390911681522054610d56908363ffffffff610fe216565b600160a060020a033381166000818152600560205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60075460009033600160a060020a03908116911614610dd057fe5b50600f54600e540360008113156108cc57600160a060020a0330166000908152600560205260409020546108b2908263ffffffff610fe216565b600f5481565b60075433600160a060020a03908116911614610e2857fe5b808210610e3457600080fd5b600191909155600255565b60145481565b60115481565b60035481565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60075433600160a060020a03908116911614610e9457fe5b600160a060020a038116156108cc5760078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b600082820183811015610edf57fe5b9392505050565b6000828202831580610f025750828482811515610eff57fe5b04145b1515610edf57fe5b600160a060020a038216600090815260056020526040812054610f33908363ffffffff610ed016565b600160a060020a03808516600090815260056020526040808220939093553090911681522054610f69908363ffffffff610fe216565b6005600030600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600082821115610fee57fe5b50900390565b600080828481151561100257fe5b049493505050505600a165627a7a723058200e41b267d878005ca8ba2db8c409b80319986813e8199d477878d7da9f16d4d70029000000000000000000000000000000000000000000000000000000005a33ff90000000000000000000000000000000000000000000000000000000005a412e90000000000000000000000000000000000000000000000000000000005a734790000000000000000000000000000000000000000000000000000000005a9831900000000000000000000000003685c423d54e6ad85fb78bed40a79fd47f1e41f5
Deployed Bytecode
0x6060604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305ab421d811461020357806306fdde0314610225578063095ea7b3146102af57806317a5d4df146102e557806317e63bff1461030a57806318160ddd14610323578063210d14b81461033657806323b872dd146103495780632a62738b146103715780632c4e722e146103845780632f90daf414610397578063313ce567146103aa5780633bed33ce146103bd5780634aa66b28146103d35780634ef02cf3146103e9578063518ab2a8146103fc578063521eb2731461040f578063546169111461043e5780635e3d3b8a14610451578063679b45671461046457806370a08231146104775780637ee55c97146104965780638da5cb5b146104a957806394e0d371146104bc57806395d89b41146104cf578063a1fcc3bc146104e2578063a9059cbb146104f5578063ac5c915f14610517578063b02af0381461052a578063b4bd5c751461053d578063cd3882d514610556578063cff3d4d814610569578063d73019e91461057c578063dd62ed3e1461058f578063ec8ac4d8146105b4578063f2fde38b146105c8575b426001541080156101d457506002544211155b806101ed5750426003541080156101ed57506004544211155b15156101f857600080fd5b610201336105e7565b005b341561020e57600080fd5b610201600160a060020a03600435166024356106e0565b341561023057600080fd5b610238610745565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561027457808201518382015260200161025c565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ba57600080fd5b6102d1600160a060020a036004351660243561077c565b604051901515815260200160405180910390f35b34156102f057600080fd5b6102f8610822565b60405190815260200160405180910390f35b341561031557600080fd5b610201600435602435610828565b341561032e57600080fd5b6102f8610857565b341561034157600080fd5b61020161085d565b341561035457600080fd5b6102d1600160a060020a03600435811690602435166044356108cf565b341561037c57600080fd5b6102f86109e2565b341561038f57600080fd5b6102f86109e8565b34156103a257600080fd5b6102f86109ee565b34156103b557600080fd5b6102f86109f4565b34156103c857600080fd5b6102016004356109f9565b34156103de57600080fd5b6102f8600435610a44565b34156103f457600080fd5b6102f8610bf3565b341561040757600080fd5b6102f8610bf9565b341561041a57600080fd5b610422610bff565b604051600160a060020a03909116815260200160405180910390f35b341561044957600080fd5b610201610c0e565b341561045c57600080fd5b6102d1610c41565b341561046f57600080fd5b6102f8610c5b565b341561048257600080fd5b6102f8600160a060020a0360043516610c61565b34156104a157600080fd5b6102d1610c7c565b34156104b457600080fd5b610422610c94565b34156104c757600080fd5b6102f8610ca3565b34156104da57600080fd5b610238610ca9565b34156104ed57600080fd5b6102f8610ce0565b341561050057600080fd5b6102d1600160a060020a0360043516602435610ce6565b341561052257600080fd5b610201610db5565b341561053557600080fd5b6102f8610e0a565b341561054857600080fd5b610201600435602435610e10565b341561056157600080fd5b6102f8610e3f565b341561057457600080fd5b6102f8610e45565b341561058757600080fd5b6102f8610e4b565b341561059a57600080fd5b6102f8600160a060020a0360043581169060243516610e51565b610201600160a060020a03600435166105e7565b34156105d357600080fd5b610201600160a060020a0360043516610e7c565b600080426001541080156105fd57506002544211155b8061061657504260035410801561061657506004544211155b151561062157600080fd5b600160a060020a038316151561063657600080fd5b600a5434101561064557600080fd5b600b5434925061065b908363ffffffff610ed016565b600b5560095461067290839063ffffffff610ee616565b905061067d81610a44565b01610686610c41565b156106a257600c5460105482011061069d57600080fd5b6106c8565b6106aa610c7c565b156106c857600e54600d54018160105401111515156106c857600080fd5b6106d28382610f0a565b506010805490910190555050565b6000426001541080156106f557506002544211155b8061070e57504260035410801561070e57506004544211155b151561071957600080fd5b60075433600160a060020a0390811691161461073157fe5b60095461067290839063ffffffff610ee616565b60408051908101604052600a81527f4d4f564520546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115806107ae5750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b15156107b957600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600a5481565b60075433600160a060020a0390811691161461084057fe5b80821061084c57600080fd5b600391909155600455565b60005481565b60075460009033600160a060020a0390811691161461087857fe5b50601054600c540360008113156108cc57600160a060020a0330166000908152600560205260409020546108b2908263ffffffff610fe216565b600160a060020a0330166000908152600560205260409020555b50565b600160a060020a038084166000908152600660209081526040808320338516845282528083205493861683526005909152812054909190610916908463ffffffff610ed016565b600160a060020a03808616600090815260056020526040808220939093559087168152205461094b908463ffffffff610fe216565b600160a060020a038616600090815260056020526040902055610974818463ffffffff610fe216565b600160a060020a03808716600081815260066020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60045481565b60095481565b600b5481565b601281565b60075433600160a060020a03908116911614610a1157fe5b600754600160a060020a031681156108fc0282604051600060405180830381858888f1935050505015156108cc57600080fd5b60008080831515610a5457600080fd5b506000905080610a62610c41565b15610b2f576011546010541015610a7b57506064610b04565b601054601154108015610a95575060125460115401601054105b15610aa257506050610b04565b60105460125460115401108015610ac457506013546012546011540101601054105b15610ad15750603c610b04565b6010546013546012546011540101108015610afb5750601454601354601254601154010101601054105b15610b04575060285b610b256064610b19868463ffffffff610ee616565b9063ffffffff610ff416565b9150819250610bec565b610b37610c7c565b15610bec5742600354108015610b54575060035462093a80014211155b15610b6157506014610bb1565b4260035462093a8001108015610b7e575060035462127500014211155b15610b8b5750600a610bb1565b426003546212750001108015610ba85750600354621baf80014211155b15610bb1575060055b610bc66064610b19868463ffffffff610ee616565b9150600e5482600f54011115610bdf5760009150610be8565b600f8054830190555b8192505b5050919050565b60025481565b60105481565b600854600160a060020a031681565b60075433600160a060020a03908116911614610c2657fe5b600160a060020a033016600090815260056020526040812055565b600042600154108015610c5657506002544211155b905090565b60015481565b600160a060020a031660009081526005602052604090205490565b600042600354108015610c5657505060045442111590565b600754600160a060020a031681565b60135481565b60408051908101604052600481527f4d4f564500000000000000000000000000000000000000000000000000000000602082015281565b60125481565b6004546000904211610cf757600080fd5b600160a060020a038316600090815260056020526040902054610d20908363ffffffff610ed016565b600160a060020a03808516600090815260056020526040808220939093553390911681522054610d56908363ffffffff610fe216565b600160a060020a033381166000818152600560205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60075460009033600160a060020a03908116911614610dd057fe5b50600f54600e540360008113156108cc57600160a060020a0330166000908152600560205260409020546108b2908263ffffffff610fe216565b600f5481565b60075433600160a060020a03908116911614610e2857fe5b808210610e3457600080fd5b600191909155600255565b60145481565b60115481565b60035481565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60075433600160a060020a03908116911614610e9457fe5b600160a060020a038116156108cc5760078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b600082820183811015610edf57fe5b9392505050565b6000828202831580610f025750828482811515610eff57fe5b04145b1515610edf57fe5b600160a060020a038216600090815260056020526040812054610f33908363ffffffff610ed016565b600160a060020a03808516600090815260056020526040808220939093553090911681522054610f69908363ffffffff610fe216565b6005600030600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600082821115610fee57fe5b50900390565b600080828481151561100257fe5b049493505050505600a165627a7a723058200e41b267d878005ca8ba2db8c409b80319986813e8199d477878d7da9f16d4d70029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000005a33ff90000000000000000000000000000000000000000000000000000000005a412e90000000000000000000000000000000000000000000000000000000005a734790000000000000000000000000000000000000000000000000000000005a9831900000000000000000000000003685c423d54e6ad85fb78bed40a79fd47f1e41f5
-----Decoded View---------------
Arg [0] : _preicostart (uint256): 1513357200
Arg [1] : _preicoend (uint256): 1514221200
Arg [2] : _icostart (uint256): 1517504400
Arg [3] : _icoend (uint256): 1519923600
Arg [4] : _wallet (address): 0x3685C423D54e6ad85Fb78bEd40A79Fd47F1E41f5
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005a33ff90
Arg [1] : 000000000000000000000000000000000000000000000000000000005a412e90
Arg [2] : 000000000000000000000000000000000000000000000000000000005a734790
Arg [3] : 000000000000000000000000000000000000000000000000000000005a983190
Arg [4] : 0000000000000000000000003685c423d54e6ad85fb78bed40a79fd47f1e41f5
Swarm Source
bzzr://0e41b267d878005ca8ba2db8c409b80319986813e8199d477878d7da9f16d4d7
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.