ETH Price: $2,708.21 (+2.80%)

Token

FABA CAPITAL (FABA)
 

Overview

Max Total Supply

10,000,000,000 FABA

Holders

559 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,545.9414 FABA

Value
$0.00
0xb3137d9c7d0388271a4b09de79a3053c1006b29e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FABA CAPITAL supports companies with a positive impact in areas of environment, food-tech, biotech, education, and A.I.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PausableToken

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-25
*/

pragma solidity ^0.5.0;

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

/**
 * @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);
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 * @notice https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol
 */
library SafeMath {
	/**
	 * SafeMath mul function
	 * @dev function for safe multiply, throws on overflow.
	 **/
	function mul(uint256 a, uint256 b) internal pure returns (uint256) {
		uint256 c = a * b;
		assert(a == 0 || c / a == b);
		return c;
	}

	/**
	 * SafeMath div funciotn
	 * @dev function for safe devide, throws on overflow.
	 **/
	function div(uint256 a, uint256 b) internal pure returns (uint256) {
		uint256 c = a / b;
		return c;
	}

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

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

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

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

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

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

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/2
 */
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;
  }

}

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


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


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

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

  /**
   * @dev Allows the current owner to 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));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();
  event NotPausable();

  bool public paused = false;
  bool public canPause = true;
  address public saleAgent;
  
  function setSaleAgent(address newSaleAgnet) public onlyOwner  {
    saleAgent = newSaleAgnet;
  }
  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused || msg.sender == owner || msg.sender == saleAgent);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
     * @dev called by the owner to pause, triggers stopped state
     **/
    function pause() onlyOwner whenNotPaused public {
        require(canPause == true);
        paused = true;
        emit Pause();
    }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    require(paused == true);
    paused = false;
    emit Unpause();
  }
  
  /**
     * @dev Prevent the token from ever being paused again
     **/
    function notPausable() onlyOwner public{
        paused = false;
        canPause = false;
        emit NotPausable();
    }
}

