ETH Price: $2,896.29 (-4.07%)
Gas: 11 Gwei

Token

BUY Token (BUY)
 

Overview

Max Total Supply

1,000,000,000 BUY

Holders

492

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
150,302.283764 BUY

Value
$0.00
0x8f20a07e0541ca2db9152d7e521aee5d639b211d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BUY

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-01
*/

pragma solidity ^0.5.0;

// BUY Token 2019
// Based on Giveth's MiniMe Token framework

contract Ownable {

	address public owner;

	event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

	constructor() public {
		owner = msg.sender;
	}

	modifier onlyOwner() {
		require(msg.sender == owner);
		_;
	}

	function transferOwnership(address newOwner) public onlyOwner {
		require(newOwner != address(0));
		emit OwnershipTransferred(owner, newOwner);
		owner = newOwner;
	}

}


// Modified 2019, Will Harborne

/*
    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.

contract Controlled {

	event ControlTransferred(address indexed previousControler, address indexed newController);

	/// @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;

	constructor() public { controller = msg.sender;}

	/// @notice Changes the controller of the contract
	/// @param _newController The new controller of the contract
	function changeController(address _newController) public onlyController {
		emit ControlTransferred(controller, _newController);
		controller = _newController;
	}
}

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) public 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) public 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) public
	returns(bool);

}


contract ApproveAndCallFallBack {
	function receiveApproval(address from, uint256 _amount, address _token, bytes memory _data) public;
}

/// @dev The actual token contract, the default controller is the msg.sender
///  that deploys the contract, so usually this token will be deployed by a
///  token controller contract, which Giveth will call a "Campaign"
/// @dev The actual token contract, the default controller is the msg.sender
///  that deploys the contract, so usually this token will be deployed by a
///  token controller contract, which Giveth will call a "Campaign"
contract MiniMeToken is Controlled {

	string public name;                //The Token's name: e.g. DigixDAO Tokens
	uint8 public decimals;             //Number of decimals of the smallest unit
	string public symbol;              //An identifier: e.g. REP
	string public version = '3.0.0'; //An arbitrary versioning scheme


	/// @dev `Checkpoint` is the structure that attaches a block number to a
	///  given value, the block number attached is the one that last changed the
	///  value
	struct  Checkpoint {

		// `fromBlock` is the block number that the value was generated from
		uint256 fromBlock;

		// `value` is the amount of tokens at a specific block number
		uint256 value;
	}

	// `parentToken` is the Token address that was cloned to produce this token;
	//  it will be 0x0 for a token that was not cloned
	MiniMeToken public parentToken;

	// `parentSnapShotBlock` is the block number from the Parent Token that was
	//  used to determine the initial distribution of the Clone Token
	uint public parentSnapShotBlock;

	// `creationBlock` is the block number that the Clone Token was created
	uint public creationBlock;

	// `balances` is the map that tracks the balance of each address, in this
	//  contract when the balance changes the block number that the change
	//  occurred is also included in the map
	mapping (address => Checkpoint[]) balances;

	// `allowed` tracks any extra transfer rights as in all ERC20 tokens
	mapping (address => mapping (address => uint256)) allowed;

	// Tracks the history of the `totalSupply` of the token
	Checkpoint[] totalSupplyHistory;

	// Flag that determines if the token is transferable or not.
	bool public transfersEnabled;

	// The factory used to create new clone tokens
	MiniMeTokenFactory public tokenFactory;

////////////////
// Constructor
////////////////

	/// @notice Constructor to create a MiniMeToken
	/// @param _tokenFactory The address of the MiniMeTokenFactory contract that
	///  will create the Clone token contracts, the token factory needs to be
	///  deployed first
	/// @param _parentToken Address of the parent token, set to 0x0 if it is a
	///  new token
	/// @param _parentSnapShotBlock Block of the parent token that will
	///  determine the initial distribution of the clone token, set to 0 if it
	///  is a new token
	/// @param _tokenName Name of the new token
	/// @param _decimalUnits Number of decimals of the new token
	/// @param _tokenSymbol Token Symbol for the new token
	/// @param _transfersEnabled If true, tokens will be able to be transferred
	constructor(
		address _tokenFactory,
		address payable _parentToken,
		uint _parentSnapShotBlock,
		string memory _tokenName,
		uint8 _decimalUnits,
		string memory _tokenSymbol,
		bool _transfersEnabled
) public {
		tokenFactory = MiniMeTokenFactory(_tokenFactory);
		name = _tokenName;                                 // Set the name
		decimals = _decimalUnits;                          // Set the decimals
		symbol = _tokenSymbol;                             // Set the symbol
		parentToken = MiniMeToken(_parentToken);
		parentSnapShotBlock = _parentSnapShotBlock;
		transfersEnabled = _transfersEnabled;
		creationBlock = block.number;
	}


///////////////////
// ERC20 Methods
///////////////////

	uint constant MAX_UINT = 2**256 - 1;

	/// @notice Send `_amount` tokens to `_to` from `msg.sender`
	/// @param _to The address of the recipient
	/// @param _amount The amount of tokens to be transferred
	/// @return Whether the transfer was successful or not
	function transfer(address _to, uint256 _amount) public returns (bool success) {
		require(transfersEnabled);
		doTransfer(msg.sender, _to, _amount);
		return true;
	}

	/// @notice Send `_amount` tokens to `_to` from `_from` on the condition it
	///  is approved by `_from`
	/// @param _from The address holding the tokens being transferred
	/// @param _to The address of the recipient
	/// @param _amount The amount of tokens to be transferred
	/// @return True if the transfer was successful
	function transferFrom(address _from, address _to, uint256 _amount
) public returns (bool success) {

		// The controller of this contract can move tokens around at will,
		//  this is important to recognize! Confirm that you trust the
		//  controller of this contract, which in most situations should be
		//  another open source smart contract or 0x0
		if (msg.sender != controller) {
			require(transfersEnabled);

			// The standard ERC 20 transferFrom functionality
			if (allowed[_from][msg.sender] < MAX_UINT) {
				require(allowed[_from][msg.sender] >= _amount);
				allowed[_from][msg.sender] -= _amount;
			}
		}
		doTransfer(_from, _to, _amount);
		return true;
	}

	/// @dev This is the actual transfer function in the token contract, it can
	///  only be called by other functions in this contract.
	/// @param _from The address holding the tokens being transferred
	/// @param _to The address of the recipient
	/// @param _amount The amount of tokens to be transferred
	/// @return True if the transfer was successful
	function doTransfer(address _from, address _to, uint _amount
) internal {

		if (_amount == 0) {
			emit Transfer(_from, _to, _amount);    // Follow the spec to louch the event when transfer 0
			return;
		}

		require(parentSnapShotBlock < block.number);

		// Do not allow transfer to 0x0 or the token contract itself
		require((_to != address(0)) && (_to != address(this)));

		// If the amount being transfered is more than the balance of the
		//  account the transfer throws
		uint256 previousBalanceFrom = balanceOfAt(_from, block.number);

		require(previousBalanceFrom >= _amount);

		// Alerts the token controller of the transfer
		if (isContract(controller)) {
			require(TokenController(controller).onTransfer(_from, _to, _amount));
		}

		// First update the balance array with the new value for the address
		//  sending the tokens
		updateValueAtNow(balances[_from], previousBalanceFrom - _amount);

		// Then update the balance array with the new value for the address
		//  receiving the tokens
		uint256 previousBalanceTo = balanceOfAt(_to, block.number);
		require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
		updateValueAtNow(balances[_to], previousBalanceTo + _amount);

		// An event to make the transfer easy to find on the blockchain
		emit Transfer(_from, _to, _amount);

	}

	/// @param _owner The address that's balance is being requested
	/// @return The balance of `_owner` at the current block
	function balanceOf(address _owner) public view returns (uint256 balance) {
		return balanceOfAt(_owner, block.number);
	}

	/// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on
	///  its behalf. This is a modified version of the ERC20 approve function
	///  to be a little bit safer
	/// @param _spender The address of the account able to transfer the tokens
	/// @param _amount The amount of tokens to be approved for transfer
	/// @return True if the approval was successful
	function approve(address _spender, uint256 _amount) public returns (bool success) {
		require(transfersEnabled);

		// To change the approve amount you first have to reduce the addresses`
		//  allowance to zero by calling `approve(_spender,0)` if it is not
		//  already 0 to mitigate the race condition described here:
		//  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
		require((_amount == 0) || (allowed[msg.sender][_spender] == 0));

		// Alerts the token controller of the approve function call
		if (isContract(controller)) {
			require(TokenController(controller).onApprove(msg.sender, _spender, _amount));
		}

		allowed[msg.sender][_spender] = _amount;
		emit Approval(msg.sender, _spender, _amount);
		return true;
	}

	/// @dev This function makes it easy to read the `allowed[]` map
	/// @param _owner The address of the account that owns the token
	/// @param _spender The address of the account able to transfer the tokens
	/// @return Amount of remaining tokens of _owner that _spender is allowed
	///  to spend
	function allowance(address _owner, address _spender
) public view returns (uint256 remaining) {
		return allowed[_owner][_spender];
	}

	/// @notice `msg.sender` approves `_spender` to send `_amount` tokens on
	///  its behalf, and then a function is triggered in the contract that is
	///  being approved, `_spender`. This allows users to use their tokens to
	///  interact with contracts in one function call instead of two
	/// @param _spender The address of the contract able to transfer the tokens
	/// @param _amount The amount of tokens to be approved for transfer
	/// @return True if the function call was successful
	function approveAndCall(address _spender, uint256 _amount, bytes memory _extraData
) public returns (bool success) {
		require(approve(_spender, _amount));

		ApproveAndCallFallBack(_spender).receiveApproval(
			msg.sender,
			_amount,
			address(this),
			_extraData
		);

		return true;
	}

	/// @dev This function makes it easy to get the total number of tokens
	/// @return The total number of tokens
	function totalSupply() public view returns (uint) {
		return totalSupplyAt(block.number);
	}


////////////////
// Query balance and totalSupply in History
////////////////

	/// @dev Queries the balance of `_owner` at a specific `_blockNumber`
	/// @param _owner The address from which the balance will be retrieved
	/// @param _blockNumber The block number when the balance is queried
	/// @return The balance at `_blockNumber`
	function balanceOfAt(address _owner, uint _blockNumber) public view
	returns (uint) {

		// These next few lines are used when the balance of the token is
		//  requested before a check point was ever created for this token, it
		//  requires that the `parentToken.balanceOfAt` be queried at the
		//  genesis block for that token as this contains initial balance of
		//  this token
		if ((balances[_owner].length == 0)
			|| (balances[_owner][0].fromBlock > _blockNumber)) {
			if (address(parentToken) != address(0)) {
				return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock));
			} else {
				// Has no parent
				return 0;
			}

			// This will return the expected balance during normal situations
		} else {
			return getValueAt(balances[_owner], _blockNumber);
		}
	}

	/// @notice Total amount of tokens at a specific `_blockNumber`.
	/// @param _blockNumber The block number when the totalSupply is queried
	/// @return The total amount of tokens at `_blockNumber`
	function totalSupplyAt(uint _blockNumber) public view returns(uint) {

		// These next few lines are used when the totalSupply of the token is
		//  requested before a check point was ever created for this token, it
		//  requires that the `parentToken.totalSupplyAt` be queried at the
		//  genesis block for this token as that contains totalSupply of this
		//  token at this block number.
		if ((totalSupplyHistory.length == 0)
			|| (totalSupplyHistory[0].fromBlock > _blockNumber)) {
			if (address(parentToken) != address(0)) {
				return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock));
			} else {
				return 0;
			}

			// This will return the expected totalSupply during normal situations
		} else {
			return getValueAt(totalSupplyHistory, _blockNumber);
		}
	}

////////////////
// Clone Token Method
////////////////

	/// @notice Creates a new clone token with the initial distribution being
	///  this token at `_snapshotBlock`
	/// @param _cloneTokenName Name of the clone token
	/// @param _cloneDecimalUnits Number of decimals of the smallest unit
	/// @param _cloneTokenSymbol Symbol of the clone token
	/// @param _snapshotBlock Block when the distribution of the parent token is
	///  copied to set the initial distribution of the new clone token;
	///  if the block is zero than the actual block, the current block is used
	/// @param _transfersEnabled True if transfers are allowed in the clone
	/// @return The address of the new MiniMeToken Contract
	function createCloneToken(
		string memory _cloneTokenName,
		uint8 _cloneDecimalUnits,
		string memory _cloneTokenSymbol,
		uint _snapshotBlock,
		bool _transfersEnabled
) public returns(address) {
		if (_snapshotBlock == 0) _snapshotBlock = block.number;
		MiniMeToken cloneToken = tokenFactory.createCloneToken(
			address(this),
			_snapshotBlock,
			_cloneTokenName,
			_cloneDecimalUnits,
			_cloneTokenSymbol,
			_transfersEnabled
		);

		cloneToken.changeController(msg.sender);

		// An event to make the token easy to find on the blockchain
		emit NewCloneToken(address(cloneToken), _snapshotBlock);
		return address(cloneToken);
	}

////////////////
// Generate and destroy tokens
////////////////

	/// @notice Generates `_amount` tokens that are assigned to `_owner`
	/// @param _owner The address that will be assigned the new tokens
	/// @param _amount The quantity of tokens generated
	/// @return True if the tokens are generated correctly
	function generateTokens(address _owner, uint _amount
) public onlyController returns (bool) {
		uint curTotalSupply = totalSupply();
		require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow
		uint previousBalanceTo = balanceOf(_owner);
		require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
		updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount);
		updateValueAtNow(balances[_owner], previousBalanceTo + _amount);
		emit Transfer(address(0), _owner, _amount);
		return true;
	}


	/// @notice Burns `_amount` tokens from `_owner`
	/// @param _owner The address that will lose the tokens
	/// @param _amount The quantity of tokens to burn
	/// @return True if the tokens are burned correctly
	function destroyTokens(address _owner, uint _amount
) onlyController public returns (bool) {
		uint curTotalSupply = totalSupply();
		require(curTotalSupply >= _amount);
		uint previousBalanceFrom = balanceOf(_owner);
		require(previousBalanceFrom >= _amount);
		updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount);
		updateValueAtNow(balances[_owner], previousBalanceFrom - _amount);
		emit Transfer(_owner, address(0), _amount);
		return true;
	}

////////////////
// Enable tokens transfers
////////////////


	/// @notice Enables token holders to transfer their tokens freely if true
	/// @param _transfersEnabled True if transfers are allowed in the clone
	function enableTransfers(bool _transfersEnabled) public onlyController {
		transfersEnabled = _transfersEnabled;
	}

////////////////
// Internal helper functions to query and set a value in a snapshot array
////////////////

	/// @dev `getValueAt` retrieves the number of tokens at a given block number
	/// @param checkpoints The history of values being queried
	/// @param _block The block number to retrieve the value at
	/// @return The number of tokens being queried
	function getValueAt(Checkpoint[] storage checkpoints, uint _block
) view internal returns (uint) {
		if (checkpoints.length == 0) return 0;

		// Shortcut for the actual value
		if (_block >= checkpoints[checkpoints.length-1].fromBlock)
			return checkpoints[checkpoints.length-1].value;
		if (_block < checkpoints[0].fromBlock) return 0;

		// Binary search of the value in the array
		uint min = 0;
		uint max = checkpoints.length-1;
		uint mid = 0;
		while (max > min) {
			mid = (max + min + 1)/ 2;
			if (checkpoints[mid].fromBlock<=_block) {
				min = mid;
			} else {
				max = mid-1;
			}
		}
		return checkpoints[min].value;
	}

	/// @dev `updateValueAtNow` used to update the `balances` map and the
	///  `totalSupplyHistory`
	/// @param checkpoints The history of data being updated
	/// @param _value The new number of tokens
	function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value
) internal  {
		if ((checkpoints.length == 0)
			|| (checkpoints[checkpoints.length -1].fromBlock < block.number)) {
			Checkpoint storage newCheckPoint = checkpoints[ checkpoints.length++ ];
			newCheckPoint.fromBlock =  uint256(block.number);
			newCheckPoint.value = uint256(_value);
		} else {
			Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1];
			oldCheckPoint.value = uint256(_value);
		}
	}

	/// @dev Internal function to determine if an address is a contract
	/// @param _addr The address being queried
	/// @return True if `_addr` is a contract
	function isContract(address _addr) view internal returns(bool) {
		uint size;
		if (_addr == address(0)) return false;
		assembly {
			size := extcodesize(_addr)
		}
		return size>0;
	}

	/// @dev Helper function to return a min betwen the two uints
	function min(uint a, uint b) pure internal returns (uint) {
		return a < b ? a : b;
	}

	/// @notice The fallback function: If the contract's controller has not been
	///  set to 0, then the `proxyPayment` method is called which relays the
	///  ether and creates tokens as described in the token controller contract
	function () external payable {
		require(isContract(controller));
		require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender));
	}


////////////////
// Events
////////////////
	event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount);
	event Transfer(address indexed _from, address indexed _to, uint256 _amount);
	event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock);
	event Approval(
		address indexed _owner,
		address indexed _spender,
		uint256 _amount
);

}


////////////////
// MiniMeTokenFactory
////////////////

/// @dev This contract is used to generate clone contracts from a contract.
///  In solidity this is the way to create a contract from a contract of the
///  same class
contract MiniMeTokenFactory {

	/// @notice Update the DApp by creating a new token with new functionalities
	///  the msg.sender becomes the controller of this clone token
	/// @param _parentToken Address of the token being cloned
	/// @param _snapshotBlock Block of the parent token that will
	///  determine the initial distribution of the clone token
	/// @param _tokenName Name of the new token
	/// @param _decimalUnits Number of decimals of the new token
	/// @param _tokenSymbol Token Symbol for the new token
	/// @param _transfersEnabled If true, tokens will be able to be transferred
	/// @return The address of the new token contract
	function createCloneToken(
		address payable _parentToken,
		uint _snapshotBlock,
		string memory _tokenName,
		uint8 _decimalUnits,
		string memory _tokenSymbol,
		bool _transfersEnabled
) public returns (MiniMeToken) {
		MiniMeToken newToken = new MiniMeToken(
			address(this),
			_parentToken,
			_snapshotBlock,
			_tokenName,
			_decimalUnits,
			_tokenSymbol,
			_transfersEnabled
		);

		newToken.changeController(msg.sender);
		return newToken;
	}
}


contract BUY is MiniMeToken {

	constructor(
		address _tokenFactory,
		address initialOwner
) public MiniMeToken(
		_tokenFactory,
		address(0),             // no parent token
		0,                      // no snapshot block number from parent
		"BUY Token",   // Token name
		18,                     // Decimals
		"BUY",                  // Symbol
		true                    // Enable transfers
	) {
		generateTokens(initialOwner, 1000000000000000000000000000);
	}

}


contract BUYController is TokenController, Ownable {

	BUY public tokenContract;   // The new token for this Campaign

	/// @param _tokenAddress Address of the token contract this contract controls

	constructor(
		address payable _tokenAddress
) public {
		tokenContract = BUY(_tokenAddress);         // The Deployed Token Contract
	}


/////////////////
// TokenController interface
/////////////////

	/// @notice Notifies the controller about a transfer.
	/// Transfers can only happen to whitelisted addresses
	/// @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) public 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) public
	returns(bool)
	{
		return true;
	}

	function proxyPayment(address _owner) public payable returns(bool allowed) {
		allowed = false;
	}

	/// @notice `onlyOwner` can upgrade the controller contract
	/// @param _newControllerAddress The address that will have the token control logic
	function upgradeController(address _newControllerAddress) public onlyOwner {
		tokenContract.changeController(_newControllerAddress);
		emit UpgradedController(_newControllerAddress);
	}

	function burnTokens(uint _amount) public onlyOwner returns (bool) {
		tokenContract.destroyTokens(owner, _amount);
	}

	function issueTokens(uint _amount) public onlyOwner returns (bool) {
		tokenContract.generateTokens(owner, _amount);
	}


//////////
// Safety Methods
//////////

	/// @notice This method can be used by the owner to extract mistakenly
	///  sent tokens to this contract.
	/// @param _token The address of the token contract that you want to recover
	function claimLostTokens(address payable _token) public onlyOwner {

		BUY token = BUY(_token);
		uint balance = token.balanceOf(address(this));
		token.transfer(owner, balance);
		emit ClaimedTokens(_token, owner, balance);
	}

////////////////
// Events
////////////////
	event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount);

	event UpgradedController (address newAddress);

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"},{"name":"initialOwner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousControler","type":"address"},{"indexed":true,"name":"newController","type":"address"}],"name":"ControlTransferred","type":"event"}]

60c0604052600560808190527f332e302e3000000000000000000000000000000000000000000000000000000060a090815262000040916004919062000793565b503480156200004e57600080fd5b5060405160408062002148833981018060405260408110156200007057600080fd5b508051602091820151604080518082018252600981527f42555920546f6b656e00000000000000000000000000000000000000000000008186019081528251808401909352600383527f42555900000000000000000000000000000000000000000000000000000000009583019590955260008054600160a060020a03191633178155600b8054600160a060020a0387166101000261010060a860020a031990911617905581519495939486949193849392601292600191620001369183919062000793565b506002805460ff191660ff851617905581516200015b90600390602085019062000793565b5060058054600160a060020a031916600160a060020a039790971696909617909555505050600655600b805460ff19169115159190911790555043600755620001ba816b033b2e3c9fd0803ce8000000640100000000620001c3810204565b5050506200088c565b60008054600160a060020a03163314620001dc57600080fd5b6000620001f1640100000000620002c0810204565b90508281018111156200020357600080fd5b60006200021985640100000000620002dc810204565b90508381018111156200022b57600080fd5b62000243600a838601640100000000620002fb810204565b600160a060020a03851660009081526008602052604090206200027290828601640100000000620002fb810204565b604080518581529051600160a060020a038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36001925050505b92915050565b6000620002d643640100000000620003a8810204565b90505b90565b6000620002f38243640100000000620004d0810204565b90505b919050565b815415806200032e575081544390839060001981019081106200031a57fe5b906000526020600020906002020160000154105b156200037657815460009083906200034a826001830162000818565b815481106200035557fe5b600091825260209091204360029092020190815560010182905550620003a4565b8154600090839060001981019081106200038c57fe5b60009182526020909120600160029092020101829055505b5050565b600a546000901580620003dc575081600a6000815481101515620003c857fe5b906000526020600020906002020160000154115b15620004b257600554600160a060020a031615620004a957600554600654600160a060020a039091169063981b24d0906200042290859064010000000062000651810204565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082815260200191505060206040518083038186803b1580156200047357600080fd5b505afa15801562000488573d6000803e3d6000fd5b505050506040513d60208110156200049f57600080fd5b50519050620002f6565b506000620002f6565b620004c8600a836401000000006200066b810204565b9050620002f6565b600160a060020a03821660009081526008602052604081205415806200052b5750600160a060020a0383166000908152600860205260408120805484929081106200051757fe5b906000526020600020906002020160000154115b156200061c57600554600160a060020a0316156200061357600554600654600160a060020a0390911690634ee2cd7e9085906200057390869064010000000062000651810204565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015620005dd57600080fd5b505afa158015620005f2573d6000803e3d6000fd5b505050506040513d60208110156200060957600080fd5b50519050620002ba565b506000620002ba565b600160a060020a03831660009081526008602052604090206200064990836401000000006200066b810204565b9050620002ba565b600081831062000662578162000664565b825b9392505050565b815460009015156200068057506000620002ba565b8254839060001981019081106200069357fe5b60009182526020909120600290910201548210620006d857825483906000198101908110620006be57fe5b9060005260206000209060020201600101549050620002ba565b826000815481101515620006e857fe5b9060005260206000209060020201600001548210156200070b57506000620002ba565b825460009060001901815b82821115620007675760026001838501010490508486828154811015156200073a57fe5b6000918252602090912060029091020154116200075a5780925062000761565b6001810391505b62000716565b85838154811015156200077657fe5b906000526020600020906002020160010154935050505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007d657805160ff191683800117855562000806565b8280016001018555821562000806579182015b8281111562000806578251825591602001919060010190620007e9565b50620008149291506200084c565b5090565b815481835581811115620008475760020281600202836000526020600020918201910162000847919062000869565b505050565b620002d991905b8082111562000814576000815560010162000853565b620002d991905b8082111562000814576000808255600182015560020162000870565b6118ac806200089c6000396000f3fe60806040526004361061011e5760e060020a600035046306fdde0381146101de578063095ea7b31461026857806317634514146102b557806318160ddd146102dc57806323b872dd146102f1578063313ce567146103345780633cebb8231461035f5780634ee2cd7e1461039257806354fd4d50146103cb5780636638c087146103e057806370a082311461054857806380a540011461057b578063827f32c01461059057806395d89b41146105c9578063981b24d0146105de578063a9059cbb14610608578063bef97c8714610641578063c5bcc4f114610656578063cae9ca511461066b578063d3ce77fe14610733578063dd62ed3e1461076c578063e77772fe146107a7578063f41e60c5146107bc578063f77c4791146107e8575b60005461013390600160a060020a03166107fd565b151561013e57600080fd5b600054604080517ff48c30540000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a039092169163f48c3054913491602480830192602092919082900301818588803b1580156101a457600080fd5b505af11580156101b8573d6000803e3d6000fd5b50505050506040513d60208110156101cf57600080fd5b505115156101dc57600080fd5b005b3480156101ea57600080fd5b506101f3610827565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022d578181015183820152602001610215565b50505050905090810190601f16801561025a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027457600080fd5b506102a16004803603604081101561028b57600080fd5b50600160a060020a0381351690602001356108b4565b604080519115158252519081900360200190f35b3480156102c157600080fd5b506102ca610a32565b60408051918252519081900360200190f35b3480156102e857600080fd5b506102ca610a38565b3480156102fd57600080fd5b506102a16004803603606081101561031457600080fd5b50600160a060020a03813581169160208101359091169060400135610a49565b34801561034057600080fd5b50610349610b0a565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506101dc6004803603602081101561038257600080fd5b5035600160a060020a0316610b13565b34801561039e57600080fd5b506102ca600480360360408110156103b557600080fd5b50600160a060020a038135169060200135610b92565b3480156103d757600080fd5b506101f3610cda565b3480156103ec57600080fd5b5061052c600480360360a081101561040357600080fd5b81019060208101813564010000000081111561041e57600080fd5b82018360208201111561043057600080fd5b8035906020019184600183028401116401000000008311171561045257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff8535169590949093506040810192506020013590506401000000008111156104b057600080fd5b8201836020820111156104c257600080fd5b803590602001918460018302840111640100000000831117156104e457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610d35565b60408051600160a060020a039092168252519081900360200190f35b34801561055457600080fd5b506102ca6004803603602081101561056b57600080fd5b5035600160a060020a0316610f98565b34801561058757600080fd5b5061052c610fa4565b34801561059c57600080fd5b506102a1600480360360408110156105b357600080fd5b50600160a060020a038135169060200135610fb3565b3480156105d557600080fd5b506101f361106d565b3480156105ea57600080fd5b506102ca6004803603602081101561060157600080fd5b50356110c8565b34801561061457600080fd5b506102a16004803603604081101561062b57600080fd5b50600160a060020a0381351690602001356111b7565b34801561064d57600080fd5b506102a16111df565b34801561066257600080fd5b506102ca6111e8565b34801561067757600080fd5b506102a16004803603606081101561068e57600080fd5b600160a060020a03823516916020810135918101906060810160408201356401000000008111156106be57600080fd5b8201836020820111156106d057600080fd5b803590602001918460018302840111640100000000831117156106f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ee945050505050565b34801561073f57600080fd5b506102a16004803603604081101561075657600080fd5b50600160a060020a038135169060200135611309565b34801561077857600080fd5b506102ca6004803603604081101561078f57600080fd5b50600160a060020a03813581169160200135166113bf565b3480156107b357600080fd5b5061052c6113ea565b3480156107c857600080fd5b506101dc600480360360208110156107df57600080fd5b503515156113fe565b3480156107f457600080fd5b5061052c611428565b600080600160a060020a038316151561081a576000915050610822565b50506000813b115b919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b600b5460009060ff1615156108c857600080fd5b8115806108f65750336000908152600960209081526040808320600160a060020a0387168452909152902054155b151561090157600080fd5b60005461091690600160a060020a03166107fd565b156109ca5760008054604080517fda682aeb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169263da682aeb92606480820193602093909283900390910190829087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d60208110156109bd57600080fd5b505115156109ca57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6000610a43436110c8565b90505b90565b60008054600160a060020a03163314610af557600b5460ff161515610a6d57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020546000191115610af557600160a060020a0384166000908152600960209081526040808320338452909152902054821115610aca57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020805483900390555b610b00848484611437565b5060019392505050565b60025460ff1681565b600054600160a060020a03163314610b2a57600080fd5b60008054604051600160a060020a03808516939216917fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f291a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600860205260408120541580610beb5750600160a060020a038316600090815260086020526040812080548492908110610bd757fe5b906000526020600020906002020160000154115b15610cb157600554600160a060020a031615610ca957600554600654600160a060020a0390911690634ee2cd7e908590610c26908690611642565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d6020811015610ca057600080fd5b50519050610a2c565b506000610a2c565b600160a060020a0383166000908152600860205260409020610cd3908361165a565b9050610a2c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b6000821515610d42574392505b6000600b60019054906101000a9004600160a060020a0316600160a060020a0316635b7b72c130868a8a8a896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610df5578181015183820152602001610ddd565b50505050905090810190601f168015610e225780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610ea757600080fd5b505af1158015610ebb573d6000803e3d6000fd5b505050506040513d6020811015610ed157600080fd5b5051604080517f3cebb8230000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a03831691633cebb8239160248082019260009290919082900301818387803b158015610f3757600080fd5b505af1158015610f4b573d6000803e3d6000fd5b5050604080518781529051600160a060020a03851693507f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade92509081900360200190a29695505050505050565b6000610a2c8243610b92565b600554600160a060020a031681565b60008054600160a060020a03163314610fcb57600080fd5b6000610fd5610a38565b9050828101811115610fe657600080fd5b6000610ff185610f98565b905083810181111561100257600080fd5b61100f600a858401611773565b600160a060020a038516600090815260086020526040902061103390828601611773565b604080518581529051600160a060020a038716916000916000805160206118618339815191529181900360200190a3506001949350505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b600a5460009015806110fa575081600a60008154811015156110e657fe5b906000526020600020906002020160000154115b156111a557600554600160a060020a03161561119d57600554600654600160a060020a039091169063981b24d090611133908590611642565b6040518263ffffffff1660e060020a0281526004018082815260200191505060206040518083038186803b15801561116a57600080fd5b505afa15801561117e573d6000803e3d6000fd5b505050506040513d602081101561119457600080fd5b50519050610822565b506000610822565b6111b0600a8361165a565b9050610822565b600b5460009060ff1615156111cb57600080fd5b6111d6338484611437565b50600192915050565b600b5460ff1681565b60065481565b60006111fa84846108b4565b151561120557600080fd5b6040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015611298578181015183820152602001611280565b50505050905090810190601f1680156112c55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b506001979650505050505050565b60008054600160a060020a0316331461132157600080fd5b600061132b610a38565b90508281101561133a57600080fd5b600061134585610f98565b90508381101561135457600080fd5b611361600a858403611773565b600160a060020a038516600090815260086020526040902061138590858303611773565b604080518581529051600091600160a060020a038816916000805160206118618339815191529181900360200190a3506001949350505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600b546101009004600160a060020a031681565b600054600160a060020a0316331461141557600080fd5b600b805460ff1916911515919091179055565b600054600160a060020a031681565b80151561147c5781600160a060020a031683600160a060020a0316600080516020611861833981519152836040518082815260200191505060405180910390a361163d565b600654431161148a57600080fd5b600160a060020a038216158015906114ab5750600160a060020a0382163014155b15156114b657600080fd5b60006114c28443610b92565b9050818110156114d157600080fd5b6000546114e690600160a060020a03166107fd565b1561159c5760008054604080517f4a393149000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301526044820187905291519190921692634a39314992606480820193602093909283900390910190829087803b15801561156557600080fd5b505af1158015611579573d6000803e3d6000fd5b505050506040513d602081101561158f57600080fd5b5051151561159c57600080fd5b600160a060020a03841660009081526008602052604090206115c090838303611773565b60006115cc8443610b92565b90508281018111156115dd57600080fd5b600160a060020a038416600090815260086020526040902061160190828501611773565b83600160a060020a031685600160a060020a0316600080516020611861833981519152856040518082815260200191505060405180910390a350505b505050565b60008183106116515781611653565b825b9392505050565b8154600090151561166d57506000610a2c565b82548390600019810190811061167f57fe5b600091825260209091206002909102015482106116c1578254839060001981019081106116a857fe5b9060005260206000209060020201600101549050610a2c565b8260008154811015156116d057fe5b9060005260206000209060020201600001548210156116f157506000610a2c565b825460009060001901815b8282111561174857600260018385010104905084868281548110151561171e57fe5b60009182526020909120600290910201541161173c57809250611743565b6001810391505b6116fc565b858381548110151561175657fe5b906000526020600020906002020160010154935050505092915050565b815415806117a45750815443908390600019810190811061179057fe5b906000526020600020906002020160000154105b156117e757815460009083906117bd8260018301611818565b815481106117c757fe5b600091825260209091204360029092020190815560010182905550611814565b8154600090839060001981019081106117fc57fe5b60009182526020909120600160029092020101829055505b5050565b81548183558181111561163d5760008381526020902061163d91610a469160029182028101918502015b8082111561185c5760008082556001820155600201611842565b509056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209896014b65802db6f577fe44d865d3c876a0b6a07f849a4a0d35fa86eec142220029000000000000000000000000034148355e711720a373c9efb537342d0e96fee6000000000000000000000000034148355e711720a373c9efb537342d0e96fee6

Deployed Bytecode

0x60806040526004361061011e5760e060020a600035046306fdde0381146101de578063095ea7b31461026857806317634514146102b557806318160ddd146102dc57806323b872dd146102f1578063313ce567146103345780633cebb8231461035f5780634ee2cd7e1461039257806354fd4d50146103cb5780636638c087146103e057806370a082311461054857806380a540011461057b578063827f32c01461059057806395d89b41146105c9578063981b24d0146105de578063a9059cbb14610608578063bef97c8714610641578063c5bcc4f114610656578063cae9ca511461066b578063d3ce77fe14610733578063dd62ed3e1461076c578063e77772fe146107a7578063f41e60c5146107bc578063f77c4791146107e8575b60005461013390600160a060020a03166107fd565b151561013e57600080fd5b600054604080517ff48c30540000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a039092169163f48c3054913491602480830192602092919082900301818588803b1580156101a457600080fd5b505af11580156101b8573d6000803e3d6000fd5b50505050506040513d60208110156101cf57600080fd5b505115156101dc57600080fd5b005b3480156101ea57600080fd5b506101f3610827565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022d578181015183820152602001610215565b50505050905090810190601f16801561025a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027457600080fd5b506102a16004803603604081101561028b57600080fd5b50600160a060020a0381351690602001356108b4565b604080519115158252519081900360200190f35b3480156102c157600080fd5b506102ca610a32565b60408051918252519081900360200190f35b3480156102e857600080fd5b506102ca610a38565b3480156102fd57600080fd5b506102a16004803603606081101561031457600080fd5b50600160a060020a03813581169160208101359091169060400135610a49565b34801561034057600080fd5b50610349610b0a565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506101dc6004803603602081101561038257600080fd5b5035600160a060020a0316610b13565b34801561039e57600080fd5b506102ca600480360360408110156103b557600080fd5b50600160a060020a038135169060200135610b92565b3480156103d757600080fd5b506101f3610cda565b3480156103ec57600080fd5b5061052c600480360360a081101561040357600080fd5b81019060208101813564010000000081111561041e57600080fd5b82018360208201111561043057600080fd5b8035906020019184600183028401116401000000008311171561045257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff8535169590949093506040810192506020013590506401000000008111156104b057600080fd5b8201836020820111156104c257600080fd5b803590602001918460018302840111640100000000831117156104e457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610d35565b60408051600160a060020a039092168252519081900360200190f35b34801561055457600080fd5b506102ca6004803603602081101561056b57600080fd5b5035600160a060020a0316610f98565b34801561058757600080fd5b5061052c610fa4565b34801561059c57600080fd5b506102a1600480360360408110156105b357600080fd5b50600160a060020a038135169060200135610fb3565b3480156105d557600080fd5b506101f361106d565b3480156105ea57600080fd5b506102ca6004803603602081101561060157600080fd5b50356110c8565b34801561061457600080fd5b506102a16004803603604081101561062b57600080fd5b50600160a060020a0381351690602001356111b7565b34801561064d57600080fd5b506102a16111df565b34801561066257600080fd5b506102ca6111e8565b34801561067757600080fd5b506102a16004803603606081101561068e57600080fd5b600160a060020a03823516916020810135918101906060810160408201356401000000008111156106be57600080fd5b8201836020820111156106d057600080fd5b803590602001918460018302840111640100000000831117156106f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ee945050505050565b34801561073f57600080fd5b506102a16004803603604081101561075657600080fd5b50600160a060020a038135169060200135611309565b34801561077857600080fd5b506102ca6004803603604081101561078f57600080fd5b50600160a060020a03813581169160200135166113bf565b3480156107b357600080fd5b5061052c6113ea565b3480156107c857600080fd5b506101dc600480360360208110156107df57600080fd5b503515156113fe565b3480156107f457600080fd5b5061052c611428565b600080600160a060020a038316151561081a576000915050610822565b50506000813b115b919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b600b5460009060ff1615156108c857600080fd5b8115806108f65750336000908152600960209081526040808320600160a060020a0387168452909152902054155b151561090157600080fd5b60005461091690600160a060020a03166107fd565b156109ca5760008054604080517fda682aeb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169263da682aeb92606480820193602093909283900390910190829087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d60208110156109bd57600080fd5b505115156109ca57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6000610a43436110c8565b90505b90565b60008054600160a060020a03163314610af557600b5460ff161515610a6d57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020546000191115610af557600160a060020a0384166000908152600960209081526040808320338452909152902054821115610aca57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020805483900390555b610b00848484611437565b5060019392505050565b60025460ff1681565b600054600160a060020a03163314610b2a57600080fd5b60008054604051600160a060020a03808516939216917fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f291a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600860205260408120541580610beb5750600160a060020a038316600090815260086020526040812080548492908110610bd757fe5b906000526020600020906002020160000154115b15610cb157600554600160a060020a031615610ca957600554600654600160a060020a0390911690634ee2cd7e908590610c26908690611642565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d6020811015610ca057600080fd5b50519050610a2c565b506000610a2c565b600160a060020a0383166000908152600860205260409020610cd3908361165a565b9050610a2c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b6000821515610d42574392505b6000600b60019054906101000a9004600160a060020a0316600160a060020a0316635b7b72c130868a8a8a896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610df5578181015183820152602001610ddd565b50505050905090810190601f168015610e225780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610ea757600080fd5b505af1158015610ebb573d6000803e3d6000fd5b505050506040513d6020811015610ed157600080fd5b5051604080517f3cebb8230000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a03831691633cebb8239160248082019260009290919082900301818387803b158015610f3757600080fd5b505af1158015610f4b573d6000803e3d6000fd5b5050604080518781529051600160a060020a03851693507f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade92509081900360200190a29695505050505050565b6000610a2c8243610b92565b600554600160a060020a031681565b60008054600160a060020a03163314610fcb57600080fd5b6000610fd5610a38565b9050828101811115610fe657600080fd5b6000610ff185610f98565b905083810181111561100257600080fd5b61100f600a858401611773565b600160a060020a038516600090815260086020526040902061103390828601611773565b604080518581529051600160a060020a038716916000916000805160206118618339815191529181900360200190a3506001949350505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b600a5460009015806110fa575081600a60008154811015156110e657fe5b906000526020600020906002020160000154115b156111a557600554600160a060020a03161561119d57600554600654600160a060020a039091169063981b24d090611133908590611642565b6040518263ffffffff1660e060020a0281526004018082815260200191505060206040518083038186803b15801561116a57600080fd5b505afa15801561117e573d6000803e3d6000fd5b505050506040513d602081101561119457600080fd5b50519050610822565b506000610822565b6111b0600a8361165a565b9050610822565b600b5460009060ff1615156111cb57600080fd5b6111d6338484611437565b50600192915050565b600b5460ff1681565b60065481565b60006111fa84846108b4565b151561120557600080fd5b6040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015611298578181015183820152602001611280565b50505050905090810190601f1680156112c55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b506001979650505050505050565b60008054600160a060020a0316331461132157600080fd5b600061132b610a38565b90508281101561133a57600080fd5b600061134585610f98565b90508381101561135457600080fd5b611361600a858403611773565b600160a060020a038516600090815260086020526040902061138590858303611773565b604080518581529051600091600160a060020a038816916000805160206118618339815191529181900360200190a3506001949350505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600b546101009004600160a060020a031681565b600054600160a060020a0316331461141557600080fd5b600b805460ff1916911515919091179055565b600054600160a060020a031681565b80151561147c5781600160a060020a031683600160a060020a0316600080516020611861833981519152836040518082815260200191505060405180910390a361163d565b600654431161148a57600080fd5b600160a060020a038216158015906114ab5750600160a060020a0382163014155b15156114b657600080fd5b60006114c28443610b92565b9050818110156114d157600080fd5b6000546114e690600160a060020a03166107fd565b1561159c5760008054604080517f4a393149000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301526044820187905291519190921692634a39314992606480820193602093909283900390910190829087803b15801561156557600080fd5b505af1158015611579573d6000803e3d6000fd5b505050506040513d602081101561158f57600080fd5b5051151561159c57600080fd5b600160a060020a03841660009081526008602052604090206115c090838303611773565b60006115cc8443610b92565b90508281018111156115dd57600080fd5b600160a060020a038416600090815260086020526040902061160190828501611773565b83600160a060020a031685600160a060020a0316600080516020611861833981519152856040518082815260200191505060405180910390a350505b505050565b60008183106116515781611653565b825b9392505050565b8154600090151561166d57506000610a2c565b82548390600019810190811061167f57fe5b600091825260209091206002909102015482106116c1578254839060001981019081106116a857fe5b9060005260206000209060020201600101549050610a2c565b8260008154811015156116d057fe5b9060005260206000209060020201600001548210156116f157506000610a2c565b825460009060001901815b8282111561174857600260018385010104905084868281548110151561171e57fe5b60009182526020909120600290910201541161173c57809250611743565b6001810391505b6116fc565b858381548110151561175657fe5b906000526020600020906002020160010154935050505092915050565b815415806117a45750815443908390600019810190811061179057fe5b906000526020600020906002020160000154105b156117e757815460009083906117bd8260018301611818565b815481106117c757fe5b600091825260209091204360029092020190815560010182905550611814565b8154600090839060001981019081106117fc57fe5b60009182526020909120600160029092020101829055505b5050565b81548183558181111561163d5760008381526020902061163d91610a469160029182028101918502015b8082111561185c5760008082556001820155600201611842565b509056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209896014b65802db6f577fe44d865d3c876a0b6a07f849a4a0d35fa86eec142220029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000034148355e711720a373c9efb537342d0e96fee6000000000000000000000000034148355e711720a373c9efb537342d0e96fee6

-----Decoded View---------------
Arg [0] : _tokenFactory (address): 0x034148355E711720a373C9EFB537342d0e96FEe6
Arg [1] : initialOwner (address): 0x034148355E711720a373C9EFB537342d0e96FEe6

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000034148355e711720a373c9efb537342d0e96fee6
Arg [1] : 000000000000000000000000034148355e711720a373c9efb537342d0e96fee6


Deployed Bytecode Sourcemap

23438:483:0:-;;;;;;;;-1:-1:-1;;;23438:483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21560:10;;21549:22;;-1:-1:-1;;;;;21560:10:0;21549;:22::i;:::-;21541:31;;;;;;;;21601:10;;21585:69;;;;;;21643:10;21585:69;;;;;;-1:-1:-1;;;;;21601:10:0;;;;21585:40;;21632:9;;21585:69;;;;;;;;;;;;;;21632:9;21601:10;21585:69;;;5:2:-1;;;;30:1;27;20:12;5:2;21585:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21585:69:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21585:69:0;21577:78;;;;;;;;23438:483;4177:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4177:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4177:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11318:767;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11318:767:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11318:767:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5271:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5271:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;13454:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13454:94:0;;;:::i;8253:693::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8253:693:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8253:693:0;;;;;;;;;;;;;;;;;:::i;4255:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4255:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2204:165;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2204:165:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2204:165:0;-1:-1:-1;;;;;2204:165:0;;:::i;13898:820::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13898:820:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13898:820:0;;;;;;;;:::i;4397:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4397:31:0;;;:::i;16453:664::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16453:664:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;16453:664:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;16453:664:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;16453:664:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;16453:664:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;16453:664:0;;;;;;;;;;;-1:-1:-1;16453:664:0;;;;-1:-1:-1;16453:664:0;;;;-1:-1:-1;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;16453:664:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;16453:664:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;16453:664:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;16453:664:0;;-1:-1:-1;;16453:664:0;;;-1:-1:-1;;;16453:664:0;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;16453:664:0;;;;;;;;;;;;;;10809:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10809:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10809:123:0;-1:-1:-1;;;;;10809:123:0;;:::i;4978:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4978:30:0;;;:::i;17443:545::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17443:545:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17443:545:0;;;;;;;;:::i;4334:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4334:20:0;;;:::i;14924:809::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14924:809:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14924:809:0;;:::i;7746:170::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7746:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7746:170:0;;;;;;;;:::i;5834:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5834:28:0;;;:::i;5160:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5160:31:0;;;:::i;13032:303::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13032:303:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;13032:303:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;13032:303:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13032:303:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13032:303:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;13032:303:0;;-1:-1:-1;13032:303:0;;-1:-1:-1;;;;;13032:303:0:i;18210:469::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18210:469:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18210:469:0;;;;;;;;:::i;12393:137::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12393:137:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12393:137:0;;;;;;;;;;:::i;5917:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5917:38:0;;;:::i;18902:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18902:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18902:117:0;;;;:::i;2004:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2004:25:0;;;:::i;20921:192::-;20978:4;;-1:-1:-1;;;;;21007:19:0;;;21003:37;;;21035:5;21028:12;;;;;21003:37;-1:-1:-1;;21107:1:0;21068:18;;21102:6;20921:192;;;;:::o;4177:18::-;;;;;;;;;;;;;;;-1:-1:-1;;4177:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11318:767::-;11413:16;;11386:12;;11413:16;;11405:25;;;;;;;;11729:12;;;11728:54;;-1:-1:-1;11755:10:0;11747:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11747:29:0;;;;;;;;;;:34;11728:54;11720:63;;;;;;;;11868:10;;11857:22;;-1:-1:-1;;;;;11868:10:0;11857;:22::i;:::-;11853:117;;;11911:10;;;11895:68;;;;;;11933:10;11895:68;;;;-1:-1:-1;;;;;11895:68:0;;;;;;;;;;;;;;;11911:10;;;;;11895:37;;:68;;;;;;;;;;;;;;;;;;11911:10;11895:68;;;5:2:-1;;;;30:1;27;20:12;5:2;11895:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11895:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11895:68:0;11887:77;;;;;;;;11984:10;11976:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11976:29:0;;;;;;;;;;;;:39;;;12025;;;;;;;11976:29;;11984:10;12025:39;;;;;;;;;;;-1:-1:-1;12076:4:0;11318:767;;;;;:::o;5271:25::-;;;;:::o;13454:94::-;13498:4;13516:27;13530:12;13516:13;:27::i;:::-;13509:34;;13454:94;;:::o;8253:693::-;8338:12;8633:10;;-1:-1:-1;;;;;8633:10:0;8619;:24;8615:275;;8659:16;;;;8651:25;;;;;;;;-1:-1:-1;;;;;8742:14:0;;;;;;:7;:14;;;;;;;;8757:10;8742:26;;;;;;;;-1:-1:-1;;;8738:147:0;;;-1:-1:-1;;;;;8796:14:0;;;;;;:7;:14;;;;;;;;8811:10;8796:26;;;;;;;;:37;-1:-1:-1;8796:37:0;8788:46;;;;;;-1:-1:-1;;;;;8841:14:0;;;;;;:7;:14;;;;;;;;8856:10;8841:26;;;;;;;:37;;;;;;;8738:147;8894:31;8905:5;8912:3;8917:7;8894:10;:31::i;:::-;-1:-1:-1;8937:4:0;8253:693;;;;;:::o;4255:21::-;;;;;;:::o;2204:165::-;1982:10;;-1:-1:-1;;;;;1982:10:0;1968;:24;1960:33;;;;;;2305:10;;;2286:46;;-1:-1:-1;;;;;2286:46:0;;;;2305:10;;;2286:46;;;2337:10;:27;;-1:-1:-1;;2337:27:0;-1:-1:-1;;;;;2337:27:0;;;;;;;;;;2204:165::o;13898:820::-;-1:-1:-1;;;;;14297:16:0;;13977:4;14297:16;;;:8;:16;;;;;:23;:28;;14296:84;;-1:-1:-1;;;;;;14335:16:0;;;;;;:8;:16;;;;;:19;;14367:12;;14335:16;:19;;;;;;;;;;;;;;;;:29;;;:44;14296:84;14292:422;;;14400:11;;-1:-1:-1;;;;;14400:11:0;14392:34;14388:182;;14442:11;;14492:19;;-1:-1:-1;;;;;14442:11:0;;;;:23;;14466:6;;14474:38;;14478:12;;14474:3;:38::i;:::-;14442:71;;;;;-1:-1:-1;;;14442:71:0;;;;;;;-1:-1:-1;;;;;14442:71:0;-1:-1:-1;;;;;14442:71:0;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14442:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14442:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14442:71:0;;-1:-1:-1;14435:78:0;;14388:182;-1:-1:-1;14562:1:0;14555:8;;14292:422;-1:-1:-1;;;;;14677:16:0;;;;;;:8;:16;;;;;14666:42;;14695:12;14666:10;:42::i;:::-;14659:49;;;;4397:31;;;;;;;;;;;;;;;-1:-1:-1;;4397:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16453:664;16647:7;16665:19;;16661:54;;;16703:12;16686:29;;16661:54;16720:22;16745:12;;;;;;;;;-1:-1:-1;;;;;16745:12:0;-1:-1:-1;;;;;16745:29:0;;16788:4;16799:14;16819:15;16840:18;16864:17;16887;16745:164;;;;;-1:-1:-1;;;16745:164:0;;;;;;;-1:-1:-1;;;;;16745:164:0;-1:-1:-1;;;;;16745:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16745:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16745:164:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16745:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16745:164:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16745:164:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16745:164:0;16916:39;;;;;;16944:10;16916:39;;;;;;16745:164;;-1:-1:-1;;;;;;16916:27:0;;;;;:39;;;;;-1:-1:-1;;16916:39:0;;;;;;;;-1:-1:-1;16916:27:0;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;16916:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;17031:50:0;;;;;;;;-1:-1:-1;;;;;17031:50:0;;;-1:-1:-1;17031:50:0;;-1:-1:-1;17031:50:0;;;;;;;;17101:10;16453:664;-1:-1:-1;;;;;;16453:664:0:o;10809:123::-;10865:15;10894:33;10906:6;10914:12;10894:11;:33::i;4978:30::-;;;-1:-1:-1;;;;;4978:30:0;;:::o;17443:545::-;17530:4;1982:10;;-1:-1:-1;;;;;1982:10:0;1968;:24;1960:33;;;;;;17541:19;17563:13;:11;:13::i;:::-;17541:35;-1:-1:-1;17589:24:0;;;:42;-1:-1:-1;17589:42:0;17581:51;;;;;;17659:22;17684:17;17694:6;17684:9;:17::i;:::-;17659:42;-1:-1:-1;17714:27:0;;;:48;-1:-1:-1;17714:48:0;17706:57;;;;;;17790:62;17807:18;17844:7;17827:14;:24;17790:16;:62::i;:::-;-1:-1:-1;;;;;17874:16:0;;;;;;:8;:16;;;;;17857:63;;17892:27;;;17857:16;:63::i;:::-;17930:37;;;;;;;;-1:-1:-1;;;;;17930:37:0;;;17947:1;;-1:-1:-1;;;;;;;;;;;17930:37:0;;;;;;;;-1:-1:-1;17979:4:0;;17443:545;-1:-1:-1;;;;17443:545:0:o;4334:20::-;;;;;;;;;;;;;;;-1:-1:-1;;4334:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14924:809;15330:18;:25;14986:4;;15330:30;;15329:88;;;15404:12;15370:18;15389:1;15370:21;;;;;;;;;;;;;;;;;;;;:31;;;:46;15329:88;15325:404;;;15437:11;;-1:-1:-1;;;;;15437:11:0;15429:34;15425:154;;15479:11;;15523:19;;-1:-1:-1;;;;;15479:11:0;;;;:25;;15505:38;;15509:12;;15505:3;:38::i;:::-;15479:65;;;;;-1:-1:-1;;;15479:65:0;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15479:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15479:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15479:65:0;;-1:-1:-1;15472:72:0;;15425:154;-1:-1:-1;15571:1:0;15564:8;;15325:404;15679:44;15690:18;15710:12;15679:10;:44::i;:::-;15672:51;;;;7746:170;7837:16;;7810:12;;7837:16;;7829:25;;;;;;;;7859:36;7870:10;7882:3;7887:7;7859:10;:36::i;:::-;-1:-1:-1;7907:4:0;7746:170;;;;:::o;5834:28::-;;;;;;:::o;5160:31::-;;;;:::o;13032:303::-;13134:12;13161:26;13169:8;13179:7;13161;:26::i;:::-;13153:35;;;;;;;;13195:117;;;;;13249:10;13195:117;;;;;;;;;;;;13286:4;13195:117;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13195:48:0;;;;;13249:10;13265:7;;13286:4;13297:10;;13195:117;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13195:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13195:117:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;13326:4:0;;13032:303;-1:-1:-1;;;;;;;13032:303:0:o;18210:469::-;18296:4;1982:10;;-1:-1:-1;;;;;1982:10:0;1968;:24;1960:33;;;;;;18307:19;18329:13;:11;:13::i;:::-;18307:35;-1:-1:-1;18355:25:0;;;;18347:34;;;;;;18386:24;18413:17;18423:6;18413:9;:17::i;:::-;18386:44;-1:-1:-1;18443:30:0;;;;18435:39;;;;;;18479:62;18496:18;18533:7;18516:14;:24;18479:16;:62::i;:::-;-1:-1:-1;;;;;18563:16:0;;;;;;:8;:16;;;;;18546:65;;18581:29;;;18546:16;:65::i;:::-;18621:37;;;;;;;;18646:1;;-1:-1:-1;;;;;18621:37:0;;;-1:-1:-1;;;;;;;;;;;18621:37:0;;;;;;;;-1:-1:-1;18670:4:0;;18210:469;-1:-1:-1;;;;18210:469:0:o;12393:137::-;-1:-1:-1;;;;;12500:15:0;;;12469:17;12500:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;12393:137::o;5917:38::-;;;;;;-1:-1:-1;;;;;5917:38:0;;:::o;18902:117::-;1982:10;;-1:-1:-1;;;;;1982:10:0;1968;:24;1960:33;;;;;;18978:16;:36;;-1:-1:-1;;18978:36:0;;;;;;;;;;18902:117::o;2004:25::-;;;-1:-1:-1;;;;;2004:25:0;;:::o;9312:1367::-;9396:12;;9392:133;;;9437:3;-1:-1:-1;;;;;9421:29:0;9430:5;-1:-1:-1;;;;;9421:29:0;-1:-1:-1;;;;;;;;;;;9442:7:0;9421:29;;;;;;;;;;;;;;;;;;9513:7;;9392:133;9539:19;;9561:12;-1:-1:-1;9531:43:0;;;;;;-1:-1:-1;;;;;9654:17:0;;;;;;9653:45;;-1:-1:-1;;;;;;9677:20:0;;9692:4;9677:20;;9653:45;9645:54;;;;;;;;9810:27;9840:32;9852:5;9859:12;9840:11;:32::i;:::-;9810:62;-1:-1:-1;9887:30:0;;;;9879:39;;;;;;9990:10;;9979:22;;-1:-1:-1;;;;;9990:10:0;9979;:22::i;:::-;9975:108;;;10033:10;;;10017:59;;;;;;-1:-1:-1;;;;;10017:59:0;;;;;;;;;;;;;;;;;;;;;;10033:10;;;;;10017:38;;:59;;;;;;;;;;;;;;;;;;10033:10;10017:59;;;5:2:-1;;;;30:1;27;20:12;5:2;10017:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10017:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10017:59:0;10009:68;;;;;;;;-1:-1:-1;;;;;10204:15:0;;;;;;:8;:15;;;;;10187:64;;10221:29;;;10187:16;:64::i;:::-;10357:25;10385:30;10397:3;10402:12;10385:11;:30::i;:::-;10357:58;-1:-1:-1;10428:27:0;;;:48;-1:-1:-1;10428:48:0;10420:57;;;;;;-1:-1:-1;;;;;10521:13:0;;;;;;:8;:13;;;;;10504:60;;10536:27;;;10504:16;:60::i;:::-;10659:3;-1:-1:-1;;;;;10643:29:0;10652:5;-1:-1:-1;;;;;10643:29:0;-1:-1:-1;;;;;;;;;;;10664:7:0;10643:29;;;;;;;;;;;;;;;;;;9312:1367;;;;;;:::o;21182:88::-;21234:4;21256:1;21252;:5;:13;;21264:1;21252:13;;;21260:1;21252:13;21245:20;21182:88;-1:-1:-1;;;21182:88:0:o;19388:658::-;19495:18;;19480:4;;19495:23;19491:37;;;-1:-1:-1;19527:1:0;19520:8;;19491:37;19597:18;;19585:11;;-1:-1:-1;;19597:20:0;;;19585:33;;;;;;;;;;;;;;;;;;;:43;19575:53;;19571:109;;19653:18;;19641:11;;-1:-1:-1;;19653:20:0;;;19641:33;;;;;;;;;;;;;;;;:39;;;19634:46;;;;19571:109;19698:11;19710:1;19698:14;;;;;;;;;;;;;;;;;;;;:24;;;19689:6;:33;19685:47;;;-1:-1:-1;19731:1:0;19724:8;;19685:47;19813:18;;19785:8;;-1:-1:-1;;19813:20:0;19785:8;19855:153;19868:3;19862;:9;19855:153;;;19902:1;19898;19886:9;;;:13;19885:18;19879:24;;19941:6;19913:11;19925:3;19913:16;;;;;;;;;;;;;;;;;;;;;;;:26;:34;19909:94;;19962:3;19956:9;;19909:94;;;19995:1;19991:3;:5;19985:11;;19909:94;19855:153;;;20019:11;20031:3;20019:16;;;;;;;;;;;;;;;;;;;;:22;;;20012:29;;;;;19388:658;;;;:::o;20255:502::-;20350:18;;:23;;20349:94;;-1:-1:-1;20395:18:0;;20430:12;;20383:11;;-1:-1:-1;;20395:21:0;;;20383:34;;;;;;;;;;;;;;;;:44;;;:59;20349:94;20345:408;;;20499:20;;20451:32;;20486:11;;20499:20;20486:11;20499:20;;;;:::i;:::-;20486:35;;;;;;;;;;;;;;;;20562:12;20486:35;;;;;20527:48;;;20581:19;;:37;;;-1:-1:-1;20345:408:0;;;20683:18;;20636:32;;20671:11;;-1:-1:-1;;20683:20:0;;;20671:33;;;;;;;;;;;;;;20710:19;20671:33;;;;;20710:19;:37;;;-1:-1:-1;20345:408:0;20255:502;;:::o;23438:483::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://9896014b65802db6f577fe44d865d3c876a0b6a07f849a4a0d35fa86eec14222
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.