ETH Price: $3,453.23 (+1.63%)
Gas: 12 Gwei

Token

MONK INU (MONK)
 

Overview

Max Total Supply

6,942,000,000 MONK

Holders

752

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
185,185 MONK

Value
$0.00
0x1470de04c1d42a13a950facf85cbdcecb86e98f0
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:
MONK

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @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 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 calldata) {
    return msg.data;
  }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract 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() {
    _transferOwnership(_msgSender());
  }

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

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

  /**
   * @dev Throws if the sender is not the owner.
   */
  function _checkOwner() internal view virtual {
    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 virtual onlyOwner {
    _transferOwnership(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 virtual onlyOwner {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Internal function without access restriction.
   */
  function _transferOwnership(address newOwner) internal virtual {
    address oldOwner = _owner;
    _owner = newOwner;
    emit OwnershipTransferred(oldOwner, newOwner);
  }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @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 Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @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 `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, 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 `from` to `to` 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 from,
    address to,
    uint256 amount
  ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;

  /**
   * @dev Sets the values for {name} and {symbol}.
   *
   * The default value of {decimals} is 18. To select a different value for
   * {decimals} you should overload it.
   *
   * All two of these values are immutable: they can only be set once during
   * construction.
   */
  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

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

  /**
   * @dev Returns the symbol of the token, usually a shorter version of the
   * name.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev Returns the number of decimals used to get its user representation.
   * For example, if `decimals` equals `2`, a balance of `505` tokens should
   * be displayed to a user as `5.05` (`505 / 10 ** 2`).
   *
   * Tokens usually opt for a value of 18, imitating the relationship between
   * Ether and Wei. This is the value {ERC20} uses, unless this function is
   * overridden;
   *
   * NOTE: This information is only used for _display_ purposes: it in
   * no way affects any of the arithmetic of the contract, including
   * {IERC20-balanceOf} and {IERC20-transfer}.
   */
  function decimals() public view virtual override returns (uint8) {
    return 18;
  }

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

  /**
   * @dev See {IERC20-balanceOf}.
   */
  function balanceOf(
    address account
  ) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {IERC20-transfer}.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    address owner = _msgSender();
    _transfer(owner, to, amount);
    return true;
  }

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

  /**
   * @dev See {IERC20-approve}.
   *
   * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
   * `transferFrom`. This is semantically equivalent to an infinite approval.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(
    address spender,
    uint256 amount
  ) public virtual override returns (bool) {
    address owner = _msgSender();
    _approve(owner, spender, amount);
    return true;
  }

  /**
   * @dev See {IERC20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {ERC20}.
   *
   * NOTE: Does not update the allowance if the current allowance
   * is the maximum `uint256`.
   *
   * Requirements:
   *
   * - `from` and `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   * - the caller must have allowance for ``from``'s tokens of at least
   * `amount`.
   */
  function transferFrom(
    address from,
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    address spender = _msgSender();
    _spendAllowance(from, spender, amount);
    _transfer(from, to, amount);
    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 {IERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(
    address spender,
    uint256 addedValue
  ) public virtual returns (bool) {
    address owner = _msgSender();
    _approve(owner, spender, allowance(owner, spender) + 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 {IERC20-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 virtual returns (bool) {
    address owner = _msgSender();
    uint256 currentAllowance = allowance(owner, spender);
    require(
      currentAllowance >= subtractedValue,
      "ERC20: decreased allowance below zero"
    );
    unchecked {
      _approve(owner, spender, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Moves `amount` of tokens from `from` to `to`.
   *
   * This 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:
   *
   * - `from` cannot be the zero address.
   * - `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   */
  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");

    _beforeTokenTransfer(from, to, amount);

    uint256 fromBalance = _balances[from];
    require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
      _balances[from] = fromBalance - amount;
      // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
      // decrementing then incrementing.
      _balances[to] += amount;
    }

    emit Transfer(from, to, amount);

    _afterTokenTransfer(from, to, amount);
  }

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

    _beforeTokenTransfer(address(0), account, amount);

    _totalSupply += amount;
    unchecked {
      // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
      _balances[account] += amount;
    }
    emit Transfer(address(0), account, amount);

    _afterTokenTransfer(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 virtual {
    require(account != address(0), "ERC20: burn from the zero address");

    _beforeTokenTransfer(account, address(0), amount);

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
      _balances[account] = accountBalance - amount;
      // Overflow not possible: amount <= accountBalance <= totalSupply.
      _totalSupply -= amount;
    }

    emit Transfer(account, address(0), amount);

    _afterTokenTransfer(account, address(0), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
   *
   * This 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 virtual {
    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 Updates `owner` s allowance for `spender` based on spent `amount`.
   *
   * Does not update the allowance amount in case of infinite allowance.
   * Revert if not enough allowance is available.
   *
   * Might emit an {Approval} event.
   */
  function _spendAllowance(
    address owner,
    address spender,
    uint256 amount
  ) internal virtual {
    uint256 currentAllowance = allowance(owner, spender);
    if (currentAllowance != type(uint256).max) {
      require(currentAllowance >= amount, "ERC20: insufficient allowance");
      unchecked {
        _approve(owner, spender, currentAllowance - amount);
      }
    }
  }

  /**
   * @dev Hook that is called before any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * will be transferred to `to`.
   * - when `from` is zero, `amount` tokens will be minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}

  /**
   * @dev Hook that is called after any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * has been transferred to `to`.
   * - when `from` is zero, `amount` tokens have been minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _afterTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
  event Burned(address indexed burner, uint256 amount);

  /**
   * @dev Destroys `amount` tokens from the caller.
   *
   * See {ERC20-_burn}.
   */
  function burn(uint256 amount) public virtual {
    _burn(_msgSender(), amount);

    emit Burned(msg.sender, amount);
  }
}

pragma solidity ^0.8.9;

contract MONK is ERC20, ERC20Burnable, Ownable {
  constructor() ERC20("MONK INU", "MONK") {
    _mint(owner(), 6_942_000_000 * (10 ** 18));
  }

  function claimStuckTokens(address token) external onlyOwner {
    IERC20 ERC20token = IERC20(token);
    uint256 balance = ERC20token.balanceOf(address(this));
    ERC20token.transfer(msg.sender, balance);
  }

  function recoverStuckEther() external onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "MONK: No ETH available for recovery");
    payable(msg.sender).transfer(balance);
  }

  receive() external payable {}
}

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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","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":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[{"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":"recoverStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4d4f4e4b20494e550000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4e4b0000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005e0565b508060049081620000a19190620005e0565b505050620000c4620000b8620000f760201b60201c565b620000ff60201b60201c565b620000f1620000d8620001c560201b60201c565b6b166e49ae11d913d3de000000620001ef60201b60201c565b620007e2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002589062000728565b60405180910390fd5b62000275600083836200035c60201b60201c565b806002600082825462000289919062000779565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c9190620007c5565b60405180910390a362000358600083836200036160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e857607f821691505b602082108103620003fe57620003fd620003a0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000429565b62000474868362000429565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c1620004bb620004b5846200048c565b62000496565b6200048c565b9050919050565b6000819050919050565b620004dd83620004a0565b620004f5620004ec82620004c8565b84845462000436565b825550505050565b600090565b6200050c620004fd565b62000519818484620004d2565b505050565b5b8181101562000541576200053560008262000502565b6001810190506200051f565b5050565b601f82111562000590576200055a8162000404565b620005658462000419565b8101602085101562000575578190505b6200058d620005848562000419565b8301826200051e565b50505b505050565b600082821c905092915050565b6000620005b56000198460080262000595565b1980831691505092915050565b6000620005d08383620005a2565b9150826002028217905092915050565b620005eb8262000366565b67ffffffffffffffff81111562000607576200060662000371565b5b620006138254620003cf565b6200062082828562000545565b600060209050601f83116001811462000658576000841562000643578287015190505b6200064f8582620005c2565b865550620006bf565b601f198416620006688662000404565b60005b8281101562000692578489015182556001820191506020850194506020810190506200066b565b86831015620006b25784890151620006ae601f891682620005a2565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000710601f83620006c7565b91506200071d82620006d8565b602082019050919050565b60006020820190508181036000830152620007438162000701565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000786826200048c565b915062000793836200048c565b9250828201905080821115620007ae57620007ad6200074a565b5b92915050565b620007bf816200048c565b82525050565b6000602082019050620007dc6000830184620007b4565b92915050565b611d9e80620007f26000396000f3fe6080604052600436106101025760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610330578063a9059cbb1461036d578063dd62ed3e146103aa578063f2fde38b146103e7578063f9d0831a1461041057610109565b8063715018a6146102ac5780638da5cb5b146102c357806394e53d36146102ee57806395d89b411461030557610109565b8063313ce567116100d1578063313ce567146101de578063395093511461020957806342966c681461024657806370a082311461026f57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610439565b60405161013091906112ac565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611367565b6104cb565b60405161016d91906113c2565b60405180910390f35b34801561018257600080fd5b5061018b6104ee565b60405161019891906113ec565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611407565b6104f8565b6040516101d591906113c2565b60405180910390f35b3480156101ea57600080fd5b506101f3610527565b6040516102009190611476565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611367565b610530565b60405161023d91906113c2565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190611491565b610567565b005b34801561027b57600080fd5b50610296600480360381019061029191906114be565b6105c9565b6040516102a391906113ec565b60405180910390f35b3480156102b857600080fd5b506102c1610611565b005b3480156102cf57600080fd5b506102d8610625565b6040516102e591906114fa565b60405180910390f35b3480156102fa57600080fd5b5061030361064f565b005b34801561031157600080fd5b5061031a6106e9565b60405161032791906112ac565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190611367565b61077b565b60405161036491906113c2565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190611367565b6107f2565b6040516103a191906113c2565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190611515565b610815565b6040516103de91906113ec565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906114be565b61089c565b005b34801561041c57600080fd5b50610437600480360381019061043291906114be565b61091f565b005b60606003805461044890611584565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611584565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b6000806104d6610a2e565b90506104e3818585610a36565b600191505092915050565b6000600254905090565b600080610503610a2e565b9050610510858285610bff565b61051b858585610c8b565b60019150509392505050565b60006012905090565b60008061053b610a2e565b905061055c81858561054d8589610815565b61055791906115e4565b610a36565b600191505092915050565b610578610572610a2e565b82610f01565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7826040516105be91906113ec565b60405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106196110ce565b610623600061114c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106576110ce565b60004790506000811161069f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106969061168a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156106e5573d6000803e3d6000fd5b5050565b6060600480546106f890611584565b80601f016020809104026020016040519081016040528092919081815260200182805461072490611584565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600080610786610a2e565b905060006107948286610815565b9050838110156107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d09061171c565b60405180910390fd5b6107e68286868403610a36565b60019250505092915050565b6000806107fd610a2e565b905061080a818585610c8b565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a46110ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906117ae565b60405180910390fd5b61091c8161114c565b50565b6109276110ce565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161096791906114fa565b602060405180830381865afa158015610984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a891906117e3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109e5929190611810565b6020604051808303816000875af1158015610a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a289190611865565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90611904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611996565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf291906113ec565b60405180910390a3505050565b6000610c0b8484610815565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c855781811015610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611a02565b60405180910390fd5b610c848484848403610a36565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190611a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611b26565b60405180910390fd5b610d74838383611212565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611bb8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee891906113ec565b60405180910390a3610efb848484611217565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790611c4a565b60405180910390fd5b610f7c82600083611212565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611cdc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b591906113ec565b60405180910390a36110c983600084611217565b505050565b6110d6610a2e565b73ffffffffffffffffffffffffffffffffffffffff166110f4610625565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190611d48565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561125657808201518184015260208101905061123b565b60008484015250505050565b6000601f19601f8301169050919050565b600061127e8261121c565b6112888185611227565b9350611298818560208601611238565b6112a181611262565b840191505092915050565b600060208201905081810360008301526112c68184611273565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112fe826112d3565b9050919050565b61130e816112f3565b811461131957600080fd5b50565b60008135905061132b81611305565b92915050565b6000819050919050565b61134481611331565b811461134f57600080fd5b50565b6000813590506113618161133b565b92915050565b6000806040838503121561137e5761137d6112ce565b5b600061138c8582860161131c565b925050602061139d85828601611352565b9150509250929050565b60008115159050919050565b6113bc816113a7565b82525050565b60006020820190506113d760008301846113b3565b92915050565b6113e681611331565b82525050565b600060208201905061140160008301846113dd565b92915050565b6000806000606084860312156114205761141f6112ce565b5b600061142e8682870161131c565b935050602061143f8682870161131c565b925050604061145086828701611352565b9150509250925092565b600060ff82169050919050565b6114708161145a565b82525050565b600060208201905061148b6000830184611467565b92915050565b6000602082840312156114a7576114a66112ce565b5b60006114b584828501611352565b91505092915050565b6000602082840312156114d4576114d36112ce565b5b60006114e28482850161131c565b91505092915050565b6114f4816112f3565b82525050565b600060208201905061150f60008301846114eb565b92915050565b6000806040838503121561152c5761152b6112ce565b5b600061153a8582860161131c565b925050602061154b8582860161131c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159c57607f821691505b6020821081036115af576115ae611555565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ef82611331565b91506115fa83611331565b9250828201905080821115611612576116116115b5565b5b92915050565b7f4d4f4e4b3a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611674602383611227565b915061167f82611618565b604082019050919050565b600060208201905081810360008301526116a381611667565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611706602583611227565b9150611711826116aa565b604082019050919050565b60006020820190508181036000830152611735816116f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611798602683611227565b91506117a38261173c565b604082019050919050565b600060208201905081810360008301526117c78161178b565b9050919050565b6000815190506117dd8161133b565b92915050565b6000602082840312156117f9576117f86112ce565b5b6000611807848285016117ce565b91505092915050565b600060408201905061182560008301856114eb565b61183260208301846113dd565b9392505050565b611842816113a7565b811461184d57600080fd5b50565b60008151905061185f81611839565b92915050565b60006020828403121561187b5761187a6112ce565b5b600061188984828501611850565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ee602483611227565b91506118f982611892565b604082019050919050565b6000602082019050818103600083015261191d816118e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611980602283611227565b915061198b82611924565b604082019050919050565b600060208201905081810360008301526119af81611973565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119ec601d83611227565b91506119f7826119b6565b602082019050919050565b60006020820190508181036000830152611a1b816119df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7e602583611227565b9150611a8982611a22565b604082019050919050565b60006020820190508181036000830152611aad81611a71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b10602383611227565b9150611b1b82611ab4565b604082019050919050565b60006020820190508181036000830152611b3f81611b03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ba2602683611227565b9150611bad82611b46565b604082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602183611227565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cc6602283611227565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d32602083611227565b9150611d3d82611cfc565b602082019050919050565b60006020820190508181036000830152611d6181611d25565b905091905056fea2646970667358221220db10902b5c633759d013e1ea81d0914596e28da3ee7e88df0dd19faa156d938864736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101025760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610330578063a9059cbb1461036d578063dd62ed3e146103aa578063f2fde38b146103e7578063f9d0831a1461041057610109565b8063715018a6146102ac5780638da5cb5b146102c357806394e53d36146102ee57806395d89b411461030557610109565b8063313ce567116100d1578063313ce567146101de578063395093511461020957806342966c681461024657806370a082311461026f57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610439565b60405161013091906112ac565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611367565b6104cb565b60405161016d91906113c2565b60405180910390f35b34801561018257600080fd5b5061018b6104ee565b60405161019891906113ec565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611407565b6104f8565b6040516101d591906113c2565b60405180910390f35b3480156101ea57600080fd5b506101f3610527565b6040516102009190611476565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611367565b610530565b60405161023d91906113c2565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190611491565b610567565b005b34801561027b57600080fd5b50610296600480360381019061029191906114be565b6105c9565b6040516102a391906113ec565b60405180910390f35b3480156102b857600080fd5b506102c1610611565b005b3480156102cf57600080fd5b506102d8610625565b6040516102e591906114fa565b60405180910390f35b3480156102fa57600080fd5b5061030361064f565b005b34801561031157600080fd5b5061031a6106e9565b60405161032791906112ac565b60405180910390f35b34801561033c57600080fd5b5061035760048036038101906103529190611367565b61077b565b60405161036491906113c2565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190611367565b6107f2565b6040516103a191906113c2565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190611515565b610815565b6040516103de91906113ec565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906114be565b61089c565b005b34801561041c57600080fd5b50610437600480360381019061043291906114be565b61091f565b005b60606003805461044890611584565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611584565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b6000806104d6610a2e565b90506104e3818585610a36565b600191505092915050565b6000600254905090565b600080610503610a2e565b9050610510858285610bff565b61051b858585610c8b565b60019150509392505050565b60006012905090565b60008061053b610a2e565b905061055c81858561054d8589610815565b61055791906115e4565b610a36565b600191505092915050565b610578610572610a2e565b82610f01565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7826040516105be91906113ec565b60405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106196110ce565b610623600061114c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106576110ce565b60004790506000811161069f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106969061168a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156106e5573d6000803e3d6000fd5b5050565b6060600480546106f890611584565b80601f016020809104026020016040519081016040528092919081815260200182805461072490611584565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b600080610786610a2e565b905060006107948286610815565b9050838110156107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d09061171c565b60405180910390fd5b6107e68286868403610a36565b60019250505092915050565b6000806107fd610a2e565b905061080a818585610c8b565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a46110ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906117ae565b60405180910390fd5b61091c8161114c565b50565b6109276110ce565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161096791906114fa565b602060405180830381865afa158015610984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a891906117e3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109e5929190611810565b6020604051808303816000875af1158015610a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a289190611865565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90611904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611996565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf291906113ec565b60405180910390a3505050565b6000610c0b8484610815565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c855781811015610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611a02565b60405180910390fd5b610c848484848403610a36565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190611a94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611b26565b60405180910390fd5b610d74838383611212565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611bb8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee891906113ec565b60405180910390a3610efb848484611217565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790611c4a565b60405180910390fd5b610f7c82600083611212565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611cdc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b591906113ec565b60405180910390a36110c983600084611217565b505050565b6110d6610a2e565b73ffffffffffffffffffffffffffffffffffffffff166110f4610625565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190611d48565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561125657808201518184015260208101905061123b565b60008484015250505050565b6000601f19601f8301169050919050565b600061127e8261121c565b6112888185611227565b9350611298818560208601611238565b6112a181611262565b840191505092915050565b600060208201905081810360008301526112c68184611273565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112fe826112d3565b9050919050565b61130e816112f3565b811461131957600080fd5b50565b60008135905061132b81611305565b92915050565b6000819050919050565b61134481611331565b811461134f57600080fd5b50565b6000813590506113618161133b565b92915050565b6000806040838503121561137e5761137d6112ce565b5b600061138c8582860161131c565b925050602061139d85828601611352565b9150509250929050565b60008115159050919050565b6113bc816113a7565b82525050565b60006020820190506113d760008301846113b3565b92915050565b6113e681611331565b82525050565b600060208201905061140160008301846113dd565b92915050565b6000806000606084860312156114205761141f6112ce565b5b600061142e8682870161131c565b935050602061143f8682870161131c565b925050604061145086828701611352565b9150509250925092565b600060ff82169050919050565b6114708161145a565b82525050565b600060208201905061148b6000830184611467565b92915050565b6000602082840312156114a7576114a66112ce565b5b60006114b584828501611352565b91505092915050565b6000602082840312156114d4576114d36112ce565b5b60006114e28482850161131c565b91505092915050565b6114f4816112f3565b82525050565b600060208201905061150f60008301846114eb565b92915050565b6000806040838503121561152c5761152b6112ce565b5b600061153a8582860161131c565b925050602061154b8582860161131c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159c57607f821691505b6020821081036115af576115ae611555565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ef82611331565b91506115fa83611331565b9250828201905080821115611612576116116115b5565b5b92915050565b7f4d4f4e4b3a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611674602383611227565b915061167f82611618565b604082019050919050565b600060208201905081810360008301526116a381611667565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611706602583611227565b9150611711826116aa565b604082019050919050565b60006020820190508181036000830152611735816116f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611798602683611227565b91506117a38261173c565b604082019050919050565b600060208201905081810360008301526117c78161178b565b9050919050565b6000815190506117dd8161133b565b92915050565b6000602082840312156117f9576117f86112ce565b5b6000611807848285016117ce565b91505092915050565b600060408201905061182560008301856114eb565b61183260208301846113dd565b9392505050565b611842816113a7565b811461184d57600080fd5b50565b60008151905061185f81611839565b92915050565b60006020828403121561187b5761187a6112ce565b5b600061188984828501611850565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ee602483611227565b91506118f982611892565b604082019050919050565b6000602082019050818103600083015261191d816118e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611980602283611227565b915061198b82611924565b604082019050919050565b600060208201905081810360008301526119af81611973565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119ec601d83611227565b91506119f7826119b6565b602082019050919050565b60006020820190508181036000830152611a1b816119df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7e602583611227565b9150611a8982611a22565b604082019050919050565b60006020820190508181036000830152611aad81611a71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b10602383611227565b9150611b1b82611ab4565b604082019050919050565b60006020820190508181036000830152611b3f81611b03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ba2602683611227565b9150611bad82611b46565b604082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602183611227565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cc6602283611227565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d32602083611227565b9150611d3d82611cfc565b602082019050919050565b60006020820190508181036000830152611d6181611d25565b905091905056fea2646970667358221220db10902b5c633759d013e1ea81d0914596e28da3ee7e88df0dd19faa156d938864736f6c63430008130033

Deployed Bytecode Sourcemap

20209:620:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8930:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11169:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9986:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11917:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9842:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12563:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20050:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10143:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2612:97;;;;;;;;;;;;;:::i;:::-;;2000:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20581:210;;;;;;;;;;;;;:::i;:::-;;9133:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13275:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10462:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10711:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20362:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8930:94;8984:13;9013:5;9006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8930:94;:::o;11169:202::-;11267:4;11280:13;11296:12;:10;:12::i;:::-;11280:28;;11315:32;11324:5;11331:7;11340:6;11315:8;:32::i;:::-;11361:4;11354:11;;;11169:202;;;;:::o;9986:102::-;10047:7;10070:12;;10063:19;;9986:102;:::o;11917:263::-;12034:4;12047:15;12065:12;:10;:12::i;:::-;12047:30;;12084:38;12100:4;12106:7;12115:6;12084:15;:38::i;:::-;12129:27;12139:4;12145:2;12149:6;12129:9;:27::i;:::-;12170:4;12163:11;;;11917:263;;;;;:::o;9842:87::-;9900:5;9921:2;9914:9;;9842:87;:::o;12563:239::-;12666:4;12679:13;12695:12;:10;:12::i;:::-;12679:28;;12714:64;12723:5;12730:7;12767:10;12739:25;12749:5;12756:7;12739:9;:25::i;:::-;:38;;;;:::i;:::-;12714:8;:64::i;:::-;12792:4;12785:11;;;12563:239;;;;:::o;20050:125::-;20102:27;20108:12;:10;:12::i;:::-;20122:6;20102:5;:27::i;:::-;20150:10;20143:26;;;20162:6;20143:26;;;;;;:::i;:::-;;;;;;;;20050:125;:::o;10143:131::-;10227:7;10250:9;:18;10260:7;10250:18;;;;;;;;;;;;;;;;10243:25;;10143:131;;;:::o;2612:97::-;1900:13;:11;:13::i;:::-;2673:30:::1;2700:1;2673:18;:30::i;:::-;2612:97::o:0;2000:81::-;2046:7;2069:6;;;;;;;;;;;2062:13;;2000:81;:::o;20581:210::-;1900:13;:11;:13::i;:::-;20636:15:::1;20654:21;20636:39;;20700:1;20690:7;:11;20682:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;20756:10;20748:28;;:37;20777:7;20748:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20629:162;20581:210::o:0;9133:98::-;9189:13;9218:7;9211:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:98;:::o;13275:440::-;13383:4;13396:13;13412:12;:10;:12::i;:::-;13396:28;;13431:24;13458:25;13468:5;13475:7;13458:9;:25::i;:::-;13431:52;;13526:15;13506:16;:35;;13490:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;13622:60;13631:5;13638:7;13666:15;13647:16;:34;13622:8;:60::i;:::-;13705:4;13698:11;;;;13275:440;;;;:::o;10462:194::-;10556:4;10569:13;10585:12;:10;:12::i;:::-;10569:28;;10604;10614:5;10621:2;10625:6;10604:9;:28::i;:::-;10646:4;10639:11;;;10462:194;;;;:::o;10711:160::-;10815:7;10838:11;:18;10850:5;10838:18;;;;;;;;;;;;;;;:27;10857:7;10838:27;;;;;;;;;;;;;;;;10831:34;;10711:160;;;;:::o;2854:191::-;1900:13;:11;:13::i;:::-;2959:1:::1;2939:22;;:8;:22;;::::0;2931:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3011:28;3030:8;3011:18;:28::i;:::-;2854:191:::0;:::o;20362:213::-;1900:13;:11;:13::i;:::-;20429:17:::1;20456:5;20429:33;;20469:15;20487:10;:20;;;20516:4;20487:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20469:53;;20529:10;:19;;;20549:10;20561:7;20529:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20422:153;;20362:213:::0;:::o;598:92::-;651:7;674:10;667:17;;598:92;:::o;17034:348::-;17169:1;17152:19;;:5;:19;;;17144:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17246:1;17227:21;;:7;:21;;;17219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17326:6;17296:11;:18;17308:5;17296:18;;;;;;;;;;;;;;;:27;17315:7;17296:27;;;;;;;;;;;;;;;:36;;;;17360:7;17344:32;;17353:5;17344:32;;;17369:6;17344:32;;;;;;:::i;:::-;;;;;;;;17034:348;;;:::o;17655:399::-;17772:24;17799:25;17809:5;17816:7;17799:9;:25::i;:::-;17772:52;;17855:17;17835:16;:37;17831:218;;17911:6;17891:16;:26;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17981:51;17990:5;17997:7;18025:6;18006:16;:25;17981:8;:51::i;:::-;17831:218;17765:289;17655:399;;;:::o;14155:764::-;14284:1;14268:18;;:4;:18;;;14260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14357:1;14343:16;;:2;:16;;;14335:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14408:38;14429:4;14435:2;14439:6;14408:20;:38::i;:::-;14455:19;14477:9;:15;14487:4;14477:15;;;;;;;;;;;;;;;;14455:37;;14522:6;14507:11;:21;;14499:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14629:6;14615:11;:20;14597:9;:15;14607:4;14597:15;;;;;;;;;;;;;;;:38;;;;14814:6;14797:9;:13;14807:2;14797:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14856:2;14841:26;;14850:4;14841:26;;;14860:6;14841:26;;;;;;:::i;:::-;;;;;;;;14876:37;14896:4;14902:2;14906:6;14876:19;:37::i;:::-;14253:666;14155:764;;;:::o;16001:623::-;16100:1;16081:21;;:7;:21;;;16073:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16149:49;16170:7;16187:1;16191:6;16149:20;:49::i;:::-;16207:22;16232:9;:18;16242:7;16232:18;;;;;;;;;;;;;;;;16207:43;;16283:6;16265:14;:24;;16257:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16392:6;16375:14;:23;16354:9;:18;16364:7;16354:18;;;;;;;;;;;;;;;:44;;;;16497:6;16481:12;;:22;;;;;;;;;;;16550:1;16524:37;;16533:7;16524:37;;;16554:6;16524:37;;;;;;:::i;:::-;;;;;;;;16570:48;16590:7;16607:1;16611:6;16570:19;:48::i;:::-;16066:558;16001:623;;:::o;2151:126::-;2222:12;:10;:12::i;:::-;2211:23;;:7;:5;:7::i;:::-;:23;;;2203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2151:126::o;3195:177::-;3265:16;3284:6;;;;;;;;;;;3265:25;;3306:8;3297:6;;:17;;;;;;;;;;;;;;;;;;3357:8;3326:40;;3347:8;3326:40;;;;;;;;;;;;3258:114;3195:177;:::o;18624:111::-;;;;:::o;19309:110::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:222::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:5;7454:2;7446:6;7442:15;7435:30;7250:222;:::o;7478:366::-;7620:3;7641:67;7705:2;7700:3;7641:67;:::i;:::-;7634:74;;7717:93;7806:3;7717:93;:::i;:::-;7835:2;7830:3;7826:12;7819:19;;7478:366;;;:::o;7850:419::-;8016:4;8054:2;8043:9;8039:18;8031:26;;8103:9;8097:4;8093:20;8089:1;8078:9;8074:17;8067:47;8131:131;8257:4;8131:131;:::i;:::-;8123:139;;7850:419;;;:::o;8275:224::-;8415:34;8411:1;8403:6;8399:14;8392:58;8484:7;8479:2;8471:6;8467:15;8460:32;8275:224;:::o;8505:366::-;8647:3;8668:67;8732:2;8727:3;8668:67;:::i;:::-;8661:74;;8744:93;8833:3;8744:93;:::i;:::-;8862:2;8857:3;8853:12;8846:19;;8505:366;;;:::o;8877:419::-;9043:4;9081:2;9070:9;9066:18;9058:26;;9130:9;9124:4;9120:20;9116:1;9105:9;9101:17;9094:47;9158:131;9284:4;9158:131;:::i;:::-;9150:139;;8877:419;;;:::o;9302:225::-;9442:34;9438:1;9430:6;9426:14;9419:58;9511:8;9506:2;9498:6;9494:15;9487:33;9302:225;:::o;9533:366::-;9675:3;9696:67;9760:2;9755:3;9696:67;:::i;:::-;9689:74;;9772:93;9861:3;9772:93;:::i;:::-;9890:2;9885:3;9881:12;9874:19;;9533:366;;;:::o;9905:419::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;9905:419;;;:::o;10330:143::-;10387:5;10418:6;10412:13;10403:22;;10434:33;10461:5;10434:33;:::i;:::-;10330:143;;;;:::o;10479:351::-;10549:6;10598:2;10586:9;10577:7;10573:23;10569:32;10566:119;;;10604:79;;:::i;:::-;10566:119;10724:1;10749:64;10805:7;10796:6;10785:9;10781:22;10749:64;:::i;:::-;10739:74;;10695:128;10479:351;;;;:::o;10836:332::-;10957:4;10995:2;10984:9;10980:18;10972:26;;11008:71;11076:1;11065:9;11061:17;11052:6;11008:71;:::i;:::-;11089:72;11157:2;11146:9;11142:18;11133:6;11089:72;:::i;:::-;10836:332;;;;;:::o;11174:116::-;11244:21;11259:5;11244:21;:::i;:::-;11237:5;11234:32;11224:60;;11280:1;11277;11270:12;11224:60;11174:116;:::o;11296:137::-;11350:5;11381:6;11375:13;11366:22;;11397:30;11421:5;11397:30;:::i;:::-;11296:137;;;;:::o;11439:345::-;11506:6;11555:2;11543:9;11534:7;11530:23;11526:32;11523:119;;;11561:79;;:::i;:::-;11523:119;11681:1;11706:61;11759:7;11750:6;11739:9;11735:22;11706:61;:::i;:::-;11696:71;;11652:125;11439:345;;;;:::o;11790:223::-;11930:34;11926:1;11918:6;11914:14;11907:58;11999:6;11994:2;11986:6;11982:15;11975:31;11790:223;:::o;12019:366::-;12161:3;12182:67;12246:2;12241:3;12182:67;:::i;:::-;12175:74;;12258:93;12347:3;12258:93;:::i;:::-;12376:2;12371:3;12367:12;12360:19;;12019:366;;;:::o;12391:419::-;12557:4;12595:2;12584:9;12580:18;12572:26;;12644:9;12638:4;12634:20;12630:1;12619:9;12615:17;12608:47;12672:131;12798:4;12672:131;:::i;:::-;12664:139;;12391:419;;;:::o;12816:221::-;12956:34;12952:1;12944:6;12940:14;12933:58;13025:4;13020:2;13012:6;13008:15;13001:29;12816:221;:::o;13043:366::-;13185:3;13206:67;13270:2;13265:3;13206:67;:::i;:::-;13199:74;;13282:93;13371:3;13282:93;:::i;:::-;13400:2;13395:3;13391:12;13384:19;;13043:366;;;:::o;13415:419::-;13581:4;13619:2;13608:9;13604:18;13596:26;;13668:9;13662:4;13658:20;13654:1;13643:9;13639:17;13632:47;13696:131;13822:4;13696:131;:::i;:::-;13688:139;;13415:419;;;:::o;13840:179::-;13980:31;13976:1;13968:6;13964:14;13957:55;13840:179;:::o;14025:366::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:419::-;14563:4;14601:2;14590:9;14586:18;14578:26;;14650:9;14644:4;14640:20;14636:1;14625:9;14621:17;14614:47;14678:131;14804:4;14678:131;:::i;:::-;14670:139;;14397:419;;;:::o;14822:224::-;14962:34;14958:1;14950:6;14946:14;14939:58;15031:7;15026:2;15018:6;15014:15;15007:32;14822:224;:::o;15052:366::-;15194:3;15215:67;15279:2;15274:3;15215:67;:::i;:::-;15208:74;;15291:93;15380:3;15291:93;:::i;:::-;15409:2;15404:3;15400:12;15393:19;;15052:366;;;:::o;15424:419::-;15590:4;15628:2;15617:9;15613:18;15605:26;;15677:9;15671:4;15667:20;15663:1;15652:9;15648:17;15641:47;15705:131;15831:4;15705:131;:::i;:::-;15697:139;;15424:419;;;:::o;15849:222::-;15989:34;15985:1;15977:6;15973:14;15966:58;16058:5;16053:2;16045:6;16041:15;16034:30;15849:222;:::o;16077:366::-;16219:3;16240:67;16304:2;16299:3;16240:67;:::i;:::-;16233:74;;16316:93;16405:3;16316:93;:::i;:::-;16434:2;16429:3;16425:12;16418:19;;16077:366;;;:::o;16449:419::-;16615:4;16653:2;16642:9;16638:18;16630:26;;16702:9;16696:4;16692:20;16688:1;16677:9;16673:17;16666:47;16730:131;16856:4;16730:131;:::i;:::-;16722:139;;16449:419;;;:::o;16874:225::-;17014:34;17010:1;17002:6;16998:14;16991:58;17083:8;17078:2;17070:6;17066:15;17059:33;16874:225;:::o;17105:366::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:419::-;17643:4;17681:2;17670:9;17666:18;17658:26;;17730:9;17724:4;17720:20;17716:1;17705:9;17701:17;17694:47;17758:131;17884:4;17758:131;:::i;:::-;17750:139;;17477:419;;;:::o;17902:220::-;18042:34;18038:1;18030:6;18026:14;18019:58;18111:3;18106:2;18098:6;18094:15;18087:28;17902:220;:::o;18128:366::-;18270:3;18291:67;18355:2;18350:3;18291:67;:::i;:::-;18284:74;;18367:93;18456:3;18367:93;:::i;:::-;18485:2;18480:3;18476:12;18469:19;;18128:366;;;:::o;18500:419::-;18666:4;18704:2;18693:9;18689:18;18681:26;;18753:9;18747:4;18743:20;18739:1;18728:9;18724:17;18717:47;18781:131;18907:4;18781:131;:::i;:::-;18773:139;;18500:419;;;:::o;18925:221::-;19065:34;19061:1;19053:6;19049:14;19042:58;19134:4;19129:2;19121:6;19117:15;19110:29;18925:221;:::o;19152:366::-;19294:3;19315:67;19379:2;19374:3;19315:67;:::i;:::-;19308:74;;19391:93;19480:3;19391:93;:::i;:::-;19509:2;19504:3;19500:12;19493:19;;19152:366;;;:::o;19524:419::-;19690:4;19728:2;19717:9;19713:18;19705:26;;19777:9;19771:4;19767:20;19763:1;19752:9;19748:17;19741:47;19805:131;19931:4;19805:131;:::i;:::-;19797:139;;19524:419;;;:::o;19949:182::-;20089:34;20085:1;20077:6;20073:14;20066:58;19949:182;:::o;20137:366::-;20279:3;20300:67;20364:2;20359:3;20300:67;:::i;:::-;20293:74;;20376:93;20465:3;20376:93;:::i;:::-;20494:2;20489:3;20485:12;20478:19;;20137:366;;;:::o;20509:419::-;20675:4;20713:2;20702:9;20698:18;20690:26;;20762:9;20756:4;20752:20;20748:1;20737:9;20733:17;20726:47;20790:131;20916:4;20790:131;:::i;:::-;20782:139;;20509:419;;;:::o

Swarm Source

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