/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {
    string public constant name = "FABA CAPITAL";
    string public constant symbol = "FABA";
    uint256 public constant decimals = 18;
	 uint256 public constant INITIAL_SUPPLY = (10 ** 10) * (10 ** uint256(decimals));

    /**
     * @dev Transfer tokens when not paused
     **/
    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transfer(_to, _value);
    }
    
    /**
     * @dev transferFrom function to tansfer tokens when token is not paused
     **/
    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }
    
    /**
     * @dev approve spender when not paused
     **/
    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }
    
    /**
     * @dev increaseApproval of spender when not paused
     **/
    function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
        return super.increaseApproval(_spender, _addedValue);
    }
    
    /**
     * @dev decreaseApproval of spender when not paused
     **/
    function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseApproval(_spender, _subtractedValue);
    }
    
    /**
   * Pausable Token Constructor
   * @dev Create and issue tokens to msg.sender.
   */
  constructor() public {
    totalSupply_ = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
  } 
}

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":false,"inputs":[{"name":"newSaleAgnet","type":"address"}],"name":"setSaleAgent","outputs":[],"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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canPause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"notPausable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[],"name":"NotPausable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526003805460a060020a61ffff021916750100000000000000000000000000000000000000000017905534801561003957600080fd5b5060038054600160a060020a031916339081179091556b204fce5e3e25026110000000600181905560009182526020829052604090912055610f5b806100806000396000f3fe6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806314133a7c1461020357806318160ddd1461023857806323b872dd1461025f5780632ff2e9dc146102a2578063313ce567146102b7578063323be1c5146102cc5780633f4ba83a146102e15780634be8b05e146102f65780635c975abb1461030b578063661884631461032057806370a0823114610359578063715018a61461038c5780638456cb59146103a15780638da5cb5b146103b657806395d89b41146103e7578063a9059cbb146103fc578063b1d6a2f014610435578063d73dd6231461044a578063dd62ed3e14610483578063f2fde38b146104be575b600080fd5b34801561013857600080fd5b506101416104f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101ef600480360360408110156101d957600080fd5b50600160a060020a038135169060200135610528565b604080519115158252519081900360200190f35b34801561020f57600080fd5b506102366004803603602081101561022657600080fd5b5035600160a060020a031661057f565b005b34801561024457600080fd5b5061024d6105c5565b60408051918252519081900360200190f35b34801561026b57600080fd5b506101ef6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105cb565b3480156102ae57600080fd5b5061024d610624565b3480156102c357600080fd5b5061024d610634565b3480156102d857600080fd5b506101ef610639565b3480156102ed57600080fd5b5061023661065b565b34801561030257600080fd5b506102366106ee565b34801561031757600080fd5b506101ef61074f565b34801561032c57600080fd5b506101ef6004803603604081101561034357600080fd5b50600160a060020a03813516906020013561075f565b34801561036557600080fd5b5061024d6004803603602081101561037c57600080fd5b5035600160a060020a03166107af565b34801561039857600080fd5b506102366107ca565b3480156103ad57600080fd5b50610236610838565b3480156103c257600080fd5b506103cb61090e565b60408051600160a060020a039092168252519081900360200190f35b3480156103f357600080fd5b5061014161091d565b34801561040857600080fd5b506101ef6004803603604081101561041f57600080fd5b50600160a060020a038135169060200135610954565b34801561044157600080fd5b506103cb6109a4565b34801561045657600080fd5b506101ef6004803603604081101561046d57600080fd5b50600160a060020a0381351690602001356109b3565b34801561048f57600080fd5b5061024d600480360360408110156104a657600080fd5b50600160a060020a0381358116916020013516610a03565b3480156104ca57600080fd5b50610236600480360360208110156104e157600080fd5b5035600160a060020a0316610a2e565b60408051808201909152600c81527f46414241204341504954414c0000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16158061054e5750600354600160a060020a031633145b806105635750600454600160a060020a031633145b151561056e57600080fd5b6105788383610ac3565b9392505050565b600354600160a060020a0316331461059657600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60015490565b60035460009060a060020a900460ff1615806105f15750600354600160a060020a031633145b806106065750600454600160a060020a031633145b151561061157600080fd5b61061c848484610b29565b949350505050565b6b204fce5e3e2502611000000081565b601281565b6003547501000000000000000000000000000000000000000000900460ff1681565b600354600160a060020a0316331461067257600080fd5b60035460a060020a900460ff16151561068a57600080fd5b60035460a060020a900460ff1615156001146106a557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600160a060020a0316331461070557600080fd5b6003805475ffff0000000000000000000000000000000000000000191690556040517faff39f66825d4448497d384dee3f4a3adf00a622960add00806503ae4ccee01c90600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615806107855750600354600160a060020a031633145b8061079a5750600454600160a060020a031633145b15156107a557600080fd5b6105788383610ca0565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146107e157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331461084f57600080fd5b60035460a060020a900460ff1615806108725750600354600160a060020a031633145b806108875750600454600160a060020a031633145b151561089257600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615156001146108bf57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f4641424100000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16158061097a5750600354600160a060020a031633145b8061098f5750600454600160a060020a031633145b151561099a57600080fd5b6105788383610d90565b600454600160a060020a031681565b60035460009060a060020a900460ff1615806109d95750600354600160a060020a031633145b806109ee5750600454600160a060020a031633145b15156109f957600080fd5b6105788383610e71565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610a4557600080fd5b600160a060020a0381161515610a5a57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b4057600080fd5b600160a060020a038416600090815260208190526040902054821115610b6557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b9557600080fd5b600160a060020a038416600090815260208190526040902054610bbe908363ffffffff610f0a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bf3908363ffffffff610f1c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c35908363ffffffff610f0a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610cf557336000908152600260209081526040808320600160a060020a0388168452909152812055610d2a565b610d05818463ffffffff610f0a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610da757600080fd5b33600090815260208190526040902054821115610dc357600080fd5b33600090815260208190526040902054610de3908363ffffffff610f0a16565b3360009081526020819052604080822092909255600160a060020a03851681522054610e15908363ffffffff610f1c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610ea5908363ffffffff610f1c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610f1657fe5b50900390565b81810182811015610f2957fe5b9291505056fea165627a7a72305820452dacee784f35fd4cfe1136fb9a35a84562d30915ac541a8be64c6850fd2f000029

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806314133a7c1461020357806318160ddd1461023857806323b872dd1461025f5780632ff2e9dc146102a2578063313ce567146102b7578063323be1c5146102cc5780633f4ba83a146102e15780634be8b05e146102f65780635c975abb1461030b578063661884631461032057806370a0823114610359578063715018a61461038c5780638456cb59146103a15780638da5cb5b146103b657806395d89b41146103e7578063a9059cbb146103fc578063b1d6a2f014610435578063d73dd6231461044a578063dd62ed3e14610483578063f2fde38b146104be575b600080fd5b34801561013857600080fd5b506101416104f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101ef600480360360408110156101d957600080fd5b50600160a060020a038135169060200135610528565b604080519115158252519081900360200190f35b34801561020f57600080fd5b506102366004803603602081101561022657600080fd5b5035600160a060020a031661057f565b005b34801561024457600080fd5b5061024d6105c5565b60408051918252519081900360200190f35b34801561026b57600080fd5b506101ef6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105cb565b3480156102ae57600080fd5b5061024d610624565b3480156102c357600080fd5b5061024d610634565b3480156102d857600080fd5b506101ef610639565b3480156102ed57600080fd5b5061023661065b565b34801561030257600080fd5b506102366106ee565b34801561031757600080fd5b506101ef61074f565b34801561032c57600080fd5b506101ef6004803603604081101561034357600080fd5b50600160a060020a03813516906020013561075f565b34801561036557600080fd5b5061024d6004803603602081101561037c57600080fd5b5035600160a060020a03166107af565b34801561039857600080fd5b506102366107ca565b3480156103ad57600080fd5b50610236610838565b3480156103c257600080fd5b506103cb61090e565b60408051600160a060020a039092168252519081900360200190f35b3480156103f357600080fd5b5061014161091d565b34801561040857600080fd5b506101ef6004803603604081101561041f57600080fd5b50600160a060020a038135169060200135610954565b34801561044157600080fd5b506103cb6109a4565b34801561045657600080fd5b506101ef6004803603604081101561046d57600080fd5b50600160a060020a0381351690602001356109b3565b34801561048f57600080fd5b5061024d600480360360408110156104a657600080fd5b50600160a060020a0381358116916020013516610a03565b3480156104ca57600080fd5b50610236600480360360208110156104e157600080fd5b5035600160a060020a0316610a2e565b60408051808201909152600c81527f46414241204341504954414c0000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16158061054e5750600354600160a060020a031633145b806105635750600454600160a060020a031633145b151561056e57600080fd5b6105788383610ac3565b9392505050565b600354600160a060020a0316331461059657600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60015490565b60035460009060a060020a900460ff1615806105f15750600354600160a060020a031633145b806106065750600454600160a060020a031633145b151561061157600080fd5b61061c848484610b29565b949350505050565b6b204fce5e3e2502611000000081565b601281565b6003547501000000000000000000000000000000000000000000900460ff1681565b600354600160a060020a0316331461067257600080fd5b60035460a060020a900460ff16151561068a57600080fd5b60035460a060020a900460ff1615156001146106a557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600160a060020a0316331461070557600080fd5b6003805475ffff0000000000000000000000000000000000000000191690556040517faff39f66825d4448497d384dee3f4a3adf00a622960add00806503ae4ccee01c90600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615806107855750600354600160a060020a031633145b8061079a5750600454600160a060020a031633145b15156107a557600080fd5b6105788383610ca0565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146107e157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331461084f57600080fd5b60035460a060020a900460ff1615806108725750600354600160a060020a031633145b806108875750600454600160a060020a031633145b151561089257600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615156001146108bf57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f4641424100000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16158061097a5750600354600160a060020a031633145b8061098f5750600454600160a060020a031633145b151561099a57600080fd5b6105788383610d90565b600454600160a060020a031681565b60035460009060a060020a900460ff1615806109d95750600354600160a060020a031633145b806109ee5750600454600160a060020a031633145b15156109f957600080fd5b6105788383610e71565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610a4557600080fd5b600160a060020a0381161515610a5a57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b4057600080fd5b600160a060020a038416600090815260208190526040902054821115610b6557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b9557600080fd5b600160a060020a038416600090815260208190526040902054610bbe908363ffffffff610f0a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bf3908363ffffffff610f1c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c35908363ffffffff610f0a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610cf557336000908152600260209081526040808320600160a060020a0388168452909152812055610d2a565b610d05818463ffffffff610f0a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610da757600080fd5b33600090815260208190526040902054821115610dc357600080fd5b33600090815260208190526040902054610de3908363ffffffff610f0a16565b3360009081526020819052604080822092909255600160a060020a03851681522054610e15908363ffffffff610f1c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610ea5908363ffffffff610f1c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610f1657fe5b50900390565b81810182811015610f2957fe5b9291505056fea165627a7a72305820452dacee784f35fd4cfe1136fb9a35a84562d30915ac541a8be64c6850fd2f000029

