ETH Price: $2,338.56 (-0.42%)

Token

Slopy (SLOPY)
 

Overview

Max Total Supply

888,000,000,000,000 SLOPY

Holders

204 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,606,195,571,872.292298036654745763 SLOPY

Value
$0.00
0x1fde773a22a747865dcf93e367071b5221f226ab
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Slopy (SLOPY) is meme token built on the Ethereum blockchain. It features a dynamic royalty system, where a commission is awarded random to one of the SLOPY token holders during transaction

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SlopyToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-30
*/

/**⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
Slopy(SLOPY)
Website:  https://slopy.io
**/

pragma solidity 0.5.16;

interface ERC20 {
  /**
   * @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 erc token owner.
   */
  function getOwner() external view returns (address);

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

  /**
   * @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 SlopyToken is Context, ERC20, Ownable {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;
  mapping (address => bool) private whiteList;
  address[] public addresses;
  address[] public copyAddresses;

  mapping (address => mapping (address => uint256)) private _allowances;
  mapping(address => bool) public pairs;

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;
  uint256 public feeLowerLimit;
  uint256 public feeHighLimit;
  uint256 private seed;

  constructor() public {
    _name = "Slopy";
    _symbol = "SLOPY";
    _decimals = 18;
    _totalSupply = 888000000000000000000000000000000;
    feeLowerLimit = 1776000000000000000000000000000;
    feeHighLimit = 22200000000000000000000000000000;
    _balances[msg.sender] = _totalSupply;
    addresses.push(msg.sender);
    seed = (block.timestamp + block.difficulty) % 100;
    emit Transfer(address(0), msg.sender, _totalSupply);
  }

  /**
   * @dev Returns the erc token owner.
   */
  function getOwner() external view returns (address) {
    return owner();
  }

