ETH Price: $2,700.31 (+4.92%)
 

Overview

Max Total Supply

100,000,000 AQER

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
maksimi4.eth
Balance
1,000 AQER

Value
$0.00
0xffe1ce2814116b47b5f4d20a208b773dcc1fef20
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:
TokenBurn

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-10-24
*/

pragma solidity ^0.4.23;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


/**
 * @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;
	address public newOwner;

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

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

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

	function transferOwnership(address _newOwner) public onlyOwner {
		require(address(0) != _newOwner, "address(0) != _newOwner");
		newOwner = _newOwner;
	}

	function acceptOwnership() public {
		require(msg.sender == newOwner, "msg.sender == newOwner");
		emit OwnershipTransferred(owner, msg.sender);
		owner = msg.sender;
		newOwner = address(0);
	}
}


/**
 * @title Authorizable
 * @dev The Authorizable contract has authorized addresses, and provides basic authorization control
 * functions, this simplifies the implementation of "multiple user permissions".
 */
contract Authorizable is Ownable {
  mapping(address => bool) public authorized;

  event AuthorizationSet(address indexed addressAuthorized, bool indexed authorization);

  /**
   * @dev The Authorizable constructor sets the first `authorized` of the contract to the sender
   * account.
   */
  constructor() public {
	authorized[msg.sender] = true;
  }

  /**
   * @dev Throws if called by any account other than the authorized.
   */
  modifier onlyAuthorized() {
    require(authorized[msg.sender]);
    _;
  }

 /**
   * @dev Allows the current owner to set an authorization.
   * @param addressAuthorized The address to change authorization.
   */
  function setAuthorized(address addressAuthorized, bool authorization) onlyOwner public {
    emit AuthorizationSet(addressAuthorized, authorization);
    authorized[addressAuthorized] = authorization;
  }

}


/**
 * @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 from an address to another specified address
  * @param _sender The address to transfer from.
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transferFunction(address _sender, address _to, uint256 _value) internal returns (bool) {
    require(_to != address(0));
    require(_to != address(this));
    require(_value <= balances[_sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[_sender] = balances[_sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(_sender, _to, _value);
    return true;
  }

  /**
  * @dev transfer token for a specified address (BasicToken transfer method)
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
	return transferFunction(msg.sender, _to, _value);
  }

  /**
  * @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 ERC223TokenCompatible is BasicToken {
  using SafeMath for uint256;

  event Transfer(address indexed from, address indexed to, uint256 value, bytes indexed data);

  // Function that is called when a user or another contract wants to transfer funds .
	function transfer(address _to, uint256 _value, bytes _data, string _custom_fallback) public returns (bool success) {
		require(_to != address(0));
        require(_to != address(this));
		require(_value <= balances[msg.sender]);
		// SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
		if( isContract(_to) ) {
			require(_to.call.value(0)(bytes4(keccak256(_custom_fallback)), msg.sender, _value, _data));
		}
		emit Transfer(msg.sender, _to, _value, _data);
		return true;
	}

	// Function that is called when a user or another contract wants to transfer funds .
	function transfer(address _to, uint256 _value, bytes _data) public returns (bool success) {
		return transfer( _to, _value, _data, "tokenFallback(address,uint256,bytes)");
	}

	//assemble the given address bytecode. If bytecode exists then the _addr is a contract.
	function isContract(address _addr) private view 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);
    }
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_to != address(this));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit 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;
    emit 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) public returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public 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);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


/**
 * @title Startable
 * @dev Base contract which allows owner to implement an start mechanism without ever being stopped more.
 */
contract Startable is Ownable, Authorizable {
  event Start();

  bool public started = false;

  /**
   * @dev Modifier to make a function callable only when the contract is started.
   */
  modifier whenStarted() {
	require( started || authorized[msg.sender] );
    _;
  }

  /**
   * @dev called by the owner to start, go to normal state
   */
  function start() onlyOwner public {
    started = true;
    emit Start();
  }
}

/**
 * @title Startable token
 *
 * @dev StandardToken modified with startable transfers.
 **/

