ETH Price: $3,120.58 (-0.62%)
Gas: 5 Gwei

Token

Bitfinex LEO Token (LEO)
 

Overview

Max Total Supply

660,000,000 LEO

Holders

2,804 (0.00%)

Market

Price

$5.77 @ 0.001849 ETH (+0.26%)

Onchain Market Cap

$3,808,200,000.00

Circulating Supply Market Cap

$5,327,340,809.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
anbang.eth
Balance
17 LEO

Value
$98.09 ( ~0.0314332556512441 Eth) [0.0000%]
0xffD0d80c48F6C3C5387b7cfA7AA03970bdB926ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A utility token designed to empower the Bitfinex community and provide utility for those seeking to maximize the output and capabilities of the Bitfinex trading platform.

Profitability / Loss

Since Initial Offer Price
:$1.00 477%

Market

Volume (24H):$1,800,757.00
Market Capitalization:$5,327,340,809.00
Circulating Supply:926,540,841.00 LEO
Market Data Source: Coinmarketcap

IEO Information
*Bitfinex Launchpad

IEO Start Date : May 05, 2019  
IEO End Date : May 13, 2019
Raised : $1,000,000,000
ICO Price  : $1.00

# Exchange Pair Price  24H Volume % Volume
1
LBank
LEO-USDT$5.74
0.0018428 Eth
$642,250.00
111,830.809 LEO
35.9454%
2
Bitfinex
LEO-USD$5.79
0.0018571 Eth
$279,429.00
48,249.724 LEO
15.5088%
3
Hotcoin Global
LEO-USDT$5.76
0.0018481 Eth
$183,435.00
31,859.633 LEO
10.2405%
4
Bitfinex
LEO-USDT$5.81
0.0018626 Eth
$152,483.00
26,251.118 LEO
8.4378%
5
AscendEX (BitMax)
LEO-USDT$5.76
0.0018481 Eth
$143,726.00
24,938.270 LEO
8.0158%
6
OKX
LEO-USDT$5.75
0.0018446 Eth
$127,059.00
21,944.367 LEO
7.0535%
7
Bitfinex
LEO-ETH$5.79
0.0018558 Eth
$119,896.00
20,717.218 LEO
6.6591%
8
XT.COM
LEO-USDT$5.76
0.0018479 Eth
$72,965.00
12,583.720 LEO
4.0447%
9
DigiFinex
LEO-USDT$5.75
0.0018444 Eth
$47,403.00
8,241.457 LEO
2.6490%
10
Bitfinex
LEO-BTC$5.75
0.0018429 Eth
$25,842.00
4,496.440 LEO
1.4453%
11
Uniswap V3 (Ethereum)
0X2AF5D2AD76741191D15DFE7BF6AC92D4BD912CA3-0X5DE8AB7E27F6E7A1FFF3E5B337584AA43961BEEF$5.19
0.0016729 Eth
$5,129.38
978.329 0X2AF5D2AD76741191D15DFE7BF6AC92D4BD912CA3
0.3145%
12
ProBit Global
LEO-USDT$5.85
0.0018774 Eth
$1,111.90
190.102 LEO
0.0611%
13
Uniswap V2 (Ethereum)
0X2AF5D2AD76741191D15DFE7BF6AC92D4BD912CA3-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$5.57
0.0017999 Eth
$62.58
11.199 0X2AF5D2AD76741191D15DFE7BF6AC92D4BD912CA3
0.0036%
14
Indodax
LEO-IDR$5.37
0.0017242 Eth
$11.21
2.086 LEO
0.0007%
15
HitBTC
LEO-USDT$18.17
0.0058121 Eth
$7.73
0.500 LEO
0.0002%
16
HitBTC
LEO-BTC$2.56
0.0008222 Eth
$0.4347
0.170 LEO
0.0001%

Contract Source Code Verified (Exact Match)

Contract Name:
LEO

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2019-05-21
*/

pragma solidity ^0.5.0;


// Bitfinex LEO Token 2019
// Based on Giveth's MiniMe Token framework

contract Ownable {

  address public owner;

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

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

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

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

}


// Modified 2019, Will Harborne