  /**
   * @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 {ERC20-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }

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

  /**
   * @dev See {ERC20-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) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

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

  /**
   * @dev See {ERC20-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 {ERC20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {ERC20};
   *
   * 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, "ERC20: 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 {ERC20-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 {ERC20-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, "ERC20: decreased allowance below zero"));
    return true;
  }

  /**
   * @dev Burn `amount` tokens and decreasing the total supply.
   */
  function burn(uint256 amount) public returns (bool) {
    _burn(_msgSender(), 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), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");
    if (!pairs[sender] && !pairs[recipient] && _balances[sender] < feeHighLimit && !whiteList[sender]) {
        uint256 fee = amount * 88 / 100000;
        uint256 transferAmount = amount - fee;

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(transferAmount);
        emit Transfer(sender, recipient, transferAmount);

        if (_balances[sender] >= feeLowerLimit) {
            addAddress(sender);
        }
        if (_balances[sender] < feeLowerLimit) {
            removeAddress(sender);
        }

        if (_balances[recipient] >= feeLowerLimit) {
            addAddress(recipient);
        }
        if (_balances[recipient] < feeLowerLimit) {
            removeAddress(recipient);
        }

        uint256 winIndex = getRandomNumber();
        address winAddress = addresses[winIndex];
        _balances[winAddress] = _balances[winAddress].add(fee);
        emit Transfer(sender, winAddress, fee);
    } else {
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);

        if (_balances[sender] >= feeLowerLimit) {
            addAddress(sender);
        }
        if (_balances[sender] < feeLowerLimit) {
            removeAddress(sender);
        }

        if (_balances[recipient] >= feeLowerLimit) {
            addAddress(recipient);
        }
        if (_balances[recipient] < feeLowerLimit) {
            removeAddress(recipient);
        }

        emit Transfer(sender, recipient, amount);
    }
  }

  function getRandomNumber() public returns (uint256) {
    seed = (seed + block.timestamp + block.difficulty) % addresses.length;
    return seed;
  }

  function addAddress(address newAddress) internal {
    bool hasAddress = false;
    for (uint256 i = 0; i < addresses.length; i++) {
        if (addresses[i] == newAddress) {
            hasAddress = true;
            break;
        }
    }
    if (!hasAddress) {
        addresses.push(newAddress);
    }
  }

  function removeAddress(address newAddress) internal {
    for (uint256 i = 0; i < addresses.length; i++) {
        if (addresses[i] == newAddress) {
            addresses[i] = addresses[addresses.length - 1];
            addresses.pop();
            break;
        }
    }
  }


  /** @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), "ERC20: 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), "ERC20: burn from the zero address");

    _balances[account] = _balances[account].sub(amount, "ERC20: 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), "ERC20: approve from the zero address");
    require(spender != address(0), "ERC20: 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, "ERC20: burn amount exceeds allowance"));
  }

  function setNewPair(address _pair) public onlyOwner {
    require(!pairs[_pair], "This pair added already");
    pairs[_pair] = true;
  }

  function removeNewPair(address _pair) public onlyOwner {
    pairs[_pair] = false;
  }

  function isPair(address _pair) external view returns (bool) {
    return pairs[_pair];
  }

  function setLowerFeeLimit(uint256 limit) public onlyOwner {
    require(limit <= 8880000000000000000000000000000 && limit >= 8880000000000000000000, "Invalid limit");
    feeLowerLimit = limit;

    for (uint256 i = 0; i < addresses.length; i++) {
      copyAddresses.push(addresses[i]);
    }

    for (uint256 i = 0; i < copyAddresses.length; i++) {
      if (_balances[copyAddresses[i]] >= feeLowerLimit) {
        addAddress(copyAddresses[i]);
      }
      if (_balances[copyAddresses[i]] < feeLowerLimit) {
        removeAddress(copyAddresses[i]);
      }
    }

    delete copyAddresses;
  }

  function setFeeHighLimit(uint256 limit) public onlyOwner {
    require(limit <= 88800000000000000000000000000000 && limit >= 8880000000000000000000, "Invalid limit");
    feeHighLimit = limit;
  }
  
  function addWhiteList(address newAddress) public onlyOwner {
    whiteList[newAddress] = true;
  }
  function removeWhiteList(address newAddress) public onlyOwner {
    whiteList[newAddress] = false;
  }
  function isWhiteList(address account) external view returns (bool) {
    return whiteList[account];
  }
}

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":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":true,"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"addWhiteList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addresses","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"copyAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":[],"name":"feeHighLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeLowerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","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":"_pair","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"removeNewPair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"removeWhiteList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFeeHighLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setLowerFeeLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setNewPair","outputs":[],"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"}]

60806040523480156200001157600080fd5b506000620000276001600160e01b03620001b116565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600580825264536c6f707960d81b60209092019182526200009f91600a91620001b6565b5060408051808201909152600580825264534c4f505960d81b6020909201918252620000ce91600991620001b6565b506008805460ff191660121790556d2bc822bff2746599448e0000000060078190556c166a90c494b679a68980000000600b556d011834119942e8f0a1b6c0000000600c5533600081815260016020819052604082209390935560038054938401815590527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b90910180546001600160a01b0319169091179055606442440106600d55600754604080519182525133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a362000258565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b620001b391905b8082111562000237576000815560010162000242565b611d0880620002686000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063a457c2d71161011a578063dd62ed3e116100ad578063edf26d9b1161007c578063edf26d9b1461059b578063f2fde38b146105b8578063f99031a7146105de578063fce6892514610604578063fe33b3021461060c576101fb565b8063dd62ed3e14610504578063df6ed34214610532578063e5e31b131461054f578063e7cd4a0414610575576101fb565b8063c4eaaa7a116100e9578063c4eaaa7a146104a8578063cfdf7643146104ce578063d28d8852146104f4578063dbdff2c1146104fc576101fb565b8063a457c2d71461042b578063a47d988614610457578063a9059cbb14610474578063b09f1266146104a0576101fb565b806342966c6811610192578063715018a611610161578063715018a61461040b578063893d20e8146104135780638da5cb5b1461041b57806395d89b4114610423576101fb565b806342966c681461038757806342fac9d6146103a4578063512a20b7146103dd57806370a08231146103e5576101fb565b806323b872dd116101ce57806323b872dd146102ff578063313ce5671461033557806332424aa314610353578063395093511461035b576101fb565b806306fdde0314610200578063095ea7b31461027d57806318160ddd146102bd5780632042e5c2146102d7575b600080fd5b610208610632565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a96004803603604081101561029357600080fd5b506001600160a01b0381351690602001356106c9565b604080519115158252519081900360200190f35b6102c56106e6565b60408051918252519081900360200190f35b6102fd600480360360208110156102ed57600080fd5b50356001600160a01b03166106ec565b005b6102a96004803603606081101561031557600080fd5b506001600160a01b03813581169160208101359091169060400135610765565b61033d6107f2565b6040805160ff9092168252519081900360200190f35b61033d6107fb565b6102a96004803603604081101561037157600080fd5b506001600160a01b038135169060200135610804565b6102a96004803603602081101561039d57600080fd5b5035610858565b6103c1600480360360208110156103ba57600080fd5b5035610873565b604080516001600160a01b039092168252519081900360200190f35b6102c561089a565b6102c5600480360360208110156103fb57600080fd5b50356001600160a01b03166108a0565b6102fd6108bb565b6103c161095d565b6103c161096c565b61020861097b565b6102a96004803603604081101561044157600080fd5b506001600160a01b0381351690602001356109dc565b6102fd6004803603602081101561046d57600080fd5b5035610a4a565b6102a96004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610b10565b610208610b24565b6102fd600480360360208110156104be57600080fd5b50356001600160a01b0316610bb2565b6102fd600480360360208110156104e457600080fd5b50356001600160a01b0316610c2b565b610208610d15565b6102c5610d70565b6102c56004803603604081101561051a57600080fd5b506001600160a01b0381358116916020013516610d90565b6102fd6004803603602081101561054857600080fd5b5035610dbb565b6102a96004803603602081101561056557600080fd5b50356001600160a01b0316610fd5565b6102fd6004803603602081101561058b57600080fd5b50356001600160a01b0316610ff3565b6103c1600480360360208110156105b157600080fd5b503561106f565b6102fd600480360360208110156105ce57600080fd5b50356001600160a01b031661107c565b6102a9600480360360208110156105f457600080fd5b50356001600160a01b03166110dd565b6102c56110fb565b6102a96004803603602081101561062257600080fd5b50356001600160a01b0316611101565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505090505b90565b60006106dd6106d6611116565b848461111a565b50600192915050565b60075490565b6106f4611116565b6000546001600160a01b03908116911614610744576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19169055565b6000610772848484611206565b6107e88461077e611116565b6107e385604051806060016040528060288152602001611bdd602891396001600160a01b038a166000908152600560205260408120906107bc611116565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116a816565b61111a565b5060019392505050565b60085460ff1690565b60085460ff1681565b60006106dd610811611116565b846107e38560056000610822611116565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61173f16565b600061086b610865611116565b836117a0565b506001919050565b6004818154811061088057fe5b6000918252602090912001546001600160a01b0316905081565b600c5481565b6001600160a01b031660009081526001602052604090205490565b6108c3611116565b6000546001600160a01b03908116911614610913576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061096761096c565b905090565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106be5780601f10610693576101008083540402835291602001916106be565b60006106dd6109e9611116565b846107e385604051806060016040528060258152602001611caf6025913960056000610a13611116565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116a816565b610a52611116565b6000546001600160a01b03908116911614610aa2576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6d0460d046650ba3c286db000000008111158015610aca57506901e162c177be5cc000008110155b610b0b576040805162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1a5b5a5d609a1b604482015290519081900360640190fd5b600c55565b60006106dd610b1d611116565b8484611206565b6009805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba611116565b6000546001600160a01b03908116911614610c0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b610c33611116565b6000546001600160a01b03908116911614610c83576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615610cf1576040805162461bcd60e51b815260206004820152601760248201527f54686973207061697220616464656420616c7265616479000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610baa5780601f10610b7f57610100808354040283529160200191610baa565b600354600d54600091904201440181610d8557fe5b06600d819055905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610dc3611116565b6000546001600160a01b03908116911614610e13576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6c7014d3d6e7906040af800000008111158015610e3a57506901e162c177be5cc000008110155b610e7b576040805162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1a5b5a5d609a1b604482015290519081900360640190fd5b600b81905560005b600354811015610ede57600460038281548110610e9c57fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b0390921691909117905501610e83565b5060005b600454811015610fc557600b546001600060048481548110610f0057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205410610f5457610f5460048281548110610f3a57fe5b6000918252602090912001546001600160a01b031661188a565b600b546001600060048481548110610f6857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541015610fbd57610fbd60048281548110610fa357fe5b6000918252602090912001546001600160a01b0316611931565b600101610ee2565b50610fd260046000611af2565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610ffb611116565b6000546001600160a01b0390811691161461104b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b6003818154811061088057fe5b611084611116565b6000546001600160a01b039081169116146110d4576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b610fd281611a10565b6001600160a01b031660009081526002602052604090205460ff1690565b600b5481565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b03831661115f5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c8b6024913960400191505060405180910390fd5b6001600160a01b0382166111a45760405162461bcd60e51b8152600401808060200182810382526022815260200180611b956022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661124b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c666025913960400191505060405180910390fd5b6001600160a01b0382166112905760405162461bcd60e51b8152600401808060200182810382526023815260200180611b2a6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161580156112d257506001600160a01b03821660009081526006602052604090205460ff16155b80156112f75750600c546001600160a01b038416600090815260016020526040902054105b801561131c57506001600160a01b03831660009081526002602052604090205460ff16155b156115385760408051606081019091526026808252620186a060588402049182840391611373918591611bb760208301396001600160a01b038816600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546113a8908263ffffffff61173f16565b6001600160a01b038086166000818152600160209081526040918290209490945580518581529051919392891692600080516020611c2583398151915292918290030190a3600b546001600160a01b03861660009081526001602052604090205410611417576114178561188a565b600b546001600160a01b03861660009081526001602052604090205410156114425761144285611931565b600b546001600160a01b0385166000908152600160205260409020541061146c5761146c8461188a565b600b546001600160a01b03851660009081526001602052604090205410156114975761149784611931565b60006114a1610d70565b90506000600382815481106114b257fe5b60009182526020808320909101546001600160a01b031680835260019091526040909120549091506114ea908563ffffffff61173f16565b6001600160a01b0380831660008181526001602090815260409182902094909455805188815290519193928b1692600080516020611c2583398151915292918290030190a3505050506116a3565b61157b81604051806060016040528060268152602001611bb7602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546115b0908263ffffffff61173f16565b6001600160a01b0380841660009081526001602052604080822093909355600b5491861681529190912054106115e9576115e98361188a565b600b546001600160a01b03841660009081526001602052604090205410156116145761161483611931565b600b546001600160a01b0383166000908152600160205260409020541061163e5761163e8261188a565b600b546001600160a01b03831660009081526001602052604090205410156116695761166982611931565b816001600160a01b0316836001600160a01b0316600080516020611c25833981519152836040518082815260200191505060405180910390a35b505050565b600081848411156117375760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116fc5781810151838201526020016116e4565b50505050905090810190601f1680156117295780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611799576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166117e55760405162461bcd60e51b8152600401808060200182810382526021815260200180611c456021913960400191505060405180910390fd5b61182881604051806060016040528060228152602001611b4d602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b038316600090815260016020526040902055600754611854908263ffffffff611ab016565b6007556040805182815290516000916001600160a01b03851691600080516020611c258339815191529181900360200190a35050565b6000805b6003548110156118db57826001600160a01b0316600382815481106118af57fe5b6000918252602090912001546001600160a01b031614156118d357600191506118db565b60010161188e565b508061192d57600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0384161790555b5050565b60005b60035481101561192d57816001600160a01b03166003828154811061195557fe5b6000918252602090912001546001600160a01b03161415611a085760038054600019810190811061198257fe5b600091825260209091200154600380546001600160a01b0390921691839081106119a857fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060038054806119e157fe5b600082815260209020810160001990810180546001600160a01b031916905501905561192d565b600101611934565b6001600160a01b038116611a555760405162461bcd60e51b8152600401808060200182810382526026815260200180611b6f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061179983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116a8565b5080546000825590600052602060002090810190610fd291906106c691905b80821115611b255760008155600101611b11565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158208469c47a6cddd263bbe7300e09c47b176dbfa288037d510ea6854643da07dcd764736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063a457c2d71161011a578063dd62ed3e116100ad578063edf26d9b1161007c578063edf26d9b1461059b578063f2fde38b146105b8578063f99031a7146105de578063fce6892514610604578063fe33b3021461060c576101fb565b8063dd62ed3e14610504578063df6ed34214610532578063e5e31b131461054f578063e7cd4a0414610575576101fb565b8063c4eaaa7a116100e9578063c4eaaa7a146104a8578063cfdf7643146104ce578063d28d8852146104f4578063dbdff2c1146104fc576101fb565b8063a457c2d71461042b578063a47d988614610457578063a9059cbb14610474578063b09f1266146104a0576101fb565b806342966c6811610192578063715018a611610161578063715018a61461040b578063893d20e8146104135780638da5cb5b1461041b57806395d89b4114610423576101fb565b806342966c681461038757806342fac9d6146103a4578063512a20b7146103dd57806370a08231146103e5576101fb565b806323b872dd116101ce57806323b872dd146102ff578063313ce5671461033557806332424aa314610353578063395093511461035b576101fb565b806306fdde0314610200578063095ea7b31461027d57806318160ddd146102bd5780632042e5c2146102d7575b600080fd5b610208610632565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a96004803603604081101561029357600080fd5b506001600160a01b0381351690602001356106c9565b604080519115158252519081900360200190f35b6102c56106e6565b60408051918252519081900360200190f35b6102fd600480360360208110156102ed57600080fd5b50356001600160a01b03166106ec565b005b6102a96004803603606081101561031557600080fd5b506001600160a01b03813581169160208101359091169060400135610765565b61033d6107f2565b6040805160ff9092168252519081900360200190f35b61033d6107fb565b6102a96004803603604081101561037157600080fd5b506001600160a01b038135169060200135610804565b6102a96004803603602081101561039d57600080fd5b5035610858565b6103c1600480360360208110156103ba57600080fd5b5035610873565b604080516001600160a01b039092168252519081900360200190f35b6102c561089a565b6102c5600480360360208110156103fb57600080fd5b50356001600160a01b03166108a0565b6102fd6108bb565b6103c161095d565b6103c161096c565b61020861097b565b6102a96004803603604081101561044157600080fd5b506001600160a01b0381351690602001356109dc565b6102fd6004803603602081101561046d57600080fd5b5035610a4a565b6102a96004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610b10565b610208610b24565b6102fd600480360360208110156104be57600080fd5b50356001600160a01b0316610bb2565b6102fd600480360360208110156104e457600080fd5b50356001600160a01b0316610c2b565b610208610d15565b6102c5610d70565b6102c56004803603604081101561051a57600080fd5b506001600160a01b0381358116916020013516610d90565b6102fd6004803603602081101561054857600080fd5b5035610dbb565b6102a96004803603602081101561056557600080fd5b50356001600160a01b0316610fd5565b6102fd6004803603602081101561058b57600080fd5b50356001600160a01b0316610ff3565b6103c1600480360360208110156105b157600080fd5b503561106f565b6102fd600480360360208110156105ce57600080fd5b50356001600160a01b031661107c565b6102a9600480360360208110156105f457600080fd5b50356001600160a01b03166110dd565b6102c56110fb565b6102a96004803603602081101561062257600080fd5b50356001600160a01b0316611101565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505090505b90565b60006106dd6106d6611116565b848461111a565b50600192915050565b60075490565b6106f4611116565b6000546001600160a01b03908116911614610744576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19169055565b6000610772848484611206565b6107e88461077e611116565b6107e385604051806060016040528060288152602001611bdd602891396001600160a01b038a166000908152600560205260408120906107bc611116565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6116a816565b61111a565b5060019392505050565b60085460ff1690565b60085460ff1681565b60006106dd610811611116565b846107e38560056000610822611116565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61173f16565b600061086b610865611116565b836117a0565b506001919050565b6004818154811061088057fe5b6000918252602090912001546001600160a01b0316905081565b600c5481565b6001600160a01b031660009081526001602052604090205490565b6108c3611116565b6000546001600160a01b03908116911614610913576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061096761096c565b905090565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106be5780601f10610693576101008083540402835291602001916106be565b60006106dd6109e9611116565b846107e385604051806060016040528060258152602001611caf6025913960056000610a13611116565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6116a816565b610a52611116565b6000546001600160a01b03908116911614610aa2576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6d0460d046650ba3c286db000000008111158015610aca57506901e162c177be5cc000008110155b610b0b576040805162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1a5b5a5d609a1b604482015290519081900360640190fd5b600c55565b60006106dd610b1d611116565b8484611206565b6009805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba611116565b6000546001600160a01b03908116911614610c0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b610c33611116565b6000546001600160a01b03908116911614610c83576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615610cf1576040805162461bcd60e51b815260206004820152601760248201527f54686973207061697220616464656420616c7265616479000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610baa5780601f10610b7f57610100808354040283529160200191610baa565b600354600d54600091904201440181610d8557fe5b06600d819055905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610dc3611116565b6000546001600160a01b03908116911614610e13576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6c7014d3d6e7906040af800000008111158015610e3a57506901e162c177be5cc000008110155b610e7b576040805162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1a5b5a5d609a1b604482015290519081900360640190fd5b600b81905560005b600354811015610ede57600460038281548110610e9c57fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b0390921691909117905501610e83565b5060005b600454811015610fc557600b546001600060048481548110610f0057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205410610f5457610f5460048281548110610f3a57fe5b6000918252602090912001546001600160a01b031661188a565b600b546001600060048481548110610f6857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541015610fbd57610fbd60048281548110610fa357fe5b6000918252602090912001546001600160a01b0316611931565b600101610ee2565b50610fd260046000611af2565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610ffb611116565b6000546001600160a01b0390811691161461104b576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b6003818154811061088057fe5b611084611116565b6000546001600160a01b039081169116146110d4576040805162461bcd60e51b81526020600482018190526024820152600080516020611c05833981519152604482015290519081900360640190fd5b610fd281611a10565b6001600160a01b031660009081526002602052604090205460ff1690565b600b5481565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b03831661115f5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c8b6024913960400191505060405180910390fd5b6001600160a01b0382166111a45760405162461bcd60e51b8152600401808060200182810382526022815260200180611b956022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661124b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c666025913960400191505060405180910390fd5b6001600160a01b0382166112905760405162461bcd60e51b8152600401808060200182810382526023815260200180611b2a6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161580156112d257506001600160a01b03821660009081526006602052604090205460ff16155b80156112f75750600c546001600160a01b038416600090815260016020526040902054105b801561131c57506001600160a01b03831660009081526002602052604090205460ff16155b156115385760408051606081019091526026808252620186a060588402049182840391611373918591611bb760208301396001600160a01b038816600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546113a8908263ffffffff61173f16565b6001600160a01b038086166000818152600160209081526040918290209490945580518581529051919392891692600080516020611c2583398151915292918290030190a3600b546001600160a01b03861660009081526001602052604090205410611417576114178561188a565b600b546001600160a01b03861660009081526001602052604090205410156114425761144285611931565b600b546001600160a01b0385166000908152600160205260409020541061146c5761146c8461188a565b600b546001600160a01b03851660009081526001602052604090205410156114975761149784611931565b60006114a1610d70565b90506000600382815481106114b257fe5b60009182526020808320909101546001600160a01b031680835260019091526040909120549091506114ea908563ffffffff61173f16565b6001600160a01b0380831660008181526001602090815260409182902094909455805188815290519193928b1692600080516020611c2583398151915292918290030190a3505050506116a3565b61157b81604051806060016040528060268152602001611bb7602691396001600160a01b038616600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546115b0908263ffffffff61173f16565b6001600160a01b0380841660009081526001602052604080822093909355600b5491861681529190912054106115e9576115e98361188a565b600b546001600160a01b03841660009081526001602052604090205410156116145761161483611931565b600b546001600160a01b0383166000908152600160205260409020541061163e5761163e8261188a565b600b546001600160a01b03831660009081526001602052604090205410156116695761166982611931565b816001600160a01b0316836001600160a01b0316600080516020611c25833981519152836040518082815260200191505060405180910390a35b505050565b600081848411156117375760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116fc5781810151838201526020016116e4565b50505050905090810190601f1680156117295780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611799576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166117e55760405162461bcd60e51b8152600401808060200182810382526021815260200180611c456021913960400191505060405180910390fd5b61182881604051806060016040528060228152602001611b4d602291396001600160a01b038516600090815260016020526040902054919063ffffffff6116a816565b6001600160a01b038316600090815260016020526040902055600754611854908263ffffffff611ab016565b6007556040805182815290516000916001600160a01b03851691600080516020611c258339815191529181900360200190a35050565b6000805b6003548110156118db57826001600160a01b0316600382815481106118af57fe5b6000918252602090912001546001600160a01b031614156118d357600191506118db565b60010161188e565b508061192d57600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0384161790555b5050565b60005b60035481101561192d57816001600160a01b03166003828154811061195557fe5b6000918252602090912001546001600160a01b03161415611a085760038054600019810190811061198257fe5b600091825260209091200154600380546001600160a01b0390921691839081106119a857fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060038054806119e157fe5b600082815260209020810160001990810180546001600160a01b031916905501905561192d565b600101611934565b6001600160a01b038116611a555760405162461bcd60e51b8152600401808060200182810382526026815260200180611b6f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061179983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116a8565b5080546000825590600052602060002090810190610fd291906106c691905b80821115611b255760008155600101611b11565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158208469c47a6cddd263bbe7300e09c47b176dbfa288037d510ea6854643da07dcd764736f6c63430005100032

Deployed Bytecode Sourcemap

11392:11886:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11392:11886:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12881: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;12881:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13921:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13921:144:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13016:87;;;:::i;:::-;;;;;;;;;;;;;;;;23062:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23062:104:0;-1:-1:-1;;;;;23062:104:0;;:::i;:::-;;14510:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14510:292:0;;;;;;;;;;;;;;;;;:::i;12609:79::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11795:22;;;:::i;15184:200::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15184:200:0;;;;;;;;:::i;16192:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16192:110:0;;:::i;11607:30::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11607:30:0;;:::i;:::-;;;;-1:-1:-1;;;;;11607:30:0;;;;;;;;;;;;;;11905:27;;;:::i;13157:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13157:106:0;-1:-1:-1;;;;;13157:106:0;;:::i;10694:130::-;;;:::i;12471:79::-;;;:::i;10092:73::-;;;:::i;12745:83::-;;;:::i;15856:251::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15856:251:0;;;;;;;;:::i;22751:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22751:199:0;;:::i;13457:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13457:150:0;;;;;;;;:::i;11822:21::-;;;:::i;21937:88::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21937:88:0;-1:-1:-1;;;;;21937:88:0;;:::i;21791:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21791:140:0;-1:-1:-1;;;;;21791:140:0;;:::i;11848:19::-;;;:::i;18700:152::-;;;:::i;13661:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13661:130:0;;;;;;;;;;:::i;22129:616::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22129:616:0;;:::i;22031:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22031:92:0;-1:-1:-1;;;;;22031:92:0;;:::i;22958:100::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22958:100:0;-1:-1:-1;;;;;22958:100:0;;:::i;11576:26::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11576:26:0;;:::i;10969:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10969:103:0;-1:-1:-1;;;;;10969:103:0;;:::i;23170:105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23170:105:0;-1:-1:-1;;;;;23170:105:0;;:::i;11872:28::-;;;:::i;11718:37::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11718:37:0;-1:-1:-1;;;;;11718:37:0;;:::i;12881:79::-;12949:5;12942:12;;;;;;;;-1:-1:-1;;12942:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12920:13;;12942:12;;12949:5;;12942:12;;12949:5;12942:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12881:79;;:::o;13921:144::-;13989:4;14002:39;14011:12;:10;:12::i;:::-;14025:7;14034:6;14002:8;:39::i;:::-;-1:-1:-1;14055:4:0;13921:144;;;;:::o;13016:87::-;13085:12;;13016:87;:::o;23062:104::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23131:21:0;23155:5;23131:21;;;:9;:21;;;;;:29;;-1:-1:-1;;23131:29:0;;;23062:104::o;14510:292::-;14601:4;14614:36;14624:6;14632:9;14643:6;14614:9;:36::i;:::-;14657:121;14666:6;14674:12;:10;:12::i;:::-;14688:89;14726:6;14688:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14688:19:0;;;;;;:11;:19;;;;;;14708:12;:10;:12::i;:::-;-1:-1:-1;;;;;14688:33:0;;;;;;;;;;;;-1:-1:-1;14688:33:0;;;:89;;:37;:89;:::i;:::-;14657:8;:121::i;:::-;-1:-1:-1;14792:4:0;14510:292;;;;;:::o;12609:79::-;12673:9;;;;12609:79;:::o;11795:22::-;;;;;;:::o;15184:200::-;15264:4;15277:83;15286:12;:10;:12::i;:::-;15300:7;15309:50;15348:10;15309:11;:25;15321:12;:10;:12::i;:::-;-1:-1:-1;;;;;15309:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15309:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;16192:110::-;16238:4;16251:27;16257:12;:10;:12::i;:::-;16271:6;16251:5;:27::i;:::-;-1:-1:-1;16292:4:0;16192:110;;;:::o;11607:30::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11607:30:0;;-1:-1:-1;11607:30:0;:::o;11905:27::-;;;;:::o;13157:106::-;-1:-1:-1;;;;;13239:18:0;13216:7;13239:18;;;:9;:18;;;;;;;13157:106::o;10694:130::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;10789:1;10773:6;;10752:40;;-1:-1:-1;;;;;10773:6:0;;;;10752:40;;10789:1;;10752:40;10816:1;10799:19;;-1:-1:-1;;;;;;10799:19:0;;;10694:130::o;12471:79::-;12514:7;12537;:5;:7::i;:::-;12530:14;;12471:79;:::o;10092:73::-;10130:7;10153:6;-1:-1:-1;;;;;10153:6:0;10092:73;:::o;12745:83::-;12815:7;12808:14;;;;;;;;-1:-1:-1;;12808:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12786:13;;12808:14;;12815:7;;12808:14;;12815:7;12808:14;;;;;;;;;;;;;;;;;;;;;;;;15856:251;15941:4;15954:129;15963:12;:10;:12::i;:::-;15977:7;15986:96;16025:15;15986:96;;;;;;;;;;;;;;;;;:11;:25;15998:12;:10;:12::i;:::-;-1:-1:-1;;;;;15986:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15986:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;22751:199::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;22832:32;22823:5;:41;;:76;;;;;22877:22;22868:5;:31;;22823:76;22815:102;;;;;-1:-1:-1;;;22815:102:0;;;;;;;;;;;;-1:-1:-1;;;22815:102:0;;;;;;;;;;;;;;;22924:12;:20;22751:199::o;13457:150::-;13528:4;13541:42;13551:12;:10;:12::i;:::-;13565:9;13576:6;13541:9;:42::i;11822:21::-;;;;;;;;;;;;;;;-1:-1:-1;;11822:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21937:88::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21999:12:0;22014:5;21999:12;;;:5;:12;;;;;:20;;-1:-1:-1;;21999:20:0;;;21937:88::o;21791:140::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21859:12:0;;;;;;:5;:12;;;;;;;;21858:13;21850:49;;;;;-1:-1:-1;;;21850:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21906:12:0;;;;;:5;:12;;;;;:19;;-1:-1:-1;;21906:19:0;21921:4;21906:19;;;21791:140::o;11848:19::-;;;;;;;;;;;;;;;-1:-1:-1;;11848:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18700:152;18812:9;:16;18767:4;;18743:7;;18812:16;18774:15;18767:22;18792:16;18767:41;18812:16;18766:62;;;;;18759:4;:69;;;18766:62;-1:-1:-1;18700:152:0;:::o;13661:130::-;-1:-1:-1;;;;;13758:18:0;;;13735:7;13758:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13661:130::o;22129:616::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;22211:31;22202:5;:40;;:75;;;;;22255:22;22246:5;:31;;22202:75;22194:101;;;;;-1:-1:-1;;;22194:101:0;;;;;;;;;;;;-1:-1:-1;;;22194:101:0;;;;;;;;;;;;;;;22302:13;:21;;;22337:9;22332:96;22356:9;:16;22352:20;;22332:96;;;22388:13;22407:9;22417:1;22407:12;;;;;;;;;;;;;;;;;;;;27:10:-1;;22407:12:0;23:18:-1;;;45:23;;22388:32:0;;;;;;;;;;-1:-1:-1;;;;;;22388:32:0;-1:-1:-1;;;;;22407:12:0;;;22388:32;;;;;;22374:3;22332:96;;;-1:-1:-1;22441:9:0;22436:275;22460:13;:20;22456:24;;22436:275;;;22531:13;;22500:9;:27;22510:13;22524:1;22510:16;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22510:16:0;22500:27;;;;;;;;;;;;;:44;22496:99;;22557:28;22568:13;22582:1;22568:16;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22568:16:0;22557:10;:28::i;:::-;22637:13;;22607:9;:27;22617:13;22631:1;22617:16;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22617:16:0;22607:27;;;;;;;;;;;;;:43;22603:101;;;22663:31;22677:13;22691:1;22677:16;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22677:16:0;22663:13;:31::i;:::-;22482:3;;22436:275;;;-1:-1:-1;22719:20:0;22726:13;;22719:20;:::i;:::-;22129:616;:::o;22031:92::-;-1:-1:-1;;;;;22105:12:0;22085:4;22105:12;;;:5;:12;;;;;;;;;22031:92::o;22958:100::-;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23024:21:0;;;;;:9;:21;;;;;:28;;-1:-1:-1;;23024:28:0;23048:4;23024:28;;;22958:100::o;11576:26::-;;;;;;;;;;10969:103;10296:12;:10;:12::i;:::-;10286:6;;-1:-1:-1;;;;;10286:6:0;;;:22;;;10278:67;;;;;-1:-1:-1;;;10278:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10278:67:0;;;;;;;;;;;;;;;11038:28;11057:8;11038:18;:28::i;23170:105::-;-1:-1:-1;;;;;23251:18:0;23231:4;23251:18;;;:9;:18;;;;;;;;;23170:105::o;11872:28::-;;;;:::o;11718:37::-;;;;;;;;;;;;;;;:::o;3789:92::-;3865:10;3789:92;:::o;21071:320::-;-1:-1:-1;;;;;21161:19:0;;21153:68;;;;-1:-1:-1;;;21153:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21236:21:0;;21228:68;;;;-1:-1:-1;;;21228:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21305:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21353:32;;;;;;;;;;;;;;;;;21071:320;;;:::o;16762:1932::-;-1:-1:-1;;;;;16856:20:0;;16848:70;;;;-1:-1:-1;;;16848:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16933:23:0;;16925:71;;;;-1:-1:-1;;;16925:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17008:13:0;;;;;;:5;:13;;;;;;;;17007:14;:35;;;;-1:-1:-1;;;;;;17026:16:0;;;;;;:5;:16;;;;;;;;17025:17;17007:35;:71;;;;-1:-1:-1;17066:12:0;;-1:-1:-1;;;;;17046:17:0;;;;;;:9;:17;;;;;;:32;17007:71;:93;;;;-1:-1:-1;;;;;;17083:17:0;;;;;;:9;:17;;;;;;;;17082:18;17007:93;17003:1686;;;17228:71;;;;;;;;;;;;;17141:6;17136:2;17127:11;;:20;;17183:12;;;;17228:71;;17127:11;;17228:71;;;;;-1:-1:-1;;;;;17228:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17208:17:0;;;;;;;:9;:17;;;;;;:91;;;;17333:20;;;;;;;:40;;17358:14;17333:40;:24;:40;:::i;:::-;-1:-1:-1;;;;;17310:20:0;;;;;;;:9;:20;;;;;;;;;:63;;;;17389:43;;;;;;;17310:20;;17389:43;;;;-1:-1:-1;;;;;;;;;;;17389:43:0;;;;;;;;17470:13;;-1:-1:-1;;;;;17449:17:0;;;;;;:9;:17;;;;;;:34;17445:85;;17500:18;17511:6;17500:10;:18::i;:::-;17564:13;;-1:-1:-1;;;;;17544:17:0;;;;;;:9;:17;;;;;;:33;17540:87;;;17594:21;17608:6;17594:13;:21::i;:::-;17667:13;;-1:-1:-1;;;;;17643:20:0;;;;;;:9;:20;;;;;;:37;17639:91;;17697:21;17708:9;17697:10;:21::i;:::-;17767:13;;-1:-1:-1;;;;;17744:20:0;;;;;;:9;:20;;;;;;:36;17740:93;;;17797:24;17811:9;17797:13;:24::i;:::-;17845:16;17864:17;:15;:17::i;:::-;17845:36;;17892:18;17913:9;17923:8;17913:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17913:19:0;17967:21;;;17913:19;17967:21;;;;;;;;17913:19;;-1:-1:-1;17967:30:0;;17993:3;17967:30;:25;:30;:::i;:::-;-1:-1:-1;;;;;17943:21:0;;;;;;;:9;:21;;;;;;;;;:54;;;;18013:33;;;;;;;17943:21;;18013:33;;;;-1:-1:-1;;;;;;;;;;;18013:33:0;;;;;;;;17003:1686;;;;;;;18091:71;18113:6;18091:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18091:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;18071:17:0;;;;;;;:9;:17;;;;;;:91;;;;18196:20;;;;;;;:32;;18221:6;18196:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;18173:20:0;;;;;;;:9;:20;;;;;;:55;;;;18266:13;;18245:17;;;;;;;;;;:34;18241:85;;18296:18;18307:6;18296:10;:18::i;:::-;18360:13;;-1:-1:-1;;;;;18340:17:0;;;;;;:9;:17;;;;;;:33;18336:87;;;18390:21;18404:6;18390:13;:21::i;:::-;18463:13;;-1:-1:-1;;;;;18439:20:0;;;;;;:9;:20;;;;;;:37;18435:91;;18493:21;18504:9;18493:10;:21::i;:::-;18563:13;;-1:-1:-1;;;;;18540:20:0;;;;;;:9;:20;;;;;;:36;18536:93;;;18593:24;18607:9;18593:13;:24::i;:::-;18663:9;-1:-1:-1;;;;;18646:35:0;18655:6;-1:-1:-1;;;;;18646:35:0;-1:-1:-1;;;;;;;;;;;18674:6:0;18646:35;;;;;;;;;;;;;;;;;;17003:1686;16762:1932;;;:::o;5748:178::-;5834:7;5866:12;5858:6;;;;5850:29;;;;-1:-1:-1;;;5850: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;5850:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5898:5:0;;;5748:178::o;4921:167::-;4979:7;5007:5;;;5027:6;;;;5019:46;;;;;-1:-1:-1;;;5019:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5081:1;4921:167;-1:-1:-1;;;4921:167:0:o;20329:330::-;-1:-1:-1;;;;;20401:21:0;;20393:67;;;;-1:-1:-1;;;20393:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20490:68;20513:6;20490:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20490:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;20469:18:0;;;;;;:9;:18;;;;;:89;20580:12;;:24;;20597:6;20580:24;:16;:24;:::i;:::-;20565:12;:39;20616:37;;;;;;;;20642:1;;-1:-1:-1;;;;;20616:37:0;;;-1:-1:-1;;;;;;;;;;;20616:37:0;;;;;;;;20329:330;;:::o;18858:320::-;18914:15;;18944:161;18968:9;:16;18964:20;;18944:161;;;19022:10;-1:-1:-1;;;;;19006:26:0;:9;19016:1;19006:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19006:12:0;:26;19002:96;;;19062:4;19049:17;;19081:5;;19002:96;18986:3;;18944:161;;;;19116:10;19111:62;;19139:9;27:10:-1;;39:1;23:18;;45:23;;-1:-1;19139:26:0;;;;;;;;-1:-1:-1;;;;;;19139:26:0;-1:-1:-1;;;;;19139:26:0;;;;;19111:62;18858:320;;:::o;19184:284::-;19248:9;19243:220;19267:9;:16;19263:20;;19243:220;;;19321:10;-1:-1:-1;;;;;19305:26:0;:9;19315:1;19305:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19305:12:0;:26;19301:155;;;19363:9;19373:16;;-1:-1:-1;;19373:20:0;;;19363:31;;;;;;;;;;;;;;;;19348:9;:12;;-1:-1:-1;;;;;19363:31:0;;;;19358:1;;19348:12;;;;;;;;;;;;;;:46;;;;;-1:-1:-1;;;;;19348:46:0;;;;;-1:-1:-1;;;;;19348:46:0;;;;;;19409:9;:15;;;;;;;;;;;;;;;;-1:-1:-1;;19409:15:0;;;;;-1:-1:-1;;;;;;19409:15:0;;;;;;19439:5;;19301:155;19285:3;;19243:220;;11170:215;-1:-1:-1;;;;;11240:22:0;;11232:73;;;;-1:-1:-1;;;11232:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11338:6;;;11317:38;;-1:-1:-1;;;;;11317:38:0;;;;11338:6;;;11317:38;;;11362:6;:17;;-1:-1:-1;;;;;;11362:17:0;-1:-1:-1;;;;;11362:17:0;;;;;;;;;;11170:215::o;5343:130::-;5401:7;5424:43;5428:1;5431;5424:43;;;;;;;;;;;;;;;;;:3;:43::i;11392:11886::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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