Deployed Bytecode Sourcemap

9974:1738:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10031:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10031:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10031:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10808:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10808:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10808:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8741:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8741:99:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8741:99:0;-1:-1:-1;;;;;8741:99:0;;;;;2311:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2311:85:0;;;;;;;;;;;;;;;;;;;;10566:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10566:166:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10566:166:0;;;;;;;;;;;;;;;;;;10169:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10169:79:0;;;;10127:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10127:37:0;;;;8676:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8676:27:0;;;;9533:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9533:125:0;;;;9745:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9745:128:0;;;;8645:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8645:26:0;;;;11305:187;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11305:187:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11305:187:0;;;;;;;;;3095:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3095:101:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3095:101:0;-1:-1:-1;;;;;3095:101:0;;;8309:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8309:114:0;;;;9307:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9307:139:0;;;;7361:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7361:20:0;;;;;;;;-1:-1:-1;;;;;7361:20:0;;;;;;;;;;;;;;10082:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10082:38:0;;;;10321:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10321:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10321:136:0;;;;;;;;;8708:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8708:24:0;;;;11040:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11040:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11040:177:0;;;;;;;;;5364:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5364:128:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5364:128:0;;;;;;;;;;;8036:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8036:178:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8036:178:0;-1:-1:-1;;;;;8036:178:0;;;10031:44;;;;;;;;;;;;;;;;;;;:::o;10808:144::-;8985:6;;10889:4;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;10913:31;10927:8;10937:6;10913:13;:31::i;:::-;10906:38;10808:144;-1:-1:-1;;;10808:144:0:o;8741:99::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;8810:9;:24;;-1:-1:-1;;8810:24:0;-1:-1:-1;;;;;8810:24:0;;;;;;;;;;8741:99::o;2311:85::-;2378:12;;2311:85;:::o;10566:166::-;8985:6;;10662:4;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;10686:38;10705:5;10712:3;10717:6;10686:18;:38::i;:::-;10679:45;10566:166;-1:-1:-1;;;;10566:166:0:o;10169:79::-;10210:38;10169:79;:::o;10127:37::-;10162:2;10127:37;:::o;8676:27::-;;;;;;;;;:::o;9533:125::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;9195:6;;-1:-1:-1;;;9195:6:0;;;;9187:15;;;;;;;;9595:6;;-1:-1:-1;;;9595:6:0;;;;:14;;9605:4;9595:14;9587:23;;;;;;9617:6;:14;;-1:-1:-1;;9617:14:0;;;9643:9;;;;9626:5;;9643:9;9533:125::o;9745:128::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;9795:6;:14;;-1:-1:-1;;9820:16:0;;;9852:13;;;;9804:5;;9852:13;9745:128::o;8645:26::-;;;-1:-1:-1;;;8645:26:0;;;;;:::o;11305:187::-;8985:6;;11402:12;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;11434:50;11457:8;11467:16;11434:22;:50::i;3095:101::-;-1:-1:-1;;;;;3174:16:0;3151:7;3174:16;;;;;;;;;;;;3095:101::o;8309:114::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;8386:5;;8367:25;;-1:-1:-1;;;;;8386:5:0;;;;8367:25;;8386:5;;8367:25;8399:5;:18;;-1:-1:-1;;8399:18:0;;;8309:114::o;9307:139::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;8985:6;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;9374:8;;;;;;;:16;;9386:4;9374:16;9366:25;;;;;;9402:6;:13;;-1:-1:-1;;9402:13:0;-1:-1:-1;;;9402:13:0;;;9431:7;;;;9402:13;;9431:7;9307:139::o;7361:20::-;;;-1:-1:-1;;;;;7361:20:0;;:::o;10082:38::-;;;;;;;;;;;;;;;;;;;:::o;10321:136::-;8985:6;;10398:4;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;10422:27;10437:3;10442:6;10422:14;:27::i;8708:24::-;;;-1:-1:-1;;;;;8708:24:0;;:::o;11040:177::-;8985:6;;11132:12;;-1:-1:-1;;;8985:6:0;;;;8984:7;;:30;;-1:-1:-1;9009:5:0;;-1:-1:-1;;;;;9009:5:0;8995:10;:19;8984:30;:57;;;-1:-1:-1;9032:9:0;;-1:-1:-1;;;;;9032:9:0;9018:10;:23;8984:57;8976:66;;;;;;;;11164:45;11187:8;11197:11;11164:22;:45::i;5364:128::-;-1:-1:-1;;;;;5461:15:0;;;5438:7;5461:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5364:128::o;8036:178::-;7849:5;;-1:-1:-1;;;;;7849:5:0;7835:10;:19;7827:28;;;;;;-1:-1:-1;;;;;8113:22:0;;;;8105:31;;;;;;8169:5;;8148:37;;-1:-1:-1;;;;;8148:37:0;;;;8169:5;;8148:37;;8169:5;;8148:37;8192:5;:16;;-1:-1:-1;;8192:16:0;-1:-1:-1;;;;;8192:16:0;;;;;;;;;;8036:178::o;4845:192::-;4933:10;4912:4;4925:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4925:29:0;;;;;;;;;;;:38;;;4975;;;;;;;4912:4;;4925:29;;4933:10;;4975:38;;;;;;;;-1:-1:-1;5027:4:0;4845:192;;;;:::o;3756:454::-;3838:4;-1:-1:-1;;;;;3859:17:0;;;;3851:26;;;;;;-1:-1:-1;;;;;3902:15:0;;:8;:15;;;;;;;;;;;3892:25;;;3884:34;;;;;;-1:-1:-1;;;;;3943:14:0;;;;;;:7;:14;;;;;;;;3958:10;3943:26;;;;;;;;3933:36;;;3925:45;;;;;;-1:-1:-1;;;;;3997:15:0;;:8;:15;;;;;;;;;;;:27;;4017:6;3997:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3979:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4047:13;;;;;;;:25;;4065:6;4047:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4031:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4108:14;;;;;:7;:14;;;;;4123:10;4108:26;;;;;;;:38;;4139:6;4108:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4079:14:0;;;;;;;:7;:14;;;;;;;;4094:10;4079:26;;;;;;;;:67;;;;4158:28;;;;;;;;;;;4079:14;;4158:28;;;;;;;;;;;-1:-1:-1;4200:4:0;3756:454;;;;;:::o;6711:424::-;6831:10;6794:4;6823:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6823:29:0;;;;;;;;;;6869:27;;;6865:168;;;6915:10;6939:1;6907:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6907:29:0;;;;;;;;;:33;6865:168;;;6995:30;:8;7008:16;6995:30;:12;:30;:::i;:::-;6971:10;6963:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6963:29:0;;;;;;;;;:62;6865:168;7059:10;7081:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7050:61:0;;7081:29;;;;;;;;;;;7050:61;;;;;;;;;7059:10;7050:61;;;;;;;;;;;-1:-1:-1;7125:4:0;;6711:424;-1:-1:-1;;;6711:424:0:o;2557:329::-;2620:4;-1:-1:-1;;;;;2641:17:0;;;;2633:26;;;;;;2693:10;2684:8;:20;;;;;;;;;;;2674:30;;;2666:39;;;;;;2746:10;2737:8;:20;;;;;;;;;;;:32;;2762:6;2737:32;:24;:32;:::i;:::-;2723:10;2714:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2792:13:0;;;;;;:25;;2810:6;2792:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2776:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2829:33;;;;;;;2776:13;;2838:10;;2829:33;;;;;;;;;;-1:-1:-1;2876:4:0;2557:329;;;;:::o;5961:276::-;6101:10;6039:4;6093:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6093:29:0;;;;;;;;;;:46;;6127:11;6093:46;:33;:46;:::i;:::-;6060:10;6052:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6052:29:0;;;;;;;;;;;;:88;;;6152:61;;;;;;6052:29;;6152:61;;;;;;;;;;;-1:-1:-1;6227:4:0;5961:276;;;;:::o;1688:108::-;1746:7;1767:6;;;;1760:14;;;;-1:-1:-1;1786:5:0;;;1688:108::o;1889:120::-;1967:5;;;1984:6;;;;1977:14;;;;1889:120;;;;:::o

Swarm Source

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