Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
91,627,765.8977959949663511 SXS
Holders
4,298
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:
SpectreSubscriberToken
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-27 */ pragma solidity ^0.4.15; /** * @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 Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } 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 Math * @dev Assorted math operations */ library Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } /** * @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; } } /* * Contract that is working with ERC223 tokens * This is an implementation of ContractReceiver provided here: * https://github.com/Dexaran/ERC223-token-standard/blob/Recommended/Receiver_Interface.sol */ contract ContractReceiver { function tokenFallback(address _from, uint _value, bytes _data); } /* Copyright 2016, Jordi Baylina This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /// @title MiniMeToken Contract /// @author Jordi Baylina /// @dev This token contract's goal is to make it easy for anyone to clone this /// token using the token distribution at a given block, this will allow DAO's /// and DApps to upgrade their features in a decentralized manner without /// affecting the original token /// @dev It is ERC20 compliant, but still needs to under go further testing. /// @dev The token controller contract must implement these functions contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) payable returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) returns(bool); } contract Controlled { /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { require(msg.sender == controller); _; } address public controller; function Controlled() { controller = msg.sender;} /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address _newController) onlyController { controller = _newController; } } /// @title SpecToken - Crowdfunding code for the Spectre.ai Token Sale /// @author Parthasarathy Ramanujam contract SpectreSubscriberToken is StandardToken, Pausable, TokenController { using SafeMath for uint; string public constant name = "SPECTRE SUBSCRIBER TOKEN"; string public constant symbol = "SXS"; uint256 public constant decimals = 18; uint256 constant public TOKENS_AVAILABLE = 240000000 * 10**decimals; uint256 constant public BONUS_SLAB = 100000000 * 10**decimals; uint256 constant public MIN_CAP = 5000000 * 10**decimals; uint256 constant public MIN_FUND_AMOUNT = 1 ether; uint256 constant public TOKEN_PRICE = 0.0005 ether; uint256 constant public WHITELIST_PERIOD = 3 days; address public specWallet; address public specDWallet; address public specUWallet; bool public refundable = false; bool public configured = false; bool public tokenAddressesSet = false; //presale start and end blocks uint256 public presaleStart; uint256 public presaleEnd; //main sale start and end blocks uint256 public saleStart; uint256 public saleEnd; //discount end block for main sale uint256 public discountSaleEnd; //whitelisting mapping(address => uint256) public whitelist; uint256 constant D160 = 0x0010000000000000000000000000000000000000000; //bonus earned mapping(address => uint256) public bonus; event Refund(address indexed _to, uint256 _value); event ContractFunded(address indexed _from, uint256 _value, uint256 _total); event Refundable(); event WhiteListSet(address indexed _subscriber, uint256 _value); event OwnerTransfer(address indexed _from, address indexed _to, uint256 _value); modifier isRefundable() { require(refundable); _; } modifier isNotRefundable() { require(!refundable); _; } modifier isTransferable() { require(tokenAddressesSet); require(getNow() > saleEnd); require(totalSupply >= MIN_CAP); _; } modifier onlyWalletOrOwner() { require(msg.sender == owner || msg.sender == specWallet); _; } //@notice function to initilaize the token contract //@notice _specWallet - The wallet that receives the proceeds from the token sale //@notice _specDWallet - Wallet that would receive tokens chosen for dividend //@notice _specUWallet - Wallet that would receive tokens chosen for utility function SpectreSubscriberToken(address _specWallet) { require(_specWallet != address(0)); specWallet = _specWallet; pause(); } //@notice Fallback function that accepts the ether and allocates tokens to //the msg.sender corresponding to msg.value function() payable whenNotPaused public { require(msg.value >= MIN_FUND_AMOUNT); if(getNow() >= presaleStart && getNow() <= presaleEnd) { purchasePresale(); } else if (getNow() >= saleStart && getNow() <= saleEnd) { purchase(); } else { revert(); } } //@notice function to be used for presale purchase function purchasePresale() internal { //Only check whitelist for the first 3 days of presale if (getNow() < (presaleStart + WHITELIST_PERIOD)) { require(whitelist[msg.sender] > 0); //Accept if the subsciber 95% to 120% of whitelisted amount uint256 minAllowed = whitelist[msg.sender].mul(95).div(100); uint256 maxAllowed = whitelist[msg.sender].mul(120).div(100); require(msg.value >= minAllowed && msg.value <= maxAllowed); //remove the address from whitelist whitelist[msg.sender] = 0; } uint256 numTokens = msg.value.mul(10**decimals).div(TOKEN_PRICE); uint256 bonusTokens = 0; if(totalSupply < BONUS_SLAB) { //Any portion of tokens less than BONUS_SLAB are eligable for 33% bonus, otherwise 22% bonus uint256 remainingBonusSlabTokens = SafeMath.sub(BONUS_SLAB, totalSupply); uint256 bonusSlabTokens = Math.min256(remainingBonusSlabTokens, numTokens); uint256 nonBonusSlabTokens = SafeMath.sub(numTokens, bonusSlabTokens); bonusTokens = bonusSlabTokens.mul(33).div(100); bonusTokens = bonusTokens.add(nonBonusSlabTokens.mul(22).div(100)); } else { //calculate 22% bonus for tokens purchased on presale bonusTokens = numTokens.mul(22).div(100); } // numTokens = numTokens.add(bonusTokens); bonus[msg.sender] = bonus[msg.sender].add(bonusTokens); //transfer money to Spectre MultisigWallet (could be msg.value) specWallet.transfer(msg.value); totalSupply = totalSupply.add(numTokens); require(totalSupply <= TOKENS_AVAILABLE); balances[msg.sender] = balances[msg.sender].add(numTokens); //fire the event notifying the transfer of tokens Transfer(0, msg.sender, numTokens); } //@notice function to be used for mainsale purchase function purchase() internal { uint256 numTokens = msg.value.mul(10**decimals).div(TOKEN_PRICE); uint256 bonusTokens = 0; if(getNow() <= discountSaleEnd) { //calculate 11% bonus for tokens purchased on discount period bonusTokens = numTokens.mul(11).div(100); } numTokens = numTokens.add(bonusTokens); bonus[msg.sender] = bonus[msg.sender].add(bonusTokens); //transfer money to Spectre MultisigWallet specWallet.transfer(msg.value); totalSupply = totalSupply.add(numTokens); require(totalSupply <= TOKENS_AVAILABLE); balances[msg.sender] = balances[msg.sender].add(numTokens); //fire the event notifying the transfer of tokens Transfer(0, msg.sender, numTokens); } //@notice Function reports the number of tokens available for sale function numberOfTokensLeft() constant returns (uint256) { return TOKENS_AVAILABLE.sub(totalSupply); } //Override unpause function to only allow once configured function unpause() onlyOwner whenPaused public { require(configured); paused = false; Unpause(); } //@notice Function to configure contract addresses //@param `_specUWallet` - address of Utility contract //@param `_specDWallet` - address of Dividend contract function setTokenAddresses(address _specUWallet, address _specDWallet) onlyOwner public { require(!tokenAddressesSet); require(_specDWallet != address(0)); require(_specUWallet != address(0)); require(isContract(_specDWallet)); require(isContract(_specUWallet)); specUWallet = _specUWallet; specDWallet = _specDWallet; tokenAddressesSet = true; if (configured) { unpause(); } } //@notice Function to configure contract parameters //@param `_startPresaleBlock` - block from when presale begins. //@param `_endPresaleBlock` - block from when presale ends. //@param `_saleStart` - block from when main sale begins. //@param `_saleEnd` - block from when main sale ends. //@param `_discountEnd` - block from when the discounts would end. //@notice Can be called only when funding is not active and only by the owner function configure(uint256 _presaleStart, uint256 _presaleEnd, uint256 _saleStart, uint256 _saleEnd, uint256 _discountSaleEnd) onlyOwner public { require(!configured); require(_presaleStart > getNow()); require(_presaleEnd > _presaleStart); require(_saleStart > _presaleEnd); require(_saleEnd > _saleStart); require(_discountSaleEnd > _saleStart && _discountSaleEnd <= _saleEnd); presaleStart = _presaleStart; presaleEnd = _presaleEnd; saleStart = _saleStart; saleEnd = _saleEnd; discountSaleEnd = _discountSaleEnd; configured = true; if (tokenAddressesSet) { unpause(); } } //@notice Function that can be called by purchasers to refund //@notice Used only in case the ICO isn't successful. function refund() isRefundable public { require(balances[msg.sender] > 0); uint256 tokenValue = balances[msg.sender].sub(bonus[msg.sender]); balances[msg.sender] = 0; tokenValue = tokenValue.mul(TOKEN_PRICE).div(10**decimals); //transfer to the requesters wallet msg.sender.transfer(tokenValue); Refund(msg.sender, tokenValue); } function withdrawEther() public isNotRefundable onlyOwner { //In case ether is sent, even though not refundable msg.sender.transfer(this.balance); } //@notice Function used for funding in case of refund. //@notice Can be called only by the Owner or Wallet function fundContract() public payable onlyWalletOrOwner { //does nothing just accepts and stores the ether ContractFunded(msg.sender, msg.value, this.balance); } function setRefundable() onlyOwner { require(this.balance > 0); require(getNow() > saleEnd); require(totalSupply < MIN_CAP); Refundable(); refundable = true; } //@notice Standard function transfer similar to ERC20 transfer with no _data . //@notice Added due to backwards compatibility reasons . function transfer(address _to, uint256 _value) isTransferable returns (bool success) { //standard function transfer similar to ERC20 transfer with no _data //added due to backwards compatibility reasons require(_to == specDWallet || _to == specUWallet); require(isContract(_to)); bytes memory empty; return transferToContract(msg.sender, _to, _value, empty); } //@notice assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private returns (bool is_contract) { uint256 length; assembly { //retrieve the size of the code on target address, this needs assembly length := extcodesize(_addr) } return (length>0); } //@notice function that is called when transaction target is a contract function transferToContract(address _from, address _to, uint256 _value, bytes _data) internal returns (bool success) { require(balanceOf(_from) >= _value); balances[_from] = balanceOf(_from).sub(_value); balances[_to] = balanceOf(_to).add(_value); ContractReceiver receiver = ContractReceiver(_to); receiver.tokenFallback(_from, _value, _data); Transfer(_from, _to, _value); return true; } /** * @dev Transfer tokens from one address to another - needed for owner 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 isTransferable returns (bool) { require(_to == specDWallet || _to == specUWallet); require(isContract(_to)); //owner can transfer tokens on behalf of users after 28 days if (msg.sender == owner && getNow() > saleEnd + 28 days) { OwnerTransfer(_from, _to, _value); } else { uint256 _allowance = allowed[_from][msg.sender]; allowed[_from][msg.sender] = _allowance.sub(_value); } //Now make the transfer bytes memory empty; return transferToContract(_from, _to, _value, empty); } //@notice function that is used for whitelisting an address function setWhiteList(address _subscriber, uint256 _amount) public onlyOwner { require(_subscriber != address(0)); require(_amount != 0); whitelist[_subscriber] = _amount; WhiteListSet(_subscriber, _amount); } // data is an array of uint256s. Each uint256 represents a address and amount. // The 160 LSB is the address that wants to be added // The 96 MSB is the amount of to be set for the whitelist for that address function multiSetWhiteList(uint256[] data) public onlyOwner { for (uint256 i = 0; i < data.length; i++) { address addr = address(data[i] & (D160 - 1)); uint256 amount = data[i] / D160; setWhiteList(addr, amount); } } ///////////////// // TokenController interface ///////////////// /// @notice `proxyPayment()` returns false, meaning ether is not accepted at /// the token address, only the address of FiinuCrowdSale /// @param _owner The address that will hold the newly created tokens function proxyPayment(address _owner) payable returns(bool) { return false; } /// @notice Notifies the controller about a transfer, for this Campaign all /// transfers are allowed by default and no extra notifications are needed /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) returns(bool) { return true; } /// @notice Notifies the controller about an approval, for this Campaign all /// approvals are allowed by default and no extra notifications are needed /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) returns(bool) { return true; } function getNow() constant internal returns (uint256) { return now; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"TOKENS_AVAILABLE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"WHITELIST_PERIOD","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"presaleEnd","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfTokensLeft","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"}],"name":"multiSetWhiteList","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"BONUS_SLAB","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"discountSaleEnd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"specUWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_presaleStart","type":"uint256"},{"name":"_presaleEnd","type":"uint256"},{"name":"_saleStart","type":"uint256"},{"name":"_saleEnd","type":"uint256"},{"name":"_discountSaleEnd","type":"uint256"}],"name":"configure","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"setRefundable","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MIN_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAddressesSet","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"configured","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelist","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MIN_FUND_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_specUWallet","type":"address"},{"name":"_specDWallet","type":"address"}],"name":"setTokenAddresses","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleStart","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"fundContract","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"refundable","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"specWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleEnd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_subscriber","type":"address"},{"name":"_amount","type":"uint256"}],"name":"setWhiteList","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_PRICE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"onApprove","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"presaleStart","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"specDWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"inputs":[{"name":"_specWallet","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_total","type":"uint256"}],"name":"ContractFunded","type":"event"},{"anonymous":false,"inputs":[],"name":"Refundable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_subscriber","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"WhiteListSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"OwnerTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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
60606040526003805460a060020a60ff02191690556006805460a060020a62ffffff021916905534156200003257600080fd5b60405160208062002213833981016040528080519150505b5b60038054600160a060020a03191633600160a060020a03161790555b600160a060020a03811615156200007d57600080fd5b60048054600160a060020a031916600160a060020a038316179055620000b0640100000000620000b88102620018601704565b5b5062000155565b60035433600160a060020a03908116911614620000d457600080fd5b60035474010000000000000000000000000000000000000000900460ff1615620000fd57600080fd5b6003805460a060020a60ff021916740100000000000000000000000000000000000000001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b6120ae80620001656000396000f300606060405236156102385763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663062fe08e81146102d757806306fdde03146102fc578063095ea7b3146103875780630ec4fb0a146103bd57806318160ddd146103e2578063229f3e291461040757806323b872dd1461042c57806327ea06b814610468578063313ce5671461048d5780633c5972ff146104b25780633f4ba83a146105035780634051ed26146105185780634a3931491461053d578063590e1ae3146105795780635c975abb1461058e57806361a65e2a146105b557806366188463146105da5780636a7254a31461061057806370a082311461063f5780637126a855146106705780637362377b146106945780637ba7dcea146106a9578063801db9cc146106be578063808a69e2146106e35780638456cb591461070a5780638772a23a1461071f5780638da5cb5b1461074657806395d89b41146107755780639b19251a14610800578063a5e558a314610831578063a89c8c5e14610856578063a9059cbb1461087d578063ab0bcc41146108b3578063bd097e21146108d8578063bf89662d146108e2578063bfd0a55314610909578063c10b935814610938578063c156776a1461095d578063d2d8cb6714610981578063d73dd623146109a6578063d8cb4aa3146109dc578063da682aeb1461053d578063dd62ed3e14610a49578063de8801e514610a80578063e3e5439c14610aa5578063f2fde38b14610ad4578063f48c305414610af5575b5b60035460a060020a900460ff161561025057600080fd5b670de0b6b3a764000034101561026557600080fd5b600754610270610b1d565b101580156102875750600854610284610b1d565b11155b1561029957610294610b22565b6102d2565b6009546102a4610b1d565b101580156102bb5750600a546102b8610b1d565b11155b156102cd57610294610e55565b6102d2565b600080fd5b5b5b5b005b34156102e257600080fd5b6102ea610ff8565b60405190815260200160405180910390f35b341561030757600080fd5b61030f611007565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c5780820151818401525b602001610333565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561039257600080fd5b6103a9600160a060020a036004351660243561103e565b604051901515815260200160405180910390f35b34156103c857600080fd5b6102ea6110ab565b60405190815260200160405180910390f35b34156103ed57600080fd5b6102ea6110b2565b60405190815260200160405180910390f35b341561041257600080fd5b6102ea6110b8565b60405190815260200160405180910390f35b341561043757600080fd5b6103a9600160a060020a03600435811690602435166044356110be565b604051901515815260200160405180910390f35b341561047357600080fd5b6102ea61124f565b60405190815260200160405180910390f35b341561049857600080fd5b6102ea611275565b60405190815260200160405180910390f35b34156104bd57600080fd5b6102d2600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061127a95505050505050565b005b341561050e57600080fd5b6102d2611310565b005b341561052357600080fd5b6102ea6113aa565b60405190815260200160405180910390f35b341561054857600080fd5b6103a9600160a060020a03600435811690602435166044356113b9565b604051901515815260200160405180910390f35b341561058457600080fd5b6102d26113c3565b005b341561059957600080fd5b6103a96114f4565b604051901515815260200160405180910390f35b34156105c057600080fd5b6102ea611504565b60405190815260200160405180910390f35b34156105e557600080fd5b6103a9600160a060020a036004351660243561150a565b604051901515815260200160405180910390f35b341561061b57600080fd5b610623611606565b604051600160a060020a03909116815260200160405180910390f35b341561064a57600080fd5b6102ea600160a060020a0360043516611615565b60405190815260200160405180910390f35b341561067b57600080fd5b6102d2600435602435604435606435608435611634565b005b341561069f57600080fd5b6102d2611718565b005b34156106b457600080fd5b6102d261178c565b005b34156106c957600080fd5b6102ea611841565b60405190815260200160405180910390f35b34156106ee57600080fd5b6103a9611850565b604051901515815260200160405180910390f35b341561071557600080fd5b6102d2611860565b005b341561072a57600080fd5b6103a96118e7565b604051901515815260200160405180910390f35b341561075157600080fd5b6106236118f7565b604051600160a060020a03909116815260200160405180910390f35b341561078057600080fd5b61030f611906565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c5780820151818401525b602001610333565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561080b57600080fd5b6102ea600160a060020a036004351661193d565b60405190815260200160405180910390f35b341561083c57600080fd5b6102ea61194f565b60405190815260200160405180910390f35b341561086157600080fd5b6102d2600160a060020a036004358116906024351661195b565b005b341561088857600080fd5b6103a9600160a060020a0360043516602435611a5a565b604051901515815260200160405180910390f35b34156108be57600080fd5b6102ea611b0b565b60405190815260200160405180910390f35b6102d2611b11565b005b34156108ed57600080fd5b6103a9611b99565b604051901515815260200160405180910390f35b341561091457600080fd5b610623611ba9565b604051600160a060020a03909116815260200160405180910390f35b341561094357600080fd5b6102ea611bb8565b60405190815260200160405180910390f35b341561096857600080fd5b6102d2600160a060020a0360043516602435611bbe565b005b341561098c57600080fd5b6102ea611c50565b60405190815260200160405180910390f35b34156109b157600080fd5b6103a9600160a060020a0360043516602435611c5b565b604051901515815260200160405180910390f35b34156109e757600080fd5b6102ea600160a060020a0360043516611d00565b60405190815260200160405180910390f35b341561054857600080fd5b6103a9600160a060020a03600435811690602435166044356113b9565b604051901515815260200160405180910390f35b3415610a5457600080fd5b6102ea600160a060020a0360043581169060243516611d1c565b60405190815260200160405180910390f35b3415610a8b57600080fd5b6102ea611d49565b60405190815260200160405180910390f35b3415610ab057600080fd5b610623611d4f565b604051600160a060020a03909116815260200160405180910390f35b3415610adf57600080fd5b6102d2600160a060020a0360043516611d5e565b005b6103a9600160a060020a0360043516611df7565b604051901515815260200160405180910390f35b425b90565b60008060008060008060006203f48060075401610b3d610b1d565b1015610c1a57600160a060020a0333166000908152600c602052604081205411610b6657600080fd5b600160a060020a0333166000908152600c6020526040902054610ba390606490610b9790605f63ffffffff611dff16565b9063ffffffff611e2e16565b600160a060020a0333166000908152600c6020526040902054909750610be390606490610b9790607863ffffffff611dff16565b9063ffffffff611e2e16565b9550863410158015610bf55750853411155b1515610c0057600080fd5b600160a060020a0333166000908152600c60205260408120555b610c496601c6bf52634000610b9734670de0b6b3a764000063ffffffff611dff16565b9063ffffffff611e2e16565b6000805491965094506a52b7d2dcc80cd2e4000000901015610cf557600054610c7e906a52b7d2dcc80cd2e400000090611e4a565b9250610c8a8386611e61565b9150610c968583611e4a565b9050610cba6064610b9784602163ffffffff611dff16565b9063ffffffff611e2e16565b9350610cee610ce16064610b9784601663ffffffff611dff16565b9063ffffffff611e2e16565b859063ffffffff611e7b16565b9350610d1a565b610d176064610b9787601663ffffffff611dff16565b9063ffffffff611e2e16565b93505b610d2a858563ffffffff611e7b16565b600160a060020a0333166000908152600d6020526040902054909550610d56908563ffffffff611e7b16565b600160a060020a033381166000908152600d6020526040908190209290925560045416903480156108fc029151600060405180830381858888f193505050501515610da057600080fd5b600054610db3908663ffffffff611e7b16565b60008190556ac685fa11e01ec6f0000000901115610dd057600080fd5b600160a060020a033316600090815260016020526040902054610df9908663ffffffff611e7b16565b600160a060020a0333166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9088905190815260200160405180910390a35b50505050505050565b600080610e876601c6bf52634000610b9734670de0b6b3a764000063ffffffff611dff16565b9063ffffffff611e2e16565b915060009050600b54610e98610b1d565b11610ec257610ebf6064610b9784600b63ffffffff611dff16565b9063ffffffff611e2e16565b90505b610ed2828263ffffffff611e7b16565b600160a060020a0333166000908152600d6020526040902054909250610efe908263ffffffff611e7b16565b600160a060020a033381166000908152600d6020526040908190209290925560045416903480156108fc029151600060405180830381858888f193505050501515610f4857600080fd5b600054610f5b908363ffffffff611e7b16565b60008190556ac685fa11e01ec6f0000000901115610f7857600080fd5b600160a060020a033316600090815260016020526040902054610fa1908363ffffffff611e7b16565b600160a060020a0333166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5050565b6ac685fa11e01ec6f000000081565b60408051908101604052601881527f53504543545245205355425343524942455220544f4b454e0000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6203f48081565b60005481565b60085481565b6000806110c9612070565b60065460b060020a900460ff1615156110e157600080fd5b600a546110ec610b1d565b116110f657600080fd5b6000546a0422ca8b0a00a42500000090101561111157600080fd5b600554600160a060020a038681169116148061113a5750600654600160a060020a038681169116145b151561114557600080fd5b61114e85611e95565b151561115957600080fd5b60035433600160a060020a0390811691161480156111845750600a546224ea0001611182610b1d565b115b156111d55784600160a060020a031686600160a060020a03167fd30796a26ac49ebbc2092097f71aea64b94ffc866a5909a76002686237beff608660405190815260200160405180910390a3611236565b600160a060020a0380871660009081526002602090815260408083203390941683529290522054915061120e828563ffffffff611e4a16565b600160a060020a03808816600090815260026020908152604080832033909416835292905220555b61124286868684611ea4565b92505b5b50509392505050565b6000805461126f906ac685fa11e01ec6f00000009063ffffffff611e4a16565b90505b90565b601281565b6003546000908190819033600160a060020a0390811691161461129c57600080fd5b600092505b835183101561130857600160a060020a038484815181106112be57fe5b9060200190602002015116915060a060020a8484815181106112dc57fe5b906020019060200201518115156112ef57fe5b0490506112fc8282611bbe565b5b6001909201916112a1565b5b5b50505050565b60035433600160a060020a0390811691161461132b57600080fd5b60035460a060020a900460ff16151561134357600080fd5b60065460a860020a900460ff16151561135b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b6a52b7d2dcc80cd2e400000081565b60015b9392505050565b60065460009060a060020a900460ff1615156113de57600080fd5b600160a060020a0333166000908152600160205260408120541161140157600080fd5b600160a060020a0333166000908152600d60209081526040808320546001909252909120546114359163ffffffff611e4a16565b600160a060020a033316600090815260016020526040812055905061147f670de0b6b3a7640000610b97836601c6bf5263400063ffffffff611dff16565b9063ffffffff611e2e16565b9050600160a060020a03331681156108fc0282604051600060405180830381858888f1935050505015156114b257600080fd5b33600160a060020a03167fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d8260405190815260200160405180910390a25b5b50565b60035460a060020a900460ff1681565b600b5481565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561156757600160a060020a03338116600090815260026020908152604080832093881683529290529081205561159e565b611577818463ffffffff611e4a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600654600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b60035433600160a060020a0390811691161461164f57600080fd5b60065460a860020a900460ff161561166657600080fd5b61166e610b1d565b851161167957600080fd5b84841161168557600080fd5b83831161169157600080fd5b82821161169d57600080fd5b82811180156116ac5750818111155b15156116b757600080fd5b600785905560088490556009839055600a829055600b8190556006805475ff000000000000000000000000000000000000000000191660a860020a179081905560b060020a900460ff161561170e5761170e611310565b5b5b5b5050505050565b60065460a060020a900460ff161561172f57600080fd5b60035433600160a060020a0390811691161461174a57600080fd5b33600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f1935050505015156113a657600080fd5b5b5b5b565b60035433600160a060020a039081169116146117a757600080fd5b6000600160a060020a03301631116117be57600080fd5b600a546117c9610b1d565b116117d357600080fd5b6000546a0422ca8b0a00a42500000090106117ed57600080fd5b7f22f77d2a7e7c2b34047279a1227fbf143e6ebe8ad0afde75d6814b481e2016bf60405160405180910390a16006805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b6a0422ca8b0a00a42500000081565b60065460b060020a900460ff1681565b60035433600160a060020a0390811691161461187b57600080fd5b60035460a060020a900460ff161561189257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60065460a860020a900460ff1681565b600354600160a060020a031681565b60408051908101604052600381527f5358530000000000000000000000000000000000000000000000000000000000602082015281565b600c6020526000908152604090205481565b670de0b6b3a764000081565b60035433600160a060020a0390811691161461197657600080fd5b60065460b060020a900460ff161561198d57600080fd5b600160a060020a03811615156119a257600080fd5b600160a060020a03821615156119b757600080fd5b6119c081611e95565b15156119cb57600080fd5b6119d482611e95565b15156119df57600080fd5b6006805460058054600160a060020a0385811673ffffffffffffffffffffffffffffffffffffffff199283161790925576ff00000000000000000000000000000000000000000000199186169216919091171660b060020a179081905560a860020a900460ff1615610ff457610ff4611310565b5b5b5b5050565b6000611a64612070565b60065460b060020a900460ff161515611a7c57600080fd5b600a54611a87610b1d565b11611a9157600080fd5b6000546a0422ca8b0a00a425000000901015611aac57600080fd5b600554600160a060020a0385811691161480611ad55750600654600160a060020a038581169116145b1515611ae057600080fd5b611ae984611e95565b1515611af457600080fd5b611b0033858584611ea4565b91505b5b5092915050565b60095481565b60035433600160a060020a0390811691161480611b3c575060045433600160a060020a039081169116145b1515611b4757600080fd5b33600160a060020a03167f3b31cbadfd3fd939750f09d3bdbd6c0531dde23f05d55dcc202798f39d0908953430600160a060020a03163160405191825260208201526040908101905180910390a25b5b565b60065460a060020a900460ff1681565b600454600160a060020a031681565b600a5481565b60035433600160a060020a03908116911614611bd957600080fd5b600160a060020a0382161515611bee57600080fd5b801515611bfa57600080fd5b600160a060020a0382166000818152600c6020526040908190208390557f4251447a1c2fc6305b03db2d0e7dde804e542b8d978296f7d487ace195839ae89083905190815260200160405180910390a25b5b5050565b6601c6bf5263400081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054611c93908363ffffffff611e7b16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600d6020526000908152604090205481565b60015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60075481565b600554600160a060020a031681565b60035433600160a060020a03908116911614611d7957600080fd5b600160a060020a0381161515611d8e57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60005b919050565b6000828202831580611e1b5750828482811515611e1857fe5b04145b1515611e2357fe5b8091505b5092915050565b6000808284811515611e3c57fe5b0490508091505b5092915050565b600082821115611e5657fe5b508082035b92915050565b6000818310611e705781611e72565b825b90505b92915050565b600082820183811015611e2357fe5b8091505b5092915050565b6000813b908111905b50919050565b60008083611eb187611615565b1015611ebc57600080fd5b611ed584611ec988611615565b9063ffffffff611e4a16565b600160a060020a038716600090815260016020526040902055611f0784611efb87611615565b9063ffffffff611e7b16565b600160a060020a03861660008181526001602052604090819020929092558692509063c0ee0b8a90889087908790518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611fba5780820151818401525b602001611fa1565b50505050905090810190601f168015611fe75780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561200757600080fd5b6102c65a03f1151561201857600080fd5b50505084600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600191505b50949350505050565b602060405190810160405260008152905600a165627a7a72305820304c7d9a428024148f6ae3fdb9e78a61797e4740e90818f5e6ec8f8644d2998e0029000000000000000000000000670e095e92aff090fb8475131f7a8a5d98bd0155
Deployed Bytecode
0x606060405236156102385763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663062fe08e81146102d757806306fdde03146102fc578063095ea7b3146103875780630ec4fb0a146103bd57806318160ddd146103e2578063229f3e291461040757806323b872dd1461042c57806327ea06b814610468578063313ce5671461048d5780633c5972ff146104b25780633f4ba83a146105035780634051ed26146105185780634a3931491461053d578063590e1ae3146105795780635c975abb1461058e57806361a65e2a146105b557806366188463146105da5780636a7254a31461061057806370a082311461063f5780637126a855146106705780637362377b146106945780637ba7dcea146106a9578063801db9cc146106be578063808a69e2146106e35780638456cb591461070a5780638772a23a1461071f5780638da5cb5b1461074657806395d89b41146107755780639b19251a14610800578063a5e558a314610831578063a89c8c5e14610856578063a9059cbb1461087d578063ab0bcc41146108b3578063bd097e21146108d8578063bf89662d146108e2578063bfd0a55314610909578063c10b935814610938578063c156776a1461095d578063d2d8cb6714610981578063d73dd623146109a6578063d8cb4aa3146109dc578063da682aeb1461053d578063dd62ed3e14610a49578063de8801e514610a80578063e3e5439c14610aa5578063f2fde38b14610ad4578063f48c305414610af5575b5b60035460a060020a900460ff161561025057600080fd5b670de0b6b3a764000034101561026557600080fd5b600754610270610b1d565b101580156102875750600854610284610b1d565b11155b1561029957610294610b22565b6102d2565b6009546102a4610b1d565b101580156102bb5750600a546102b8610b1d565b11155b156102cd57610294610e55565b6102d2565b600080fd5b5b5b5b005b34156102e257600080fd5b6102ea610ff8565b60405190815260200160405180910390f35b341561030757600080fd5b61030f611007565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c5780820151818401525b602001610333565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561039257600080fd5b6103a9600160a060020a036004351660243561103e565b604051901515815260200160405180910390f35b34156103c857600080fd5b6102ea6110ab565b60405190815260200160405180910390f35b34156103ed57600080fd5b6102ea6110b2565b60405190815260200160405180910390f35b341561041257600080fd5b6102ea6110b8565b60405190815260200160405180910390f35b341561043757600080fd5b6103a9600160a060020a03600435811690602435166044356110be565b604051901515815260200160405180910390f35b341561047357600080fd5b6102ea61124f565b60405190815260200160405180910390f35b341561049857600080fd5b6102ea611275565b60405190815260200160405180910390f35b34156104bd57600080fd5b6102d2600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061127a95505050505050565b005b341561050e57600080fd5b6102d2611310565b005b341561052357600080fd5b6102ea6113aa565b60405190815260200160405180910390f35b341561054857600080fd5b6103a9600160a060020a03600435811690602435166044356113b9565b604051901515815260200160405180910390f35b341561058457600080fd5b6102d26113c3565b005b341561059957600080fd5b6103a96114f4565b604051901515815260200160405180910390f35b34156105c057600080fd5b6102ea611504565b60405190815260200160405180910390f35b34156105e557600080fd5b6103a9600160a060020a036004351660243561150a565b604051901515815260200160405180910390f35b341561061b57600080fd5b610623611606565b604051600160a060020a03909116815260200160405180910390f35b341561064a57600080fd5b6102ea600160a060020a0360043516611615565b60405190815260200160405180910390f35b341561067b57600080fd5b6102d2600435602435604435606435608435611634565b005b341561069f57600080fd5b6102d2611718565b005b34156106b457600080fd5b6102d261178c565b005b34156106c957600080fd5b6102ea611841565b60405190815260200160405180910390f35b34156106ee57600080fd5b6103a9611850565b604051901515815260200160405180910390f35b341561071557600080fd5b6102d2611860565b005b341561072a57600080fd5b6103a96118e7565b604051901515815260200160405180910390f35b341561075157600080fd5b6106236118f7565b604051600160a060020a03909116815260200160405180910390f35b341561078057600080fd5b61030f611906565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c5780820151818401525b602001610333565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561080b57600080fd5b6102ea600160a060020a036004351661193d565b60405190815260200160405180910390f35b341561083c57600080fd5b6102ea61194f565b60405190815260200160405180910390f35b341561086157600080fd5b6102d2600160a060020a036004358116906024351661195b565b005b341561088857600080fd5b6103a9600160a060020a0360043516602435611a5a565b604051901515815260200160405180910390f35b34156108be57600080fd5b6102ea611b0b565b60405190815260200160405180910390f35b6102d2611b11565b005b34156108ed57600080fd5b6103a9611b99565b604051901515815260200160405180910390f35b341561091457600080fd5b610623611ba9565b604051600160a060020a03909116815260200160405180910390f35b341561094357600080fd5b6102ea611bb8565b60405190815260200160405180910390f35b341561096857600080fd5b6102d2600160a060020a0360043516602435611bbe565b005b341561098c57600080fd5b6102ea611c50565b60405190815260200160405180910390f35b34156109b157600080fd5b6103a9600160a060020a0360043516602435611c5b565b604051901515815260200160405180910390f35b34156109e757600080fd5b6102ea600160a060020a0360043516611d00565b60405190815260200160405180910390f35b341561054857600080fd5b6103a9600160a060020a03600435811690602435166044356113b9565b604051901515815260200160405180910390f35b3415610a5457600080fd5b6102ea600160a060020a0360043581169060243516611d1c565b60405190815260200160405180910390f35b3415610a8b57600080fd5b6102ea611d49565b60405190815260200160405180910390f35b3415610ab057600080fd5b610623611d4f565b604051600160a060020a03909116815260200160405180910390f35b3415610adf57600080fd5b6102d2600160a060020a0360043516611d5e565b005b6103a9600160a060020a0360043516611df7565b604051901515815260200160405180910390f35b425b90565b60008060008060008060006203f48060075401610b3d610b1d565b1015610c1a57600160a060020a0333166000908152600c602052604081205411610b6657600080fd5b600160a060020a0333166000908152600c6020526040902054610ba390606490610b9790605f63ffffffff611dff16565b9063ffffffff611e2e16565b600160a060020a0333166000908152600c6020526040902054909750610be390606490610b9790607863ffffffff611dff16565b9063ffffffff611e2e16565b9550863410158015610bf55750853411155b1515610c0057600080fd5b600160a060020a0333166000908152600c60205260408120555b610c496601c6bf52634000610b9734670de0b6b3a764000063ffffffff611dff16565b9063ffffffff611e2e16565b6000805491965094506a52b7d2dcc80cd2e4000000901015610cf557600054610c7e906a52b7d2dcc80cd2e400000090611e4a565b9250610c8a8386611e61565b9150610c968583611e4a565b9050610cba6064610b9784602163ffffffff611dff16565b9063ffffffff611e2e16565b9350610cee610ce16064610b9784601663ffffffff611dff16565b9063ffffffff611e2e16565b859063ffffffff611e7b16565b9350610d1a565b610d176064610b9787601663ffffffff611dff16565b9063ffffffff611e2e16565b93505b610d2a858563ffffffff611e7b16565b600160a060020a0333166000908152600d6020526040902054909550610d56908563ffffffff611e7b16565b600160a060020a033381166000908152600d6020526040908190209290925560045416903480156108fc029151600060405180830381858888f193505050501515610da057600080fd5b600054610db3908663ffffffff611e7b16565b60008190556ac685fa11e01ec6f0000000901115610dd057600080fd5b600160a060020a033316600090815260016020526040902054610df9908663ffffffff611e7b16565b600160a060020a0333166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9088905190815260200160405180910390a35b50505050505050565b600080610e876601c6bf52634000610b9734670de0b6b3a764000063ffffffff611dff16565b9063ffffffff611e2e16565b915060009050600b54610e98610b1d565b11610ec257610ebf6064610b9784600b63ffffffff611dff16565b9063ffffffff611e2e16565b90505b610ed2828263ffffffff611e7b16565b600160a060020a0333166000908152600d6020526040902054909250610efe908263ffffffff611e7b16565b600160a060020a033381166000908152600d6020526040908190209290925560045416903480156108fc029151600060405180830381858888f193505050501515610f4857600080fd5b600054610f5b908363ffffffff611e7b16565b60008190556ac685fa11e01ec6f0000000901115610f7857600080fd5b600160a060020a033316600090815260016020526040902054610fa1908363ffffffff611e7b16565b600160a060020a0333166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5050565b6ac685fa11e01ec6f000000081565b60408051908101604052601881527f53504543545245205355425343524942455220544f4b454e0000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6203f48081565b60005481565b60085481565b6000806110c9612070565b60065460b060020a900460ff1615156110e157600080fd5b600a546110ec610b1d565b116110f657600080fd5b6000546a0422ca8b0a00a42500000090101561111157600080fd5b600554600160a060020a038681169116148061113a5750600654600160a060020a038681169116145b151561114557600080fd5b61114e85611e95565b151561115957600080fd5b60035433600160a060020a0390811691161480156111845750600a546224ea0001611182610b1d565b115b156111d55784600160a060020a031686600160a060020a03167fd30796a26ac49ebbc2092097f71aea64b94ffc866a5909a76002686237beff608660405190815260200160405180910390a3611236565b600160a060020a0380871660009081526002602090815260408083203390941683529290522054915061120e828563ffffffff611e4a16565b600160a060020a03808816600090815260026020908152604080832033909416835292905220555b61124286868684611ea4565b92505b5b50509392505050565b6000805461126f906ac685fa11e01ec6f00000009063ffffffff611e4a16565b90505b90565b601281565b6003546000908190819033600160a060020a0390811691161461129c57600080fd5b600092505b835183101561130857600160a060020a038484815181106112be57fe5b9060200190602002015116915060a060020a8484815181106112dc57fe5b906020019060200201518115156112ef57fe5b0490506112fc8282611bbe565b5b6001909201916112a1565b5b5b50505050565b60035433600160a060020a0390811691161461132b57600080fd5b60035460a060020a900460ff16151561134357600080fd5b60065460a860020a900460ff16151561135b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b6a52b7d2dcc80cd2e400000081565b60015b9392505050565b60065460009060a060020a900460ff1615156113de57600080fd5b600160a060020a0333166000908152600160205260408120541161140157600080fd5b600160a060020a0333166000908152600d60209081526040808320546001909252909120546114359163ffffffff611e4a16565b600160a060020a033316600090815260016020526040812055905061147f670de0b6b3a7640000610b97836601c6bf5263400063ffffffff611dff16565b9063ffffffff611e2e16565b9050600160a060020a03331681156108fc0282604051600060405180830381858888f1935050505015156114b257600080fd5b33600160a060020a03167fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d8260405190815260200160405180910390a25b5b50565b60035460a060020a900460ff1681565b600b5481565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561156757600160a060020a03338116600090815260026020908152604080832093881683529290529081205561159e565b611577818463ffffffff611e4a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600654600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b60035433600160a060020a0390811691161461164f57600080fd5b60065460a860020a900460ff161561166657600080fd5b61166e610b1d565b851161167957600080fd5b84841161168557600080fd5b83831161169157600080fd5b82821161169d57600080fd5b82811180156116ac5750818111155b15156116b757600080fd5b600785905560088490556009839055600a829055600b8190556006805475ff000000000000000000000000000000000000000000191660a860020a179081905560b060020a900460ff161561170e5761170e611310565b5b5b5b5050505050565b60065460a060020a900460ff161561172f57600080fd5b60035433600160a060020a0390811691161461174a57600080fd5b33600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f1935050505015156113a657600080fd5b5b5b5b565b60035433600160a060020a039081169116146117a757600080fd5b6000600160a060020a03301631116117be57600080fd5b600a546117c9610b1d565b116117d357600080fd5b6000546a0422ca8b0a00a42500000090106117ed57600080fd5b7f22f77d2a7e7c2b34047279a1227fbf143e6ebe8ad0afde75d6814b481e2016bf60405160405180910390a16006805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b6a0422ca8b0a00a42500000081565b60065460b060020a900460ff1681565b60035433600160a060020a0390811691161461187b57600080fd5b60035460a060020a900460ff161561189257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60065460a860020a900460ff1681565b600354600160a060020a031681565b60408051908101604052600381527f5358530000000000000000000000000000000000000000000000000000000000602082015281565b600c6020526000908152604090205481565b670de0b6b3a764000081565b60035433600160a060020a0390811691161461197657600080fd5b60065460b060020a900460ff161561198d57600080fd5b600160a060020a03811615156119a257600080fd5b600160a060020a03821615156119b757600080fd5b6119c081611e95565b15156119cb57600080fd5b6119d482611e95565b15156119df57600080fd5b6006805460058054600160a060020a0385811673ffffffffffffffffffffffffffffffffffffffff199283161790925576ff00000000000000000000000000000000000000000000199186169216919091171660b060020a179081905560a860020a900460ff1615610ff457610ff4611310565b5b5b5b5050565b6000611a64612070565b60065460b060020a900460ff161515611a7c57600080fd5b600a54611a87610b1d565b11611a9157600080fd5b6000546a0422ca8b0a00a425000000901015611aac57600080fd5b600554600160a060020a0385811691161480611ad55750600654600160a060020a038581169116145b1515611ae057600080fd5b611ae984611e95565b1515611af457600080fd5b611b0033858584611ea4565b91505b5b5092915050565b60095481565b60035433600160a060020a0390811691161480611b3c575060045433600160a060020a039081169116145b1515611b4757600080fd5b33600160a060020a03167f3b31cbadfd3fd939750f09d3bdbd6c0531dde23f05d55dcc202798f39d0908953430600160a060020a03163160405191825260208201526040908101905180910390a25b5b565b60065460a060020a900460ff1681565b600454600160a060020a031681565b600a5481565b60035433600160a060020a03908116911614611bd957600080fd5b600160a060020a0382161515611bee57600080fd5b801515611bfa57600080fd5b600160a060020a0382166000818152600c6020526040908190208390557f4251447a1c2fc6305b03db2d0e7dde804e542b8d978296f7d487ace195839ae89083905190815260200160405180910390a25b5b5050565b6601c6bf5263400081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054611c93908363ffffffff611e7b16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600d6020526000908152604090205481565b60015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60075481565b600554600160a060020a031681565b60035433600160a060020a03908116911614611d7957600080fd5b600160a060020a0381161515611d8e57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60005b919050565b6000828202831580611e1b5750828482811515611e1857fe5b04145b1515611e2357fe5b8091505b5092915050565b6000808284811515611e3c57fe5b0490508091505b5092915050565b600082821115611e5657fe5b508082035b92915050565b6000818310611e705781611e72565b825b90505b92915050565b600082820183811015611e2357fe5b8091505b5092915050565b6000813b908111905b50919050565b60008083611eb187611615565b1015611ebc57600080fd5b611ed584611ec988611615565b9063ffffffff611e4a16565b600160a060020a038716600090815260016020526040902055611f0784611efb87611615565b9063ffffffff611e7b16565b600160a060020a03861660008181526001602052604090819020929092558692509063c0ee0b8a90889087908790518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611fba5780820151818401525b602001611fa1565b50505050905090810190601f168015611fe75780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561200757600080fd5b6102c65a03f1151561201857600080fd5b50505084600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600191505b50949350505050565b602060405190810160405260008152905600a165627a7a72305820304c7d9a428024148f6ae3fdb9e78a61797e4740e90818f5e6ec8f8644d2998e0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000670e095e92aff090fb8475131f7a8a5d98bd0155
-----Decoded View---------------
Arg [0] : _specWallet (address): 0x670e095e92Aff090fb8475131f7a8A5D98BD0155
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000670e095e92aff090fb8475131f7a8a5d98bd0155
Swarm Source
bzzr://304c7d9a428024148f6ae3fdb9e78a61797e4740e90818f5e6ec8f8644d2998e
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.