Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
80,966,500 GDPR
Holders
199
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GdprCash
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-03 */ pragma solidity ^ 0.4.19; /** * @title GdprConfig * @dev Configuration for GDPR Cash token and crowdsale */ contract GdprConfig { // Token settings string public constant TOKEN_NAME = "GDPR Cash"; string public constant TOKEN_SYMBOL = "GDPR"; uint8 public constant TOKEN_DECIMALS = 18; // Smallest value of the GDPR uint256 public constant MIN_TOKEN_UNIT = 10 ** uint256(TOKEN_DECIMALS); // Minimum cap per purchaser on public sale ~ $100 in GDPR Cash uint256 public constant PURCHASER_MIN_TOKEN_CAP = 500 * MIN_TOKEN_UNIT; // Maximum cap per purchaser on first day of public sale ~ $2,000 in GDPR Cash uint256 public constant PURCHASER_MAX_TOKEN_CAP_DAY1 = 10000 * MIN_TOKEN_UNIT; // Maximum cap per purchaser on public sale ~ $20,000 in GDPR uint256 public constant PURCHASER_MAX_TOKEN_CAP = 100000 * MIN_TOKEN_UNIT; // Crowdsale rate GDPR / ETH uint256 public constant INITIAL_RATE = 7600; // 7600 GDPR for 1 ether // Initial distribution amounts uint256 public constant TOTAL_SUPPLY_CAP = 200000000 * MIN_TOKEN_UNIT; // 60% of the total supply cap uint256 public constant SALE_CAP = 120000000 * MIN_TOKEN_UNIT; // 10% tokens for the experts uint256 public constant EXPERTS_POOL_TOKENS = 20000000 * MIN_TOKEN_UNIT; // 10% tokens for marketing expenses uint256 public constant MARKETING_POOL_TOKENS = 20000000 * MIN_TOKEN_UNIT; // 9% founders' distribution uint256 public constant TEAM_POOL_TOKENS = 18000000 * MIN_TOKEN_UNIT; // 1% for legal advisors uint256 public constant LEGAL_EXPENSES_TOKENS = 2000000 * MIN_TOKEN_UNIT; // 10% tokens for the reserve uint256 public constant RESERVE_POOL_TOKENS = 20000000 * MIN_TOKEN_UNIT; // Contract wallet addresses for initial allocation address public constant EXPERTS_POOL_ADDR = 0x289bB02deaF473c6Aa5edc4886A71D85c18F328B; address public constant MARKETING_POOL_ADDR = 0x7BFD82C978EDDce94fe12eBF364c6943c7cC2f27; address public constant TEAM_POOL_ADDR = 0xB4AfbF5F39895adf213194198c0ba316f801B24d; address public constant LEGAL_EXPENSES_ADDR = 0xf72931B08f8Ef3d8811aD682cE24A514105f713c; address public constant SALE_FUNDS_ADDR = 0xb8E81a87c6D96ed5f424F0A33F13b046C1f24a24; address public constant RESERVE_POOL_ADDR = 0x010aAA10BfB913184C5b2E046143c2ec8A037413; } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns(uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns(uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns(uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns(uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns(uint256); function balanceOf(address who) public view returns(uint256); function transfer(address to, uint256 value) public returns(bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns(uint256); function transferFrom(address from, address to, uint256 value) public returns(bool); function approve(address spender, uint256 value) public returns(bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract DetailedERC20 is ERC20 { string public name; string public symbol; uint8 public decimals; function DetailedERC20(string _name, string _symbol, uint8 _decimals) public { name = _name; symbol = _symbol; decimals = _decimals; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns(uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns(bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // 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 view 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)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns(bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); 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 view returns(uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns(bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns(bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns(bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns(bool) { mintingFinished = true; MintFinished(); return true; } } /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; function CappedToken(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns(bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply_ = totalSupply_.sub(_value); Burn(burner, _value); } } /** * @title GdprCash * @dev GDPR Cash - the token used in the gdpr.cash network. * * All tokens are preminted and distributed at deploy time. * Transfers are disabled until the crowdsale is over. * All unsold tokens are burned. */ contract GdprCash is DetailedERC20, CappedToken, GdprConfig { bool private transfersEnabled = false; address public crowdsale = address(0); /** * @dev Triggered on token burn */ event Burn(address indexed burner, uint256 value); /** * @dev Transfers are restricted to the crowdsale and owner only * until the crowdsale is over. */ modifier canTransfer() { require(transfersEnabled || msg.sender == owner || msg.sender == crowdsale); _; } /** * @dev Restriected to the crowdsale only */ modifier onlyCrowdsale() { require(msg.sender == crowdsale); _; } /** * @dev Constructor that sets name, symbol, decimals as well as a maximum supply cap. */ function GdprCash() public DetailedERC20(TOKEN_NAME, TOKEN_SYMBOL, TOKEN_DECIMALS) CappedToken(TOTAL_SUPPLY_CAP) { } /** * @dev Sets the crowdsale. Can be invoked only once and by the owner * @param _crowdsaleAddr address The address of the crowdsale contract */ function setCrowdsale(address _crowdsaleAddr) external onlyOwner { require(crowdsale == address(0)); require(_crowdsaleAddr != address(0)); require(!transfersEnabled); crowdsale = _crowdsaleAddr; // Generate sale tokens mint(crowdsale, SALE_CAP); // Distribute non-sale tokens to pools mint(EXPERTS_POOL_ADDR, EXPERTS_POOL_TOKENS); mint(MARKETING_POOL_ADDR, MARKETING_POOL_TOKENS); mint(TEAM_POOL_ADDR, TEAM_POOL_TOKENS); mint(LEGAL_EXPENSES_ADDR, LEGAL_EXPENSES_TOKENS); mint(RESERVE_POOL_ADDR, RESERVE_POOL_TOKENS); finishMinting(); } /** * @dev Checks modifier and transfers * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transfer(address _to, uint256 _value) public canTransfer returns(bool) { return super.transfer(_to, _value); } /** * @dev Checks modifier and transfers * @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 canTransfer returns(bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Enables token transfers. * Called when the token sale is successfully finalized */ function enableTransfers() public onlyCrowdsale { transfersEnabled = true; } /** * @dev Burns a specific number of tokens. * @param _value uint256 The number of tokens to be burned. */ function burn(uint256 _value) public onlyCrowdsale { require(_value <= balances[msg.sender]); address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply_ = totalSupply_.sub(_value); Burn(burner, _value); } } /** * @title GDPR Crowdsale * @dev GDPR Cash crowdsale contract. */ contract GdprCrowdsale is Pausable { using SafeMath for uint256; // Token contract GdprCash public token; // 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 = 0; // Total amount of tokens purchased uint256 public totalPurchased = 0; // Purchases mapping(address => uint256) public tokensPurchased; // Whether the crowdsale is finalized bool public isFinalized = false; // Crowdsale events /** * Event for token purchase logging * @param purchaser who paid for the tokens * @param beneficiary who got the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase( address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); /** * Event for token purchase logging * @param purchaser who paid for the tokens * @param amount amount of tokens purchased */ event TokenPresale( address indexed purchaser, uint256 amount); /** * Event invoked when the rate is changed * @param newRate The new rate GDPR / ETH */ event RateChange(uint256 newRate); /** * Triggered when ether is withdrawn to the sale wallet * @param amount How many funds to withdraw in wei */ event FundWithdrawal(uint256 amount); /** * Event for crowdsale finalization */ event Finalized(); /** * @dev GdprCrowdsale contract constructor * @param _startTime uint256 Unix timestamp representing the crowdsale start time * @param _endTime uint256 Unix timestamp representing the crowdsale end time * @param _tokenAddress address Address of the GDPR Cash token contract */ function GdprCrowdsale( uint256 _startTime, uint256 _endTime, address _tokenAddress ) public { require(_endTime > _startTime); require(_tokenAddress != address(0)); startTime = _startTime; endTime = _endTime; token = GdprCash(_tokenAddress); rate = token.INITIAL_RATE(); wallet = token.SALE_FUNDS_ADDR(); } /** * @dev Fallback function is used to buy tokens. * It's the only entry point since `buyTokens` is internal. * When paused funds are not accepted. */ function () public whenNotPaused payable { buyTokens(msg.sender, msg.value); } /** * @dev Sets a new start date as long as token sale hasn't started yet * @param _startTime uint256 Unix timestamp of the new start time */ function setStartTime(uint256 _startTime) public onlyOwner { require(now < startTime); require(_startTime > now); require(_startTime < endTime); startTime = _startTime; } /** * @dev Sets a new end date as long as end date hasn't been reached * @param _endTime uint2t56 Unix timestamp of the new end time */ function setEndTime(uint256 _endTime) public onlyOwner { require(now < endTime); require(_endTime > now); require(_endTime > startTime); endTime = _endTime; } /** * @dev Updates the GDPR/ETH conversion rate * @param _rate uint256 Updated conversion rate */ function setRate(uint256 _rate) public onlyOwner { require(_rate > 0); rate = _rate; RateChange(rate); } /** * @dev Must be called after crowdsale ends, to do some extra finalization * work. Calls the contract's finalization function. */ function finalize() public onlyOwner { require(now > endTime); require(!isFinalized); finalization(); Finalized(); isFinalized = true; } /** * @dev Anyone can check if the crowdsale is over * @return true if crowdsale has endeds */ function hasEnded() public view returns(bool) { return now > endTime; } /** * @dev Transfers ether to the sale wallet * @param _amount uint256 The amount to withdraw. * If 0 supplied transfers the entire balance. */ function withdraw(uint256 _amount) public onlyOwner { require(this.balance > 0); require(_amount <= this.balance); uint256 balanceToSend = _amount; if (balanceToSend == 0) { balanceToSend = this.balance; } wallet.transfer(balanceToSend); FundWithdrawal(balanceToSend); } /** * @dev Registers a presale order * @param _participant address The address of the token purchaser * @param _tokenAmount uin256 The amount of GDPR Cash (in wei) purchased */ function addPresaleOrder(address _participant, uint256 _tokenAmount) external onlyOwner { require(now < startTime); // Update state tokensPurchased[_participant] = tokensPurchased[_participant].add(_tokenAmount); totalPurchased = totalPurchased.add(_tokenAmount); token.transfer(_participant, _tokenAmount); TokenPresale( _participant, _tokenAmount ); } /** * @dev Token purchase logic. Used internally. * @param _participant address The address of the token purchaser * @param _weiAmount uin256 The amount of ether in wei sent to the contract */ function buyTokens(address _participant, uint256 _weiAmount) internal { require(_participant != address(0)); require(now >= startTime); require(now < endTime); require(!isFinalized); require(_weiAmount != 0); // Calculate the token amount to be allocated uint256 tokens = _weiAmount.mul(rate); // Update state tokensPurchased[_participant] = tokensPurchased[_participant].add(tokens); totalPurchased = totalPurchased.add(tokens); // update state weiRaised = weiRaised.add(_weiAmount); require(totalPurchased <= token.SALE_CAP()); require(tokensPurchased[_participant] >= token.PURCHASER_MIN_TOKEN_CAP()); if (now < startTime + 86400) { // if still during the first day of token sale, apply different max cap require(tokensPurchased[_participant] <= token.PURCHASER_MAX_TOKEN_CAP_DAY1()); } else { require(tokensPurchased[_participant] <= token.PURCHASER_MAX_TOKEN_CAP()); } token.transfer(_participant, tokens); TokenPurchase( msg.sender, _participant, _weiAmount, tokens ); } /** * @dev Additional finalization logic. * Enables token transfers and burns all unsold tokens. */ function finalization() internal { withdraw(0); burnUnsold(); token.enableTransfers(); } /** * @dev Burn all remaining (unsold) tokens. * This should be called automatically after sale finalization */ function burnUnsold() internal { // All tokens held by this contract get burned token.burn(token.balanceOf(this)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TEAM_POOL_TOKENS","outputs":[{"name":"","type":"uint256"}],"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":"RESERVE_POOL_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SALE_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"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":"MIN_TOKEN_UNIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PURCHASER_MIN_TOKEN_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVE_POOL_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LEGAL_EXPENSES_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MARKETING_POOL_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_crowdsaleAddr","type":"address"}],"name":"setCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_SUPPLY_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TEAM_POOL_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EXPERTS_POOL_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PURCHASER_MAX_TOKEN_CAP_DAY1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MARKETING_POOL_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SALE_FUNDS_ADDR","outputs":[{"name":"","type":"address"}],"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":false,"inputs":[],"name":"finishMinting","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":true,"inputs":[],"name":"crowdsale","outputs":[{"name":"","type":"address"}],"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":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EXPERTS_POOL_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PURCHASER_MAX_TOKEN_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LEGAL_EXPENSES_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60606040526006805460a060020a60ff021916905560088054600160a860020a031916905534156200003057600080fd5b6aa56fa5b99019a5c8000000604080519081016040908152600982527f474450522043617368000000000000000000000000000000000000000000000060208301528051908101604052600481527f4744505200000000000000000000000000000000000000000000000000000000602082015260126000838051620000bb9291602001906200011a565b506001828051620000d19291602001906200011a565b506002805460ff191660ff92909216919091179055505060068054600160a060020a03191633600160a060020a0316179055600081116200011157600080fd5b600755620001bf565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015d57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018d57825182559160200191906001019062000170565b506200019b9291506200019f565b5090565b620001bc91905b808211156200019b5760008155600101620001a6565b90565b61143d80620001cf6000396000f3006060604052600436106102035763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461020857806306fdde031461022f57806307ccad95146102b9578063095ea7b3146102de5780630a16916a146103005780630b45e8db1461031357806318160ddd14610326578063188214001461033957806323b872dd1461034c5780632803d8e51461037457806328675325146103875780632a9053181461039a5780632d6acb3a146103ad5780632f3085d6146103dc578063313ce567146103ef578063355274ea146104185780634011baf91461030057806340c10f191461042b57806342966c681461044d578063483a20b21461046557806348931352146104845780634ab5439b146104975780634dbac733146104aa57806350213c9f146104bd57806353fe7a59146104d05780635b7f415c146104e357806366188463146104f65780636a4987dc146105185780636b52a0711461052b57806370a082311461053e5780637d64bcb41461055d5780638da5cb5b1461057057806395d89b41146105835780639c1e03a014610596578063a9059cbb146105a9578063af35c6c7146105cb578063cd944e3b14610300578063d1ff535e146105de578063d73dd623146105f1578063dd62ed3e14610613578063f2fde38b14610638578063fcb899d714610657575b600080fd5b341561021357600080fd5b61021b61066a565b604051901515815260200160405180910390f35b341561023a57600080fd5b61024261067a565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561027e578082015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102c457600080fd5b6102cc610718565b60405190815260200160405180910390f35b34156102e957600080fd5b61021b600160a060020a0360043516602435610727565b341561030b57600080fd5b6102cc610793565b341561031e57600080fd5b6102cc6107a2565b341561033157600080fd5b6102cc6107b1565b341561034457600080fd5b6102426107b7565b341561035757600080fd5b61021b600160a060020a03600435811690602435166044356107ee565b341561037f57600080fd5b6102cc61084c565b341561039257600080fd5b6102cc610858565b34156103a557600080fd5b610242610865565b34156103b857600080fd5b6103c061089c565b604051600160a060020a03909116815260200160405180910390f35b34156103e757600080fd5b6102cc6108b4565b34156103fa57600080fd5b6104026108c3565b60405160ff909116815260200160405180910390f35b341561042357600080fd5b6102cc6108cc565b341561043657600080fd5b61021b600160a060020a03600435166024356108d2565b341561045857600080fd5b610463600435610939565b005b341561047057600080fd5b610463600160a060020a0360043516610a16565b341561048f57600080fd5b6102cc610b9b565b34156104a257600080fd5b6103c0610baa565b34156104b557600080fd5b6102cc610bc2565b34156104c857600080fd5b6103c0610bc8565b34156104db57600080fd5b6102cc610be0565b34156104ee57600080fd5b610402610bee565b341561050157600080fd5b61021b600160a060020a0360043516602435610bf3565b341561052357600080fd5b6103c0610ced565b341561053657600080fd5b6103c0610d05565b341561054957600080fd5b6102cc600160a060020a0360043516610d1d565b341561056857600080fd5b61021b610d38565b341561057b57600080fd5b6103c0610dc3565b341561058e57600080fd5b610242610dd2565b34156105a157600080fd5b6103c0610e3d565b34156105b457600080fd5b61021b600160a060020a0360043516602435610e51565b34156105d657600080fd5b610463610ea6565b34156105e957600080fd5b6102cc610ed5565b34156105fc57600080fd5b61021b600160a060020a0360043516602435610ee3565b341561061e57600080fd5b6102cc600160a060020a0360043581169060243516610f87565b341561064357600080fd5b610463600160a060020a0360043516610fb2565b341561066257600080fd5b6103c061104d565b60065460a060020a900460ff1681565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b505050505081565b6a0ee3a5f48a68b55200000081565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6a108b2a2c2802909400000081565b6a6342fd08f00f637800000081565b60045490565b60408051908101604052600981527f4744505220436173680000000000000000000000000000000000000000000000602082015281565b60085460009060ff1680610810575060065433600160a060020a039081169116145b8061082e575060085433600160a060020a0390811661010090920416145b151561083957600080fd5b610844848484611065565b949350505050565b670de0b6b3a764000081565b681b1ae4d6e2ef50000081565b60408051908101604052600481527f4744505200000000000000000000000000000000000000000000000000000000602082015281565b73010aaa10bfb913184c5b2e046143c2ec8a03741381565b6a01a784379d99db4200000081565b60025460ff1681565b60075481565b60065460009033600160a060020a039081169116146108f057600080fd5b60065460a060020a900460ff161561090757600080fd5b60075460045461091d908463ffffffff6111e716565b111561092857600080fd5b61093283836111f6565b9392505050565b60085460009033600160a060020a03908116610100909204161461095c57600080fd5b600160a060020a03331660009081526003602052604090205482111561098157600080fd5b5033600160a060020a0381166000908152600360205260409020546109a69083611304565b600160a060020a0382166000908152600360205260409020556004546109d2908363ffffffff61130416565b600455600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60065433600160a060020a03908116911614610a3157600080fd5b6008546101009004600160a060020a031615610a4c57600080fd5b600160a060020a0381161515610a6157600080fd5b60085460ff1615610a7157600080fd5b6008805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384811682029290921792839055610abc9204166a6342fd08f00f63780000006108d2565b50610ae673289bb02deaf473c6aa5edc4886a71d85c18f328b6a108b2a2c280290940000006108d2565b50610b10737bfd82c978eddce94fe12ebf364c6943c7cc2f276a108b2a2c280290940000006108d2565b50610b3a73b4afbf5f39895adf213194198c0ba316f801b24d6a0ee3a5f48a68b5520000006108d2565b50610b6473f72931b08f8ef3d8811ad682ce24a514105f713c6a01a784379d99db420000006108d2565b50610b8e73010aaa10bfb913184c5b2e046143c2ec8a0374136a108b2a2c280290940000006108d2565b50610b97610d38565b5050565b6aa56fa5b99019a5c800000081565b73b4afbf5f39895adf213194198c0ba316f801b24d81565b611db081565b73289bb02deaf473c6aa5edc4886a71d85c18f328b81565b69021e19e0c9bab240000081565b601281565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610c5057600160a060020a033381166000908152600560209081526040808320938816835292905290812055610c87565b610c60818463ffffffff61130416565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b737bfd82c978eddce94fe12ebf364c6943c7cc2f2781565b73b8e81a87c6d96ed5f424f0a33f13b046c1f24a2481565b600160a060020a031660009081526003602052604090205490565b60065460009033600160a060020a03908116911614610d5657600080fd5b60065460a060020a900460ff1615610d6d57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600654600160a060020a031681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107105780601f106106e557610100808354040283529160200191610710565b6008546101009004600160a060020a031681565b60085460009060ff1680610e73575060065433600160a060020a039081169116145b80610e91575060085433600160a060020a0390811661010090920416145b1515610e9c57600080fd5b6109328383611316565b60085433600160a060020a039081166101009092041614610ec657600080fd5b6008805460ff19166001179055565b69152d02c7e14af680000081565b600160a060020a033381166000908152600560209081526040808320938616835292905290812054610f1b908363ffffffff6111e716565b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a03908116911614610fcd57600080fd5b600160a060020a0381161515610fe257600080fd5b600654600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b73f72931b08f8ef3d8811ad682ce24a514105f713c81565b6000600160a060020a038316151561107c57600080fd5b600160a060020a0384166000908152600360205260409020548211156110a157600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156110d457600080fd5b600160a060020a0384166000908152600360205260409020546110fd908363ffffffff61130416565b600160a060020a038086166000908152600360205260408082209390935590851681522054611132908363ffffffff6111e716565b600160a060020a0380851660009081526003602090815260408083209490945587831682526005815283822033909316825291909152205461117a908363ffffffff61130416565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60008282018381101561093257fe5b60065460009033600160a060020a0390811691161461121457600080fd5b60065460a060020a900460ff161561122b57600080fd5b60045461123e908363ffffffff6111e716565b600455600160a060020a03831660009081526003602052604090205461126a908363ffffffff6111e716565b600160a060020a0384166000818152600360205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60008282111561131057fe5b50900390565b6000600160a060020a038316151561132d57600080fd5b600160a060020a03331660009081526003602052604090205482111561135257600080fd5b600160a060020a03331660009081526003602052604090205461137b908363ffffffff61130416565b600160a060020a0333811660009081526003602052604080822093909355908516815220546113b0908363ffffffff6111e716565b600160a060020a0380851660008181526003602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a723058202a81b65bfd0221fed50b8692ede1d47900aba1f14816e4c74544df6229612e3e0029
Deployed Bytecode
0x6060604052600436106102035763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461020857806306fdde031461022f57806307ccad95146102b9578063095ea7b3146102de5780630a16916a146103005780630b45e8db1461031357806318160ddd14610326578063188214001461033957806323b872dd1461034c5780632803d8e51461037457806328675325146103875780632a9053181461039a5780632d6acb3a146103ad5780632f3085d6146103dc578063313ce567146103ef578063355274ea146104185780634011baf91461030057806340c10f191461042b57806342966c681461044d578063483a20b21461046557806348931352146104845780634ab5439b146104975780634dbac733146104aa57806350213c9f146104bd57806353fe7a59146104d05780635b7f415c146104e357806366188463146104f65780636a4987dc146105185780636b52a0711461052b57806370a082311461053e5780637d64bcb41461055d5780638da5cb5b1461057057806395d89b41146105835780639c1e03a014610596578063a9059cbb146105a9578063af35c6c7146105cb578063cd944e3b14610300578063d1ff535e146105de578063d73dd623146105f1578063dd62ed3e14610613578063f2fde38b14610638578063fcb899d714610657575b600080fd5b341561021357600080fd5b61021b61066a565b604051901515815260200160405180910390f35b341561023a57600080fd5b61024261067a565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561027e578082015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102c457600080fd5b6102cc610718565b60405190815260200160405180910390f35b34156102e957600080fd5b61021b600160a060020a0360043516602435610727565b341561030b57600080fd5b6102cc610793565b341561031e57600080fd5b6102cc6107a2565b341561033157600080fd5b6102cc6107b1565b341561034457600080fd5b6102426107b7565b341561035757600080fd5b61021b600160a060020a03600435811690602435166044356107ee565b341561037f57600080fd5b6102cc61084c565b341561039257600080fd5b6102cc610858565b34156103a557600080fd5b610242610865565b34156103b857600080fd5b6103c061089c565b604051600160a060020a03909116815260200160405180910390f35b34156103e757600080fd5b6102cc6108b4565b34156103fa57600080fd5b6104026108c3565b60405160ff909116815260200160405180910390f35b341561042357600080fd5b6102cc6108cc565b341561043657600080fd5b61021b600160a060020a03600435166024356108d2565b341561045857600080fd5b610463600435610939565b005b341561047057600080fd5b610463600160a060020a0360043516610a16565b341561048f57600080fd5b6102cc610b9b565b34156104a257600080fd5b6103c0610baa565b34156104b557600080fd5b6102cc610bc2565b34156104c857600080fd5b6103c0610bc8565b34156104db57600080fd5b6102cc610be0565b34156104ee57600080fd5b610402610bee565b341561050157600080fd5b61021b600160a060020a0360043516602435610bf3565b341561052357600080fd5b6103c0610ced565b341561053657600080fd5b6103c0610d05565b341561054957600080fd5b6102cc600160a060020a0360043516610d1d565b341561056857600080fd5b61021b610d38565b341561057b57600080fd5b6103c0610dc3565b341561058e57600080fd5b610242610dd2565b34156105a157600080fd5b6103c0610e3d565b34156105b457600080fd5b61021b600160a060020a0360043516602435610e51565b34156105d657600080fd5b610463610ea6565b34156105e957600080fd5b6102cc610ed5565b34156105fc57600080fd5b61021b600160a060020a0360043516602435610ee3565b341561061e57600080fd5b6102cc600160a060020a0360043581169060243516610f87565b341561064357600080fd5b610463600160a060020a0360043516610fb2565b341561066257600080fd5b6103c061104d565b60065460a060020a900460ff1681565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b505050505081565b6a0ee3a5f48a68b55200000081565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6a108b2a2c2802909400000081565b6a6342fd08f00f637800000081565b60045490565b60408051908101604052600981527f4744505220436173680000000000000000000000000000000000000000000000602082015281565b60085460009060ff1680610810575060065433600160a060020a039081169116145b8061082e575060085433600160a060020a0390811661010090920416145b151561083957600080fd5b610844848484611065565b949350505050565b670de0b6b3a764000081565b681b1ae4d6e2ef50000081565b60408051908101604052600481527f4744505200000000000000000000000000000000000000000000000000000000602082015281565b73010aaa10bfb913184c5b2e046143c2ec8a03741381565b6a01a784379d99db4200000081565b60025460ff1681565b60075481565b60065460009033600160a060020a039081169116146108f057600080fd5b60065460a060020a900460ff161561090757600080fd5b60075460045461091d908463ffffffff6111e716565b111561092857600080fd5b61093283836111f6565b9392505050565b60085460009033600160a060020a03908116610100909204161461095c57600080fd5b600160a060020a03331660009081526003602052604090205482111561098157600080fd5b5033600160a060020a0381166000908152600360205260409020546109a69083611304565b600160a060020a0382166000908152600360205260409020556004546109d2908363ffffffff61130416565b600455600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60065433600160a060020a03908116911614610a3157600080fd5b6008546101009004600160a060020a031615610a4c57600080fd5b600160a060020a0381161515610a6157600080fd5b60085460ff1615610a7157600080fd5b6008805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384811682029290921792839055610abc9204166a6342fd08f00f63780000006108d2565b50610ae673289bb02deaf473c6aa5edc4886a71d85c18f328b6a108b2a2c280290940000006108d2565b50610b10737bfd82c978eddce94fe12ebf364c6943c7cc2f276a108b2a2c280290940000006108d2565b50610b3a73b4afbf5f39895adf213194198c0ba316f801b24d6a0ee3a5f48a68b5520000006108d2565b50610b6473f72931b08f8ef3d8811ad682ce24a514105f713c6a01a784379d99db420000006108d2565b50610b8e73010aaa10bfb913184c5b2e046143c2ec8a0374136a108b2a2c280290940000006108d2565b50610b97610d38565b5050565b6aa56fa5b99019a5c800000081565b73b4afbf5f39895adf213194198c0ba316f801b24d81565b611db081565b73289bb02deaf473c6aa5edc4886a71d85c18f328b81565b69021e19e0c9bab240000081565b601281565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610c5057600160a060020a033381166000908152600560209081526040808320938816835292905290812055610c87565b610c60818463ffffffff61130416565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b737bfd82c978eddce94fe12ebf364c6943c7cc2f2781565b73b8e81a87c6d96ed5f424f0a33f13b046c1f24a2481565b600160a060020a031660009081526003602052604090205490565b60065460009033600160a060020a03908116911614610d5657600080fd5b60065460a060020a900460ff1615610d6d57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600654600160a060020a031681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107105780601f106106e557610100808354040283529160200191610710565b6008546101009004600160a060020a031681565b60085460009060ff1680610e73575060065433600160a060020a039081169116145b80610e91575060085433600160a060020a0390811661010090920416145b1515610e9c57600080fd5b6109328383611316565b60085433600160a060020a039081166101009092041614610ec657600080fd5b6008805460ff19166001179055565b69152d02c7e14af680000081565b600160a060020a033381166000908152600560209081526040808320938616835292905290812054610f1b908363ffffffff6111e716565b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a03908116911614610fcd57600080fd5b600160a060020a0381161515610fe257600080fd5b600654600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b73f72931b08f8ef3d8811ad682ce24a514105f713c81565b6000600160a060020a038316151561107c57600080fd5b600160a060020a0384166000908152600360205260409020548211156110a157600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156110d457600080fd5b600160a060020a0384166000908152600360205260409020546110fd908363ffffffff61130416565b600160a060020a038086166000908152600360205260408082209390935590851681522054611132908363ffffffff6111e716565b600160a060020a0380851660009081526003602090815260408083209490945587831682526005815283822033909316825291909152205461117a908363ffffffff61130416565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60008282018381101561093257fe5b60065460009033600160a060020a0390811691161461121457600080fd5b60065460a060020a900460ff161561122b57600080fd5b60045461123e908363ffffffff6111e716565b600455600160a060020a03831660009081526003602052604090205461126a908363ffffffff6111e716565b600160a060020a0384166000818152600360205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60008282111561131057fe5b50900390565b6000600160a060020a038316151561132d57600080fd5b600160a060020a03331660009081526003602052604090205482111561135257600080fd5b600160a060020a03331660009081526003602052604090205461137b908363ffffffff61130416565b600160a060020a0333811660009081526003602052604080822093909355908516815220546113b0908363ffffffff6111e716565b600160a060020a0380851660008181526003602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a723058202a81b65bfd0221fed50b8692ede1d47900aba1f14816e4c74544df6229612e3e0029
Swarm Source
bzzr://2a81b65bfd0221fed50b8692ede1d47900aba1f14816e4c74544df6229612e3e
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.