ETH Price: $2,531.89 (-1.87%)

Token

CorionX utility token (CORX)
 

Overview

Max Total Supply

400,000,000 CORX

Holders

1,153 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-8.40%)

Onchain Market Cap

$35,008.87

Circulating Supply Market Cap

$11,370.02

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.00001838 CORX

Value
$0.00 ( ~0 Eth) [0.0000%]
0x7c25bb0ac944691322849419df917c0acc1d379b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CorionX is an utility token whereby token holders are rewarded 2.5% staking quarterly in the Loyalty Staking Program.

Market

Volume (24H):$6.15
Market Capitalization:$11,370.02
Circulating Supply:129,910,129.00 CORX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
PancakeSwap (v2)
0X141383CDB8158982FB3469C3E49CC82F8026D968-0XBB4CDB9CBD36B01BD1CBAEBF2DE08D9173BC095C$0.0001
0.0000000 Eth
$5.20
52,903.899 0X141383CDB8158982FB3469C3E49CC82F8026D968
74.3314%
2
ProBit Global
CORX-USDT$0.0001
0.0000000 Eth
$1.007
18,269.079 CORX
25.6686%

Contract Source Code Verified (Exact Match)

Contract Name:
CorionXToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Multiple files format)

File 3 of 9: CorionXToken.sol
pragma solidity ^0.4.17;

import './StandardToken.sol';
import './BurnableToken.sol';
import './Ownable.sol';

/**
 * @title CorionXToken
 * @dev ERC20 token for the CorionX
 * @dev developed by: c-labs Team
 */
contract CorionXToken is StandardToken, Ownable  {

    string public name = 'CorionX utility token';
    string public symbol = 'CORX';
    uint8 public decimals = 8;
    uint public INITIAL_SUPPLY = 40000000000000000;

/**
* @dev Constructor, initialising the suppy and the owner account
*/
constructor() public {
    totalSupply = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
}

/**
* @dev kill function
* ONLY DEV, DELETE AT PROD !!!!
*/
    function kill() onlyOwner public {
        selfdestruct(owner);
    }
}

File 1 of 9: BasicToken.sol
pragma solidity ^0.4.18;


import './ERC20Basic.sol';
import './SafeMath.sol';


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

  mapping(address => uint256) balances;

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

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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 balance) {
    return balances[_owner];
  }

}

File 2 of 9: BurnableToken.sol
pragma solidity ^0.4.18;

import './BasicToken.sol';

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        emit Burn(burner, _value);
    }
}

File 4 of 9: ERC20.sol
pragma solidity ^0.4.18;


import './ERC20Basic.sol';


/**
 * @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 5 of 9: ERC20Basic.sol
pragma solidity ^0.4.18;


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

File 6 of 9: Migrations.sol
pragma solidity ^0.4.18;

contract Migrations {
  address public owner;
  uint public last_completed_migration;

  modifier restricted() {
    if (msg.sender == owner) _;
  }

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

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}

File 7 of 9: Ownable.sol
pragma solidity ^0.4.18;


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


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  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 transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.

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

}

File 8 of 9: SafeMath.sol
pragma solidity ^0.4.18;


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

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

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

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

File 9 of 9: StandardToken.sol
pragma solidity ^0.4.18;


import './BasicToken.sol';
import './ERC20.sol';


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

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


  /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint256 the amount of tokens to be transferred
    */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_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, uint _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, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

