ETH Price: $2,444.23 (-1.03%)

Token

Emblem (EMB)
 

Overview

Max Total Supply

300,000,000 EMB

Holders

6,745

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
714,286 EMB

Value
$0.00
0x23943d0636392a24683dbe674e088b1c3e25296b
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:
Emblem

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-02-17
*/

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

pragma solidity ^0.4.24;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * See https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

pragma solidity ^0.4.24;




/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev Transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.4.24;



/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

  function transferFrom(address from, address to, uint256 value)
    public returns (bool);

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

pragma solidity ^0.4.24;




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

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


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

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    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
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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;
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

pragma solidity ^0.4.24;



/**
 * @title DetailedERC20 token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.4.24;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.4.24;


/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface ERC165 {

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceId The interface identifier, as specified in ERC-165
   * @dev Interface identification is specified in ERC-165. This function
   * uses less than 30,000 gas.
   */
  function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Basic.sol

pragma solidity ^0.4.24;



/**
 * @title ERC721 Non-Fungible Token Standard basic interface
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Basic is ERC165 {
  event Transfer(
    address indexed _from,
    address indexed _to,
    uint256 indexed _tokenId
  );
  event Approval(
    address indexed _owner,
    address indexed _approved,
    uint256 indexed _tokenId
  );
  event ApprovalForAll(
    address indexed _owner,
    address indexed _operator,
    bool _approved
  );

  function balanceOf(address _owner) public view returns (uint256 _balance);
  function ownerOf(uint256 _tokenId) public view returns (address _owner);
  function exists(uint256 _tokenId) public view returns (bool _exists);

  function approve(address _to, uint256 _tokenId) public;
  function getApproved(uint256 _tokenId)
    public view returns (address _operator);

  function setApprovalForAll(address _operator, bool _approved) public;
  function isApprovedForAll(address _owner, address _operator)
    public view returns (bool);

  function transferFrom(address _from, address _to, uint256 _tokenId) public;
  function safeTransferFrom(address _from, address _to, uint256 _tokenId)
    public;

  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    public;
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.4.24;



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Enumerable is ERC721Basic {
  function totalSupply() public view returns (uint256);
  function tokenOfOwnerByIndex(
    address _owner,
    uint256 _index
  )
    public
    view
    returns (uint256 _tokenId);

  function tokenByIndex(uint256 _index) public view returns (uint256);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Metadata is ERC721Basic {
  function name() external view returns (string _name);
  function symbol() external view returns (string _symbol);
  function tokenURI(uint256 _tokenId) public view returns (string);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, full implementation interface
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721 is ERC721Basic, ERC721Enumerable, ERC721Metadata {
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Receiver.sol

pragma solidity ^0.4.24;


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract ERC721Receiver {
  /**
   * @dev Magic value to be returned upon successful reception of an NFT
   *  Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`,
   *  which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
   */
  bytes4 internal constant ERC721_RECEIVED = 0x150b7a02;

  /**
   * @notice Handle the receipt of an NFT
   * @dev The ERC721 smart contract calls this function on the recipient
   * after a `safetransfer`. This function MAY throw to revert and reject the
   * transfer. Return of other than the magic value MUST result in the 
   * transaction being reverted.
   * Note: the contract address is always the message sender.
   * @param _operator The address which called `safeTransferFrom` function
   * @param _from The address which previously owned the token
   * @param _tokenId The NFT identifier which is being transfered
   * @param _data Additional data with no specified format
   * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
   */
  function onERC721Received(
    address _operator,
    address _from,
    uint256 _tokenId,
    bytes _data
  )
    public
    returns(bytes4);
}

// File: openzeppelin-solidity/contracts/AddressUtils.sol

pragma solidity ^0.4.24;


/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param addr address to check
   * @return whether the target address is a contract
   */
  function isContract(address addr) internal view returns (bool) {
    uint256 size;
    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    // solium-disable-next-line security/no-inline-assembly
    assembly { size := extcodesize(addr) }
    return size > 0;
  }

}

// File: openzeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol

pragma solidity ^0.4.24;



/**
 * @title SupportsInterfaceWithLookup
 * @author Matt Condon (@shrugs)
 * @dev Implements ERC165 using a lookup table.
 */