contract StartToken is Startable, ERC223TokenCompatible, StandardToken {

  /** ******************************** */
  /** START: ADDED BY HORIZON GLOBEX   */
  /** ******************************** */
  
  
    // KYC submission hashes accepted by KYC service provider for AML/KYC review.
    bytes32[] public kycHashes;

    // All users that have passed the external KYC verification checks.
    address[] public kycValidated;

	
    /**
     * The hash for all Know Your Customer information is calculated outside but stored here.
     * This storage will be cleared once the ICO completes, see closeIco().
     *
     * ---- ICO-Platform Note ----
     * The horizon-globex.com ICO platform's KYC app will register a hash of the Contributors
     * KYC submission on the blockchain. Our Swiss financial-intermediary KYC provider will be 
     * notified of the submission and retrieve the Contributor data for formal review.
     *
     * All Contributors must successfully complete our ICO KYC review prior to being allowed on-board.
     * -- End ICO-Platform Note --
     *
     * @param sha   The hash of the customer data.
    */
    function setKycHash(bytes32 sha) public onlyOwner {
        kycHashes.push(sha);
    }

    /**
     * A user has passed KYC verification, store them on the blockchain in the order it happened.
     * This will be cleared once the ICO completes, see closeIco().
     *
     * ---- ICO-Platform Note ----
     * The horizon-globex.com ICO platform's registered KYC provider submits their approval
     * for this Contributor to particpate using the ICO-Platform portal. 
     *
     * Each Contributor will then be sent the Ethereum, Bitcoin and IBAN account numbers to
     * deposit their Approved Contribution in exchange for VOX Tokens.
     * -- End ICO-Platform Note --
     *
     * @param who   The user's address.
     */
    function kycApproved(address who) public onlyOwner {
        require(who != 0x0, "Cannot approve a null address.");
        kycValidated.push(who);
    }

	
    /**
     * Retrieve the KYC hash from the specified index.
     *
     * @param   index   The index into the array.
     */
    function getKycHash(uint256 index) public view returns (bytes32) {
        return kycHashes[index];
    }

    /**
     * Retrieve the validated KYC address from the specified index.
     *
     * @param   index   The index into the array.
     */
    function getKycApproved(uint256 index) public view returns (address) {
        return kycValidated[index];
    }

	
    /**
     * During the ICO phase the owner will allocate tokens once KYC completes and funds are deposited.
     *
     * ---- ICO-Platform Note ----
     * The horizon-globex.com ICO platform's portal shall issue VOX Token to Contributors on receipt of 
     * the Approved Contribution funds at the KYC providers Escrow account/wallets.
     * Only after VOX Tokens are issued to the Contributor can the Swiss KYC provider allow the transfer
     * of funds from their Escrow to Company.
     *
     * -- End ICO-Platform Note --
     *
     * @param to       The recipient of the tokens.
     * @param value    The number of tokens to send.
     */
    function icoTransfer(address to, uint256 value) public onlyOwner {
        // If an attempt is made to transfer more tokens than owned, transfer the remainder.
        uint256 toTransfer = (value > (balances[msg.sender])) ? (balances[msg.sender]) : value;
        
        transferFunction(msg.sender, to, toTransfer);
    }

	/** ******************************** */
	/** END: ADDED BY HORIZON GLOBEX     */
	/** ******************************** */
  
  
  function transfer(address _to, uint256 _value) public whenStarted returns (bool) {
    return super.transfer(_to, _value);
  }
  function transfer(address _to, uint256 _value, bytes _data) public whenStarted returns (bool) {
    return super.transfer(_to, _value, _data);
  }
  function transfer(address _to, uint256 _value, bytes _data, string _custom_fallback) public whenStarted returns (bool) {
    return super.transfer(_to, _value, _data, _custom_fallback);
  }

  function transferFrom(address _from, address _to, uint256 _value) public whenStarted returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public whenStarted returns (bool) {
    return super.approve(_spender, _value);
  }

  function increaseApproval(address _spender, uint _addedValue) public whenStarted returns (bool success) {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public whenStarted returns (bool success) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

contract HumanStandardToken is StandardToken, StartToken {
    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
        approve(_spender, _value);
        require(_spender.call(bytes4(keccak256("receiveApproval(address,uint256,bytes)")), msg.sender, _value, _extraData));
        return true;
    }
}

contract BurnToken is StandardToken {
    uint256 public initialSupply;

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Function to burn tokens.
     * @param _burner The address of token holder.
     * @param _value The amount of token to be burned.
     */
    function burnFunction(address _burner, uint256 _value) internal returns (bool) {
        require(_value > 0);
		require(_value <= balances[_burner]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_burner] = balances[_burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        emit Burn(_burner, _value);
		return true;
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
	function burn(uint256 _value) public returns(bool) {
        return burnFunction(msg.sender, _value);
    }

	/**
	* @dev Burns tokens from one address
	* @param _from address The address which you want to burn tokens from
	* @param _value uint256 the amount of tokens to be burned
	*/
	function burnFrom(address _from, uint256 _value) public returns (bool) {
		require(_value <= allowed[_from][msg.sender]); // check if it has the budget allowed
		burnFunction(_from, _value);
		allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
		return true;
	}
}

contract Token is ERC223TokenCompatible, StandardToken, StartToken, HumanStandardToken  {
    string public name;
    string public symbol;
    uint8 public decimals;
    constructor(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) public {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalSupply;
        balances[msg.sender] = totalSupply;
    }
}

contract TokenBurn is Token, BurnToken {
    constructor(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) public
    Token(_name, _symbol, _decimals, _totalSupply) {
        initialSupply = totalSupply;
    }
}

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":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"started","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kycValidated","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"who","type":"address"}],"name":"kycApproved","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kycHashes","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addressAuthorized","type":"address"},{"name":"authorization","type":"bool"}],"name":"setAuthorized","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"sha","type":"bytes32"}],"name":"setKycHash","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"authorized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"icoTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"getKycHash","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"getKycApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"name":"Transfer","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"},{"anonymous":false,"inputs":[],"name":"Start","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addressAuthorized","type":"address"},{"indexed":true,"name":"authorization","type":"bool"}],"name":"AuthorizationSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040526003805460ff191690553480156200001b57600080fd5b5060405162001c1238038062001c1283398101604090815281516020808401518385015160608601516000805433600160a060020a031991821681178355600180549092168255825260028652969020805460ff19169096179095559285018051909591909101939185918591859185916200009d91600991870190620000f0565b508251620000b390600a906020860190620000f0565b50600b805460ff191660ff93909316929092179091556004819055336000908152600560205260409020819055600c555062000195945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013357805160ff191683800117855562000163565b8280016001018555821562000163579182015b828111156200016357825182559160200191906001019062000146565b506200017192915062000175565b5090565b6200019291905b808211156200017157600081556001016200017c565b90565b611a6d80620001a56000396000f30060806040526004361061017c5763ffffffff60e060020a60003504166306fdde038114610181578063095ea7b31461020b57806318160ddd146102435780631f2698ab1461026a57806323b872dd1461027f578063313ce567146102a9578063378dc3dc146102d4578063399b5a07146102e957806342966c681461031d57806366188463146103355780636641cc6414610359578063698e434b1461037c57806370a0823114610394578063711bf9b2146103b557806379ba5097146103db57806379cc6790146103f05780638da5cb5b1461041457806395d89b4114610429578063a9059cbb1461043e578063b160a86b14610462578063b91816111461047a578063be45fd621461049b578063be9a655514610504578063c6159a3514610519578063cae9ca511461053d578063cb3204a8146105a6578063d4ee1d90146105be578063d73dd623146105d3578063dd62ed3e146105f7578063f2fde38b1461061e578063f5c758c41461063f578063f6368f8a14610657575b600080fd5b34801561018d57600080fd5b506101966106fe565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d05781810151838201526020016101b8565b50505050905090810190601f1680156101fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021757600080fd5b5061022f600160a060020a036004351660243561078c565b604080519115158252519081900360200190f35b34801561024f57600080fd5b506102586107cb565b60408051918252519081900360200190f35b34801561027657600080fd5b5061022f6107d1565b34801561028b57600080fd5b5061022f600160a060020a03600435811690602435166044356107da565b3480156102b557600080fd5b506102be61081b565b6040805160ff9092168252519081900360200190f35b3480156102e057600080fd5b50610258610824565b3480156102f557600080fd5b5061030160043561082a565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b5061022f600435610852565b34801561034157600080fd5b5061022f600160a060020a0360043516602435610864565b34801561036557600080fd5b5061037a600160a060020a036004351661089c565b005b34801561038857600080fd5b506102586004356109ab565b3480156103a057600080fd5b50610258600160a060020a03600435166109ca565b3480156103c157600080fd5b5061037a600160a060020a036004351660243515156109e5565b3480156103e757600080fd5b5061037a610a98565b3480156103fc57600080fd5b5061022f600160a060020a0360043516602435610b5f565b34801561042057600080fd5b50610301610bfb565b34801561043557600080fd5b50610196610c0a565b34801561044a57600080fd5b5061022f600160a060020a0360043516602435610c65565b34801561046e57600080fd5b5061037a600435610c9d565b34801561048657600080fd5b5061022f600160a060020a0360043516610d22565b3480156104a757600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d379650505050505050565b34801561051057600080fd5b5061037a610d70565b34801561052557600080fd5b5061037a600160a060020a0360043516602435610df8565b34801561054957600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e899650505050505050565b3480156105b257600080fd5b50610258600435610fba565b3480156105ca57600080fd5b50610301610fdd565b3480156105df57600080fd5b5061022f600160a060020a0360043516602435610fec565b34801561060357600080fd5b50610258600160a060020a0360043581169060243516611024565b34801561062a57600080fd5b5061037a600160a060020a036004351661104f565b34801561064b57600080fd5b5061030160043561112e565b34801561066357600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061115a9650505050505050565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b60035460009060ff16806107af57503360009081526002602052604090205460ff165b15156107ba57600080fd5b6107c4838361119d565b9392505050565b60045481565b60035460ff1681565b60035460009060ff16806107fd57503360009081526002602052604090205460ff165b151561080857600080fd5b610813848484611203565b949350505050565b600b5460ff1681565b600c5481565b600880548290811061083857fe5b600091825260209091200154600160a060020a0316905081565b600061085e3383611392565b92915050565b60035460009060ff168061088757503360009081526002602052604090205460ff165b151561089257600080fd5b6107c48383611465565b600054600160a060020a031633146108ec576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600160a060020a038116151561094c576040805160e560020a62461bcd02815260206004820152601e60248201527f43616e6e6f7420617070726f76652061206e756c6c20616464726573732e0000604482015290519081900360640190fd5b600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60078054829081106109b957fe5b600091825260209091200154905081565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a03163314610a35576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b60405181151590600160a060020a038416907f5056a36abc1db1625034fdf114a164a0345b3ccf992fc1d51055e017375f473290600090a3600160a060020a03919091166000908152600260205260409020805460ff1916911515919091179055565b600154600160a060020a03163314610afa576040805160e560020a62461bcd02815260206004820152601660248201527f6d73672e73656e646572203d3d206e65774f776e657200000000000000000000604482015290519081900360640190fd5b600080546040513392600160a060020a03909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff199081163317909155600180549091169055565b600160a060020a0382166000908152600660209081526040808320338452909152812054821115610b8f57600080fd5b610b998383611392565b50600160a060020a0383166000908152600660209081526040808320338452909152902054610bce908363ffffffff61155516565b600160a060020a038416600090815260066020908152604080832033845290915290205550600192915050565b600054600160a060020a031681565b600a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107845780601f1061075957610100808354040283529160200191610784565b60035460009060ff1680610c8857503360009081526002602052604090205460ff165b1515610c9357600080fd5b6107c48383611567565b600054600160a060020a03163314610ced576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b60026020526000908152604090205460ff1681565b60035460009060ff1680610d5a57503360009081526002602052604090205460ff165b1515610d6557600080fd5b610813848484611574565b600054600160a060020a03163314610dc0576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b6003805460ff191660011790556040517f1b55ba3aa851a46be3b365aee5b5c140edd620d578922f3e8466d2cbd96f954b90600090a1565b60008054600160a060020a03163314610e49576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b336000908152600560205260409020548211610e655781610e76565b336000908152600560205260409020545b9050610e833384836115de565b50505050565b6000610e95848461078c565b5083600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f62797465732900000000000000000000000000000000000000000000000000008152506026019050604051809103902060e060020a90043385856040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610f60578181015183820152602001610f48565b50505050905090810190601f168015610f8d5780820380516001836020036101000a031916815260200191505b5093505050506000604051808303816000875af1925050501515610fb057600080fd5b5060019392505050565b6000600782815481101515610fcb57fe5b90600052602060002001549050919050565b600154600160a060020a031681565b60035460009060ff168061100f57503360009081526002602052604090205460ff165b151561101a57600080fd5b6107c483836116ef565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600054600160a060020a0316331461109f576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600160a060020a03811615156110ff576040805160e560020a62461bcd02815260206004820152601760248201527f6164647265737328302920213d205f6e65774f776e6572000000000000000000604482015290519081900360640190fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600060088281548110151561113f57fe5b600091825260209091200154600160a060020a031692915050565b60035460009060ff168061117d57503360009081526002602052604090205460ff165b151561118857600080fd5b61119485858585611788565b95945050505050565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561121a57600080fd5b600160a060020a03831630141561123057600080fd5b600160a060020a03841660009081526005602052604090205482111561125557600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561128557600080fd5b600160a060020a0384166000908152600560205260409020546112ae908363ffffffff61155516565b600160a060020a0380861660009081526005602052604080822093909355908516815220546112e3908363ffffffff611a0a16565b600160a060020a038085166000908152600560209081526040808320949094559187168152600682528281203382529091522054611327908363ffffffff61155516565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60008082116113a057600080fd5b600160a060020a0383166000908152600560205260409020548211156113c557600080fd5b600160a060020a0383166000908152600560205260409020546113ee908363ffffffff61155516565b600160a060020a03841660009081526005602052604090205560045461141a908363ffffffff61155516565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808311156114ba57336000908152600660209081526040808320600160a060020a03881684529091528120556114ef565b6114ca818463ffffffff61155516565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008282111561156157fe5b50900390565b60006107c43384846115de565b6000610813848484606060405190810160405280602481526020017f746f6b656e46616c6c6261636b28616464726573732c75696e743235362c627981526020017f746573290000000000000000000000000000000000000000000000000000000081525061115a565b6000600160a060020a03831615156115f557600080fd5b600160a060020a03831630141561160b57600080fd5b600160a060020a03841660009081526005602052604090205482111561163057600080fd5b600160a060020a038416600090815260056020526040902054611659908363ffffffff61155516565b600160a060020a03808616600090815260056020526040808220939093559085168152205461168e908363ffffffff611a0a16565b600160a060020a0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b336000908152600660209081526040808320600160a060020a0386168452909152812054611723908363ffffffff611a0a16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a038516151561179f57600080fd5b600160a060020a0385163014156117b557600080fd5b336000908152600560205260409020548411156117d157600080fd5b336000908152600560205260409020546117f1908563ffffffff61155516565b3360009081526005602052604080822092909255600160a060020a03871681522054611823908563ffffffff611a0a16565b600160a060020a03861660009081526005602052604090205561184585611a19565b156119685784600160a060020a03166000836040518082805190602001908083835b602083106118865780518252601f199092019160209182019101611867565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015611918578181015183820152602001611900565b50505050905090810190601f1680156119455780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af19350505050151561196857600080fd5b826040518082805190602001908083835b602083106119985780518252601f199092019160209182019101611979565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4506001949350505050565b6000828201838110156107c457fe5b6000903b119056006d73672e73656e646572203d3d206f776e657200000000000000000000000000a165627a7a72305820435e9202ad0227cabe77c8731d0749b69264d3bcb74b8c6f5cb1f7ebf116a8000029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000004415145520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044151455200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061017c5763ffffffff60e060020a60003504166306fdde038114610181578063095ea7b31461020b57806318160ddd146102435780631f2698ab1461026a57806323b872dd1461027f578063313ce567146102a9578063378dc3dc146102d4578063399b5a07146102e957806342966c681461031d57806366188463146103355780636641cc6414610359578063698e434b1461037c57806370a0823114610394578063711bf9b2146103b557806379ba5097146103db57806379cc6790146103f05780638da5cb5b1461041457806395d89b4114610429578063a9059cbb1461043e578063b160a86b14610462578063b91816111461047a578063be45fd621461049b578063be9a655514610504578063c6159a3514610519578063cae9ca511461053d578063cb3204a8146105a6578063d4ee1d90146105be578063d73dd623146105d3578063dd62ed3e146105f7578063f2fde38b1461061e578063f5c758c41461063f578063f6368f8a14610657575b600080fd5b34801561018d57600080fd5b506101966106fe565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d05781810151838201526020016101b8565b50505050905090810190601f1680156101fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021757600080fd5b5061022f600160a060020a036004351660243561078c565b604080519115158252519081900360200190f35b34801561024f57600080fd5b506102586107cb565b60408051918252519081900360200190f35b34801561027657600080fd5b5061022f6107d1565b34801561028b57600080fd5b5061022f600160a060020a03600435811690602435166044356107da565b3480156102b557600080fd5b506102be61081b565b6040805160ff9092168252519081900360200190f35b3480156102e057600080fd5b50610258610824565b3480156102f557600080fd5b5061030160043561082a565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b5061022f600435610852565b34801561034157600080fd5b5061022f600160a060020a0360043516602435610864565b34801561036557600080fd5b5061037a600160a060020a036004351661089c565b005b34801561038857600080fd5b506102586004356109ab565b3480156103a057600080fd5b50610258600160a060020a03600435166109ca565b3480156103c157600080fd5b5061037a600160a060020a036004351660243515156109e5565b3480156103e757600080fd5b5061037a610a98565b3480156103fc57600080fd5b5061022f600160a060020a0360043516602435610b5f565b34801561042057600080fd5b50610301610bfb565b34801561043557600080fd5b50610196610c0a565b34801561044a57600080fd5b5061022f600160a060020a0360043516602435610c65565b34801561046e57600080fd5b5061037a600435610c9d565b34801561048657600080fd5b5061022f600160a060020a0360043516610d22565b3480156104a757600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d379650505050505050565b34801561051057600080fd5b5061037a610d70565b34801561052557600080fd5b5061037a600160a060020a0360043516602435610df8565b34801561054957600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e899650505050505050565b3480156105b257600080fd5b50610258600435610fba565b3480156105ca57600080fd5b50610301610fdd565b3480156105df57600080fd5b5061022f600160a060020a0360043516602435610fec565b34801561060357600080fd5b50610258600160a060020a0360043581169060243516611024565b34801561062a57600080fd5b5061037a600160a060020a036004351661104f565b34801561064b57600080fd5b5061030160043561112e565b34801561066357600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261022f948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061115a9650505050505050565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b60035460009060ff16806107af57503360009081526002602052604090205460ff165b15156107ba57600080fd5b6107c4838361119d565b9392505050565b60045481565b60035460ff1681565b60035460009060ff16806107fd57503360009081526002602052604090205460ff165b151561080857600080fd5b610813848484611203565b949350505050565b600b5460ff1681565b600c5481565b600880548290811061083857fe5b600091825260209091200154600160a060020a0316905081565b600061085e3383611392565b92915050565b60035460009060ff168061088757503360009081526002602052604090205460ff165b151561089257600080fd5b6107c48383611465565b600054600160a060020a031633146108ec576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600160a060020a038116151561094c576040805160e560020a62461bcd02815260206004820152601e60248201527f43616e6e6f7420617070726f76652061206e756c6c20616464726573732e0000604482015290519081900360640190fd5b600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60078054829081106109b957fe5b600091825260209091200154905081565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a03163314610a35576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b60405181151590600160a060020a038416907f5056a36abc1db1625034fdf114a164a0345b3ccf992fc1d51055e017375f473290600090a3600160a060020a03919091166000908152600260205260409020805460ff1916911515919091179055565b600154600160a060020a03163314610afa576040805160e560020a62461bcd02815260206004820152601660248201527f6d73672e73656e646572203d3d206e65774f776e657200000000000000000000604482015290519081900360640190fd5b600080546040513392600160a060020a03909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff199081163317909155600180549091169055565b600160a060020a0382166000908152600660209081526040808320338452909152812054821115610b8f57600080fd5b610b998383611392565b50600160a060020a0383166000908152600660209081526040808320338452909152902054610bce908363ffffffff61155516565b600160a060020a038416600090815260066020908152604080832033845290915290205550600192915050565b600054600160a060020a031681565b600a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107845780601f1061075957610100808354040283529160200191610784565b60035460009060ff1680610c8857503360009081526002602052604090205460ff165b1515610c9357600080fd5b6107c48383611567565b600054600160a060020a03163314610ced576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b60026020526000908152604090205460ff1681565b60035460009060ff1680610d5a57503360009081526002602052604090205460ff165b1515610d6557600080fd5b610813848484611574565b600054600160a060020a03163314610dc0576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b6003805460ff191660011790556040517f1b55ba3aa851a46be3b365aee5b5c140edd620d578922f3e8466d2cbd96f954b90600090a1565b60008054600160a060020a03163314610e49576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b336000908152600560205260409020548211610e655781610e76565b336000908152600560205260409020545b9050610e833384836115de565b50505050565b6000610e95848461078c565b5083600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f62797465732900000000000000000000000000000000000000000000000000008152506026019050604051809103902060e060020a90043385856040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610f60578181015183820152602001610f48565b50505050905090810190601f168015610f8d5780820380516001836020036101000a031916815260200191505b5093505050506000604051808303816000875af1925050501515610fb057600080fd5b5060019392505050565b6000600782815481101515610fcb57fe5b90600052602060002001549050919050565b600154600160a060020a031681565b60035460009060ff168061100f57503360009081526002602052604090205460ff165b151561101a57600080fd5b6107c483836116ef565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600054600160a060020a0316331461109f576040805160e560020a62461bcd0281526020600482015260136024820152600080516020611a22833981519152604482015290519081900360640190fd5b600160a060020a03811615156110ff576040805160e560020a62461bcd02815260206004820152601760248201527f6164647265737328302920213d205f6e65774f776e6572000000000000000000604482015290519081900360640190fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600060088281548110151561113f57fe5b600091825260209091200154600160a060020a031692915050565b60035460009060ff168061117d57503360009081526002602052604090205460ff165b151561118857600080fd5b61119485858585611788565b95945050505050565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561121a57600080fd5b600160a060020a03831630141561123057600080fd5b600160a060020a03841660009081526005602052604090205482111561125557600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561128557600080fd5b600160a060020a0384166000908152600560205260409020546112ae908363ffffffff61155516565b600160a060020a0380861660009081526005602052604080822093909355908516815220546112e3908363ffffffff611a0a16565b600160a060020a038085166000908152600560209081526040808320949094559187168152600682528281203382529091522054611327908363ffffffff61155516565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60008082116113a057600080fd5b600160a060020a0383166000908152600560205260409020548211156113c557600080fd5b600160a060020a0383166000908152600560205260409020546113ee908363ffffffff61155516565b600160a060020a03841660009081526005602052604090205560045461141a908363ffffffff61155516565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808311156114ba57336000908152600660209081526040808320600160a060020a03881684529091528120556114ef565b6114ca818463ffffffff61155516565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008282111561156157fe5b50900390565b60006107c43384846115de565b6000610813848484606060405190810160405280602481526020017f746f6b656e46616c6c6261636b28616464726573732c75696e743235362c627981526020017f746573290000000000000000000000000000000000000000000000000000000081525061115a565b6000600160a060020a03831615156115f557600080fd5b600160a060020a03831630141561160b57600080fd5b600160a060020a03841660009081526005602052604090205482111561163057600080fd5b600160a060020a038416600090815260056020526040902054611659908363ffffffff61155516565b600160a060020a03808616600090815260056020526040808220939093559085168152205461168e908363ffffffff611a0a16565b600160a060020a0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b336000908152600660209081526040808320600160a060020a0386168452909152812054611723908363ffffffff611a0a16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a038516151561179f57600080fd5b600160a060020a0385163014156117b557600080fd5b336000908152600560205260409020548411156117d157600080fd5b336000908152600560205260409020546117f1908563ffffffff61155516565b3360009081526005602052604080822092909255600160a060020a03871681522054611823908563ffffffff611a0a16565b600160a060020a03861660009081526005602052604090205561184585611a19565b156119685784600160a060020a03166000836040518082805190602001908083835b602083106118865780518252601f199092019160209182019101611867565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015611918578181015183820152602001611900565b50505050905090810190601f1680156119455780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af19350505050151561196857600080fd5b826040518082805190602001908083835b602083106119985780518252601f199092019160209182019101611979565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4506001949350505050565b6000828201838110156107c457fe5b6000903b119056006d73672e73656e646572203d3d206f776e657200000000000000000000000000a165627a7a72305820435e9202ad0227cabe77c8731d0749b69264d3bcb74b8c6f5cb1f7ebf116a8000029

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000004415145520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044151455200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AQER
Arg [1] : _symbol (string): AQER
Arg [2] : _decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 100000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4151455200000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4151455200000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://435e9202ad0227cabe77c8731d0749b69264d3bcb74b8c6f5cb1f7ebf116a800
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.