60c0604052601560808190527f436f72696f6e58207574696c69747920746f6b656e000000000000000000000060a090815261003e91600491906100d9565b506040805180820190915260048082527f434f5258000000000000000000000000000000000000000000000000000000006020909201918252610083916005916100d9565b506006805460ff19166008179055668e1bc9bf0400006007553480156100a857600080fd5b5060038054600160a060020a0319163390811790915560075460008181559182526001602052604090912055610174565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011a57805160ff1916838001178555610147565b82800160010185558215610147579182015b8281111561014757825182559160200191906001019061012c565b50610153929150610157565b5090565b61017191905b80821115610153576000815560010161015d565b90565b61094f806101836000396000f3006080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd5780632ff2e9dc146101e7578063313ce567146101fc57806341c0e1b514610227578063661884631461023e57806370a08231146102625780638da5cb5b1461028357806395d89b41146102b4578063a9059cbb146102c9578063d73dd623146102ed578063dd62ed3e14610311575b600080fd5b3480156100e057600080fd5b506100e9610338565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a03600435166024356103c6565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab61042c565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a0360043581169060243516604435610432565b3480156101f357600080fd5b506101ab6105ab565b34801561020857600080fd5b506102116105b1565b6040805160ff9092168252519081900360200190f35b34801561023357600080fd5b5061023c6105ba565b005b34801561024a57600080fd5b50610182600160a060020a03600435166024356105df565b34801561026e57600080fd5b506101ab600160a060020a03600435166106cf565b34801561028f57600080fd5b506102986106ea565b60408051600160a060020a039092168252519081900360200190f35b3480156102c057600080fd5b506100e96106f9565b3480156102d557600080fd5b50610182600160a060020a0360043516602435610754565b3480156102f957600080fd5b50610182600160a060020a0360043516602435610837565b34801561031d57600080fd5b506101ab600160a060020a03600435811690602435166108d0565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b6000600160a060020a038316151561044957600080fd5b600160a060020a03841660009081526001602052604090205482111561046e57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561049e57600080fd5b600160a060020a0384166000908152600160205260409020546104c7908363ffffffff6108fb16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546104fc908363ffffffff61090d16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610540908363ffffffff6108fb16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60075481565b60065460ff1681565b600354600160a060020a031633146105d157600080fd5b600354600160a060020a0316ff5b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561063457336000908152600260209081526040808320600160a060020a0388168452909152812055610669565b610644818463ffffffff6108fb16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103be5780601f10610393576101008083540402835291602001916103be565b6000600160a060020a038316151561076b57600080fd5b3360009081526001602052604090205482111561078757600080fd5b336000908152600160205260409020546107a7908363ffffffff6108fb16565b3360009081526001602052604080822092909255600160a060020a038516815220546107d9908363ffffffff61090d16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461086b908363ffffffff61090d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561090757fe5b50900390565b60008282018381101561091c57fe5b93925050505600a165627a7a7230582036fc2c7b5f319b44348e13f00b0139d03ebecbee45c65fb6d901f6acd6622cf20029

Deployed Bytecode

0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd5780632ff2e9dc146101e7578063313ce567146101fc57806341c0e1b514610227578063661884631461023e57806370a08231146102625780638da5cb5b1461028357806395d89b41146102b4578063a9059cbb146102c9578063d73dd623146102ed578063dd62ed3e14610311575b600080fd5b3480156100e057600080fd5b506100e9610338565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a03600435166024356103c6565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab61042c565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a0360043581169060243516604435610432565b3480156101f357600080fd5b506101ab6105ab565b34801561020857600080fd5b506102116105b1565b6040805160ff9092168252519081900360200190f35b34801561023357600080fd5b5061023c6105ba565b005b34801561024a57600080fd5b50610182600160a060020a03600435166024356105df565b34801561026e57600080fd5b506101ab600160a060020a03600435166106cf565b34801561028f57600080fd5b506102986106ea565b60408051600160a060020a039092168252519081900360200190f35b3480156102c057600080fd5b506100e96106f9565b3480156102d557600080fd5b50610182600160a060020a0360043516602435610754565b3480156102f957600080fd5b50610182600160a060020a0360043516602435610837565b34801561031d57600080fd5b506101ab600160a060020a03600435811690602435166108d0565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b6000600160a060020a038316151561044957600080fd5b600160a060020a03841660009081526001602052604090205482111561046e57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561049e57600080fd5b600160a060020a0384166000908152600160205260409020546104c7908363ffffffff6108fb16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546104fc908363ffffffff61090d16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610540908363ffffffff6108fb16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60075481565b60065460ff1681565b600354600160a060020a031633146105d157600080fd5b600354600160a060020a0316ff5b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561063457336000908152600260209081526040808320600160a060020a0388168452909152812055610669565b610644818463ffffffff6108fb16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103be5780601f10610393576101008083540402835291602001916103be565b6000600160a060020a038316151561076b57600080fd5b3360009081526001602052604090205482111561078757600080fd5b336000908152600160205260409020546107a7908363ffffffff6108fb16565b3360009081526001602052604080822092909255600160a060020a038516815220546107d9908363ffffffff61090d16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461086b908363ffffffff61090d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561090757fe5b50900390565b60008282018381101561091c57fe5b93925050505600a165627a7a7230582036fc2c7b5f319b44348e13f00b0139d03ebecbee45c65fb6d901f6acd6622cf20029

Deployed Bytecode Sourcemap