contract SupportsInterfaceWithLookup is ERC165 {
  bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
  /**
   * 0x01ffc9a7 ===
   *   bytes4(keccak256('supportsInterface(bytes4)'))
   */

  /**
   * @dev a mapping of interface id to whether or not it's supported
   */
  mapping(bytes4 => bool) internal supportedInterfaces;

  /**
   * @dev A contract implementing SupportsInterfaceWithLookup
   * implement ERC165 itself
   */
  constructor()
    public
  {
    _registerInterface(InterfaceId_ERC165);
  }

  /**
   * @dev implement supportsInterface(bytes4) using a lookup table
   */
  function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool)
  {
    return supportedInterfaces[_interfaceId];
  }

  /**
   * @dev private method for registering an interface
   */
  function _registerInterface(bytes4 _interfaceId)
    internal
  {
    require(_interfaceId != 0xffffffff);
    supportedInterfaces[_interfaceId] = true;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721BasicToken.sol

pragma solidity ^0.4.24;







/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {

  bytes4 private constant InterfaceId_ERC721 = 0x80ac58cd;
  /*
   * 0x80ac58cd ===
   *   bytes4(keccak256('balanceOf(address)')) ^
   *   bytes4(keccak256('ownerOf(uint256)')) ^
   *   bytes4(keccak256('approve(address,uint256)')) ^
   *   bytes4(keccak256('getApproved(uint256)')) ^
   *   bytes4(keccak256('setApprovalForAll(address,bool)')) ^
   *   bytes4(keccak256('isApprovedForAll(address,address)')) ^
   *   bytes4(keccak256('transferFrom(address,address,uint256)')) ^
   *   bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^
   *   bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)'))
   */

  bytes4 private constant InterfaceId_ERC721Exists = 0x4f558e79;
  /*
   * 0x4f558e79 ===
   *   bytes4(keccak256('exists(uint256)'))
   */

  using SafeMath for uint256;
  using AddressUtils for address;

  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
  // which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
  bytes4 private constant ERC721_RECEIVED = 0x150b7a02;

  // Mapping from token ID to owner
  mapping (uint256 => address) internal tokenOwner;

  // Mapping from token ID to approved address
  mapping (uint256 => address) internal tokenApprovals;

  // Mapping from owner to number of owned token
  mapping (address => uint256) internal ownedTokensCount;

  // Mapping from owner to operator approvals
  mapping (address => mapping (address => bool)) internal operatorApprovals;

  /**
   * @dev Guarantees msg.sender is owner of the given token
   * @param _tokenId uint256 ID of the token to validate its ownership belongs to msg.sender
   */
  modifier onlyOwnerOf(uint256 _tokenId) {
    require(ownerOf(_tokenId) == msg.sender);
    _;
  }

  /**
   * @dev Checks msg.sender can transfer a token, by being owner, approved, or operator
   * @param _tokenId uint256 ID of the token to validate
   */
  modifier canTransfer(uint256 _tokenId) {
    require(isApprovedOrOwner(msg.sender, _tokenId));
    _;
  }

  constructor()
    public
  {
    // register the supported interfaces to conform to ERC721 via ERC165
    _registerInterface(InterfaceId_ERC721);
    _registerInterface(InterfaceId_ERC721Exists);
  }

  /**
   * @dev Gets the balance of the specified address
   * @param _owner address to query the balance of
   * @return uint256 representing the amount owned by the passed address
   */
  function balanceOf(address _owner) public view returns (uint256) {
    require(_owner != address(0));
    return ownedTokensCount[_owner];
  }

  /**
   * @dev Gets the owner of the specified token ID
   * @param _tokenId uint256 ID of the token to query the owner of
   * @return owner address currently marked as the owner of the given token ID
   */
  function ownerOf(uint256 _tokenId) public view returns (address) {
    address owner = tokenOwner[_tokenId];
    require(owner != address(0));
    return owner;
  }

  /**
   * @dev Returns whether the specified token exists
   * @param _tokenId uint256 ID of the token to query the existence of
   * @return whether the token exists
   */
  function exists(uint256 _tokenId) public view returns (bool) {
    address owner = tokenOwner[_tokenId];
    return owner != address(0);
  }

  /**
   * @dev Approves another address to transfer the given token ID
   * The zero address indicates there is no approved address.
   * There can only be one approved address per token at a given time.
   * Can only be called by the token owner or an approved operator.
   * @param _to address to be approved for the given token ID
   * @param _tokenId uint256 ID of the token to be approved
   */
  function approve(address _to, uint256 _tokenId) public {
    address owner = ownerOf(_tokenId);
    require(_to != owner);
    require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

    tokenApprovals[_tokenId] = _to;
    emit Approval(owner, _to, _tokenId);
  }

  /**
   * @dev Gets the approved address for a token ID, or zero if no address set
   * @param _tokenId uint256 ID of the token to query the approval of
   * @return address currently approved for the given token ID
   */
  function getApproved(uint256 _tokenId) public view returns (address) {
    return tokenApprovals[_tokenId];
  }

  /**
   * @dev Sets or unsets the approval of a given operator
   * An operator is allowed to transfer all tokens of the sender on their behalf
   * @param _to operator address to set the approval
   * @param _approved representing the status of the approval to be set
   */
  function setApprovalForAll(address _to, bool _approved) public {
    require(_to != msg.sender);
    operatorApprovals[msg.sender][_to] = _approved;
    emit ApprovalForAll(msg.sender, _to, _approved);
  }

  /**
   * @dev Tells whether an operator is approved by a given owner
   * @param _owner owner address which you want to query the approval of
   * @param _operator operator address which you want to query the approval of
   * @return bool whether the given operator is approved by the given owner
   */
  function isApprovedForAll(
    address _owner,
    address _operator
  )
    public
    view
    returns (bool)
  {
    return operatorApprovals[_owner][_operator];
  }

  /**
   * @dev Transfers the ownership of a given token ID to another address
   * Usage of this method is discouraged, use `safeTransferFrom` whenever possible
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
  */
  function transferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  )
    public
    canTransfer(_tokenId)
  {
    require(_from != address(0));
    require(_to != address(0));

    clearApproval(_from, _tokenId);
    removeTokenFrom(_from, _tokenId);
    addTokenTo(_to, _tokenId);

    emit Transfer(_from, _to, _tokenId);
  }

  /**
   * @dev Safely transfers the ownership of a given token ID to another address
   * If the target address is a contract, it must implement `onERC721Received`,
   * which is called upon a safe transfer, and return the magic value
   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
   * the transfer is reverted.
   *
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
  */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  )
    public
    canTransfer(_tokenId)
  {
    // solium-disable-next-line arg-overflow
    safeTransferFrom(_from, _to, _tokenId, "");
  }

  /**
   * @dev Safely transfers the ownership of a given token ID to another address
   * If the target address is a contract, it must implement `onERC721Received`,
   * which is called upon a safe transfer, and return the magic value
   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
   * the transfer is reverted.
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
   * @param _data bytes data to send along with a safe transfer check
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    public
    canTransfer(_tokenId)
  {
    transferFrom(_from, _to, _tokenId);
    // solium-disable-next-line arg-overflow
    require(checkAndCallSafeTransfer(_from, _to, _tokenId, _data));
  }

  /**
   * @dev Returns whether the given spender can transfer a given token ID
   * @param _spender address of the spender to query
   * @param _tokenId uint256 ID of the token to be transferred
   * @return bool whether the msg.sender is approved for the given token ID,
   *  is an operator of the owner, or is the owner of the token
   */
  function isApprovedOrOwner(
    address _spender,
    uint256 _tokenId
  )
    internal
    view
    returns (bool)
  {
    address owner = ownerOf(_tokenId);
    // Disable solium check because of
    // https://github.com/duaraghav8/Solium/issues/175
    // solium-disable-next-line operator-whitespace
    return (
      _spender == owner ||
      getApproved(_tokenId) == _spender ||
      isApprovedForAll(owner, _spender)
    );
  }

  /**
   * @dev Internal function to mint a new token
   * Reverts if the given token ID already exists
   * @param _to The address that will own the minted token
   * @param _tokenId uint256 ID of the token to be minted by the msg.sender
   */
  function _mint(address _to, uint256 _tokenId) internal {
    require(_to != address(0));
    addTokenTo(_to, _tokenId);
    emit Transfer(address(0), _to, _tokenId);
  }

  /**
   * @dev Internal function to burn a specific token
   * Reverts if the token does not exist
   * @param _tokenId uint256 ID of the token being burned by the msg.sender
   */
  function _burn(address _owner, uint256 _tokenId) internal {
    clearApproval(_owner, _tokenId);
    removeTokenFrom(_owner, _tokenId);
    emit Transfer(_owner, address(0), _tokenId);
  }

  /**
   * @dev Internal function to clear current approval of a given token ID
   * Reverts if the given address is not indeed the owner of the token
   * @param _owner owner of the token
   * @param _tokenId uint256 ID of the token to be transferred
   */
  function clearApproval(address _owner, uint256 _tokenId) internal {
    require(ownerOf(_tokenId) == _owner);
    if (tokenApprovals[_tokenId] != address(0)) {
      tokenApprovals[_tokenId] = address(0);
    }
  }

  /**
   * @dev Internal function to add a token ID to the list of a given address
   * @param _to address representing the new owner of the given token ID
   * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function addTokenTo(address _to, uint256 _tokenId) internal {
    require(tokenOwner[_tokenId] == address(0));
    tokenOwner[_tokenId] = _to;
    ownedTokensCount[_to] = ownedTokensCount[_to].add(1);
  }

  /**
   * @dev Internal function to remove a token ID from the list of a given address
   * @param _from address representing the previous owner of the given token ID
   * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function removeTokenFrom(address _from, uint256 _tokenId) internal {
    require(ownerOf(_tokenId) == _from);
    ownedTokensCount[_from] = ownedTokensCount[_from].sub(1);
    tokenOwner[_tokenId] = address(0);
  }

  /**
   * @dev Internal function to invoke `onERC721Received` on a target address
   * The call is not executed if the target address is not a contract
   * @param _from address representing the previous owner of the given token ID
   * @param _to target address that will receive the tokens
   * @param _tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return whether the call correctly returned the expected magic value
   */
  function checkAndCallSafeTransfer(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    internal
    returns (bool)
  {
    if (!_to.isContract()) {
      return true;
    }
    bytes4 retval = ERC721Receiver(_to).onERC721Received(
      msg.sender, _from, _tokenId, _data);
    return (retval == ERC721_RECEIVED);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Token.sol

pragma solidity ^0.4.24;





/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Token is SupportsInterfaceWithLookup, ERC721BasicToken, ERC721 {

  bytes4 private constant InterfaceId_ERC721Enumerable = 0x780e9d63;
  /**
   * 0x780e9d63 ===
   *   bytes4(keccak256('totalSupply()')) ^
   *   bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^
   *   bytes4(keccak256('tokenByIndex(uint256)'))
   */

  bytes4 private constant InterfaceId_ERC721Metadata = 0x5b5e139f;
  /**
   * 0x5b5e139f ===
   *   bytes4(keccak256('name()')) ^
   *   bytes4(keccak256('symbol()')) ^
   *   bytes4(keccak256('tokenURI(uint256)'))
   */

  // Token name
  string internal name_;

  // Token symbol
  string internal symbol_;

  // Mapping from owner to list of owned token IDs
  mapping(address => uint256[]) internal ownedTokens;

  // Mapping from token ID to index of the owner tokens list
  mapping(uint256 => uint256) internal ownedTokensIndex;

  // Array with all token ids, used for enumeration
  uint256[] internal allTokens;

  // Mapping from token id to position in the allTokens array
  mapping(uint256 => uint256) internal allTokensIndex;

  // Optional mapping for token URIs
  mapping(uint256 => string) internal tokenURIs;

  /**
   * @dev Constructor function
   */
  constructor(string _name, string _symbol) public {
    name_ = _name;
    symbol_ = _symbol;

    // register the supported interfaces to conform to ERC721 via ERC165
    _registerInterface(InterfaceId_ERC721Enumerable);
    _registerInterface(InterfaceId_ERC721Metadata);
  }

  /**
   * @dev Gets the token name
   * @return string representing the token name
   */
  function name() external view returns (string) {
    return name_;
  }

  /**
   * @dev Gets the token symbol
   * @return string representing the token symbol
   */
  function symbol() external view returns (string) {
    return symbol_;
  }

  /**
   * @dev Returns an URI for a given token ID
   * Throws if the token ID does not exist. May return an empty string.
   * @param _tokenId uint256 ID of the token to query
   */
  function tokenURI(uint256 _tokenId) public view returns (string) {
    require(exists(_tokenId));
    return tokenURIs[_tokenId];
  }

  /**
   * @dev Gets the token ID at a given index of the tokens list of the requested owner
   * @param _owner address owning the tokens list to be accessed
   * @param _index uint256 representing the index to be accessed of the requested tokens list
   * @return uint256 token ID at the given index of the tokens list owned by the requested address
   */
  function tokenOfOwnerByIndex(
    address _owner,
    uint256 _index
  )
    public
    view
    returns (uint256)
  {
    require(_index < balanceOf(_owner));
    return ownedTokens[_owner][_index];
  }

  /**
   * @dev Gets the total amount of tokens stored by the contract
   * @return uint256 representing the total amount of tokens
   */
  function totalSupply() public view returns (uint256) {
    return allTokens.length;
  }

  /**
   * @dev Gets the token ID at a given index of all the tokens in this contract
   * Reverts if the index is greater or equal to the total number of tokens
   * @param _index uint256 representing the index to be accessed of the tokens list
   * @return uint256 token ID at the given index of the tokens list
   */
  function tokenByIndex(uint256 _index) public view returns (uint256) {
    require(_index < totalSupply());
    return allTokens[_index];
  }

  /**
   * @dev Internal function to set the token URI for a given token
   * Reverts if the token ID does not exist
   * @param _tokenId uint256 ID of the token to set its URI
   * @param _uri string URI to assign
   */
  function _setTokenURI(uint256 _tokenId, string _uri) internal {
    require(exists(_tokenId));
    tokenURIs[_tokenId] = _uri;
  }

  /**
   * @dev Internal function to add a token ID to the list of a given address
   * @param _to address representing the new owner of the given token ID
   * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function addTokenTo(address _to, uint256 _tokenId) internal {
    super.addTokenTo(_to, _tokenId);
    uint256 length = ownedTokens[_to].length;
    ownedTokens[_to].push(_tokenId);
    ownedTokensIndex[_tokenId] = length;
  }

  /**
   * @dev Internal function to remove a token ID from the list of a given address
   * @param _from address representing the previous owner of the given token ID
   * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function removeTokenFrom(address _from, uint256 _tokenId) internal {
    super.removeTokenFrom(_from, _tokenId);

    uint256 tokenIndex = ownedTokensIndex[_tokenId];
    uint256 lastTokenIndex = ownedTokens[_from].length.sub(1);
    uint256 lastToken = ownedTokens[_from][lastTokenIndex];

    ownedTokens[_from][tokenIndex] = lastToken;
    ownedTokens[_from][lastTokenIndex] = 0;
    // Note that this will handle single-element arrays. In that case, both tokenIndex and lastTokenIndex are going to
    // be zero. Then we can make sure that we will remove _tokenId from the ownedTokens list since we are first swapping
    // the lastToken to the first position, and then dropping the element placed in the last position of the list

    ownedTokens[_from].length--;
    ownedTokensIndex[_tokenId] = 0;
    ownedTokensIndex[lastToken] = tokenIndex;
  }

  /**
   * @dev Internal function to mint a new token
   * Reverts if the given token ID already exists
   * @param _to address the beneficiary that will own the minted token
   * @param _tokenId uint256 ID of the token to be minted by the msg.sender
   */
  function _mint(address _to, uint256 _tokenId) internal {
    super._mint(_to, _tokenId);

    allTokensIndex[_tokenId] = allTokens.length;
    allTokens.push(_tokenId);
  }

  /**
   * @dev Internal function to burn a specific token
   * Reverts if the token does not exist
   * @param _owner owner of the token to burn
   * @param _tokenId uint256 ID of the token being burned by the msg.sender
   */
  function _burn(address _owner, uint256 _tokenId) internal {
    super._burn(_owner, _tokenId);

    // Clear metadata (if any)
    if (bytes(tokenURIs[_tokenId]).length != 0) {
      delete tokenURIs[_tokenId];
    }

    // Reorg all tokens array
    uint256 tokenIndex = allTokensIndex[_tokenId];
    uint256 lastTokenIndex = allTokens.length.sub(1);
    uint256 lastToken = allTokens[lastTokenIndex];

    allTokens[tokenIndex] = lastToken;
    allTokens[lastTokenIndex] = 0;

    allTokens.length--;
    allTokensIndex[_tokenId] = 0;
    allTokensIndex[lastToken] = tokenIndex;
  }

}

// File: contracts/LeasedEmblem.sol

pragma solidity ^0.4.24;



contract LeasedEmblem is  ERC721Token, Ownable {


  address internal leaseExchange;


  struct Metadata {
    uint256 amount;
    address leasor;
    uint256 duration;
    uint256 tradeExpiry;
    uint256 leaseExpiry;
    bool isMining;
  }


  mapping(uint256 => Metadata) public metadata;


  mapping(address => uint256[]) internal leasedTokens;


  mapping(uint256 => uint256) internal leasedTokensIndex;


  mapping (uint256 => address) internal tokenLeasor;


  mapping (address => uint256) internal leasedTokensCount;

  uint256 highestId = 1;

  uint256 sixMonths       = 15768000;

  constructor (string _name, string _symbol) public ERC721Token(_name, _symbol) {
  }



  function getNewId() public view returns(uint256) {
    return highestId;
  }

  function leasorOf(uint256 _tokenId) public view returns (address) {
    address owner = tokenLeasor[_tokenId];
    require(owner != address(0));
    return owner;
  }

  function balanceOfLeasor(address _leasor) public view returns (uint256) {
    require(_leasor != address(0));
    return leasedTokensCount[_leasor];
  }

  function tokenOfLeasorByIndex(address _leasor,uint256 _index) public view returns (uint256){
    require(_index < balanceOfLeasor(_leasor));
    return leasedTokens[_leasor][_index];
  }

  function addTokenToLeasor(address _to, uint256 _tokenId) internal {
    require(tokenLeasor[_tokenId] == address(0));
    tokenLeasor[_tokenId] = _to;
    leasedTokensCount[_to] = leasedTokensCount[_to].add(1);
    uint256 length = leasedTokens[_to].length;
    leasedTokens[_to].push(_tokenId);
    leasedTokensIndex[_tokenId] = length;
  }

  function removeTokenFromLeasor(address _from, uint256 _tokenId) internal {
    require(leasorOf(_tokenId) == _from);
    leasedTokensCount[_from] = leasedTokensCount[_from].sub(1);
    tokenLeasor[_tokenId] = address(0);

    uint256 tokenIndex = leasedTokensIndex[_tokenId];
    uint256 lastTokenIndex = leasedTokens[_from].length.sub(1);
    uint256 lastToken = leasedTokens[_from][lastTokenIndex];

    leasedTokens[_from][tokenIndex] = lastToken;
    leasedTokens[_from][lastTokenIndex] = 0;
    leasedTokens[_from].length--;
    leasedTokensIndex[_tokenId] = 0;
    leasedTokensIndex[lastToken] = tokenIndex;
  }

  function setLeaseExchange(address _leaseExchange) public onlyOwner {
    leaseExchange = _leaseExchange;
  }

  function totalAmount() external view returns (uint256) {
    uint256 amount = 0;
    for(uint256 i = 0; i < allTokens.length; i++){
      amount += metadata[allTokens[i]].amount;
    }
    return amount;
  }

  function setMetadata(uint256 _tokenId, uint256 amount, address leasor, uint256 duration,uint256 tradeExpiry, uint256 leaseExpiry) internal {
    require(exists(_tokenId));
    metadata[_tokenId]= Metadata(amount,leasor,duration,tradeExpiry,leaseExpiry,false);
  }

  function getMetadata(uint256 _tokenId) public view returns (uint256, address, uint256, uint256,uint256, bool) {
    require(exists(_tokenId));
    return (
      metadata[_tokenId].amount,
      metadata[_tokenId].leasor,
      metadata[_tokenId].duration,
      metadata[_tokenId].tradeExpiry,
      metadata[_tokenId].leaseExpiry,
      metadata[_tokenId].isMining
    );
  }

  function getAmountForUser(address owner) external view returns (uint256) {
    uint256 amount = 0;
    uint256 numTokens = balanceOf(owner);

    for(uint256 i = 0; i < numTokens; i++){
      amount += metadata[tokenOfOwnerByIndex(owner,i)].amount;
    }
    return amount;
  }

  function getAmountForUserMining(address owner) external view returns (uint256) {
    uint256 amount = 0;
    uint256 numTokens = balanceOf(owner);

    for(uint256 i = 0; i < numTokens; i++){
      if(metadata[tokenOfOwnerByIndex(owner,i)].isMining) {
        amount += metadata[tokenOfOwnerByIndex(owner,i)].amount;
      }
    }
    return amount;
  }

  function getAmount(uint256 _tokenId) public view returns (uint256) {
    require(exists(_tokenId));
    return metadata[_tokenId].amount;
  }

  function getTradeExpiry(uint256 _tokenId) public view returns (uint256) {
    require(exists(_tokenId));
    return metadata[_tokenId].tradeExpiry;
  }

  function getDuration(uint256 _tokenId) public view returns (uint256) {
    require(exists(_tokenId));
    return metadata[_tokenId].duration;
  }

  function getIsMining(uint256 _tokenId) public view returns (bool) {
    require(exists(_tokenId));
    return metadata[_tokenId].isMining;
  }

  function startMining(address _owner, uint256 _tokenId) public returns (bool) {
    require(msg.sender == leaseExchange);
    require(exists(_tokenId));
    require(ownerOf(_tokenId) == _owner);
    require(now < metadata[_tokenId].tradeExpiry);
    require(metadata[_tokenId].isMining == false);
    Metadata storage m = metadata[_tokenId];
    m.isMining = true;
    m.leaseExpiry = now + m.duration;
    return true;
  }

  function canRetrieveEMB(address _leasor, uint256 _tokenId) public view returns (bool) {
    require(exists(_tokenId));
    require(metadata[_tokenId].leasor == _leasor);
    if(metadata[_tokenId].isMining == false) {
      return(now > metadata[_tokenId].leaseExpiry);
    }
    else {
      return(now > metadata[_tokenId].tradeExpiry);
    }
  }

  function endLease(address _leasee, uint256 _tokenId) public {
    require(msg.sender == leaseExchange);
    require(exists(_tokenId));
    require(ownerOf(_tokenId) == _leasee);
    require(now > metadata[_tokenId].leaseExpiry);
    removeTokenFromLeasor(metadata[_tokenId].leasor, _tokenId);
    _burn(_leasee, _tokenId);
  }

  function splitLEMB(uint256 _tokenId, uint256 amount) public {
    require(exists(_tokenId));
    require(ownerOf(_tokenId) == msg.sender);
    require(metadata[_tokenId].isMining == false);
    require(now < metadata[_tokenId].tradeExpiry);
    require(amount < getAmount(_tokenId));

    uint256 _newTokenId = getNewId();

    Metadata storage m = metadata[_tokenId];
    m.amount = m.amount - amount;

    _mint(msg.sender, _newTokenId);
    addTokenToLeasor(m.leasor, _newTokenId);
    setMetadata(_newTokenId, amount, m.leasor, m.duration,m.tradeExpiry, 0);
    highestId = highestId + 1;
  }

  function mintUniqueTokenTo(address _to, uint256 amount, address leasor, uint256 duration) public {
    require(msg.sender == leaseExchange);
    uint256 _tokenId = getNewId();
    _mint(_to, _tokenId);
    addTokenToLeasor(leasor, _tokenId);
    uint256 tradeExpiry = now + sixMonths;
    setMetadata(_tokenId, amount, leasor, duration,tradeExpiry, 0);
    highestId = highestId + 1;
  }

  function _burn(address _owner, uint256 _tokenId) internal {
    super._burn(_owner, _tokenId);
    delete metadata[_tokenId];
  }

  modifier canTransfer(uint256 _tokenId) {
    require(isApprovedOrOwner(msg.sender, _tokenId));
    require(metadata[_tokenId].isMining == false);
    _;
  }

}

// File: contracts/Emblem.sol

pragma solidity ^0.4.24;






contract Emblem is DetailedERC20, StandardToken, Ownable {
  using SafeMath for uint256;

   mapping (bytes12 => address) public vanityAddresses;
   mapping (address => bytes12[]) public ownedVanities;
   mapping (address => mapping(bytes12 => uint256)) public ownedVanitiesIndex;
   mapping (bytes12 => uint256) allVanitiesIndex;
   bytes12[] public allVanities;
   mapping (address => mapping (bytes12 => address)) internal allowedVanities;

   mapping (bytes12 => uint256) vanityFees;
   mapping (bytes12 => bool) vanityFeeEnabled;

   bool internal useVanityFees = true;
   uint256 internal vanityPurchaseCost = 100 * (10 ** 8);

   mapping (address => bool) public frozenAccounts;
   bool public completeFreeze = false;

   mapping (address => bool) internal freezable;
   mapping (address => bool) internal externalFreezers;

   address leaseExchange;
   LeasedEmblem LEMB;

   event TransferVanity(address from, address to, bytes12 vanity);
   event ApprovedVanity(address from, address to, bytes12 vanity);
   event VanityPurchased(address from, bytes12 vanity);

   constructor(string _name, string _ticker, uint8 _decimal, uint256 _supply, address _wallet, address _lemb) DetailedERC20(_name, _ticker, _decimal) public {
     totalSupply_ = _supply;
     balances[_wallet] = _supply;
     LEMB = LeasedEmblem(_lemb);
   }

   function setLeaseExchange(address _leaseExchange) public onlyOwner {
     leaseExchange = _leaseExchange;
   }

   function setVanityPurchaseCost(uint256 cost) public onlyOwner {
     vanityPurchaseCost = cost;
   }

   function enableFees(bool enabled) public onlyOwner {
     useVanityFees = enabled;
   }

   function setLEMB(address _lemb) public onlyOwner {
     LEMB = LeasedEmblem(_lemb);
   }

   function setVanityFee(bytes12 vanity, uint256 fee) public onlyOwner {
     require(fee >= 0);
     vanityFees[vanity] = fee;
   }

   function getFee(bytes12 vanity) public view returns(uint256) {
     return vanityFees[vanity];
   }

   function enabledVanityFee(bytes12 vanity) public view returns(bool) {
     return vanityFeeEnabled[vanity] && useVanityFees;
   }

   function setTicker(string _ticker) public onlyOwner {
     symbol = _ticker;
   }

   function approveOwner(uint256 _value) public onlyOwner returns (bool) {
     allowed[msg.sender][address(this)] = _value;
     return true;
   }

   function vanityAllowance(address _owner, bytes12 _vanity, address _spender) public view returns (bool) {
     return allowedVanities[_owner][_vanity] == _spender;
   }

   function getVanityOwner(bytes12 _vanity) public view returns (address) {
     return vanityAddresses[_vanity];
   }

   function getAllVanities() public view returns (bytes12[]){
     return allVanities;
   }

   function getMyVanities() public view returns (bytes12[]){
     return ownedVanities[msg.sender];
   }

   function approveVanity(address _spender, bytes12 _vanity) public returns (bool) {
     require(vanityAddresses[_vanity] == msg.sender);
     allowedVanities[msg.sender][_vanity] = _spender;

     emit ApprovedVanity(msg.sender, _spender, _vanity);
     return true;
   }

   function clearVanityApproval(bytes12 _vanity) public returns (bool){
     require(vanityAddresses[_vanity] == msg.sender);
     delete allowedVanities[msg.sender][_vanity];
     return true;
   }

   function transferVanity(bytes12 van, address newOwner) public returns (bool) {
     require(newOwner != 0x0);
     require(vanityAddresses[van] == msg.sender);

     vanityAddresses[van] = newOwner;
     ownedVanities[newOwner].push(van);
     ownedVanitiesIndex[newOwner][van] = ownedVanities[newOwner].length.sub(1);

     uint256 vanityIndex = ownedVanitiesIndex[msg.sender][van];
     uint256 lastVanityIndex = ownedVanities[msg.sender].length.sub(1);
     bytes12 lastVanity = ownedVanities[msg.sender][lastVanityIndex];

     ownedVanities[msg.sender][vanityIndex] = lastVanity;
     ownedVanities[msg.sender][lastVanityIndex] = "";
     ownedVanities[msg.sender].length--;

     ownedVanitiesIndex[msg.sender][van] = 0;
     ownedVanitiesIndex[msg.sender][lastVanity] = vanityIndex;

     emit TransferVanity(msg.sender, newOwner,van);

     return true;
   }

   function transferVanityFrom(
     address _from,
     address _to,
     bytes12 _vanity
   )
     public
     returns (bool)
   {
     require(_to != address(0));
     require(_from == vanityAddresses[_vanity]);
     require(msg.sender == allowedVanities[_from][_vanity]);

     vanityAddresses[_vanity] = _to;
     ownedVanities[_to].push(_vanity);
     ownedVanitiesIndex[_to][_vanity] = ownedVanities[_to].length.sub(1);

     uint256 vanityIndex = ownedVanitiesIndex[_from][_vanity];
     uint256 lastVanityIndex = ownedVanities[_from].length.sub(1);
     bytes12 lastVanity = ownedVanities[_from][lastVanityIndex];

     ownedVanities[_from][vanityIndex] = lastVanity;
     ownedVanities[_from][lastVanityIndex] = "";
     ownedVanities[_from].length--;

     ownedVanitiesIndex[_from][_vanity] = 0;
     ownedVanitiesIndex[_from][lastVanity] = vanityIndex;

     emit TransferVanity(msg.sender, _to,_vanity);

     return true;
   }

   function purchaseVanity(bytes12 van) public returns (bool) {
     require(vanityAddresses[van] == address(0));

     for(uint8 i = 0; i < 12; i++){
       require((van[i] >= 48 && van[i] <= 57) || (van[i] >= 65 && van[i] <= 90));
     }

     require(canTransfer(msg.sender,vanityPurchaseCost));

     balances[msg.sender] = balances[msg.sender].sub(vanityPurchaseCost);
     balances[address(this)] = balances[address(this)].add(vanityPurchaseCost);
     emit Transfer(msg.sender, address(this), vanityPurchaseCost);

     vanityAddresses[van] = msg.sender;
     ownedVanities[msg.sender].push(van);
     ownedVanitiesIndex[msg.sender][van] = ownedVanities[msg.sender].length.sub(1);
     allVanities.push(van);
     allVanitiesIndex[van] = allVanities.length.sub(1);

     emit VanityPurchased(msg.sender, van);
   }

   function freezeTransfers(bool _freeze) public onlyOwner {
     completeFreeze = _freeze;
   }

   function freezeAccount(address _target, bool _freeze) public onlyOwner {
     frozenAccounts[_target] = _freeze;
   }

   function canTransfer(address _account,uint256 _value) internal view returns (bool) {
      return (!frozenAccounts[_account] && !completeFreeze && (_value + LEMB.getAmountForUserMining(_account) <= balances[_account]));
   }

   function transfer(address _to, uint256 _value) public returns (bool){
      require(canTransfer(msg.sender,_value));
      super.transfer(_to,_value);
   }


   function multiTransfer(bytes32[] _addressesAndAmounts) public {
      for (uint i = 0; i < _addressesAndAmounts.length; i++) {
          address to = address(_addressesAndAmounts[i] >> 96);
          uint amount = uint(uint56(_addressesAndAmounts[i]));
          transfer(to, amount);
      }
   }

   function freezeMe(bool freeze) public {
     require(!frozenAccounts[msg.sender]);
     freezable[msg.sender] = freeze;
   }

   function canFreeze(address _target) public view returns(bool){
     return freezable[_target];
   }

   function isFrozen(address _target) public view returns(bool) {
     return completeFreeze || frozenAccounts[_target];
   }

   function externalFreezeAccount(address _target, bool _freeze) public {
     require(freezable[_target]);
     require(externalFreezers[msg.sender]);
     frozenAccounts[_target] = _freeze;
   }

   function setExternalFreezer(address _target, bool _canFreeze) public onlyOwner {
     externalFreezers[_target] = _canFreeze;
   }


   function transferFrom(address _from, address _to, uint256 _value) public returns (bool){
      require(!completeFreeze);
      if(msg.sender != leaseExchange) require(canTransfer(_from,_value));
      super.transferFrom(_from,_to,_value);
   }

   function decreaseApproval(address _spender,uint256 _subtractedValue) public returns (bool) {


     if(_spender == leaseExchange) {
       require(allowed[msg.sender][_spender].sub(_subtractedValue) >= LEMB.getAmountForUserMining(msg.sender));
     }
     super.decreaseApproval(_spender,_subtractedValue);
   }

   function approve(address _spender, uint256 _value) public returns (bool) {


     if(_spender == leaseExchange){
       require(_value >= LEMB.getAmountForUserMining(msg.sender));
     }

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

}

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":"_vanity","type":"bytes12"}],"name":"getVanityOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"},{"name":"_canFreeze","type":"bool"}],"name":"setExternalFreezer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"vanity","type":"bytes12"}],"name":"getFee","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ticker","type":"string"}],"name":"setTicker","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_lemb","type":"address"}],"name":"setLEMB","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"vanity","type":"bytes12"},{"name":"fee","type":"uint256"}],"name":"setVanityFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"approveOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"freeze","type":"bool"}],"name":"freezeMe","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"ownedVanities","outputs":[{"name":"","type":"bytes12"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"enabled","type":"bool"}],"name":"enableFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_leaseExchange","type":"address"}],"name":"setLeaseExchange","outputs":[],"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":"getAllVanities","outputs":[{"name":"","type":"bytes12[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_vanity","type":"bytes12"},{"name":"_spender","type":"address"}],"name":"vanityAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"cost","type":"uint256"}],"name":"setVanityPurchaseCost","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes12"}],"name":"vanityAddresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"},{"name":"_freeze","type":"bool"}],"name":"externalFreezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_vanity","type":"bytes12"}],"name":"approveVanity","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_target","type":"address"}],"name":"canFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getMyVanities","outputs":[{"name":"","type":"bytes12[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes12"}],"name":"ownedVanitiesIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccounts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"van","type":"bytes12"},{"name":"newOwner","type":"address"}],"name":"transferVanity","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":false,"inputs":[{"name":"_addressesAndAmounts","type":"bytes32[]"}],"name":"multiTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"completeFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"vanity","type":"bytes12"}],"name":"enabledVanityFee","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"van","type":"bytes12"}],"name":"purchaseVanity","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_freeze","type":"bool"}],"name":"freezeTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_vanity","type":"bytes12"}],"name":"transferVanityFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_vanity","type":"bytes12"}],"name":"clearVanityApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"allVanities","outputs":[{"name":"","type":"bytes12"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_target","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"},{"name":"_freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_ticker","type":"string"},{"name":"_decimal","type":"uint8"},{"name":"_supply","type":"uint256"},{"name":"_wallet","type":"address"},{"name":"_lemb","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"vanity","type":"bytes12"}],"name":"TransferVanity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"vanity","type":"bytes12"}],"name":"ApprovedVanity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"vanity","type":"bytes12"}],"name":"VanityPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6080604052600f805460ff199081166001179091556402540be4006010556012805490911690553480156200003357600080fd5b5060405162002706380380620027068339810160409081528151602080840151928401516060850151608086015160a08701519487018051909796909601959294919390928791879187916200008f9160009186019062000109565b508151620000a590600190602085019062000109565b506002805460ff191660ff9290921691909117905550506006805433600160a060020a0319918216179091556004849055600160a060020a0392831660009081526003602052604090209390935560168054909316911617905550620001ae915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014c57805160ff19168380011785556200017c565b828001600101855582156200017c579182015b828111156200017c5782518255916020019190600101906200015f565b506200018a9291506200018e565b5090565b620001ab91905b808211156200018a576000815560010162000195565b90565b61254880620001be6000396000f30060806040526004361061022f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610234578063095ea7b3146102be5780630c5cc0a2146102f6578063157f49e01461033457806316166f891461035c57806318160ddd1461039057806323b872dd146103a557806324304f8b146103cf578063259e488d14610428578063261ea7a414610449578063267d90741461046e578063269d152f1461048657806329bf81e4146104a05780632bf5eabb146104e15780632c83e86f146104fb578063313ce5671461051c5780633618bdab146105475780633bd86d2d146105ac57806350b04085146105e157806360f39d18146105f9578063661884631461061b5780636895a5b71461063f5780636a04c381146106655780636bc388b21461069357806370a08231146106b4578063715018a6146106d55780637beea4bf146106ea5780637f6f3d79146106ff578063860838a51461072d5780638da5cb5b1461074e5780638eacf7131461076357806395d89b41146107915780639c10d115146107a6578063a9059cbb146107fb578063b51ec3bb1461081f578063b7fe896a14610834578063ba5011fa14610856578063cdc0613c14610878578063ce086ec114610892578063d73dd623146108c6578063dd62ed3e146108ea578063e2af4cad14610911578063e5014b8c14610933578063e58398361461094b578063e724529c1461096c578063f2fde38b14610992575b600080fd5b34801561024057600080fd5b506102496109b3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028357818101518382015260200161026b565b50505050905090810190601f1680156102b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ca57600080fd5b506102e2600160a060020a0360043516602435610a41565b604080519115158252519081900360200190f35b34801561030257600080fd5b50610318600160a060020a031960043516610b5f565b60408051600160a060020a039092168252519081900360200190f35b34801561034057600080fd5b5061035a600160a060020a03600435166024351515610b84565b005b34801561036857600080fd5b5061037e600160a060020a031960043516610bc6565b60408051918252519081900360200190f35b34801561039c57600080fd5b5061037e610be2565b3480156103b157600080fd5b506102e2600160a060020a0360043581169060243516604435610be9565b3480156103db57600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261035a943694929360249392840191908190840183828082843750949750610c369650505050505050565b34801561043457600080fd5b5061035a600160a060020a0360043516610c64565b34801561045557600080fd5b5061035a600160a060020a031960043516602435610c9d565b34801561047a57600080fd5b506102e2600435610cdf565b34801561049257600080fd5b5061035a6004351515610d1a565b3480156104ac57600080fd5b506104c4600160a060020a0360043516602435610d57565b60408051600160a060020a03199092168252519081900360200190f35b3480156104ed57600080fd5b5061035a6004351515610d9f565b34801561050757600080fd5b5061035a600160a060020a0360043516610dc9565b34801561052857600080fd5b50610531610e02565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b5061055c610e0b565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610598578181015183820152602001610580565b505050509050019250505060405180910390f35b3480156105b857600080fd5b506102e2600160a060020a03600435811690600160a060020a0319602435169060443516610e93565b3480156105ed57600080fd5b5061035a600435610ecf565b34801561060557600080fd5b50610318600160a060020a031960043516610eeb565b34801561062757600080fd5b506102e2600160a060020a0360043516602435610f06565b34801561064b57600080fd5b5061035a600160a060020a03600435166024351515611001565b34801561067157600080fd5b506102e2600160a060020a0360043516600160a060020a031960243516611071565b34801561069f57600080fd5b506102e2600160a060020a036004351661111d565b3480156106c057600080fd5b5061037e600160a060020a036004351661113b565b3480156106e157600080fd5b5061035a611156565b3480156106f657600080fd5b5061055c6111b7565b34801561070b57600080fd5b5061037e600160a060020a0360043516600160a060020a031960243516611227565b34801561073957600080fd5b506102e2600160a060020a0360043516611244565b34801561075a57600080fd5b50610318611259565b34801561076f57600080fd5b506102e2600160a060020a031960043516602435600160a060020a0316611268565b34801561079d57600080fd5b50610249611562565b3480156107b257600080fd5b506040805160206004803580820135838102808601850190965280855261035a953695939460249493850192918291850190849080828437509497506115bc9650505050505050565b34801561080757600080fd5b506102e2600160a060020a036004351660243561162d565b34801561082b57600080fd5b506102e261164e565b34801561084057600080fd5b506102e2600160a060020a031960043516611657565b34801561086257600080fd5b506102e2600160a060020a031960043516611688565b34801561088457600080fd5b5061035a6004351515611a27565b34801561089e57600080fd5b506102e2600160a060020a0360043581169060243516600160a060020a031960443516611a51565b3480156108d257600080fd5b506102e2600160a060020a0360043516602435611dc6565b3480156108f657600080fd5b5061037e600160a060020a0360043581169060243516611e5f565b34801561091d57600080fd5b506102e2600160a060020a031960043516611e8a565b34801561093f57600080fd5b506104c4600435611eea565b34801561095757600080fd5b506102e2600160a060020a0360043516611f22565b34801561097857600080fd5b5061035a600160a060020a03600435166024351515611f50565b34801561099e57600080fd5b5061035a600160a060020a0360043516611f67565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b505050505081565b601554600090600160a060020a0384811691161415610af857601654604080517f04426db40000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a03909216916304426db4916024808201926020929091908290030181600087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b5051821015610af857600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a031916600090815260076020526040902054600160a060020a031690565b600654600160a060020a03163314610b9b57600080fd5b600160a060020a03919091166000908152601460205260409020805460ff1916911515919091179055565b600160a060020a0319166000908152600d602052604090205490565b6004545b90565b60125460009060ff1615610bfc57600080fd5b601554600160a060020a03163314610c2357610c188483611f8a565b1515610c2357600080fd5b610c2e84848461206f565b509392505050565b600654600160a060020a03163314610c4d57600080fd5b8051610c6090600190602084019061244b565b5050565b600654600160a060020a03163314610c7b57600080fd5b60168054600160a060020a031916600160a060020a0392909216919091179055565b600654600160a060020a03163314610cb457600080fd5b6000811015610cc257600080fd5b600160a060020a03199091166000908152600d6020526040902055565b600654600090600160a060020a03163314610cf957600080fd5b50336000908152600560209081526040808320308452909152902055600190565b3360009081526011602052604090205460ff1615610d3757600080fd5b336000908152601360205260409020805460ff1916911515919091179055565b600860205281600052604060002081815481101515610d7257fe5b9060005260206000209060029182820401919006600c02915091509054906101000a900460a060020a0281565b600654600160a060020a03163314610db657600080fd5b600f805460ff1916911515919091179055565b600654600160a060020a03163314610de057600080fd5b60158054600160a060020a031916600160a060020a0392909216919091179055565b60025460ff1681565b6060600b805480602002602001604051908101604052809291908181526020018280548015610e8957602002820191906000526020600020906000905b82829054906101000a900460a060020a02600160a060020a031916815260200190600c0190602082600b01049283019260010382029150808411610e485790505b5050505050905090565b600160a060020a038381166000908152600c60209081526040808320600160a060020a0319871684529091529020548116908216149392505050565b600654600160a060020a03163314610ee657600080fd5b601055565b600760205260009081526040902054600160a060020a031681565b601554600090600160a060020a0384811691161415610ff057601654604080517f04426db40000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a03909216916304426db4916024808201926020929091908290030181600087803b158015610f8557600080fd5b505af1158015610f99573d6000803e3d6000fd5b505050506040513d6020811015610faf57600080fd5b5051336000908152600560209081526040808320600160a060020a0388168452909152902054610fe5908463ffffffff6121e816565b1015610ff057600080fd5b610ffa83836121fa565b5092915050565b600160a060020a03821660009081526013602052604090205460ff16151561102857600080fd5b3360009081526014602052604090205460ff16151561104657600080fd5b600160a060020a03919091166000908152601160205260409020805460ff1916911515919091179055565b600160a060020a03198116600090815260076020526040812054600160a060020a0316331461109f57600080fd5b336000818152600c60209081526040808320600160a060020a0319808816808652918452938290208054600160a060020a038a1695168517905581519485529184019290925282820152517f9882ce26ee4b9d7f9cc08c2c2101323228f2412036c7a3a050c200eede86276c9181900360600190a150600192915050565b600160a060020a031660009081526013602052604090205460ff1690565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461116d57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260068054600160a060020a0319169055565b33600090815260086020908152604091829020805483518184028101840190945280845260609392830182828015610e89576000918252602091829020805460a060020a02600160a060020a03191684529082028301929091600c9101808411610e485790505050505050905090565b600960209081526000928352604080842090915290825290205481565b60116020526000908152604090205460ff1681565b600654600160a060020a031681565b6000808080600160a060020a038516151561128257600080fd5b600160a060020a03198616600090815260076020526040902054600160a060020a031633146112b057600080fd5b600160a060020a031980871660009081526007602090815260408083208054600160a060020a038b169516851790558383526008825282208054600181810183558285529284206002820401805460a060020a8d04600c938616939093026101000a9283026bffffffffffffffffffffffff90930219169190911790559290915290546113429163ffffffff6121e816565b600160a060020a0386166000908152600960208181526040808420600160a060020a03198c1680865290835281852095909555338085529282528084209484529381528383205491835260089052919020549093506113a890600163ffffffff6121e816565b336000908152600860205260409020805491935090839081106113c757fe5b600091825260208083206002830401543384526008909152604090922080546001909216600c026101000a90920460a060020a0292508291908590811061140a57fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a9004021790555060006008600033600160a060020a0316600160a060020a031681526020019081526020016000208381548110151561147a57fe5b60009182526020808320600283040180546bffffffffffffffffffffffff6001909416600c026101000a938402191660a060020a909504929092029390931790553381526008909152604090208054906114d89060001983016124c9565b50336000818152600960209081526040808320600160a060020a03198b811680865291845282852085905586168452928190208790558051938452600160a060020a0389169184019190915282810191909152517feaeb5d0421f302fc4986a95aad8ad429bc6fed08dfda4ca1e8ed110fb7f129d89181900360600190a150600195945050505050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a395780601f10610a0e57610100808354040283529160200191610a39565b600080805b835183101561162757606084848151811015156115da57fe5b60209081029091010151855160029290920a900492508490849081106115fc57fe5b6020908102909101015166ffffffffffffff16905061161b828261162d565b506001909201916115c1565b50505050565b60006116393383611f8a565b151561164457600080fd5b610ffa83836122ea565b60125460ff1681565b600160a060020a031981166000908152600e602052604081205460ff1680156116825750600f5460ff165b92915050565b600160a060020a031981166000908152600760205260408120548190600160a060020a0316156116b757600080fd5b5060005b600c8160ff1610156117fc577f30000000000000000000000000000000000000000000000000000000000000008360ff8316600c81106116f757fe5b1a60f860020a02600160f860020a0319161015801561175557507f39000000000000000000000000000000000000000000000000000000000000008360ff8316600c811061174157fe5b1a60f860020a02600160f860020a03191611155b806117e957507f41000000000000000000000000000000000000000000000000000000000000008360ff8316600c811061178b57fe5b1a60f860020a02600160f860020a031916101580156117e957507f5a000000000000000000000000000000000000000000000000000000000000008360ff8316600c81106117d557fe5b1a60f860020a02600160f860020a03191611155b15156117f457600080fd5b6001016116bb565b61180833601054611f8a565b151561181357600080fd5b601054336000908152600360205260409020546118359163ffffffff6121e816565b3360009081526003602052604080822092909255601054308252919020546118629163ffffffff6123cd16565b306000818152600360209081526040918290209390935560105481519081529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600160a060020a03198381166000908152600760209081526040808320805433951685179055838352600882528220805460018181018355828552928420600282040180546bffffffffffffffffffffffff928516600c026101000a928302191660a060020a8a0492909202919091179055929091529054611932916121e8565b336000908152600960209081526040808320600160a060020a031988168452909152812091909155600b805460018082018355928290527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9600282040180546bffffffffffffffffffffffff928516600c026101000a928302191660a060020a880492909202919091179055546119c8916121e8565b600160a060020a031984166000818152600a60209081526040918290209390935580513381529283019190915280517f6828c0068cad8973e4a3a23e513d4f8842302b74ed927230e9523febaf4a22bc9281900390910190a150919050565b600654600160a060020a03163314611a3e57600080fd5b6012805460ff1916911515919091179055565b6000808080600160a060020a0386161515611a6b57600080fd5b600160a060020a03198516600090815260076020526040902054600160a060020a03888116911614611a9c57600080fd5b600160a060020a038781166000908152600c60209081526040808320600160a060020a03198a168452909152902054163314611ad757600080fd5b600160a060020a031980861660009081526007602090815260408083208054600160a060020a038c169516851790558383526008825282208054600181810183558285529284206002820401805460a060020a8c04600c938616939093026101000a9283026bffffffffffffffffffffffff9093021916919091179055929091529054611b699163ffffffff6121e816565b600160a060020a038088166000908152600960208181526040808420600160a060020a03198c1680865290835281852096909655938c168084529181528383209483529384528282205490825260089093522054909350611bd190600163ffffffff6121e816565b600160a060020a038816600090815260086020526040902080549193509083908110611bf957fe5b9060005260206000209060029182820401919006600c029054906101000a900460a060020a029050806008600089600160a060020a0316600160a060020a0316815260200190815260200160002084815481101515611c5457fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a9004021790555060006008600089600160a060020a0316600160a060020a0316815260200190815260200160002083815481101515611cc457fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a900402179055506008600088600160a060020a0316600160a060020a03168152602001908152602001600020805480919060019003611d3891906124c9565b50600160a060020a038781166000908152600960209081526040808320600160a060020a03198a811680865291845282852085905586168452928190208790558051338152938a169184019190915282810191909152517feaeb5d0421f302fc4986a95aad8ad429bc6fed08dfda4ca1e8ed110fb7f129d89181900360600190a15060019695505050505050565b336000908152600560209081526040808320600160a060020a0386168452909152812054611dfa908363ffffffff6123cd16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600160a060020a03198116600090815260076020526040812054600160a060020a03163314611eb857600080fd5b50336000908152600c60209081526040808320600160a060020a03199485168452909152902080549091169055600190565b600b805482908110611ef857fe5b9060005260206000209060029182820401919006600c02915054906101000a900460a060020a0281565b60125460009060ff1680611682575050600160a060020a031660009081526011602052604090205460ff1690565b600654600160a060020a0316331461104657600080fd5b600654600160a060020a03163314611f7e57600080fd5b611f87816123da565b50565b600160a060020a03821660009081526011602052604081205460ff16158015611fb6575060125460ff16155b80156120685750600160a060020a0380841660008181526003602090815260408083205460165482517f04426db400000000000000000000000000000000000000000000000000000000815260048101969096529151909591909116936304426db49360248083019493928390030190829087803b15801561203757600080fd5b505af115801561204b573d6000803e3d6000fd5b505050506040513d602081101561206157600080fd5b5051830111155b9392505050565b6000600160a060020a038316151561208657600080fd5b600160a060020a0384166000908152600360205260409020548211156120ab57600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020548211156120db57600080fd5b600160a060020a038416600090815260036020526040902054612104908363ffffffff6121e816565b600160a060020a038086166000908152600360205260408082209390935590851681522054612139908363ffffffff6123cd16565b600160a060020a03808516600090815260036020908152604080832094909455918716815260058252828120338252909152205461217d908363ffffffff6121e816565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000828211156121f457fe5b50900390565b336000908152600560209081526040808320600160a060020a03861684529091528120548083111561224f57336000908152600560209081526040808320600160a060020a0388168452909152812055612284565b61225f818463ffffffff6121e816565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561230157600080fd5b3360009081526003602052604090205482111561231d57600080fd5b3360009081526003602052604090205461233d908363ffffffff6121e816565b3360009081526003602052604080822092909255600160a060020a0385168152205461236f908363ffffffff6123cd16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561168257fe5b600160a060020a03811615156123ef57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061248c57805160ff19168380011785556124b9565b828001600101855582156124b9579182015b828111156124b957825182559160200191906001019061249e565b506124c5929150612502565b5090565b8154818355818111156124fd5760010160029004816001016002900483600052602060002091820191016124fd9190612502565b505050565b610be691905b808211156124c557600081556001016125085600a165627a7a72305820b6c837548afcc918b3a61c89dfc630413103882be1208b3f53f3844b523a28c6002900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000f3e6efada7acb1882142d8928663abb4dedb0b0b00000000000000000000000071e0773e3739dabdf99980d582910e5941af299c0000000000000000000000000000000000000000000000000000000000000006456d626c656d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454d420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061022f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610234578063095ea7b3146102be5780630c5cc0a2146102f6578063157f49e01461033457806316166f891461035c57806318160ddd1461039057806323b872dd146103a557806324304f8b146103cf578063259e488d14610428578063261ea7a414610449578063267d90741461046e578063269d152f1461048657806329bf81e4146104a05780632bf5eabb146104e15780632c83e86f146104fb578063313ce5671461051c5780633618bdab146105475780633bd86d2d146105ac57806350b04085146105e157806360f39d18146105f9578063661884631461061b5780636895a5b71461063f5780636a04c381146106655780636bc388b21461069357806370a08231146106b4578063715018a6146106d55780637beea4bf146106ea5780637f6f3d79146106ff578063860838a51461072d5780638da5cb5b1461074e5780638eacf7131461076357806395d89b41146107915780639c10d115146107a6578063a9059cbb146107fb578063b51ec3bb1461081f578063b7fe896a14610834578063ba5011fa14610856578063cdc0613c14610878578063ce086ec114610892578063d73dd623146108c6578063dd62ed3e146108ea578063e2af4cad14610911578063e5014b8c14610933578063e58398361461094b578063e724529c1461096c578063f2fde38b14610992575b600080fd5b34801561024057600080fd5b506102496109b3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028357818101518382015260200161026b565b50505050905090810190601f1680156102b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ca57600080fd5b506102e2600160a060020a0360043516602435610a41565b604080519115158252519081900360200190f35b34801561030257600080fd5b50610318600160a060020a031960043516610b5f565b60408051600160a060020a039092168252519081900360200190f35b34801561034057600080fd5b5061035a600160a060020a03600435166024351515610b84565b005b34801561036857600080fd5b5061037e600160a060020a031960043516610bc6565b60408051918252519081900360200190f35b34801561039c57600080fd5b5061037e610be2565b3480156103b157600080fd5b506102e2600160a060020a0360043581169060243516604435610be9565b3480156103db57600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261035a943694929360249392840191908190840183828082843750949750610c369650505050505050565b34801561043457600080fd5b5061035a600160a060020a0360043516610c64565b34801561045557600080fd5b5061035a600160a060020a031960043516602435610c9d565b34801561047a57600080fd5b506102e2600435610cdf565b34801561049257600080fd5b5061035a6004351515610d1a565b3480156104ac57600080fd5b506104c4600160a060020a0360043516602435610d57565b60408051600160a060020a03199092168252519081900360200190f35b3480156104ed57600080fd5b5061035a6004351515610d9f565b34801561050757600080fd5b5061035a600160a060020a0360043516610dc9565b34801561052857600080fd5b50610531610e02565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b5061055c610e0b565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610598578181015183820152602001610580565b505050509050019250505060405180910390f35b3480156105b857600080fd5b506102e2600160a060020a03600435811690600160a060020a0319602435169060443516610e93565b3480156105ed57600080fd5b5061035a600435610ecf565b34801561060557600080fd5b50610318600160a060020a031960043516610eeb565b34801561062757600080fd5b506102e2600160a060020a0360043516602435610f06565b34801561064b57600080fd5b5061035a600160a060020a03600435166024351515611001565b34801561067157600080fd5b506102e2600160a060020a0360043516600160a060020a031960243516611071565b34801561069f57600080fd5b506102e2600160a060020a036004351661111d565b3480156106c057600080fd5b5061037e600160a060020a036004351661113b565b3480156106e157600080fd5b5061035a611156565b3480156106f657600080fd5b5061055c6111b7565b34801561070b57600080fd5b5061037e600160a060020a0360043516600160a060020a031960243516611227565b34801561073957600080fd5b506102e2600160a060020a0360043516611244565b34801561075a57600080fd5b50610318611259565b34801561076f57600080fd5b506102e2600160a060020a031960043516602435600160a060020a0316611268565b34801561079d57600080fd5b50610249611562565b3480156107b257600080fd5b506040805160206004803580820135838102808601850190965280855261035a953695939460249493850192918291850190849080828437509497506115bc9650505050505050565b34801561080757600080fd5b506102e2600160a060020a036004351660243561162d565b34801561082b57600080fd5b506102e261164e565b34801561084057600080fd5b506102e2600160a060020a031960043516611657565b34801561086257600080fd5b506102e2600160a060020a031960043516611688565b34801561088457600080fd5b5061035a6004351515611a27565b34801561089e57600080fd5b506102e2600160a060020a0360043581169060243516600160a060020a031960443516611a51565b3480156108d257600080fd5b506102e2600160a060020a0360043516602435611dc6565b3480156108f657600080fd5b5061037e600160a060020a0360043581169060243516611e5f565b34801561091d57600080fd5b506102e2600160a060020a031960043516611e8a565b34801561093f57600080fd5b506104c4600435611eea565b34801561095757600080fd5b506102e2600160a060020a0360043516611f22565b34801561097857600080fd5b5061035a600160a060020a03600435166024351515611f50565b34801561099e57600080fd5b5061035a600160a060020a0360043516611f67565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b505050505081565b601554600090600160a060020a0384811691161415610af857601654604080517f04426db40000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a03909216916304426db4916024808201926020929091908290030181600087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b5051821015610af857600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a031916600090815260076020526040902054600160a060020a031690565b600654600160a060020a03163314610b9b57600080fd5b600160a060020a03919091166000908152601460205260409020805460ff1916911515919091179055565b600160a060020a0319166000908152600d602052604090205490565b6004545b90565b60125460009060ff1615610bfc57600080fd5b601554600160a060020a03163314610c2357610c188483611f8a565b1515610c2357600080fd5b610c2e84848461206f565b509392505050565b600654600160a060020a03163314610c4d57600080fd5b8051610c6090600190602084019061244b565b5050565b600654600160a060020a03163314610c7b57600080fd5b60168054600160a060020a031916600160a060020a0392909216919091179055565b600654600160a060020a03163314610cb457600080fd5b6000811015610cc257600080fd5b600160a060020a03199091166000908152600d6020526040902055565b600654600090600160a060020a03163314610cf957600080fd5b50336000908152600560209081526040808320308452909152902055600190565b3360009081526011602052604090205460ff1615610d3757600080fd5b336000908152601360205260409020805460ff1916911515919091179055565b600860205281600052604060002081815481101515610d7257fe5b9060005260206000209060029182820401919006600c02915091509054906101000a900460a060020a0281565b600654600160a060020a03163314610db657600080fd5b600f805460ff1916911515919091179055565b600654600160a060020a03163314610de057600080fd5b60158054600160a060020a031916600160a060020a0392909216919091179055565b60025460ff1681565b6060600b805480602002602001604051908101604052809291908181526020018280548015610e8957602002820191906000526020600020906000905b82829054906101000a900460a060020a02600160a060020a031916815260200190600c0190602082600b01049283019260010382029150808411610e485790505b5050505050905090565b600160a060020a038381166000908152600c60209081526040808320600160a060020a0319871684529091529020548116908216149392505050565b600654600160a060020a03163314610ee657600080fd5b601055565b600760205260009081526040902054600160a060020a031681565b601554600090600160a060020a0384811691161415610ff057601654604080517f04426db40000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a03909216916304426db4916024808201926020929091908290030181600087803b158015610f8557600080fd5b505af1158015610f99573d6000803e3d6000fd5b505050506040513d6020811015610faf57600080fd5b5051336000908152600560209081526040808320600160a060020a0388168452909152902054610fe5908463ffffffff6121e816565b1015610ff057600080fd5b610ffa83836121fa565b5092915050565b600160a060020a03821660009081526013602052604090205460ff16151561102857600080fd5b3360009081526014602052604090205460ff16151561104657600080fd5b600160a060020a03919091166000908152601160205260409020805460ff1916911515919091179055565b600160a060020a03198116600090815260076020526040812054600160a060020a0316331461109f57600080fd5b336000818152600c60209081526040808320600160a060020a0319808816808652918452938290208054600160a060020a038a1695168517905581519485529184019290925282820152517f9882ce26ee4b9d7f9cc08c2c2101323228f2412036c7a3a050c200eede86276c9181900360600190a150600192915050565b600160a060020a031660009081526013602052604090205460ff1690565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461116d57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260068054600160a060020a0319169055565b33600090815260086020908152604091829020805483518184028101840190945280845260609392830182828015610e89576000918252602091829020805460a060020a02600160a060020a03191684529082028301929091600c9101808411610e485790505050505050905090565b600960209081526000928352604080842090915290825290205481565b60116020526000908152604090205460ff1681565b600654600160a060020a031681565b6000808080600160a060020a038516151561128257600080fd5b600160a060020a03198616600090815260076020526040902054600160a060020a031633146112b057600080fd5b600160a060020a031980871660009081526007602090815260408083208054600160a060020a038b169516851790558383526008825282208054600181810183558285529284206002820401805460a060020a8d04600c938616939093026101000a9283026bffffffffffffffffffffffff90930219169190911790559290915290546113429163ffffffff6121e816565b600160a060020a0386166000908152600960208181526040808420600160a060020a03198c1680865290835281852095909555338085529282528084209484529381528383205491835260089052919020549093506113a890600163ffffffff6121e816565b336000908152600860205260409020805491935090839081106113c757fe5b600091825260208083206002830401543384526008909152604090922080546001909216600c026101000a90920460a060020a0292508291908590811061140a57fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a9004021790555060006008600033600160a060020a0316600160a060020a031681526020019081526020016000208381548110151561147a57fe5b60009182526020808320600283040180546bffffffffffffffffffffffff6001909416600c026101000a938402191660a060020a909504929092029390931790553381526008909152604090208054906114d89060001983016124c9565b50336000818152600960209081526040808320600160a060020a03198b811680865291845282852085905586168452928190208790558051938452600160a060020a0389169184019190915282810191909152517feaeb5d0421f302fc4986a95aad8ad429bc6fed08dfda4ca1e8ed110fb7f129d89181900360600190a150600195945050505050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a395780601f10610a0e57610100808354040283529160200191610a39565b600080805b835183101561162757606084848151811015156115da57fe5b60209081029091010151855160029290920a900492508490849081106115fc57fe5b6020908102909101015166ffffffffffffff16905061161b828261162d565b506001909201916115c1565b50505050565b60006116393383611f8a565b151561164457600080fd5b610ffa83836122ea565b60125460ff1681565b600160a060020a031981166000908152600e602052604081205460ff1680156116825750600f5460ff165b92915050565b600160a060020a031981166000908152600760205260408120548190600160a060020a0316156116b757600080fd5b5060005b600c8160ff1610156117fc577f30000000000000000000000000000000000000000000000000000000000000008360ff8316600c81106116f757fe5b1a60f860020a02600160f860020a0319161015801561175557507f39000000000000000000000000000000000000000000000000000000000000008360ff8316600c811061174157fe5b1a60f860020a02600160f860020a03191611155b806117e957507f41000000000000000000000000000000000000000000000000000000000000008360ff8316600c811061178b57fe5b1a60f860020a02600160f860020a031916101580156117e957507f5a000000000000000000000000000000000000000000000000000000000000008360ff8316600c81106117d557fe5b1a60f860020a02600160f860020a03191611155b15156117f457600080fd5b6001016116bb565b61180833601054611f8a565b151561181357600080fd5b601054336000908152600360205260409020546118359163ffffffff6121e816565b3360009081526003602052604080822092909255601054308252919020546118629163ffffffff6123cd16565b306000818152600360209081526040918290209390935560105481519081529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600160a060020a03198381166000908152600760209081526040808320805433951685179055838352600882528220805460018181018355828552928420600282040180546bffffffffffffffffffffffff928516600c026101000a928302191660a060020a8a0492909202919091179055929091529054611932916121e8565b336000908152600960209081526040808320600160a060020a031988168452909152812091909155600b805460018082018355928290527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9600282040180546bffffffffffffffffffffffff928516600c026101000a928302191660a060020a880492909202919091179055546119c8916121e8565b600160a060020a031984166000818152600a60209081526040918290209390935580513381529283019190915280517f6828c0068cad8973e4a3a23e513d4f8842302b74ed927230e9523febaf4a22bc9281900390910190a150919050565b600654600160a060020a03163314611a3e57600080fd5b6012805460ff1916911515919091179055565b6000808080600160a060020a0386161515611a6b57600080fd5b600160a060020a03198516600090815260076020526040902054600160a060020a03888116911614611a9c57600080fd5b600160a060020a038781166000908152600c60209081526040808320600160a060020a03198a168452909152902054163314611ad757600080fd5b600160a060020a031980861660009081526007602090815260408083208054600160a060020a038c169516851790558383526008825282208054600181810183558285529284206002820401805460a060020a8c04600c938616939093026101000a9283026bffffffffffffffffffffffff9093021916919091179055929091529054611b699163ffffffff6121e816565b600160a060020a038088166000908152600960208181526040808420600160a060020a03198c1680865290835281852096909655938c168084529181528383209483529384528282205490825260089093522054909350611bd190600163ffffffff6121e816565b600160a060020a038816600090815260086020526040902080549193509083908110611bf957fe5b9060005260206000209060029182820401919006600c029054906101000a900460a060020a029050806008600089600160a060020a0316600160a060020a0316815260200190815260200160002084815481101515611c5457fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a9004021790555060006008600089600160a060020a0316600160a060020a0316815260200190815260200160002083815481101515611cc457fe5b9060005260206000209060029182820401919006600c026101000a8154816bffffffffffffffffffffffff021916908360a060020a900402179055506008600088600160a060020a0316600160a060020a03168152602001908152602001600020805480919060019003611d3891906124c9565b50600160a060020a038781166000908152600960209081526040808320600160a060020a03198a811680865291845282852085905586168452928190208790558051338152938a169184019190915282810191909152517feaeb5d0421f302fc4986a95aad8ad429bc6fed08dfda4ca1e8ed110fb7f129d89181900360600190a15060019695505050505050565b336000908152600560209081526040808320600160a060020a0386168452909152812054611dfa908363ffffffff6123cd16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600160a060020a03198116600090815260076020526040812054600160a060020a03163314611eb857600080fd5b50336000908152600c60209081526040808320600160a060020a03199485168452909152902080549091169055600190565b600b805482908110611ef857fe5b9060005260206000209060029182820401919006600c02915054906101000a900460a060020a0281565b60125460009060ff1680611682575050600160a060020a031660009081526011602052604090205460ff1690565b600654600160a060020a0316331461104657600080fd5b600654600160a060020a03163314611f7e57600080fd5b611f87816123da565b50565b600160a060020a03821660009081526011602052604081205460ff16158015611fb6575060125460ff16155b80156120685750600160a060020a0380841660008181526003602090815260408083205460165482517f04426db400000000000000000000000000000000000000000000000000000000815260048101969096529151909591909116936304426db49360248083019493928390030190829087803b15801561203757600080fd5b505af115801561204b573d6000803e3d6000fd5b505050506040513d602081101561206157600080fd5b5051830111155b9392505050565b6000600160a060020a038316151561208657600080fd5b600160a060020a0384166000908152600360205260409020548211156120ab57600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020548211156120db57600080fd5b600160a060020a038416600090815260036020526040902054612104908363ffffffff6121e816565b600160a060020a038086166000908152600360205260408082209390935590851681522054612139908363ffffffff6123cd16565b600160a060020a03808516600090815260036020908152604080832094909455918716815260058252828120338252909152205461217d908363ffffffff6121e816565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000828211156121f457fe5b50900390565b336000908152600560209081526040808320600160a060020a03861684529091528120548083111561224f57336000908152600560209081526040808320600160a060020a0388168452909152812055612284565b61225f818463ffffffff6121e816565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561230157600080fd5b3360009081526003602052604090205482111561231d57600080fd5b3360009081526003602052604090205461233d908363ffffffff6121e816565b3360009081526003602052604080822092909255600160a060020a0385168152205461236f908363ffffffff6123cd16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561168257fe5b600160a060020a03811615156123ef57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061248c57805160ff19168380011785556124b9565b828001600101855582156124b9579182015b828111156124b957825182559160200191906001019061249e565b506124c5929150612502565b5090565b8154818355818111156124fd5760010160029004816001016002900483600052602060002091820191016124fd9190612502565b505050565b610be691905b808211156124c557600081556001016125085600a165627a7a72305820b6c837548afcc918b3a61c89dfc630413103882be1208b3f53f3844b523a28c60029

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000f3e6efada7acb1882142d8928663abb4dedb0b0b00000000000000000000000071e0773e3739dabdf99980d582910e5941af299c0000000000000000000000000000000000000000000000000000000000000006456d626c656d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454d420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Emblem
Arg [1] : _ticker (string): EMB
Arg [2] : _decimal (uint8): 8
Arg [3] : _supply (uint256): 30000000000000000
Arg [4] : _wallet (address): 0xF3e6eFaDa7aCb1882142d8928663ABB4DEDb0b0b
Arg [5] : _lemb (address): 0x71e0773e3739DabDF99980D582910E5941af299C

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [4] : 000000000000000000000000f3e6efada7acb1882142d8928663abb4dedb0b0b
Arg [5] : 00000000000000000000000071e0773e3739dabdf99980d582910e5941af299c
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 456d626c656d0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 454d420000000000000000000000000000000000000000000000000000000000


Swarm Source

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