/*
    Copyright 2016, Jordi Baylina

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/// @title MiniMeToken Contract
/// @author Jordi Baylina
/// @dev This token contract's goal is to make it easy for anyone to clone this
///  token using the token distribution at a given block, this will allow DAO's
///  and DApps to upgrade their features in a decentralized manner without
///  affecting the original token
/// @dev It is ERC20 compliant, but still needs to under go further testing.

contract Controlled {

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

    /// @notice The address of the controller is the only address that can call
    ///  a function with this modifier
    modifier onlyController { require(msg.sender == controller); _; }

    address public controller;

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

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

contract TokenController {
    /// @notice Called when `_owner` sends ether to the MiniMe Token contract
    /// @param _owner The address that sent the ether to create tokens
    /// @return True if the ether is accepted, false if it throws
    function proxyPayment(address _owner) public payable returns(bool);

    /// @notice Notifies the controller about a token transfer allowing the
    ///  controller to react if desired
    /// @param _from The origin of the transfer
    /// @param _to The destination of the transfer
    /// @param _amount The amount of the transfer
    /// @return False if the controller does not authorize the transfer
    function onTransfer(address _from, address _to, uint _amount) public returns(bool);

    /// @notice Notifies the controller about an approval allowing the
    ///  controller to react if desired
    /// @param _owner The address that calls `approve()`
    /// @param _spender The spender in the `approve()` call
    /// @param _amount The amount in the `approve()` call
    /// @return False if the controller does not authorize the approval
    function onApprove(address _owner, address _spender, uint _amount) public
        returns(bool);

}


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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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

    uint constant MAX_UINT = 2**256 - 1;

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

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

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

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

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

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

           require(parentSnapShotBlock < block.number);

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

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

           require(previousBalanceFrom >= _amount);

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

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

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

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

    }

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

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

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

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

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

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

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

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

        return true;
    }

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


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

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

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

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

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

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

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

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

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

        cloneToken.changeController(msg.sender);

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

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

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


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

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


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

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

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

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

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

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

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

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

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


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

}


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

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

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

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


contract LEO is MiniMeToken {

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

}


contract LEOController is TokenController, Ownable {

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

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

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


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

    /// @notice Notifies the controller about a transfer.
    /// Transfers can only happen to whitelisted addresses
    /// @param _from The origin of the transfer
    /// @param _to The destination of the transfer
    /// @param _amount The amount of the transfer
    /// @return False if the controller does not authorize the transfer
    function onTransfer(address _from, address _to, uint _amount) public returns(bool) {
        return true;
    }

    /// @notice Notifies the controller about an approval, for this Campaign all
    ///  approvals are allowed by default and no extra notifications are needed
    /// @param _owner The address that calls `approve()`
    /// @param _spender The spender in the `approve()` call
    /// @param _amount The amount in the `approve()` call
    /// @return False if the controller does not authorize the approval
    function onApprove(address _owner, address _spender, uint _amount) public
        returns(bool)
    {
        return true;
    }

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

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

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

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


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

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

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

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

    event UpgradedController (address newAddress);

}

Contract Security Audit

Contract ABI

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

60c0604052600560808190527f332e302e3000000000000000000000000000000000000000000000000000000060a090815262000040916004919062000794565b503480156200004e57600080fd5b5060405160408062002149833981018060405260408110156200007057600080fd5b50805160209182015160408051808201825260128082527f42697466696e6578204c454f20546f6b656e00000000000000000000000000008287019081528351808501909452600384527f4c454f00000000000000000000000000000000000000000000000000000000009684019690965260008054600160a060020a03191633178155600b8054600160a060020a0388166101000261010060a860020a031990911617905582519596949587959194859493929091600191620001379183919062000794565b506002805460ff191660ff851617905581516200015c90600390602085019062000794565b5060058054600160a060020a031916600160a060020a039790971696909617909555505050600655600b805460ff19169115159190911790555043600755620001bb816b0221f06fb12854a314000000640100000000620001c4810204565b5050506200088d565b60008054600160a060020a03163314620001dd57600080fd5b6000620001f2640100000000620002c1810204565b90508281018111156200020457600080fd5b60006200021a85640100000000620002dd810204565b90508381018111156200022c57600080fd5b62000244600a838601640100000000620002fc810204565b600160a060020a03851660009081526008602052604090206200027390828601640100000000620002fc810204565b604080518581529051600160a060020a038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36001925050505b92915050565b6000620002d743640100000000620003a9810204565b90505b90565b6000620002f48243640100000000620004d1810204565b90505b919050565b815415806200032f575081544390839060001981019081106200031b57fe5b906000526020600020906002020160000154105b156200037757815460009083906200034b826001830162000819565b815481106200035657fe5b600091825260209091204360029092020190815560010182905550620003a5565b8154600090839060001981019081106200038d57fe5b60009182526020909120600160029092020101829055505b5050565b600a546000901580620003dd575081600a6000815481101515620003c957fe5b906000526020600020906002020160000154115b15620004b357600554600160a060020a031615620004aa57600554600654600160a060020a039091169063981b24d0906200042390859064010000000062000652810204565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082815260200191505060206040518083038186803b1580156200047457600080fd5b505afa15801562000489573d6000803e3d6000fd5b505050506040513d6020811015620004a057600080fd5b50519050620002f7565b506000620002f7565b620004c9600a836401000000006200066c810204565b9050620002f7565b600160a060020a03821660009081526008602052604081205415806200052c5750600160a060020a0383166000908152600860205260408120805484929081106200051857fe5b906000526020600020906002020160000154115b156200061d57600554600160a060020a0316156200061457600554600654600160a060020a0390911690634ee2cd7e9085906200057490869064010000000062000652810204565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015620005de57600080fd5b505afa158015620005f3573d6000803e3d6000fd5b505050506040513d60208110156200060a57600080fd5b50519050620002bb565b506000620002bb565b600160a060020a03831660009081526008602052604090206200064a90836401000000006200066c810204565b9050620002bb565b600081831062000663578162000665565b825b9392505050565b815460009015156200068157506000620002bb565b8254839060001981019081106200069457fe5b60009182526020909120600290910201548210620006d957825483906000198101908110620006bf57fe5b9060005260206000209060020201600101549050620002bb565b826000815481101515620006e957fe5b9060005260206000209060020201600001548210156200070c57506000620002bb565b825460009060001901815b82821115620007685760026001838501010490508486828154811015156200073b57fe5b6000918252602090912060029091020154116200075b5780925062000762565b6001810391505b62000717565b85838154811015156200077757fe5b906000526020600020906002020160010154935050505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007d757805160ff191683800117855562000807565b8280016001018555821562000807579182015b8281111562000807578251825591602001919060010190620007ea565b50620008159291506200084d565b5090565b81548183558181111562000848576002028160020283600052602060002091820191016200084891906200086a565b505050565b620002da91905b8082111562000815576000815560010162000854565b620002da91905b8082111562000815576000808255600182015560020162000871565b6118ac806200089d6000396000f3fe60806040526004361061011e5760e060020a600035046306fdde0381146101de578063095ea7b31461026857806317634514146102b557806318160ddd146102dc57806323b872dd146102f1578063313ce567146103345780633cebb8231461035f5780634ee2cd7e1461039257806354fd4d50146103cb5780636638c087146103e057806370a082311461054857806380a540011461057b578063827f32c01461059057806395d89b41146105c9578063981b24d0146105de578063a9059cbb14610608578063bef97c8714610641578063c5bcc4f114610656578063cae9ca511461066b578063d3ce77fe14610733578063dd62ed3e1461076c578063e77772fe146107a7578063f41e60c5146107bc578063f77c4791146107e8575b60005461013390600160a060020a03166107fd565b151561013e57600080fd5b600054604080517ff48c30540000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a039092169163f48c3054913491602480830192602092919082900301818588803b1580156101a457600080fd5b505af11580156101b8573d6000803e3d6000fd5b50505050506040513d60208110156101cf57600080fd5b505115156101dc57600080fd5b005b3480156101ea57600080fd5b506101f3610827565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022d578181015183820152602001610215565b50505050905090810190601f16801561025a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027457600080fd5b506102a16004803603604081101561028b57600080fd5b50600160a060020a0381351690602001356108b4565b604080519115158252519081900360200190f35b3480156102c157600080fd5b506102ca610a32565b60408051918252519081900360200190f35b3480156102e857600080fd5b506102ca610a38565b3480156102fd57600080fd5b506102a16004803603606081101561031457600080fd5b50600160a060020a03813581169160208101359091169060400135610a49565b34801561034057600080fd5b50610349610b0a565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506101dc6004803603602081101561038257600080fd5b5035600160a060020a0316610b13565b34801561039e57600080fd5b506102ca600480360360408110156103b557600080fd5b50600160a060020a038135169060200135610b92565b3480156103d757600080fd5b506101f3610cda565b3480156103ec57600080fd5b5061052c600480360360a081101561040357600080fd5b81019060208101813564010000000081111561041e57600080fd5b82018360208201111561043057600080fd5b8035906020019184600183028401116401000000008311171561045257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff8535169590949093506040810192506020013590506401000000008111156104b057600080fd5b8201836020820111156104c257600080fd5b803590602001918460018302840111640100000000831117156104e457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610d35565b60408051600160a060020a039092168252519081900360200190f35b34801561055457600080fd5b506102ca6004803603602081101561056b57600080fd5b5035600160a060020a0316610f98565b34801561058757600080fd5b5061052c610fa4565b34801561059c57600080fd5b506102a1600480360360408110156105b357600080fd5b50600160a060020a038135169060200135610fb3565b3480156105d557600080fd5b506101f361106d565b3480156105ea57600080fd5b506102ca6004803603602081101561060157600080fd5b50356110c8565b34801561061457600080fd5b506102a16004803603604081101561062b57600080fd5b50600160a060020a0381351690602001356111b7565b34801561064d57600080fd5b506102a16111df565b34801561066257600080fd5b506102ca6111e8565b34801561067757600080fd5b506102a16004803603606081101561068e57600080fd5b600160a060020a03823516916020810135918101906060810160408201356401000000008111156106be57600080fd5b8201836020820111156106d057600080fd5b803590602001918460018302840111640100000000831117156106f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ee945050505050565b34801561073f57600080fd5b506102a16004803603604081101561075657600080fd5b50600160a060020a038135169060200135611309565b34801561077857600080fd5b506102ca6004803603604081101561078f57600080fd5b50600160a060020a03813581169160200135166113bf565b3480156107b357600080fd5b5061052c6113ea565b3480156107c857600080fd5b506101dc600480360360208110156107df57600080fd5b503515156113fe565b3480156107f457600080fd5b5061052c611428565b600080600160a060020a038316151561081a576000915050610822565b50506000813b115b919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b600b5460009060ff1615156108c857600080fd5b8115806108f65750336000908152600960209081526040808320600160a060020a0387168452909152902054155b151561090157600080fd5b60005461091690600160a060020a03166107fd565b156109ca5760008054604080517fda682aeb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169263da682aeb92606480820193602093909283900390910190829087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d60208110156109bd57600080fd5b505115156109ca57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6000610a43436110c8565b90505b90565b60008054600160a060020a03163314610af557600b5460ff161515610a6d57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020546000191115610af557600160a060020a0384166000908152600960209081526040808320338452909152902054821115610aca57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020805483900390555b610b00848484611437565b5060019392505050565b60025460ff1681565b600054600160a060020a03163314610b2a57600080fd5b60008054604051600160a060020a03808516939216917fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f291a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600860205260408120541580610beb5750600160a060020a038316600090815260086020526040812080548492908110610bd757fe5b906000526020600020906002020160000154115b15610cb157600554600160a060020a031615610ca957600554600654600160a060020a0390911690634ee2cd7e908590610c26908690611642565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d6020811015610ca057600080fd5b50519050610a2c565b506000610a2c565b600160a060020a0383166000908152600860205260409020610cd3908361165a565b9050610a2c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b6000821515610d42574392505b6000600b60019054906101000a9004600160a060020a0316600160a060020a0316635b7b72c130868a8a8a896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610df5578181015183820152602001610ddd565b50505050905090810190601f168015610e225780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610ea757600080fd5b505af1158015610ebb573d6000803e3d6000fd5b505050506040513d6020811015610ed157600080fd5b5051604080517f3cebb8230000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a03831691633cebb8239160248082019260009290919082900301818387803b158015610f3757600080fd5b505af1158015610f4b573d6000803e3d6000fd5b5050604080518781529051600160a060020a03851693507f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade92509081900360200190a29695505050505050565b6000610a2c8243610b92565b600554600160a060020a031681565b60008054600160a060020a03163314610fcb57600080fd5b6000610fd5610a38565b9050828101811115610fe657600080fd5b6000610ff185610f98565b905083810181111561100257600080fd5b61100f600a858401611773565b600160a060020a038516600090815260086020526040902061103390828601611773565b604080518581529051600160a060020a038716916000916000805160206118618339815191529181900360200190a3506001949350505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b600a5460009015806110fa575081600a60008154811015156110e657fe5b906000526020600020906002020160000154115b156111a557600554600160a060020a03161561119d57600554600654600160a060020a039091169063981b24d090611133908590611642565b6040518263ffffffff1660e060020a0281526004018082815260200191505060206040518083038186803b15801561116a57600080fd5b505afa15801561117e573d6000803e3d6000fd5b505050506040513d602081101561119457600080fd5b50519050610822565b506000610822565b6111b0600a8361165a565b9050610822565b600b5460009060ff1615156111cb57600080fd5b6111d6338484611437565b50600192915050565b600b5460ff1681565b60065481565b60006111fa84846108b4565b151561120557600080fd5b6040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015611298578181015183820152602001611280565b50505050905090810190601f1680156112c55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b506001979650505050505050565b60008054600160a060020a0316331461132157600080fd5b600061132b610a38565b90508281101561133a57600080fd5b600061134585610f98565b90508381101561135457600080fd5b611361600a858403611773565b600160a060020a038516600090815260086020526040902061138590858303611773565b604080518581529051600091600160a060020a038816916000805160206118618339815191529181900360200190a3506001949350505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600b546101009004600160a060020a031681565b600054600160a060020a0316331461141557600080fd5b600b805460ff1916911515919091179055565b600054600160a060020a031681565b80151561147c5781600160a060020a031683600160a060020a0316600080516020611861833981519152836040518082815260200191505060405180910390a361163d565b600654431161148a57600080fd5b600160a060020a038216158015906114ab5750600160a060020a0382163014155b15156114b657600080fd5b60006114c28443610b92565b9050818110156114d157600080fd5b6000546114e690600160a060020a03166107fd565b1561159c5760008054604080517f4a393149000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301526044820187905291519190921692634a39314992606480820193602093909283900390910190829087803b15801561156557600080fd5b505af1158015611579573d6000803e3d6000fd5b505050506040513d602081101561158f57600080fd5b5051151561159c57600080fd5b600160a060020a03841660009081526008602052604090206115c090838303611773565b60006115cc8443610b92565b90508281018111156115dd57600080fd5b600160a060020a038416600090815260086020526040902061160190828501611773565b83600160a060020a031685600160a060020a0316600080516020611861833981519152856040518082815260200191505060405180910390a350505b505050565b60008183106116515781611653565b825b9392505050565b8154600090151561166d57506000610a2c565b82548390600019810190811061167f57fe5b600091825260209091206002909102015482106116c1578254839060001981019081106116a857fe5b9060005260206000209060020201600101549050610a2c565b8260008154811015156116d057fe5b9060005260206000209060020201600001548210156116f157506000610a2c565b825460009060001901815b8282111561174857600260018385010104905084868281548110151561171e57fe5b60009182526020909120600290910201541161173c57809250611743565b6001810391505b6116fc565b858381548110151561175657fe5b906000526020600020906002020160010154935050505092915050565b815415806117a45750815443908390600019810190811061179057fe5b906000526020600020906002020160000154105b156117e757815460009083906117bd8260018301611818565b815481106117c757fe5b600091825260209091204360029092020190815560010182905550611814565b8154600090839060001981019081106117fc57fe5b60009182526020909120600160029092020101829055505b5050565b81548183558181111561163d5760008381526020902061163d91610a469160029182028101918502015b8082111561185c5760008082556001820155600201611842565b509056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e33bb8c5fab5aafa7ab530b4f370f3e2ba8b6f0f1d9ecb50bef2945c707727f200290000000000000000000000008e9ac0de3ab634ce0e2f0e397efc5ce8a72a12b8000000000000000000000000e1f3c653248de6894d683cb2f10de7ca2253046f

Deployed Bytecode

0x60806040526004361061011e5760e060020a600035046306fdde0381146101de578063095ea7b31461026857806317634514146102b557806318160ddd146102dc57806323b872dd146102f1578063313ce567146103345780633cebb8231461035f5780634ee2cd7e1461039257806354fd4d50146103cb5780636638c087146103e057806370a082311461054857806380a540011461057b578063827f32c01461059057806395d89b41146105c9578063981b24d0146105de578063a9059cbb14610608578063bef97c8714610641578063c5bcc4f114610656578063cae9ca511461066b578063d3ce77fe14610733578063dd62ed3e1461076c578063e77772fe146107a7578063f41e60c5146107bc578063f77c4791146107e8575b60005461013390600160a060020a03166107fd565b151561013e57600080fd5b600054604080517ff48c30540000000000000000000000000000000000000000000000000000000081523360048201529051600160a060020a039092169163f48c3054913491602480830192602092919082900301818588803b1580156101a457600080fd5b505af11580156101b8573d6000803e3d6000fd5b50505050506040513d60208110156101cf57600080fd5b505115156101dc57600080fd5b005b3480156101ea57600080fd5b506101f3610827565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022d578181015183820152602001610215565b50505050905090810190601f16801561025a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027457600080fd5b506102a16004803603604081101561028b57600080fd5b50600160a060020a0381351690602001356108b4565b604080519115158252519081900360200190f35b3480156102c157600080fd5b506102ca610a32565b60408051918252519081900360200190f35b3480156102e857600080fd5b506102ca610a38565b3480156102fd57600080fd5b506102a16004803603606081101561031457600080fd5b50600160a060020a03813581169160208101359091169060400135610a49565b34801561034057600080fd5b50610349610b0a565b6040805160ff9092168252519081900360200190f35b34801561036b57600080fd5b506101dc6004803603602081101561038257600080fd5b5035600160a060020a0316610b13565b34801561039e57600080fd5b506102ca600480360360408110156103b557600080fd5b50600160a060020a038135169060200135610b92565b3480156103d757600080fd5b506101f3610cda565b3480156103ec57600080fd5b5061052c600480360360a081101561040357600080fd5b81019060208101813564010000000081111561041e57600080fd5b82018360208201111561043057600080fd5b8035906020019184600183028401116401000000008311171561045257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff8535169590949093506040810192506020013590506401000000008111156104b057600080fd5b8201836020820111156104c257600080fd5b803590602001918460018302840111640100000000831117156104e457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610d35565b60408051600160a060020a039092168252519081900360200190f35b34801561055457600080fd5b506102ca6004803603602081101561056b57600080fd5b5035600160a060020a0316610f98565b34801561058757600080fd5b5061052c610fa4565b34801561059c57600080fd5b506102a1600480360360408110156105b357600080fd5b50600160a060020a038135169060200135610fb3565b3480156105d557600080fd5b506101f361106d565b3480156105ea57600080fd5b506102ca6004803603602081101561060157600080fd5b50356110c8565b34801561061457600080fd5b506102a16004803603604081101561062b57600080fd5b50600160a060020a0381351690602001356111b7565b34801561064d57600080fd5b506102a16111df565b34801561066257600080fd5b506102ca6111e8565b34801561067757600080fd5b506102a16004803603606081101561068e57600080fd5b600160a060020a03823516916020810135918101906060810160408201356401000000008111156106be57600080fd5b8201836020820111156106d057600080fd5b803590602001918460018302840111640100000000831117156106f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111ee945050505050565b34801561073f57600080fd5b506102a16004803603604081101561075657600080fd5b50600160a060020a038135169060200135611309565b34801561077857600080fd5b506102ca6004803603604081101561078f57600080fd5b50600160a060020a03813581169160200135166113bf565b3480156107b357600080fd5b5061052c6113ea565b3480156107c857600080fd5b506101dc600480360360208110156107df57600080fd5b503515156113fe565b3480156107f457600080fd5b5061052c611428565b600080600160a060020a038316151561081a576000915050610822565b50506000813b115b919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b505050505081565b600b5460009060ff1615156108c857600080fd5b8115806108f65750336000908152600960209081526040808320600160a060020a0387168452909152902054155b151561090157600080fd5b60005461091690600160a060020a03166107fd565b156109ca5760008054604080517fda682aeb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169263da682aeb92606480820193602093909283900390910190829087803b15801561099357600080fd5b505af11580156109a7573d6000803e3d6000fd5b505050506040513d60208110156109bd57600080fd5b505115156109ca57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6000610a43436110c8565b90505b90565b60008054600160a060020a03163314610af557600b5460ff161515610a6d57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020546000191115610af557600160a060020a0384166000908152600960209081526040808320338452909152902054821115610aca57600080fd5b600160a060020a03841660009081526009602090815260408083203384529091529020805483900390555b610b00848484611437565b5060019392505050565b60025460ff1681565b600054600160a060020a03163314610b2a57600080fd5b60008054604051600160a060020a03808516939216917fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f291a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600860205260408120541580610beb5750600160a060020a038316600090815260086020526040812080548492908110610bd757fe5b906000526020600020906002020160000154115b15610cb157600554600160a060020a031615610ca957600554600654600160a060020a0390911690634ee2cd7e908590610c26908690611642565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a031681526020018281526020019250505060206040518083038186803b158015610c7657600080fd5b505afa158015610c8a573d6000803e3d6000fd5b505050506040513d6020811015610ca057600080fd5b50519050610a2c565b506000610a2c565b600160a060020a0383166000908152600860205260409020610cd3908361165a565b9050610a2c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b6000821515610d42574392505b6000600b60019054906101000a9004600160a060020a0316600160a060020a0316635b7b72c130868a8a8a896040518763ffffffff1660e060020a0281526004018087600160a060020a0316600160a060020a03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610df5578181015183820152602001610ddd565b50505050905090810190601f168015610e225780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610ea757600080fd5b505af1158015610ebb573d6000803e3d6000fd5b505050506040513d6020811015610ed157600080fd5b5051604080517f3cebb8230000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a03831691633cebb8239160248082019260009290919082900301818387803b158015610f3757600080fd5b505af1158015610f4b573d6000803e3d6000fd5b5050604080518781529051600160a060020a03851693507f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade92509081900360200190a29695505050505050565b6000610a2c8243610b92565b600554600160a060020a031681565b60008054600160a060020a03163314610fcb57600080fd5b6000610fd5610a38565b9050828101811115610fe657600080fd5b6000610ff185610f98565b905083810181111561100257600080fd5b61100f600a858401611773565b600160a060020a038516600090815260086020526040902061103390828601611773565b604080518581529051600160a060020a038716916000916000805160206118618339815191529181900360200190a3506001949350505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b600a5460009015806110fa575081600a60008154811015156110e657fe5b906000526020600020906002020160000154115b156111a557600554600160a060020a03161561119d57600554600654600160a060020a039091169063981b24d090611133908590611642565b6040518263ffffffff1660e060020a0281526004018082815260200191505060206040518083038186803b15801561116a57600080fd5b505afa15801561117e573d6000803e3d6000fd5b505050506040513d602081101561119457600080fd5b50519050610822565b506000610822565b6111b0600a8361165a565b9050610822565b600b5460009060ff1615156111cb57600080fd5b6111d6338484611437565b50600192915050565b600b5460ff1681565b60065481565b60006111fa84846108b4565b151561120557600080fd5b6040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015611298578181015183820152602001611280565b50505050905090810190601f1680156112c55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b506001979650505050505050565b60008054600160a060020a0316331461132157600080fd5b600061132b610a38565b90508281101561133a57600080fd5b600061134585610f98565b90508381101561135457600080fd5b611361600a858403611773565b600160a060020a038516600090815260086020526040902061138590858303611773565b604080518581529051600091600160a060020a038816916000805160206118618339815191529181900360200190a3506001949350505050565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600b546101009004600160a060020a031681565b600054600160a060020a0316331461141557600080fd5b600b805460ff1916911515919091179055565b600054600160a060020a031681565b80151561147c5781600160a060020a031683600160a060020a0316600080516020611861833981519152836040518082815260200191505060405180910390a361163d565b600654431161148a57600080fd5b600160a060020a038216158015906114ab5750600160a060020a0382163014155b15156114b657600080fd5b60006114c28443610b92565b9050818110156114d157600080fd5b6000546114e690600160a060020a03166107fd565b1561159c5760008054604080517f4a393149000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301526044820187905291519190921692634a39314992606480820193602093909283900390910190829087803b15801561156557600080fd5b505af1158015611579573d6000803e3d6000fd5b505050506040513d602081101561158f57600080fd5b5051151561159c57600080fd5b600160a060020a03841660009081526008602052604090206115c090838303611773565b60006115cc8443610b92565b90508281018111156115dd57600080fd5b600160a060020a038416600090815260086020526040902061160190828501611773565b83600160a060020a031685600160a060020a0316600080516020611861833981519152856040518082815260200191505060405180910390a350505b505050565b60008183106116515781611653565b825b9392505050565b8154600090151561166d57506000610a2c565b82548390600019810190811061167f57fe5b600091825260209091206002909102015482106116c1578254839060001981019081106116a857fe5b9060005260206000209060020201600101549050610a2c565b8260008154811015156116d057fe5b9060005260206000209060020201600001548210156116f157506000610a2c565b825460009060001901815b8282111561174857600260018385010104905084868281548110151561171e57fe5b60009182526020909120600290910201541161173c57809250611743565b6001810391505b6116fc565b858381548110151561175657fe5b906000526020600020906002020160010154935050505092915050565b815415806117a45750815443908390600019810190811061179057fe5b906000526020600020906002020160000154105b156117e757815460009083906117bd8260018301611818565b815481106117c757fe5b600091825260209091204360029092020190815560010182905550611814565b8154600090839060001981019081106117fc57fe5b60009182526020909120600160029092020101829055505b5050565b81548183558181111561163d5760008381526020902061163d91610a469160029182028101918502015b8082111561185c5760008082556001820155600201611842565b509056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e33bb8c5fab5aafa7ab530b4f370f3e2ba8b6f0f1d9ecb50bef2945c707727f20029

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

0000000000000000000000008e9ac0de3ab634ce0e2f0e397efc5ce8a72a12b8000000000000000000000000e1f3c653248de6894d683cb2f10de7ca2253046f

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008e9ac0de3ab634ce0e2f0e397efc5ce8a72a12b8
Arg [1] : 000000000000000000000000e1f3c653248de6894d683cb2f10de7ca2253046f


Deployed Bytecode Sourcemap

25724:524:0:-;;;;;;;;-1:-1:-1;;;25724:524:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23630:10;;23619:22;;-1:-1:-1;;;;;23630:10:0;23619;:22::i;:::-;23611:31;;;;;;;;23677:10;;23661:69;;;;;;23719:10;23661:69;;;;;;-1:-1:-1;;;;;23677:10:0;;;;23661:40;;23708:9;;23661:69;;;;;;;;;;;;;;23708:9;23677:10;23661:69;;;5:2:-1;;;;30:1;27;20:12;5:2;23661:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23661:69:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23661:69:0;23653:78;;;;;;;;25724:524;4317:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4317:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4317:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12181:851;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12181:851:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12181:851:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5483:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5483:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;14532:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14532:103:0;;;:::i;8700:808::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8700:808:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8700:808:0;;;;;;;;;;;;;;;;;:::i;4398:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4398:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2262:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2262:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2262:180:0;-1:-1:-1;;;;;2262:180:0;;:::i;15000:964::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15000:964:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15000:964:0;;;;;;;;:::i;4546:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4546:31:0;;;:::i;17869:805::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17869:805:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;17869:805:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;17869:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17869:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17869:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17869:805:0;;;;;;;;;;;-1:-1:-1;17869:805:0;;;;-1:-1:-1;17869:805:0;;;;-1:-1:-1;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;17869:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17869:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17869:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17869:805:0;;-1:-1:-1;;17869:805:0;;;-1:-1:-1;;;17869:805:0;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;17869:805:0;;;;;;;;;;;;;;11642:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11642:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11642:132:0;-1:-1:-1;;;;;11642:132:0;;:::i;5175:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5175:30:0;;;:::i;19015:600::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19015:600:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19015:600:0;;;;;;;;:::i;4480:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4480:20:0;;;:::i;16182:934::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16182:934:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16182:934:0;;:::i;8151:191::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8151:191:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8151:191:0;;;;;;;;:::i;6076:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6076:28:0;;;:::i;5366:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5366:31:0;;;:::i;14034:370::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14034:370:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;14034:370:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;14034:370:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;14034:370:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;14034:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;14034:370:0;;-1:-1:-1;14034:370:0;;-1:-1:-1;;;;;14034:370:0:i;19852:524::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19852:524:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19852:524:0;;;;;;;;:::i;13358:150::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13358:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13358:150:0;;;;;;;;;;:::i;6165:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6165:38:0;;;:::i;20608:126::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20608:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20608:126:0;;;;:::i;2050:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2050:25:0;;;:::i;22916:234::-;22973:4;;-1:-1:-1;;;;;23014:19:0;;;23010:37;;;23042:5;23035:12;;;;;23010:37;-1:-1:-1;;23141:1:0;23090:18;;23136:6;22916:234;;;;:::o;4317:18::-;;;;;;;;;;;;;;;-1:-1:-1;;4317:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12181:851::-;12282:16;;12249:12;;12282:16;;12274:25;;;;;;;;12628:12;;;12627:54;;-1:-1:-1;12654:10:0;12646:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;12646:29:0;;;;;;;;;;:34;12627:54;12619:63;;;;;;;;12779:10;;12768:22;;-1:-1:-1;;;;;12779:10:0;12768;:22::i;:::-;12764:132;;;12831:10;;;12815:68;;;;;;12853:10;12815:68;;;;-1:-1:-1;;;;;12815:68:0;;;;;;;;;;;;;;;12831:10;;;;;12815:37;;:68;;;;;;;;;;;;;;;;;;12831:10;12815:68;;;5:2:-1;;;;30:1;27;20:12;5:2;12815:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12815:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12815:68:0;12807:77;;;;;;;;12916:10;12908:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;12908:29:0;;;;;;;;;;;;:39;;;12963;;;;;;;12908:29;;12916:10;12963:39;;;;;;;;;;;-1:-1:-1;13020:4:0;12181:851;;;;;:::o;5483:25::-;;;;:::o;14532:103::-;14576:4;14600:27;14614:12;14600:13;:27::i;:::-;14593:34;;14532:103;;:::o;8700:808::-;8789:12;9114:10;;-1:-1:-1;;;;;9114:10:0;9100;:24;9096:341;;9149:16;;;;9141:25;;;;;;;;-1:-1:-1;;;;;9250:14:0;;;;;;:7;:14;;;;;;;;9265:10;9250:26;;;;;;;;-1:-1:-1;;;9246:180:0;;;-1:-1:-1;;;;;9316:14:0;;;;;;:7;:14;;;;;;;;9331:10;9316:26;;;;;;;;:37;-1:-1:-1;9316:37:0;9308:46;;;;;;-1:-1:-1;;;;;9373:14:0;;;;;;:7;:14;;;;;;;;9388:10;9373:26;;;;;;;:37;;;;;;;9246:180;9447:31;9458:5;9465:3;9470:7;9447:10;:31::i;:::-;-1:-1:-1;9496:4:0;8700:808;;;;;:::o;4398:21::-;;;;;;:::o;2262:180::-;2025:10;;-1:-1:-1;;;;;2025:10:0;2011;:24;2003:33;;;;;;2369:10;;;2350:46;;-1:-1:-1;;;;;2350:46:0;;;;2369:10;;;2350:46;;;2407:10;:27;;-1:-1:-1;;2407:27:0;-1:-1:-1;;;;;2407:27:0;;;;;;;;;;2262:180::o;15000:964::-;-1:-1:-1;;;;;15442:16:0;;15086:4;15442:16;;;:8;:16;;;;;:23;:28;;15441:93;;-1:-1:-1;;;;;;15489:16:0;;;;;;:8;:16;;;;;:19;;15521:12;;15489:16;:19;;;;;;;;;;;;;;;;:29;;;:44;15441:93;15437:520;;;15563:11;;-1:-1:-1;;;;;15563:11:0;15555:34;15551:236;;15617:11;;15667:19;;-1:-1:-1;;;;;15617:11:0;;;;:23;;15641:6;;15649:38;;15653:12;;15649:3;:38::i;:::-;15617:71;;;;;-1:-1:-1;;;15617:71:0;;;;;;;-1:-1:-1;;;;;15617:71:0;-1:-1:-1;;;;;15617:71:0;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15617:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15617:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15617:71:0;;-1:-1:-1;15610:78:0;;15551:236;-1:-1:-1;15770:1:0;15763:8;;15437:520;-1:-1:-1;;;;;15914:16:0;;;;;;:8;:16;;;;;15903:42;;15932:12;15903:10;:42::i;:::-;15896:49;;;;4546:31;;;;;;;;;;;;;;;-1:-1:-1;;4546:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17869:805;18101:7;18125:19;;18121:54;;;18163:12;18146:29;;18121:54;18186:22;18211:12;;;;;;;;;-1:-1:-1;;;;;18211:12:0;-1:-1:-1;;;;;18211:29:0;;18263:4;18283:14;18312:15;18342:18;18375:17;18407;18211:228;;;;;-1:-1:-1;;;18211:228:0;;;;;;;-1:-1:-1;;;;;18211:228:0;-1:-1:-1;;;;;18211:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18211:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18211:228:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18211:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18211:228:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18211:228:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18211:228:0;18452:39;;;;;;18480:10;18452:39;;;;;;18211:228;;-1:-1:-1;;;;;;18452:27:0;;;;;:39;;;;;-1:-1:-1;;18452:39:0;;;;;;;;-1:-1:-1;18452:27:0;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;18452:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;18579:50:0;;;;;;;;-1:-1:-1;;;;;18579:50:0;;;-1:-1:-1;18579:50:0;;-1:-1:-1;18579:50:0;;;;;;;;18655:10;17869:805;-1:-1:-1;;;;;;17869:805:0:o;11642:132::-;11698:15;11733:33;11745:6;11753:12;11733:11;:33::i;5175:30::-;;;-1:-1:-1;;;;;5175:30:0;;:::o;19015:600::-;19106:4;2025:10;;-1:-1:-1;;;;;2025:10:0;2011;:24;2003:33;;;;;;19123:19;19145:13;:11;:13::i;:::-;19123:35;-1:-1:-1;19177:24:0;;;:42;-1:-1:-1;19177:42:0;19169:51;;;;;;19253:22;19278:17;19288:6;19278:9;:17::i;:::-;19253:42;-1:-1:-1;19314:27:0;;;:48;-1:-1:-1;19314:48:0;19306:57;;;;;;19396:62;19413:18;19450:7;19433:14;:24;19396:16;:62::i;:::-;-1:-1:-1;;;;;19486:16:0;;;;;;:8;:16;;;;;19469:63;;19504:27;;;19469:16;:63::i;:::-;19548:37;;;;;;;;-1:-1:-1;;;;;19548:37:0;;;19565:1;;-1:-1:-1;;;;;;;;;;;19548:37:0;;;;;;;;-1:-1:-1;19603:4:0;;19015:600;-1:-1:-1;;;;19015:600:0:o;4480:20::-;;;;;;;;;;;;;;;-1:-1:-1;;4480:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16182:934;16624:18;:25;16244:4;;16624:30;;16623:97;;;16707:12;16673:18;16692:1;16673:21;;;;;;;;;;;;;;;;;;;;:31;;;:46;16623:97;16619:490;;;16749:11;;-1:-1:-1;;;;;16749:11:0;16741:34;16737:196;;16803:11;;16847:19;;-1:-1:-1;;;;;16803:11:0;;;;:25;;16829:38;;16833:12;;16829:3;:38::i;:::-;16803:65;;;;;-1:-1:-1;;;16803:65:0;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16803:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16803:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16803:65:0;;-1:-1:-1;16796:72:0;;16737:196;-1:-1:-1;16916:1:0;16909:8;;16619:490;17053:44;17064:18;17084:12;17053:10;:44::i;:::-;17046:51;;;;8151:191;8248:16;;8215:12;;8248:16;;8240:25;;;;;;;;8276:36;8287:10;8299:3;8304:7;8276:10;:36::i;:::-;-1:-1:-1;8330:4:0;8151:191;;;;:::o;6076:28::-;;;;;;:::o;5366:31::-;;;;:::o;14034:370::-;14140:12;14173:26;14181:8;14191:7;14173;:26::i;:::-;14165:35;;;;;;;;14213:159;;;;;14276:10;14213:159;;;;;;;;;;;;14331:4;14213:159;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14213:48:0;;;;;14276:10;14301:7;;14331:4;14351:10;;14213:159;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14213:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14213:159:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;14392:4:0;;14034:370;-1:-1:-1;;;;;;;14034:370:0:o;19852:524::-;19942:4;2025:10;;-1:-1:-1;;;;;2025:10:0;2011;:24;2003:33;;;;;;19959:19;19981:13;:11;:13::i;:::-;19959:35;-1:-1:-1;20013:25:0;;;;20005:34;;;;;;20050:24;20077:17;20087:6;20077:9;:17::i;:::-;20050:44;-1:-1:-1;20113:30:0;;;;20105:39;;;;;;20155:62;20172:18;20209:7;20192:14;:24;20155:16;:62::i;:::-;-1:-1:-1;;;;;20245:16:0;;;;;;:8;:16;;;;;20228:65;;20263:29;;;20228:16;:65::i;:::-;20309:37;;;;;;;;20334:1;;-1:-1:-1;;;;;20309:37:0;;;-1:-1:-1;;;;;;;;;;;20309:37:0;;;;;;;;-1:-1:-1;20364:4:0;;19852:524;-1:-1:-1;;;;19852:524:0:o;13358:150::-;-1:-1:-1;;;;;13475:15:0;;;13438:17;13475:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;13358:150::o;6165:38::-;;;;;;-1:-1:-1;;;;;6165:38:0;;:::o;20608:126::-;2025:10;;-1:-1:-1;;;;;2025:10:0;2011;:24;2003:33;;;;;;20690:16;:36;;-1:-1:-1;;20690:36:0;;;;;;;;;;20608:126::o;2050:25::-;;;-1:-1:-1;;;;;2050:25:0;;:::o;9895:1608::-;9992:12;;9988:166;;;10045:3;-1:-1:-1;;;;;10029:29:0;10038:5;-1:-1:-1;;;;;10029:29:0;-1:-1:-1;;;;;;;;;;;10050:7:0;10029:29;;;;;;;;;;;;;;;;;;10133:7;;9988:166;10177:19;;10199:12;-1:-1:-1;10169:43:0;;;;;;-1:-1:-1;;;;;10310:17:0;;;;;;10309:45;;-1:-1:-1;;;;;;10333:20:0;;10348:4;10333:20;;10309:45;10301:54;;;;;;;;10493:27;10523:32;10535:5;10542:12;10523:11;:32::i;:::-;10493:62;-1:-1:-1;10579:30:0;;;;10571:39;;;;;;10700:10;;10689:22;;-1:-1:-1;;;;;10700:10:0;10689;:22::i;:::-;10685:129;;;10755:10;;;10739:59;;;;;;-1:-1:-1;;;;;10739:59:0;;;;;;;;;;;;;;;;;;;;;;10755:10;;;;;10739:38;;:59;;;;;;;;;;;;;;;;;;10755:10;10739:59;;;5:2:-1;;;;30:1;27;20:12;5:2;10739:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10739:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10739:59:0;10731:68;;;;;;;;-1:-1:-1;;;;;10962:15:0;;;;;;:8;:15;;;;;10945:64;;10979:29;;;10945:16;:64::i;:::-;11142:25;11170:30;11182:3;11187:12;11170:11;:30::i;:::-;11142:58;-1:-1:-1;11222:27:0;;;:48;-1:-1:-1;11222:48:0;11214:57;;;;;;-1:-1:-1;;;;;11324:13:0;;;;;;:8;:13;;;;;11307:60;;11339:27;;;11307:16;:60::i;:::-;11480:3;-1:-1:-1;;;;;11464:29:0;11473:5;-1:-1:-1;;;;;11464:29:0;-1:-1:-1;;;;;;;;;;;11485:7:0;11464:29;;;;;;;;;;;;;;;;;;9895:1608;;;;;;:::o;23225:97::-;23277:4;23305:1;23301;:5;:13;;23313:1;23301:13;;;23309:1;23301:13;23294:20;23225:97;-1:-1:-1;;;23225:97:0:o;21118:800::-;21235:18;;21214:4;;21235:23;21231:37;;;-1:-1:-1;21267:1:0;21260:8;;21231:37;21349:18;;21337:11;;-1:-1:-1;;21349:20:0;;;21337:33;;;;;;;;;;;;;;;;;;;:43;21327:53;;21323:118;;21414:18;;21402:11;;-1:-1:-1;;21414:20:0;;;21402:33;;;;;;;;;;;;;;;;:39;;;21395:46;;;;21323:118;21465:11;21477:1;21465:14;;;;;;;;;;;;;;;;;;;;:24;;;21456:6;:33;21452:47;;;-1:-1:-1;21498:1:0;21491:8;;21452:47;21598:18;;21564:8;;-1:-1:-1;;21598:20:0;21564:8;21652:219;21665:3;21659;:9;21652:219;;;21708:1;21704;21692:9;;;:13;21691:18;21685:24;;21756:6;21728:11;21740:3;21728:16;;;;;;;;;;;;;;;;;;;;;;;:26;:34;21724:136;;21789:3;21783:9;;21724:136;;;21843:1;21839:3;:5;21833:11;;21724:136;21652:219;;;21888:11;21900:3;21888:16;;;;;;;;;;;;;;;;;;;;:22;;;21881:29;;;;;21118:800;;;;:::o;22142:598::-;22247:18;;:23;;22246:99;;-1:-1:-1;22297:18:0;;22332:12;;22285:11;;-1:-1:-1;;22297:21:0;;;22285:34;;;;;;;;;;;;;;;;:44;;;:59;22246:99;22242:491;;;22413:20;;22365:32;;22400:11;;22413:20;22400:11;22413:20;;;;:::i;:::-;22400:35;;;;;;;;;;;;;;;;22488:12;22400:35;;;;;22453:48;;;22519:19;;:37;;;-1:-1:-1;22242:491:0;;;22642:18;;22595:32;;22630:11;;-1:-1:-1;;22642:20:0;;;22630:33;;;;;;;;;;;;;;22681:19;22630:33;;;;;22681:19;:37;;;-1:-1:-1;22242:491:0;22142:598;;:::o;25724:524::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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