212:531:2:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;268:44:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;268:44:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1812:188:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1812:188:8;-1:-1:-1;;;;;1812:188:8;;;;;;;;;;;;;;;;;;;;;;;;;179:26:4;;8:9:-1;5:2;;;30:1;27;20:12;5:2;179:26:4;;;;;;;;;;;;;;;;;;;;736:444:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;736:444:8;-1:-1:-1;;;;;736:444:8;;;;;;;;;;;;384:46:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;384:46:2;;;;353:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;353:25:2;;;;;;;;;;;;;;;;;;;;;;;672:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;672:69:2;;;;;;3649:403:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3649:403:8;-1:-1:-1;;;;;3649:403:8;;;;;;;1017:107:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1017:107:0;-1:-1:-1;;;;;1017:107:0;;;;;238:20:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;238:20:6;;;;;;;;-1:-1:-1;;;;;238:20:6;;;;;;;;;;;;;;318:29:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;318:29:2;;;;431:384:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;431:384:0;-1:-1:-1;;;;;431:384:0;;;;;;;2916:262:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2916:262:8;-1:-1:-1;;;;;2916:262:8;;;;;;;2324:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2324:126:8;-1:-1:-1;;;;;2324:126:8;;;;;;;;;;268:44:2;;;;;;;;;;;;;;;-1:-1:-1;;268:44:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1812:188:8:-;1899:10;1879:4;1891:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1891:29:8;;;;;;;;;;;:38;;;1940;;;;;;;1879:4;;1891:29;;1899:10;;1940:38;;;;;;;;-1:-1:-1;1991:4:8;1812:188;;;;:::o;179:26:4:-;;;;:::o;736:444:8:-;818:4;-1:-1:-1;;;;;838:17:8;;;;830:26;;;;;;-1:-1:-1;;;;;880:15:8;;;;;;:8;:15;;;;;;870:25;;;862:34;;;;;;-1:-1:-1;;;;;920:14:8;;;;;;:7;:14;;;;;;;;935:10;920:26;;;;;;;;910:36;;;902:45;;;;;;-1:-1:-1;;;;;972:15:8;;;;;;:8;:15;;;;;;:27;;992:6;972:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;954:15:8;;;;;;;:8;:15;;;;;;:45;;;;1021:13;;;;;;;:25;;1039:6;1021:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1005:13:8;;;;;;;:8;:13;;;;;;;;:41;;;;1081:14;;;;;:7;:14;;;;;1096:10;1081:26;;;;;;;:38;;1112:6;1081:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;1052:14:8;;;;;;;:7;:14;;;;;;;;1067:10;1052:26;;;;;;;;:67;;;;1130:28;;;;;;;;;;;1052:14;;1130:28;;;;;;;;;;;-1:-1:-1;1171:4:8;736:444;;;;;:::o;384:46:2:-;;;;:::o;353:25::-;;;;;;:::o;672:69::-;649:5:6;;-1:-1:-1;;;;;649:5:6;635:10;:19;627:28;;;;;;728:5:2;;-1:-1:-1;;;;;728:5:2;715:19;3649:403:8;3768:10;3732:4;3760:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3760:29:8;;;;;;;;;;3799:27;;;3795:164;;;3844:10;3868:1;3836:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3836:29:8;;;;;;;;;:33;3795:164;;;3922:30;:8;3935:16;3922:30;:12;:30;:::i;:::-;3898:10;3890:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3890:29:8;;;;;;;;;:62;3795:164;3978:10;4000:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3969:61:8;;4000:29;;;;;;;;;;;3969:61;;;;;;;;;3978:10;3969:61;;;;;;;;;;;-1:-1:-1;4043:4:8;;3649:403;-1:-1:-1;;;3649:403:8:o;1017:107:0:-;-1:-1:-1;;;;;1103:16:0;1073:15;1103:16;;;:8;:16;;;;;;;1017:107::o;238:20:6:-;;;-1:-1:-1;;;;;238:20:6;;:::o;318:29:2:-;;;;;;;;;;;;;;;-1:-1:-1;;318:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431:384:0;494:4;-1:-1:-1;;;;;514:17:0;;;;506:26;;;;;;565:10;556:20;;;;:8;:20;;;;;;546:30;;;538:39;;;;;;679:10;670:20;;;;:8;:20;;;;;;:32;;695:6;670:32;:24;:32;:::i;:::-;656:10;647:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;724:13:0;;;;;;:25;;742:6;724:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;708:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;760:33;;;;;;;708:13;;769:10;;760:33;;;;;;;;;;-1:-1:-1;806:4:0;431:384;;;;:::o;2916:262:8:-;3046:10;2994:4;3038:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3038:29:8;;;;;;;;;;:46;;3072:11;3038:46;:33;:46;:::i;:::-;3014:10;3006:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3006:29:8;;;;;;;;;;;;:78;;;3095:61;;;;;;3006:29;;3095:61;;;;;;;;;;;-1:-1:-1;3169:4:8;2916:262;;;;:::o;2324:126::-;-1:-1:-1;;;;;2420:15:8;;;2398:7;2420:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2324:126::o;584:110:7:-;642:7;664:6;;;;657:14;;;;-1:-1:-1;684:5:7;;;584:110::o;698:129::-;756:7;783:5;;;801:6;;;;794:14;;;;821:1;698:129;-1:-1:-1;;;698:129:7:o

Swarm Source

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