ETH Price: $3,279.71 (-1.52%)

Token

xSERUM (xSRM)
 

Overview

Max Total Supply

209,382.142125 xSRM

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
passme.eth
Balance
33,549.24555 xSRM

Value
$0.00
0x2227de445dbfd90712c48bcd74d492ccca1cb242
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:
Token

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

// ███████╗███╗   ██╗███████╗ █████╗ ██╗  ██╗██╗   ██╗     ██████╗  ██████╗ ██████╗ ██╗     ██╗███╗   ██╗███████╗
// ██╔════╝████╗  ██║██╔════╝██╔══██╗██║ ██╔╝╚██╗ ██╔╝    ██╔════╝ ██╔═══██╗██╔══██╗██║     ██║████╗  ██║██╔════╝
// ███████╗██╔██╗ ██║█████╗  ███████║█████╔╝  ╚████╔╝     ██║  ███╗██║   ██║██████╔╝██║     ██║██╔██╗ ██║███████╗
// ╚════██║██║╚██╗██║██╔══╝  ██╔══██║██╔═██╗   ╚██╔╝      ██║   ██║██║   ██║██╔══██╗██║     ██║██║╚██╗██║╚════██║
// ███████║██║ ╚████║███████╗██║  ██║██║  ██╗   ██║       ╚██████╔╝╚██████╔╝██████╔╝███████╗██║██║ ╚████║███████║
// ╚══════╝╚═╝  ╚═══╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝   ╚═╝        ╚═════╝  ╚═════╝ ╚═════╝ ╚══════╝╚═╝╚═╝  ╚═══╝╚══════╝

// Imports
import "./Ownable.sol";
import "./IERC20.sol";
import "./ERC20.sol";
import "./ReentrancyGuard.sol";

/**
 * @notice Interface for checking active staked balance of a user.
 */
interface IStaking {
  function getTotalRewards(address staker) external view returns (uint256);
}

/**
 * @title The ERC20 smart contract.
 */
contract Token is ERC20, ReentrancyGuard, Ownable {
  IStaking public stakingContract;
  uint256 public MAX_SUPPLY;
  uint256 public constant MAX_TAX_PERCENT = 100;
  uint256 public spendTaxPercent;
  uint256 public withdrawTaxPercent;
  uint256 public taxClaimedAmount;
  uint256 public activeTaxCollectedAmount;
  bool public isPaused;
  bool public isDepositPaused;
  bool public isWithdrawPaused;
  bool public isTransferPaused;
  address[] public authorisedLog;
  mapping(address => uint256) public depositedAmount;
  mapping(address => uint256) public spentAmount;
  mapping(address => bool) private _isAuthorised;

  modifier onlyAuthorised() {
    require(_isAuthorised[_msgSender()], "Not Authorised");
    _;
  }

  modifier whenNotPaused() {
    require(!isPaused, "Token game is paused");
    _;
  }

  event Withdraw(address indexed userAddress, uint256 amount, uint256 tax);
  event Deposit(address indexed userAddress, uint256 amount);
  event DepositFor(address indexed caller, address indexed userAddress, uint256 amount);
  event Spend(address indexed caller, address indexed userAddress, uint256 amount, uint256 tax);
  event ClaimTax(address indexed caller, address indexed userAddress, uint256 amount);
  event InternalTransfer(address indexed from, address indexed to, uint256 amount);

  /**
   * @notice The smart contract constructor that initializes the contract.
   * @param stakingContract_ The address of the NFT staking smart contract.
   * @param tokenName The name of the token.
   * @param tokenSymbol The symbol of the token.
   */
  constructor(
    address stakingContract_,
    string memory tokenName,
    string memory tokenSymbol
  ) ERC20(tokenName, tokenSymbol) {
    _isAuthorised[_msgSender()] = true;
    withdrawTaxPercent = 25;
    spendTaxPercent = 25;
    stakingContract = IStaking(stakingContract_);
  }

  /**
   * @notice Returns current spendable balance of a specific user. This balance can be spent by user for other collections without
   *         withdrawal to ERC-20 SneakGoblins OR can be withdrawn to ERC-20 SneakGoblins.
   * @param user The user to get the balance of.
   * @return The user balance.
   */
  function getUserBalance(address user) public view returns (uint256) {
    return (stakingContract.getTotalRewards(user) + depositedAmount[user] - spentAmount[user]);
  }

  /**
   * @notice Deposit ERC-20 to the game balance.
   * @param amount The amount of funds to deposit.
   */
  function depositToken(uint256 amount) public nonReentrant whenNotPaused {
    require(!isDepositPaused, "Deposit Paused");
    require(balanceOf(_msgSender()) >= amount, "Insufficient balance");

    _burn(_msgSender(), amount);
    depositedAmount[_msgSender()] += amount;

    emit Deposit(_msgSender(), amount);
  }

  /**
   * @notice Withdraws in-game balance to ERC-20.
   * @param amount The amount of funds to withdraw.
   */
  function withdrawToken(uint256 amount) public nonReentrant whenNotPaused {
    require(!isWithdrawPaused, "Withdraw Paused");
    require(getUserBalance(_msgSender()) >= amount, "Insufficient balance");
    uint256 tax = (amount * withdrawTaxPercent) / 100;

    spentAmount[_msgSender()] += amount;
    activeTaxCollectedAmount += tax;
    _mint(_msgSender(), (amount - tax));

    emit Withdraw(_msgSender(), amount, tax);
  }

  /**
   * @notice Transfer in-game funds from one account to another.
   * @param to The receiver address.
   * @param amount The amount of in-game funds to transfer.
   */
  function transferInGameBalance(address to, uint256 amount) public nonReentrant whenNotPaused {
    require(!isTransferPaused, "Transfer Paused");
    require(getUserBalance(_msgSender()) >= amount, "Insufficient balance");

    spentAmount[_msgSender()] += amount;
    depositedAmount[to] += amount;

    emit InternalTransfer(_msgSender(), to, amount);
  }

  /**
   * @notice Spends in-game funds of users in batch. Is used with internal purchases of other NFTs, etc.
   * @param user The array of user addresses.
   * @param amount The array of amount of funds to spend.
   */
  function spendInGameBalanceInBatch(address[] memory user, uint256[] memory amount) public onlyAuthorised nonReentrant {
    require(user.length == amount.length, "Wrong arrays passed");

    for (uint256 i; i < user.length; i++) {
      _spendInGameBalance(user[i], amount[i]);
    }
  }

  /**
   * @notice Spends in-game funds of a user. Is used with internal purchases of other NFTs, etc.
   * @param user The address of the user.
   * @param amount The amount of funds to spend.
   */
  function spendInGameBalance(address user, uint256 amount) public onlyAuthorised nonReentrant {
    _spendInGameBalance(user, amount);
  }

  /**
   * @dev Function to spend user balance. Can be called by other authorised contracts. To be used for internal purchases of other NFTs, etc.
   */
  function _spendInGameBalance(address user, uint256 amount) internal {
    require(getUserBalance(user) >= amount, "Insufficient balance");
    uint256 tax = (amount * spendTaxPercent) / 100;

    spentAmount[user] += amount;
    activeTaxCollectedAmount += tax;

    emit Spend(_msgSender(), user, amount, tax);
  }


  /**
   * @notice Deposits funds to user's in-game balance.
   * @param user The address of the user.
   * @param amount The amount of funds to deposit.
   */
  function depositInGameBalance(address user, uint256 amount) public onlyAuthorised nonReentrant {
    _depositInGameBalance(user, amount);
  }

  /**
   * @notice Distributes funds to users.
   * @param user The array of user addresses.
   * @param amount The array of amount of funds to distribute.
   */
  function distributeInGameBalance(address[] memory user, uint256[] memory amount) public onlyAuthorised nonReentrant {
    require(user.length == amount.length, "Wrong arrays passed");

    for (uint256 i; i < user.length; i++) {
      _depositInGameBalance(user[i], amount[i]);
    }
  }

  /**
   * @notice Mints tokens.
   * @param user The minter address.
   * @param amount The amount of tokens to mint.
   */
  function mint(address user, uint256 amount) external onlyAuthorised nonReentrant {
    _mint(user, amount);
  }

  /**
   * @notice Claims tokens from the tax accumulated pot.
   * @param user The address of the tax funds receiver.
   * @param amount The amount of funds to transfer.
   */
  function claimTax(address user, uint256 amount) public onlyAuthorised nonReentrant {
    require(activeTaxCollectedAmount >= amount, "Insufficient tax balance");

    activeTaxCollectedAmount -= amount;
    depositedAmount[user] += amount;
    taxClaimedAmount += amount;

    emit ClaimTax(_msgSender(), user, amount);
  }

  /**
   * @notice Deposits in-game funds to the user's balance.
   * @param user The address of the user.
   * @param amount The amount of funds to deposit.
   */
  function _depositInGameBalance(address user, uint256 amount) internal {
    require(user != address(0), "Cannot send to 0 address");
    depositedAmount[user] += amount;

    emit DepositFor(_msgSender(), user, amount);
  }

  /*
      ADMIN FUNCTIONS
  */

  /**
   * @notice Authorises  addresses.
   * @param addressToAuth The address to authorise.
   */
  function authorise(address addressToAuth) public onlyOwner {
    _isAuthorised[addressToAuth] = true;
    authorisedLog.push(addressToAuth);
  }

  /**
   * @notice Unauthorises addresses.
   * @param addressToUnAuth The address to unauthorise.
   */
  function unauthorise(address addressToUnAuth) public onlyOwner {
    _isAuthorised[addressToUnAuth] = false;
  }

  /**
   * @notice Sets the staking contract.
   * @param stakingContract_ The address of the staking contract.
   */
  function setStakingContract(address stakingContract_) public onlyOwner {
    stakingContract = IStaking(stakingContract_);
    authorise(stakingContract_);
  }

  /**
   * @notice Sets the withdrawal tax percent.
   * @param taxPercent The tax percentage.
   */
  function setWithdrawTaxPercent(uint256 taxPercent) public onlyOwner {
    require(taxPercent < MAX_TAX_PERCENT, "Wrong value passed");
    withdrawTaxPercent = taxPercent;
  }

  /**
   * @notice Sets the spending tax percent.
   * @param taxPercent The tax percentage.
   */
  function setSpendTaxPercent(uint256 taxPercent) public onlyOwner {
    require(taxPercent < MAX_TAX_PERCENT, "Wrong value passed");
    spendTaxPercent = taxPercent;
  }

  /**
   * @notice Pauses fund transactions.
   * @param _pause The state of the pause.
   */
  function setPauseGameToken(bool _pause) public onlyOwner {
    isPaused = _pause;
  }

  /**
   * @notice Pauses fund transfers.
   * @param _pause The state of the pause.
   */
  function setPauseTransfers(bool _pause) public onlyOwner {
    isTransferPaused = _pause;
  }

  /**
   * @notice Pauses fund withdrawals.
   * @param _pause The state of the pause.
   */
  function setPauseWithdraw(bool _pause) public onlyOwner {
    isWithdrawPaused = _pause;
  }

  /**
   * @notice Pauses fund deposits.
   * @param _pause The state of the pause.
   */
  function setPauseDeposits(bool _pause) public onlyOwner {
    isDepositPaused = _pause;
  }

  /**
   * @notice Burns the tokens.
   * @notice The amount of tokens to burn.
   */
  function burn(uint256 amount) external onlyOwner {
    _burn(_msgSender(), amount);
  }

  /**
   * @notice Withdraws ETH accidentally dropped to the contract.
   */
  function rescue() external onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @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.zeppelin.solutions/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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

File 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @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 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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 6 of 7: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"stakingContract_","type":"address"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"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":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositFor","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":"amount","type":"uint256"}],"name":"InternalTransfer","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":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"Spend","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TAX_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeTaxCollectedAmount","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":"addressToAuth","type":"address"}],"name":"authorise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"authorisedLog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTax","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":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositInGameBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"distributeInGameBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isDepositPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTransferPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWithdrawPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseDeposits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseGameToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxPercent","type":"uint256"}],"name":"setSpendTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxPercent","type":"uint256"}],"name":"setWithdrawTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"spendInGameBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"spendInGameBalanceInBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spendTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"spentAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxClaimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferInGameBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToUnAuth","type":"address"}],"name":"unauthorise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200260c3803806200260c833981016040819052620000349162000289565b8151829082906200004d90600390602085019062000116565b5080516200006390600490602084019062000116565b50506001600555506200007633620000c4565b5050336000908152601160205260409020805460ff191660011790556019600a819055600955600780546001600160a01b03929092166001600160a01b03199092169190911790556200034f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001249062000313565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e457600080fd5b81516001600160401b0380821115620002015762000201620001bc565b604051601f8301601f19908116603f011681019082821181831017156200022c576200022c620001bc565b816040528381526020925086838588010111156200024957600080fd5b600091505b838210156200026d57858201830151818301840152908201906200024e565b838211156200027f5760008385830101525b9695505050505050565b6000806000606084860312156200029f57600080fd5b83516001600160a01b0381168114620002b757600080fd5b60208501519093506001600160401b0380821115620002d557600080fd5b620002e387838801620001d2565b93506040860151915080821115620002fa57600080fd5b506200030986828701620001d2565b9150509250925092565b600181811c908216806200032857607f821691505b6020821081036200034957634e487b7160e01b600052602260045260246000fd5b50919050565b6122ad806200035f6000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063715018a611610182578063b187bd26116100e9578063dd62ed3e116100a2578063ee99205c1161007c578063ee99205c14610634578063f2fde38b14610647578063f560d0b21461065a578063fcff8e9d1461066c57600080fd5b8063dd62ed3e146105d5578063e74d3a411461060e578063ec95ca001461062157600080fd5b8063b187bd261461057e578063b5b521bb1461058b578063b84e1c0814610594578063bcd54cf81461059c578063c69c2797146105af578063c82bc61d146105c257600080fd5b80639467ec041161013b5780639467ec041461051657806395d89b41146105295780639dd373b914610531578063a1a1ef4314610544578063a457c2d714610558578063a9059cbb1461056b57600080fd5b8063715018a6146104a75780638075654e146104af57806380833d78146104c257806383ac56ad146104d557806384b4efea146104e85780638da5cb5b146104f157600080fd5b80633466e4041161022657806350baa622116101df57806350baa622146104125780636215be771461042557806366e6c8af1461043857806367800b5f1461044b5780636d031d0a1461045e57806370a082311461047e57600080fd5b80633466e4041461039d57806339509351146103a657806340c10f19146103b957806342966c68146103cc57806347734892146103df5780634a4643f7146103f257600080fd5b806322f8388c1161027857806322f8388c1461033957806323b872dd1461034c5780632a68f2c21461035f578063313ce5671461037257806332cb6b0c1461038157806332dba96b1461038a57600080fd5b806306fdde03146102c0578063095ea7b3146102de5780630f06aa5f1461030157806318160ddd146103165780631fbe1979146103285780632041baf114610330575b600080fd5b6102c861067f565b6040516102d59190611d82565b60405180910390f35b6102f16102ec366004611df3565b610711565b60405190151581526020016102d5565b61031461030f366004611e1d565b610729565b005b6002545b6040519081526020016102d5565b610314610776565b61031a600c5481565b610314610347366004611df3565b6107dc565b6102f161035a366004611e46565b610845565b61031461036d366004611df3565b610869565b604051601281526020016102d5565b61031a60085481565b610314610398366004611f58565b6108c9565b61031a600b5481565b6102f16103b4366004611df3565b6109ca565b6103146103c7366004611df3565b610a09565b6103146103da366004612018565b610a69565b61031a6103ed366004612031565b610a9e565b61031a610400366004612031565b600f6020526000908152604090205481565b610314610420366004612018565b610b46565b610314610433366004612018565b610cb9565b610314610446366004612031565b610dde565b600d546102f19062010000900460ff1681565b61031a61046c366004612031565b60106020526000908152604090205481565b61031a61048c366004612031565b6001600160a01b031660009081526020819052604090205490565b610314610e6e565b6103146104bd366004611df3565b610ea4565b6103146104d0366004612031565b610ff3565b6103146104e3366004612018565b61103e565b61031a600a5481565b6006546001600160a01b03165b6040516001600160a01b0390911681526020016102d5565b610314610524366004611f58565b6110b2565b6102c86111a9565b61031461053f366004612031565b6111b8565b600d546102f1906301000000900460ff1681565b6102f1610566366004611df3565b611206565b6102f1610579366004611df3565b611298565b600d546102f19060ff1681565b61031a60095481565b61031a606481565b6103146105aa366004612018565b6112a6565b6103146105bd366004611e1d565b61131a565b6104fe6105d0366004612018565b611357565b61031a6105e336600461204c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61031461061c366004611df3565b611381565b61031461062f366004611e1d565b6114cd565b6007546104fe906001600160a01b031681565b610314610655366004612031565b611515565b600d546102f190610100900460ff1681565b61031461067a366004611e1d565b6115ad565b60606003805461068e9061207f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba9061207f565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b60003361071f8185856115f3565b5060019392505050565b6006546001600160a01b0316331461075c5760405162461bcd60e51b8152600401610753906120b9565b60405180910390fd5b600d80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146107a05760405162461bcd60e51b8152600401610753906120b9565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107d9573d6000803e3d6000fd5b50565b3360009081526011602052604090205460ff1661080b5760405162461bcd60e51b8152600401610753906120ee565b60026005540361082d5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611718565b50506001600555565b6000336108538582856117ea565b61085e85858561187c565b506001949350505050565b3360009081526011602052604090205460ff166108985760405162461bcd60e51b8152600401610753906120ee565b6002600554036108ba5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611a4a565b3360009081526011602052604090205460ff166108f85760405162461bcd60e51b8152600401610753906120ee565b60026005540361091a5760405162461bcd60e51b815260040161075390612116565b600260055580518251146109665760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8185c9c985e5cc81c185cdcd959606a1b6044820152606401610753565b60005b82518110156109c0576109ae8382815181106109875761098761214d565b60200260200101518383815181106109a1576109a161214d565b6020026020010151611a4a565b806109b881612179565b915050610969565b5050600160055550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061071f9082908690610a04908790612192565b6115f3565b3360009081526011602052604090205460ff16610a385760405162461bcd60e51b8152600401610753906120ee565b600260055403610a5a5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611b12565b6006546001600160a01b03163314610a935760405162461bcd60e51b8152600401610753906120b9565b6107d9335b82611bea565b6001600160a01b03818116600081815260106020908152604080832054600f909252808320546007549151630af3c58760e21b8152600481019590955292949193911690632bcf161c90602401602060405180830381865afa158015610b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2c91906121aa565b610b369190612192565b610b4091906121c3565b92915050565b600260055403610b685760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff1615610b905760405162461bcd60e51b8152600401610753906121da565b600d5462010000900460ff1615610bdb5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc814185d5cd959608a1b6044820152606401610753565b80610be533610a9e565b1015610c035760405162461bcd60e51b815260040161075390612208565b60006064600a5483610c159190612236565b610c1f9190612255565b33600090815260106020526040812080549293508492909190610c43908490612192565b9250508190555080600c6000828254610c5c9190612192565b90915550610c75905033610c7083856121c3565b611b12565b604080518381526020810183905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a250506001600555565b600260055403610cdb5760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff1615610d035760405162461bcd60e51b8152600401610753906121da565b600d54610100900460ff1615610d4c5760405162461bcd60e51b815260206004820152600e60248201526d11195c1bdcda5d0814185d5cd95960921b6044820152606401610753565b80610d563361048c565b1015610d745760405162461bcd60e51b815260040161075390612208565b610d7d33610a98565b336000908152600f602052604081208054839290610d9c908490612192565b909155505060405181815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2506001600555565b6006546001600160a01b03163314610e085760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b03166000818152601160205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b8152600401610753906120b9565b610ea26000611d30565b565b3360009081526011602052604090205460ff16610ed35760405162461bcd60e51b8152600401610753906120ee565b600260055403610ef55760405162461bcd60e51b815260040161075390612116565b6002600555600c54811115610f4c5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74207461782062616c616e636500000000000000006044820152606401610753565b80600c6000828254610f5e91906121c3565b90915550506001600160a01b0382166000908152600f602052604081208054839290610f8b908490612192565b9250508190555080600b6000828254610fa49190612192565b90915550506040518181526001600160a01b0383169033907f1ad2283cc65e3e122c0a874bda25abbd844e8ae88fa9512b4849ee1b58b6570d906020015b60405180910390a350506001600555565b6006546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6006546001600160a01b031633146110685760405162461bcd60e51b8152600401610753906120b9565b606481106110ad5760405162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d985b1d59481c185cdcd95960721b6044820152606401610753565b600955565b3360009081526011602052604090205460ff166110e15760405162461bcd60e51b8152600401610753906120ee565b6002600554036111035760405162461bcd60e51b815260040161075390612116565b6002600555805182511461114f5760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8185c9c985e5cc81c185cdcd959606a1b6044820152606401610753565b60005b82518110156109c0576111978382815181106111705761117061214d565b602002602001015183838151811061118a5761118a61214d565b6020026020010151611718565b806111a181612179565b915050611152565b60606004805461068e9061207f565b6006546001600160a01b031633146111e25760405162461bcd60e51b8152600401610753906120b9565b600780546001600160a01b0319166001600160a01b0383161790556107d981610dde565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561128b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610753565b61085e82868684036115f3565b60003361071f81858561187c565b6006546001600160a01b031633146112d05760405162461bcd60e51b8152600401610753906120b9565b606481106113155760405162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d985b1d59481c185cdcd95960721b6044820152606401610753565b600a55565b6006546001600160a01b031633146113445760405162461bcd60e51b8152600401610753906120b9565b600d805460ff1916911515919091179055565b600e818154811061136757600080fd5b6000918252602090912001546001600160a01b0316905081565b6002600554036113a35760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff16156113cb5760405162461bcd60e51b8152600401610753906121da565b600d546301000000900460ff16156114175760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8814185d5cd959608a1b6044820152606401610753565b8061142133610a9e565b101561143f5760405162461bcd60e51b815260040161075390612208565b336000908152601060205260408120805483929061145e908490612192565b90915550506001600160a01b0382166000908152600f60205260408120805483929061148b908490612192565b90915550506040518181526001600160a01b0383169033907fe2080c8fc8d86c864d8dc081fadaebf2be7191086615e786f954420f13ed122a90602001610fe2565b6006546001600160a01b031633146114f75760405162461bcd60e51b8152600401610753906120b9565b600d805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b0316331461153f5760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b0381166115a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b6107d981611d30565b6006546001600160a01b031633146115d75760405162461bcd60e51b8152600401610753906120b9565b600d8054911515620100000262ff000019909216919091179055565b6001600160a01b0383166116555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b6001600160a01b0382166116b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061172283610a9e565b10156117405760405162461bcd60e51b815260040161075390612208565b60006064600954836117529190612236565b61175c9190612255565b6001600160a01b038416600090815260106020526040812080549293508492909190611789908490612192565b9250508190555080600c60008282546117a29190612192565b909155505060408051838152602081018390526001600160a01b0385169133917fed8cfe3600cacf009dc67354491d44da19a77f26a4aed42181ba6824ccb35d72910161170b565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461187657818110156118695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610753565b61187684848484036115f3565b50505050565b6001600160a01b0383166118e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610753565b6001600160a01b0382166119425760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610753565b6001600160a01b038316600090815260208190526040902054818110156119ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610753565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119f1908490612192565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3d91815260200190565b60405180910390a3611876565b6001600160a01b038216611aa05760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073656e6420746f2030206164647265737300000000000000006044820152606401610753565b6001600160a01b0382166000908152600f602052604081208054839290611ac8908490612192565b90915550506040518181526001600160a01b0383169033907f6b64443f4cc3aac2df66fff76675a29dc321ce9efebffb006f528db1690179a0906020015b60405180910390a35050565b6001600160a01b038216611b685760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610753565b8060026000828254611b7a9190612192565b90915550506001600160a01b03821660009081526020819052604081208054839290611ba7908490612192565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611b06565b6001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610753565b6001600160a01b03821660009081526020819052604090205481811015611cbe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610753565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ced9084906121c3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161170b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015611daf57858101830151858201604001528201611d93565b81811115611dc1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b60008060408385031215611e0657600080fd5b611e0f83611dd7565b946020939093013593505050565b600060208284031215611e2f57600080fd5b81358015158114611e3f57600080fd5b9392505050565b600080600060608486031215611e5b57600080fd5b611e6484611dd7565b9250611e7260208501611dd7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ec157611ec1611e82565b604052919050565b600067ffffffffffffffff821115611ee357611ee3611e82565b5060051b60200190565b600082601f830112611efe57600080fd5b81356020611f13611f0e83611ec9565b611e98565b82815260059290921b84018101918181019086841115611f3257600080fd5b8286015b84811015611f4d5780358352918301918301611f36565b509695505050505050565b60008060408385031215611f6b57600080fd5b823567ffffffffffffffff80821115611f8357600080fd5b818501915085601f830112611f9757600080fd5b81356020611fa7611f0e83611ec9565b82815260059290921b84018101918181019089841115611fc657600080fd5b948201945b83861015611feb57611fdc86611dd7565b82529482019490820190611fcb565b9650508601359250508082111561200157600080fd5b5061200e85828601611eed565b9150509250929050565b60006020828403121561202a57600080fd5b5035919050565b60006020828403121561204357600080fd5b611e3f82611dd7565b6000806040838503121561205f57600080fd5b61206883611dd7565b915061207660208401611dd7565b90509250929050565b600181811c9082168061209357607f821691505b6020821081036120b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5cd95960921b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161218b5761218b612163565b5060010190565b600082198211156121a5576121a5612163565b500190565b6000602082840312156121bc57600080fd5b5051919050565b6000828210156121d5576121d5612163565b500390565b602080825260149082015273151bdad95b8819d85b59481a5cc81c185d5cd95960621b604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b600081600019048311821515161561225057612250612163565b500290565b60008261227257634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122052220650d1adffda341f6925a2a9babbc50ea2f0a139a19c0d2d5b3e0b82847d64736f6c634300080d00330000000000000000000000007d9451b188861d5e04d426965860bb21f9b1342d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000678534552554d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047853524d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063715018a611610182578063b187bd26116100e9578063dd62ed3e116100a2578063ee99205c1161007c578063ee99205c14610634578063f2fde38b14610647578063f560d0b21461065a578063fcff8e9d1461066c57600080fd5b8063dd62ed3e146105d5578063e74d3a411461060e578063ec95ca001461062157600080fd5b8063b187bd261461057e578063b5b521bb1461058b578063b84e1c0814610594578063bcd54cf81461059c578063c69c2797146105af578063c82bc61d146105c257600080fd5b80639467ec041161013b5780639467ec041461051657806395d89b41146105295780639dd373b914610531578063a1a1ef4314610544578063a457c2d714610558578063a9059cbb1461056b57600080fd5b8063715018a6146104a75780638075654e146104af57806380833d78146104c257806383ac56ad146104d557806384b4efea146104e85780638da5cb5b146104f157600080fd5b80633466e4041161022657806350baa622116101df57806350baa622146104125780636215be771461042557806366e6c8af1461043857806367800b5f1461044b5780636d031d0a1461045e57806370a082311461047e57600080fd5b80633466e4041461039d57806339509351146103a657806340c10f19146103b957806342966c68146103cc57806347734892146103df5780634a4643f7146103f257600080fd5b806322f8388c1161027857806322f8388c1461033957806323b872dd1461034c5780632a68f2c21461035f578063313ce5671461037257806332cb6b0c1461038157806332dba96b1461038a57600080fd5b806306fdde03146102c0578063095ea7b3146102de5780630f06aa5f1461030157806318160ddd146103165780631fbe1979146103285780632041baf114610330575b600080fd5b6102c861067f565b6040516102d59190611d82565b60405180910390f35b6102f16102ec366004611df3565b610711565b60405190151581526020016102d5565b61031461030f366004611e1d565b610729565b005b6002545b6040519081526020016102d5565b610314610776565b61031a600c5481565b610314610347366004611df3565b6107dc565b6102f161035a366004611e46565b610845565b61031461036d366004611df3565b610869565b604051601281526020016102d5565b61031a60085481565b610314610398366004611f58565b6108c9565b61031a600b5481565b6102f16103b4366004611df3565b6109ca565b6103146103c7366004611df3565b610a09565b6103146103da366004612018565b610a69565b61031a6103ed366004612031565b610a9e565b61031a610400366004612031565b600f6020526000908152604090205481565b610314610420366004612018565b610b46565b610314610433366004612018565b610cb9565b610314610446366004612031565b610dde565b600d546102f19062010000900460ff1681565b61031a61046c366004612031565b60106020526000908152604090205481565b61031a61048c366004612031565b6001600160a01b031660009081526020819052604090205490565b610314610e6e565b6103146104bd366004611df3565b610ea4565b6103146104d0366004612031565b610ff3565b6103146104e3366004612018565b61103e565b61031a600a5481565b6006546001600160a01b03165b6040516001600160a01b0390911681526020016102d5565b610314610524366004611f58565b6110b2565b6102c86111a9565b61031461053f366004612031565b6111b8565b600d546102f1906301000000900460ff1681565b6102f1610566366004611df3565b611206565b6102f1610579366004611df3565b611298565b600d546102f19060ff1681565b61031a60095481565b61031a606481565b6103146105aa366004612018565b6112a6565b6103146105bd366004611e1d565b61131a565b6104fe6105d0366004612018565b611357565b61031a6105e336600461204c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61031461061c366004611df3565b611381565b61031461062f366004611e1d565b6114cd565b6007546104fe906001600160a01b031681565b610314610655366004612031565b611515565b600d546102f190610100900460ff1681565b61031461067a366004611e1d565b6115ad565b60606003805461068e9061207f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba9061207f565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b60003361071f8185856115f3565b5060019392505050565b6006546001600160a01b0316331461075c5760405162461bcd60e51b8152600401610753906120b9565b60405180910390fd5b600d80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146107a05760405162461bcd60e51b8152600401610753906120b9565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107d9573d6000803e3d6000fd5b50565b3360009081526011602052604090205460ff1661080b5760405162461bcd60e51b8152600401610753906120ee565b60026005540361082d5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611718565b50506001600555565b6000336108538582856117ea565b61085e85858561187c565b506001949350505050565b3360009081526011602052604090205460ff166108985760405162461bcd60e51b8152600401610753906120ee565b6002600554036108ba5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611a4a565b3360009081526011602052604090205460ff166108f85760405162461bcd60e51b8152600401610753906120ee565b60026005540361091a5760405162461bcd60e51b815260040161075390612116565b600260055580518251146109665760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8185c9c985e5cc81c185cdcd959606a1b6044820152606401610753565b60005b82518110156109c0576109ae8382815181106109875761098761214d565b60200260200101518383815181106109a1576109a161214d565b6020026020010151611a4a565b806109b881612179565b915050610969565b5050600160055550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061071f9082908690610a04908790612192565b6115f3565b3360009081526011602052604090205460ff16610a385760405162461bcd60e51b8152600401610753906120ee565b600260055403610a5a5760405162461bcd60e51b815260040161075390612116565b600260055561083c8282611b12565b6006546001600160a01b03163314610a935760405162461bcd60e51b8152600401610753906120b9565b6107d9335b82611bea565b6001600160a01b03818116600081815260106020908152604080832054600f909252808320546007549151630af3c58760e21b8152600481019590955292949193911690632bcf161c90602401602060405180830381865afa158015610b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2c91906121aa565b610b369190612192565b610b4091906121c3565b92915050565b600260055403610b685760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff1615610b905760405162461bcd60e51b8152600401610753906121da565b600d5462010000900460ff1615610bdb5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc814185d5cd959608a1b6044820152606401610753565b80610be533610a9e565b1015610c035760405162461bcd60e51b815260040161075390612208565b60006064600a5483610c159190612236565b610c1f9190612255565b33600090815260106020526040812080549293508492909190610c43908490612192565b9250508190555080600c6000828254610c5c9190612192565b90915550610c75905033610c7083856121c3565b611b12565b604080518381526020810183905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a250506001600555565b600260055403610cdb5760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff1615610d035760405162461bcd60e51b8152600401610753906121da565b600d54610100900460ff1615610d4c5760405162461bcd60e51b815260206004820152600e60248201526d11195c1bdcda5d0814185d5cd95960921b6044820152606401610753565b80610d563361048c565b1015610d745760405162461bcd60e51b815260040161075390612208565b610d7d33610a98565b336000908152600f602052604081208054839290610d9c908490612192565b909155505060405181815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2506001600555565b6006546001600160a01b03163314610e085760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b03166000818152601160205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b8152600401610753906120b9565b610ea26000611d30565b565b3360009081526011602052604090205460ff16610ed35760405162461bcd60e51b8152600401610753906120ee565b600260055403610ef55760405162461bcd60e51b815260040161075390612116565b6002600555600c54811115610f4c5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74207461782062616c616e636500000000000000006044820152606401610753565b80600c6000828254610f5e91906121c3565b90915550506001600160a01b0382166000908152600f602052604081208054839290610f8b908490612192565b9250508190555080600b6000828254610fa49190612192565b90915550506040518181526001600160a01b0383169033907f1ad2283cc65e3e122c0a874bda25abbd844e8ae88fa9512b4849ee1b58b6570d906020015b60405180910390a350506001600555565b6006546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6006546001600160a01b031633146110685760405162461bcd60e51b8152600401610753906120b9565b606481106110ad5760405162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d985b1d59481c185cdcd95960721b6044820152606401610753565b600955565b3360009081526011602052604090205460ff166110e15760405162461bcd60e51b8152600401610753906120ee565b6002600554036111035760405162461bcd60e51b815260040161075390612116565b6002600555805182511461114f5760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8185c9c985e5cc81c185cdcd959606a1b6044820152606401610753565b60005b82518110156109c0576111978382815181106111705761117061214d565b602002602001015183838151811061118a5761118a61214d565b6020026020010151611718565b806111a181612179565b915050611152565b60606004805461068e9061207f565b6006546001600160a01b031633146111e25760405162461bcd60e51b8152600401610753906120b9565b600780546001600160a01b0319166001600160a01b0383161790556107d981610dde565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561128b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610753565b61085e82868684036115f3565b60003361071f81858561187c565b6006546001600160a01b031633146112d05760405162461bcd60e51b8152600401610753906120b9565b606481106113155760405162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d985b1d59481c185cdcd95960721b6044820152606401610753565b600a55565b6006546001600160a01b031633146113445760405162461bcd60e51b8152600401610753906120b9565b600d805460ff1916911515919091179055565b600e818154811061136757600080fd5b6000918252602090912001546001600160a01b0316905081565b6002600554036113a35760405162461bcd60e51b815260040161075390612116565b6002600555600d5460ff16156113cb5760405162461bcd60e51b8152600401610753906121da565b600d546301000000900460ff16156114175760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8814185d5cd959608a1b6044820152606401610753565b8061142133610a9e565b101561143f5760405162461bcd60e51b815260040161075390612208565b336000908152601060205260408120805483929061145e908490612192565b90915550506001600160a01b0382166000908152600f60205260408120805483929061148b908490612192565b90915550506040518181526001600160a01b0383169033907fe2080c8fc8d86c864d8dc081fadaebf2be7191086615e786f954420f13ed122a90602001610fe2565b6006546001600160a01b031633146114f75760405162461bcd60e51b8152600401610753906120b9565b600d805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b0316331461153f5760405162461bcd60e51b8152600401610753906120b9565b6001600160a01b0381166115a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b6107d981611d30565b6006546001600160a01b031633146115d75760405162461bcd60e51b8152600401610753906120b9565b600d8054911515620100000262ff000019909216919091179055565b6001600160a01b0383166116555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b6001600160a01b0382166116b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061172283610a9e565b10156117405760405162461bcd60e51b815260040161075390612208565b60006064600954836117529190612236565b61175c9190612255565b6001600160a01b038416600090815260106020526040812080549293508492909190611789908490612192565b9250508190555080600c60008282546117a29190612192565b909155505060408051838152602081018390526001600160a01b0385169133917fed8cfe3600cacf009dc67354491d44da19a77f26a4aed42181ba6824ccb35d72910161170b565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461187657818110156118695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610753565b61187684848484036115f3565b50505050565b6001600160a01b0383166118e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610753565b6001600160a01b0382166119425760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610753565b6001600160a01b038316600090815260208190526040902054818110156119ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610753565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119f1908490612192565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3d91815260200190565b60405180910390a3611876565b6001600160a01b038216611aa05760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073656e6420746f2030206164647265737300000000000000006044820152606401610753565b6001600160a01b0382166000908152600f602052604081208054839290611ac8908490612192565b90915550506040518181526001600160a01b0383169033907f6b64443f4cc3aac2df66fff76675a29dc321ce9efebffb006f528db1690179a0906020015b60405180910390a35050565b6001600160a01b038216611b685760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610753565b8060026000828254611b7a9190612192565b90915550506001600160a01b03821660009081526020819052604081208054839290611ba7908490612192565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611b06565b6001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610753565b6001600160a01b03821660009081526020819052604090205481811015611cbe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610753565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ced9084906121c3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161170b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015611daf57858101830151858201604001528201611d93565b81811115611dc1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b60008060408385031215611e0657600080fd5b611e0f83611dd7565b946020939093013593505050565b600060208284031215611e2f57600080fd5b81358015158114611e3f57600080fd5b9392505050565b600080600060608486031215611e5b57600080fd5b611e6484611dd7565b9250611e7260208501611dd7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ec157611ec1611e82565b604052919050565b600067ffffffffffffffff821115611ee357611ee3611e82565b5060051b60200190565b600082601f830112611efe57600080fd5b81356020611f13611f0e83611ec9565b611e98565b82815260059290921b84018101918181019086841115611f3257600080fd5b8286015b84811015611f4d5780358352918301918301611f36565b509695505050505050565b60008060408385031215611f6b57600080fd5b823567ffffffffffffffff80821115611f8357600080fd5b818501915085601f830112611f9757600080fd5b81356020611fa7611f0e83611ec9565b82815260059290921b84018101918181019089841115611fc657600080fd5b948201945b83861015611feb57611fdc86611dd7565b82529482019490820190611fcb565b9650508601359250508082111561200157600080fd5b5061200e85828601611eed565b9150509250929050565b60006020828403121561202a57600080fd5b5035919050565b60006020828403121561204357600080fd5b611e3f82611dd7565b6000806040838503121561205f57600080fd5b61206883611dd7565b915061207660208401611dd7565b90509250929050565b600181811c9082168061209357607f821691505b6020821081036120b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5cd95960921b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161218b5761218b612163565b5060010190565b600082198211156121a5576121a5612163565b500190565b6000602082840312156121bc57600080fd5b5051919050565b6000828210156121d5576121d5612163565b500390565b602080825260149082015273151bdad95b8819d85b59481a5cc81c185d5cd95960621b604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b600081600019048311821515161561225057612250612163565b500290565b60008261227257634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122052220650d1adffda341f6925a2a9babbc50ea2f0a139a19c0d2d5b3e0b82847d64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007d9451b188861d5e04d426965860bb21f9b1342d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000678534552554d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047853524d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : stakingContract_ (address): 0x7d9451B188861d5E04D426965860Bb21f9B1342D
Arg [1] : tokenName (string): xSERUM
Arg [2] : tokenSymbol (string): xSRM

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d9451b188861d5e04d426965860bb21f9b1342d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 78534552554d0000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 7853524d00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

2144:9511:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4412:197;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:7;;1211:22;1193:41;;1181:2;1166:18;4412:197:1;1053:187:7;11208:91:6;;;;;;:::i;:::-;;:::i;:::-;;3223:106:1;3310:12;;3223:106;;;1669:25:7;;;1657:2;1642:18;3223:106:1;1523:177:7;11557:96:6;;;:::i;2417:39::-;;;;;;6716:137;;;;;;:::i;:::-;;:::i;5171:286:1:-;;;;;;:::i;:::-;;:::i;7490:141:6:-;;;;;;:::i;:::-;;:::i;3072:91:1:-;;;3154:2;2180:36:7;;2168:2;2153:18;3072:91:1;2038:184:7;2233:25:6;;;;;;7797:287;;;;;;:::i;:::-;;:::i;2382:31::-;;;;;;5852:236:1;;;;;;:::i;:::-;;:::i;8213:111:6:-;;;;;;:::i;:::-;;:::i;11389:87::-;;;;;;:::i;:::-;;:::i;4316:169::-;;;;;;:::i;:::-;;:::i;2613:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;5037:428;;;;;;:::i;:::-;;:::i;4601:318::-;;;;;;:::i;:::-;;:::i;9356:144::-;;;;;;:::i;:::-;;:::i;2515:28::-;;;;;;;;;;;;2667:46;;;;;;:::i;:::-;;;;;;;;;;;;;;3387:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3487:18:1;3461:7;3487:18;;;;;;;;;;;;3387:125;1661:101:4;;;:::i;8505:323:6:-;;;;;;:::i;:::-;;:::i;9609:112::-;;;;;;:::i;:::-;;:::i;10385:169::-;;;;;;:::i;:::-;;:::i;2345:33::-;;;;;;1029:85:4;1101:6;;-1:-1:-1;;;;;1101:6:4;1029:85;;;-1:-1:-1;;;;;5185:32:7;;;5167:51;;5155:2;5140:18;1029:85:4;5021:203:7;6225:287:6;;;;;;:::i;:::-;;:::i;2346:102:1:-;;;:::i;9843:159:6:-;;;;;;:::i;:::-;;:::i;2547:28::-;;;;;;;;;;;;6575:429:1;;;;;;:::i;:::-;;:::i;3708:189::-;;;;;;:::i;:::-;;:::i;2460:20:6:-;;;;;;;;;2311:30;;;;;;2262:45;;2304:3;2262:45;;10107:175;;;;;;:::i;:::-;;:::i;10652:85::-;;;;;;:::i;:::-;;:::i;2579:30::-;;;;;;:::i;:::-;;:::i;3955:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4070:18:1;;;4044:7;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3955:149;5643:357:6;;;;;;:::i;:::-;;:::i;10832:93::-;;;;;;:::i;:::-;;:::i;2198:31::-;;;;;-1:-1:-1;;;;;2198:31:6;;;1911:198:4;;;;;;:::i;:::-;;:::i;2484:27:6:-;;;;;;;;;;;;11022:92;;;;;;:::i;:::-;;:::i;2135:98:1:-;2189:13;2221:5;2214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98;:::o;4412:197::-;4495:4;719:10:0;4549:32:1;719:10:0;4565:7:1;4574:6;4549:8;:32::i;:::-;-1:-1:-1;4598:4:1;;4412:197;-1:-1:-1;;;4412:197:1:o;11208:91:6:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;;;;;;;;;11270:15:6::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;11270:24:6;;::::1;::::0;;;::::1;::::0;;11208:91::o;11557:96::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;1101:6;;11600:48:6::1;::::0;-1:-1:-1;;;;;1101:6:4;;;;11626:21:6::1;11600:48:::0;::::1;;;::::0;::::1;::::0;;;11626:21;1101:6:4;11600:48:6;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;11557:96::o:0;6716:137::-;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;6815:33:6::2;6835:4:::0;6841:6;6815:19:::2;:33::i;:::-;-1:-1:-1::0;;1701:1:5::1;2628:7;:22:::0;6716:137:6:o;5171:286:1:-;5298:4;719:10:0;5354:38:1;5370:4;719:10:0;5385:6:1;5354:15;:38::i;:::-;5402:27;5412:4;5418:2;5422:6;5402:9;:27::i;:::-;-1:-1:-1;5446:4:1;;5171:286;-1:-1:-1;;;;5171:286:1:o;7490:141:6:-;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;7591:35:6::2;7613:4:::0;7619:6;7591:21:::2;:35::i;7797:287::-:0;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;7942:13:6;;7927:11;;:28:::2;7919:60;;;::::0;-1:-1:-1;;;7919:60:6;;7369:2:7;7919:60:6::2;::::0;::::2;7351:21:7::0;7408:2;7388:18;;;7381:30;-1:-1:-1;;;7427:18:7;;;7420:49;7486:18;;7919:60:6::2;7167:343:7::0;7919:60:6::2;7991:9;7986:94;8006:4;:11;8002:1;:15;7986:94;;;8032:41;8054:4;8059:1;8054:7;;;;;;;;:::i;:::-;;;;;;;8063:6;8070:1;8063:9;;;;;;;;:::i;:::-;;;;;;;8032:21;:41::i;:::-;8019:3:::0;::::2;::::0;::::2;:::i;:::-;;;;7986:94;;;-1:-1:-1::0;;1701:1:5::1;2628:7;:22:::0;-1:-1:-1;7797:287:6:o;5852:236:1:-;719:10:0;5940:4:1;6019:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;6019:27:1;;;;;;;;;;5940:4;;719:10:0;5994:66:1;;719:10:0;;6019:27:1;;:40;;6049:10;;6019:40;:::i;:::-;5994:8;:66::i;8213:111:6:-;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;8300:19:6::2;8306:4:::0;8312:6;8300:5:::2;:19::i;11389:87::-:0;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;11444:27:6::1;719:10:0::0;11450:12:6::1;11464:6;11444:5;:27::i;4316:169::-:0;-1:-1:-1;;;;;4462:17:6;;;4375:7;4462:17;;;:11;:17;;;;;;;;;4438:15;:21;;;;;;;4398:15;;:37;;-1:-1:-1;;;4398:37:6;;;;;5167:51:7;;;;4375:7:6;;4462:17;;4398:15;;;:31;;5140:18:7;;4398:37:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;;;:::i;:::-;:81;;;;:::i;:::-;4390:90;4316:169;-1:-1:-1;;4316:169:6:o;5037:428::-;1744:1:5;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:5;;;;;;;:::i;:::-;1744:1;2455:7;:18;2910:8:6::1;::::0;::::1;;2909:9;2901:42;;;;-1:-1:-1::0;;;2901:42:6::1;;;;;;;:::i;:::-;5125:16:::2;::::0;;;::::2;;;5124:17;5116:45;;;::::0;-1:-1:-1;;;5116:45:6;;8922:2:7;5116:45:6::2;::::0;::::2;8904:21:7::0;8961:2;8941:18;;;8934:30;-1:-1:-1;;;8980:18:7;;;8973:45;9035:18;;5116:45:6::2;8720:339:7::0;5116:45:6::2;5207:6:::0;5175:28:::2;719:10:0::0;4316:169:6;:::i;5175:28::-:2;:38;;5167:71;;;;-1:-1:-1::0;;;5167:71:6::2;;;;;;;:::i;:::-;5244:11;5290:3;5268:18;;5259:6;:27;;;;:::i;:::-;5258:35;;;;:::i;:::-;719:10:0::0;5300:25:6::2;::::0;;;:11:::2;:25;::::0;;;;:35;;5244:49;;-1:-1:-1;5329:6:6;;5300:25;;;:35:::2;::::0;5329:6;;5300:35:::2;:::i;:::-;;;;;;;;5369:3;5341:24;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;5378:35:6::2;::::0;-1:-1:-1;719:10:0;5399:12:6::2;5408:3:::0;5399:6;:12:::2;:::i;:::-;5378:5;:35::i;:::-;5425;::::0;;9982:25:7;;;10038:2;10023:18;;10016:34;;;719:10:0;;5425:35:6::2;::::0;9955:18:7;5425:35:6::2;;;;;;;-1:-1:-1::0;;1701:1:5;2628:7;:22;5037:428:6:o;4601:318::-;1744:1:5;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:5;;;;;;;:::i;:::-;1744:1;2455:7;:18;2910:8:6::1;::::0;::::1;;2909:9;2901:42;;;;-1:-1:-1::0;;;2901:42:6::1;;;;;;;:::i;:::-;4688:15:::2;::::0;::::2;::::0;::::2;;;4687:16;4679:43;;;::::0;-1:-1:-1;;;4679:43:6;;10263:2:7;4679:43:6::2;::::0;::::2;10245:21:7::0;10302:2;10282:18;;;10275:30;-1:-1:-1;;;10321:18:7;;;10314:44;10375:18;;4679:43:6::2;10061:338:7::0;4679:43:6::2;4763:6:::0;4736:23:::2;719:10:0::0;4746:12:6::2;640:96:0::0;4736:23:6::2;:33;;4728:66;;;;-1:-1:-1::0;;;4728:66:6::2;;;;;;;:::i;:::-;4801:27;719:10:0::0;4807:12:6::2;640:96:0::0;4801:27:6::2;719:10:0::0;4834:29:6::2;::::0;;;:15:::2;:29;::::0;;;;:39;;4867:6;;4834:29;:39:::2;::::0;4867:6;;4834:39:::2;:::i;:::-;::::0;;;-1:-1:-1;;4885:29:6::2;::::0;1669:25:7;;;719:10:0;;4885:29:6::2;::::0;1657:2:7;1642:18;4885:29:6::2;;;;;;;-1:-1:-1::0;1701:1:5;2628:7;:22;4601:318:6:o;9356:144::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;9421:28:6::1;;::::0;;;:13:::1;:28;::::0;;;;:35;;-1:-1:-1;;9421:35:6::1;9452:4;9421:35:::0;;::::1;::::0;;;9462:13:::1;:33:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;9462:33:6::1;::::0;;::::1;::::0;;9356:144::o;1661:101:4:-;1101:6;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;8505:323:6:-;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;8602:24:6::2;::::0;:34;-1:-1:-1;8602:34:6::2;8594:71;;;::::0;-1:-1:-1;;;8594:71:6;;10606:2:7;8594:71:6::2;::::0;::::2;10588:21:7::0;10645:2;10625:18;;;10618:30;10684:26;10664:18;;;10657:54;10728:18;;8594:71:6::2;10404:348:7::0;8594:71:6::2;8700:6;8672:24;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;8712:21:6;::::2;;::::0;;;:15:::2;:21;::::0;;;;:31;;8737:6;;8712:21;:31:::2;::::0;8737:6;;8712:31:::2;:::i;:::-;;;;;;;;8769:6;8749:16;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;8787:36:6::2;::::0;1669:25:7;;;-1:-1:-1;;;;;8787:36:6;::::2;::::0;719:10:0;;8787:36:6::2;::::0;1657:2:7;1642:18;8787:36:6::2;;;;;;;;-1:-1:-1::0;;1701:1:5::1;2628:7;:22:::0;8505:323:6:o;9609:112::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;9678:30:6::1;9711:5;9678:30:::0;;;:13:::1;:30;::::0;;;;:38;;-1:-1:-1;;9678:38:6::1;::::0;;9609:112::o;10385:169::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;2304:3:6::1;10464:10;:28;10456:59;;;::::0;-1:-1:-1;;;10456:59:6;;10959:2:7;10456:59:6::1;::::0;::::1;10941:21:7::0;10998:2;10978:18;;;10971:30;-1:-1:-1;;;11017:18:7;;;11010:48;11075:18;;10456:59:6::1;10757:342:7::0;10456:59:6::1;10521:15;:28:::0;10385:169::o;6225:287::-;719:10:0;2808:27:6;;;;:13;:27;;;;;;;;2800:54;;;;-1:-1:-1;;;2800:54:6;;;;;;;:::i;:::-;1744:1:5::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:5::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;6372:13:6;;6357:11;;:28:::2;6349:60;;;::::0;-1:-1:-1;;;6349:60:6;;7369:2:7;6349:60:6::2;::::0;::::2;7351:21:7::0;7408:2;7388:18;;;7381:30;-1:-1:-1;;;7427:18:7;;;7420:49;7486:18;;6349:60:6::2;7167:343:7::0;6349:60:6::2;6421:9;6416:92;6436:4;:11;6432:1;:15;6416:92;;;6462:39;6482:4;6487:1;6482:7;;;;;;;;:::i;:::-;;;;;;;6491:6;6498:1;6491:9;;;;;;;;:::i;:::-;;;;;;;6462:19;:39::i;:::-;6449:3:::0;::::2;::::0;::::2;:::i;:::-;;;;6416:92;;2346:102:1::0;2402:13;2434:7;2427:14;;;;;:::i;9843:159:6:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;9920:15:6::1;:44:::0;;-1:-1:-1;;;;;;9920:44:6::1;-1:-1:-1::0;;;;;9920:44:6;::::1;;::::0;;9970:27:::1;9920:44:::0;9970:9:::1;:27::i;6575:429:1:-:0;719:10:0;6668:4:1;6749:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;6749:27:1;;;;;;;;;;6668:4;;719:10:0;6794:35:1;;;;6786:85;;;;-1:-1:-1;;;6786:85:1;;11306:2:7;6786:85:1;;;11288:21:7;11345:2;11325:18;;;11318:30;11384:34;11364:18;;;11357:62;-1:-1:-1;;;11435:18:7;;;11428:35;11480:19;;6786:85:1;11104:401:7;6786:85:1;6905:60;6914:5;6921:7;6949:15;6930:16;:34;6905:8;:60::i;3708:189::-;3787:4;719:10:0;3841:28:1;719:10:0;3858:2:1;3862:6;3841:9;:28::i;10107:175:6:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;2304:3:6::1;10189:10;:28;10181:59;;;::::0;-1:-1:-1;;;10181:59:6;;10959:2:7;10181:59:6::1;::::0;::::1;10941:21:7::0;10998:2;10978:18;;;10971:30;-1:-1:-1;;;11017:18:7;;;11010:48;11075:18;;10181:59:6::1;10757:342:7::0;10181:59:6::1;10246:18;:31:::0;10107:175::o;10652:85::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;10715:8:6::1;:17:::0;;-1:-1:-1;;10715:17:6::1;::::0;::::1;;::::0;;;::::1;::::0;;10652:85::o;2579:30::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2579:30:6;;-1:-1:-1;2579:30:6;:::o;5643:357::-;1744:1:5;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:5;;;;;;;:::i;:::-;1744:1;2455:7;:18;2910:8:6::1;::::0;::::1;;2909:9;2901:42;;;;-1:-1:-1::0;;;2901:42:6::1;;;;;;;:::i;:::-;5751:16:::2;::::0;;;::::2;;;5750:17;5742:45;;;::::0;-1:-1:-1;;;5742:45:6;;11712:2:7;5742:45:6::2;::::0;::::2;11694:21:7::0;11751:2;11731:18;;;11724:30;-1:-1:-1;;;11770:18:7;;;11763:45;11825:18;;5742:45:6::2;11510:339:7::0;5742:45:6::2;5833:6:::0;5801:28:::2;719:10:0::0;4316:169:6;:::i;5801:28::-:2;:38;;5793:71;;;;-1:-1:-1::0;;;5793:71:6::2;;;;;;;:::i;:::-;719:10:0::0;5871:25:6::2;::::0;;;:11:::2;:25;::::0;;;;:35;;5900:6;;5871:25;:35:::2;::::0;5900:6;;5871:35:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;5912:19:6;::::2;;::::0;;;:15:::2;:19;::::0;;;;:29;;5935:6;;5912:19;:29:::2;::::0;5935:6;;5912:29:::2;:::i;:::-;::::0;;;-1:-1:-1;;5953:42:6::2;::::0;1669:25:7;;;-1:-1:-1;;;;;5953:42:6;::::2;::::0;719:10:0;;5953:42:6::2;::::0;1657:2:7;1642:18;5953:42:6::2;1523:177:7::0;10832:93:6;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;10895:16:6::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;10895:25:6;;::::1;::::0;;;::::1;::::0;;10832:93::o;1911:198:4:-;1101:6;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:4;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:4;;12056:2:7;1991:73:4::1;::::0;::::1;12038:21:7::0;12095:2;12075:18;;;12068:30;12134:34;12114:18;;;12107:62;-1:-1:-1;;;12185:18:7;;;12178:36;12231:19;;1991:73:4::1;11854:402:7::0;1991:73:4::1;2074:28;2093:8;2074:18;:28::i;11022:92:6:-:0;1101:6:4;;-1:-1:-1;;;;;1101:6:4;719:10:0;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;11084:16:6::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;11084:25:6;;::::1;::::0;;;::::1;::::0;;11022:92::o;10102:370:1:-;-1:-1:-1;;;;;10233:19:1;;10225:68;;;;-1:-1:-1;;;10225:68:1;;12463:2:7;10225:68:1;;;12445:21:7;12502:2;12482:18;;;12475:30;12541:34;12521:18;;;12514:62;-1:-1:-1;;;12592:18:7;;;12585:34;12636:19;;10225:68:1;12261:400:7;10225:68:1;-1:-1:-1;;;;;10311:21:1;;10303:68;;;;-1:-1:-1;;;10303:68:1;;12868:2:7;10303:68:1;;;12850:21:7;12907:2;12887:18;;;12880:30;12946:34;12926:18;;;12919:62;-1:-1:-1;;;12997:18:7;;;12990:32;13039:19;;10303:68:1;12666:398:7;10303:68:1;-1:-1:-1;;;;;10382:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10433:32;;1669:25:7;;;10433:32:1;;1642:18:7;10433:32:1;;;;;;;;10102:370;;;:::o;7010:315:6:-;7116:6;7092:20;7107:4;7092:14;:20::i;:::-;:30;;7084:63;;;;-1:-1:-1;;;7084:63:6;;;;;;;:::i;:::-;7153:11;7196:3;7177:15;;7168:6;:24;;;;:::i;:::-;7167:32;;;;:::i;:::-;-1:-1:-1;;;;;7206:17:6;;;;;;:11;:17;;;;;:27;;7153:46;;-1:-1:-1;7227:6:6;;7206:17;;;:27;;7227:6;;7206:27;:::i;:::-;;;;;;;;7267:3;7239:24;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;7282:38:6;;;9982:25:7;;;10038:2;10023:18;;10016:34;;;-1:-1:-1;;;;;7282:38:6;;;719:10:0;;7282:38:6;;9955:18:7;7282:38:6;9808:248:7;10749:441:1;-1:-1:-1;;;;;4070:18:1;;;10879:24;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10945:37:1;;10941:243;;11026:6;11006:16;:26;;10998:68;;;;-1:-1:-1;;;10998:68:1;;13271:2:7;10998:68:1;;;13253:21:7;13310:2;13290:18;;;13283:30;13349:31;13329:18;;;13322:59;13398:18;;10998:68:1;13069:353:7;10998:68:1;11108:51;11117:5;11124:7;11152:6;11133:16;:25;11108:8;:51::i;:::-;10869:321;10749:441;;;:::o;7467:651::-;-1:-1:-1;;;;;7593:18:1;;7585:68;;;;-1:-1:-1;;;7585:68:1;;13629:2:7;7585:68:1;;;13611:21:7;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;-1:-1:-1;;;13758:18:7;;;13751:35;13803:19;;7585:68:1;13427:401:7;7585:68:1;-1:-1:-1;;;;;7671:16:1;;7663:64;;;;-1:-1:-1;;;7663:64:1;;14035:2:7;7663:64:1;;;14017:21:7;14074:2;14054:18;;;14047:30;14113:34;14093:18;;;14086:62;-1:-1:-1;;;14164:18:7;;;14157:33;14207:19;;7663:64:1;13833:399:7;7663:64:1;-1:-1:-1;;;;;7809:15:1;;7787:19;7809:15;;;;;;;;;;;7842:21;;;;7834:72;;;;-1:-1:-1;;;7834:72:1;;14439:2:7;7834:72:1;;;14421:21:7;14478:2;14458:18;;;14451:30;14517:34;14497:18;;;14490:62;-1:-1:-1;;;14568:18:7;;;14561:36;14614:19;;7834:72:1;14237:402:7;7834:72:1;-1:-1:-1;;;;;7940:15:1;;;:9;:15;;;;;;;;;;;7958:20;;;7940:38;;7998:13;;;;;;;;:23;;7972:6;;7940:9;7998:23;;7972:6;;7998:23;:::i;:::-;;;;;;;;8052:2;-1:-1:-1;;;;;8037:26:1;8046:4;-1:-1:-1;;;;;8037:26:1;;8056:6;8037:26;;;;1669:25:7;;1657:2;1642:18;;1523:177;8037:26:1;;;;;;;;8074:37;9103:576;8996:223:6;-1:-1:-1;;;;;9080:18:6;;9072:55;;;;-1:-1:-1;;;9072:55:6;;14846:2:7;9072:55:6;;;14828:21:7;14885:2;14865:18;;;14858:30;14924:26;14904:18;;;14897:54;14968:18;;9072:55:6;14644:348:7;9072:55:6;-1:-1:-1;;;;;9133:21:6;;;;;;:15;:21;;;;;:31;;9158:6;;9133:21;:31;;9158:6;;9133:31;:::i;:::-;;;;-1:-1:-1;;9176:38:6;;1669:25:7;;;-1:-1:-1;;;;;9176:38:6;;;719:10:0;;9176:38:6;;1657:2:7;1642:18;9176:38:6;;;;;;;;8996:223;;:::o;8394:389:1:-;-1:-1:-1;;;;;8477:21:1;;8469:65;;;;-1:-1:-1;;;8469:65:1;;15199:2:7;8469:65:1;;;15181:21:7;15238:2;15218:18;;;15211:30;15277:33;15257:18;;;15250:61;15328:18;;8469:65:1;14997:355:7;8469:65:1;8621:6;8605:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8637:18:1;;:9;:18;;;;;;;;;;:28;;8659:6;;8637:9;:28;;8659:6;;8637:28;:::i;:::-;;;;-1:-1:-1;;8680:37:1;;1669:25:7;;;-1:-1:-1;;;;;8680:37:1;;;8697:1;;8680:37;;1657:2:7;1642:18;8680:37:1;1523:177:7;9103:576:1;-1:-1:-1;;;;;9186:21:1;;9178:67;;;;-1:-1:-1;;;9178:67:1;;15559:2:7;9178:67:1;;;15541:21:7;15598:2;15578:18;;;15571:30;15637:34;15617:18;;;15610:62;-1:-1:-1;;;15688:18:7;;;15681:31;15729:19;;9178:67:1;15357:397:7;9178:67:1;-1:-1:-1;;;;;9341:18:1;;9316:22;9341:18;;;;;;;;;;;9377:24;;;;9369:71;;;;-1:-1:-1;;;9369:71:1;;15961:2:7;9369:71:1;;;15943:21:7;16000:2;15980:18;;;15973:30;16039:34;16019:18;;;16012:62;-1:-1:-1;;;16090:18:7;;;16083:32;16132:19;;9369:71:1;15759:398:7;9369:71:1;-1:-1:-1;;;;;9474:18:1;;:9;:18;;;;;;;;;;9495:23;;;9474:44;;9538:12;:22;;9512:6;;9474:9;9538:22;;9512:6;;9538:22;:::i;:::-;;;;-1:-1:-1;;9576:37:1;;1669:25:7;;;9602:1:1;;-1:-1:-1;;;;;9576:37:1;;;;;1657:2:7;1642:18;9576:37:1;1523:177:7;2263:187:4;2355:6;;;-1:-1:-1;;;;;2371:17:4;;;-1:-1:-1;;;;;;2371:17:4;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;14:597:7:-;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:7;574:15;-1:-1:-1;;570:29:7;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:7:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:7;;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:7:o;1245:273::-;1301:6;1354:2;1342:9;1333:7;1329:23;1325:32;1322:52;;;1370:1;1367;1360:12;1322:52;1409:9;1396:23;1462:5;1455:13;1448:21;1441:5;1438:32;1428:60;;1484:1;1481;1474:12;1428:60;1507:5;1245:273;-1:-1:-1;;;1245:273:7:o;1705:328::-;1782:6;1790;1798;1851:2;1839:9;1830:7;1826:23;1822:32;1819:52;;;1867:1;1864;1857:12;1819:52;1890:29;1909:9;1890:29;:::i;:::-;1880:39;;1938:38;1972:2;1961:9;1957:18;1938:38;:::i;:::-;1928:48;;2023:2;2012:9;2008:18;1995:32;1985:42;;1705:328;;;;;:::o;2227:127::-;2288:10;2283:3;2279:20;2276:1;2269:31;2319:4;2316:1;2309:15;2343:4;2340:1;2333:15;2359:275;2430:2;2424:9;2495:2;2476:13;;-1:-1:-1;;2472:27:7;2460:40;;2530:18;2515:34;;2551:22;;;2512:62;2509:88;;;2577:18;;:::i;:::-;2613:2;2606:22;2359:275;;-1:-1:-1;2359:275:7:o;2639:183::-;2699:4;2732:18;2724:6;2721:30;2718:56;;;2754:18;;:::i;:::-;-1:-1:-1;2799:1:7;2795:14;2811:4;2791:25;;2639:183::o;2827:662::-;2881:5;2934:3;2927:4;2919:6;2915:17;2911:27;2901:55;;2952:1;2949;2942:12;2901:55;2988:6;2975:20;3014:4;3038:60;3054:43;3094:2;3054:43;:::i;:::-;3038:60;:::i;:::-;3132:15;;;3218:1;3214:10;;;;3202:23;;3198:32;;;3163:12;;;;3242:15;;;3239:35;;;3270:1;3267;3260:12;3239:35;3306:2;3298:6;3294:15;3318:142;3334:6;3329:3;3326:15;3318:142;;;3400:17;;3388:30;;3438:12;;;;3351;;3318:142;;;-1:-1:-1;3478:5:7;2827:662;-1:-1:-1;;;;;;2827:662:7:o;3494:1146::-;3612:6;3620;3673:2;3661:9;3652:7;3648:23;3644:32;3641:52;;;3689:1;3686;3679:12;3641:52;3729:9;3716:23;3758:18;3799:2;3791:6;3788:14;3785:34;;;3815:1;3812;3805:12;3785:34;3853:6;3842:9;3838:22;3828:32;;3898:7;3891:4;3887:2;3883:13;3879:27;3869:55;;3920:1;3917;3910:12;3869:55;3956:2;3943:16;3978:4;4002:60;4018:43;4058:2;4018:43;:::i;4002:60::-;4096:15;;;4178:1;4174:10;;;;4166:19;;4162:28;;;4127:12;;;;4202:19;;;4199:39;;;4234:1;4231;4224:12;4199:39;4258:11;;;;4278:148;4294:6;4289:3;4286:15;4278:148;;;4360:23;4379:3;4360:23;:::i;:::-;4348:36;;4311:12;;;;4404;;;;4278:148;;;4445:5;-1:-1:-1;;4488:18:7;;4475:32;;-1:-1:-1;;4519:16:7;;;4516:36;;;4548:1;4545;4538:12;4516:36;;4571:63;4626:7;4615:8;4604:9;4600:24;4571:63;:::i;:::-;4561:73;;;3494:1146;;;;;:::o;4645:180::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;-1:-1:-1;4796:23:7;;4645:180;-1:-1:-1;4645:180:7:o;4830:186::-;4889:6;4942:2;4930:9;4921:7;4917:23;4913:32;4910:52;;;4958:1;4955;4948:12;4910:52;4981:29;5000:9;4981:29;:::i;5229:260::-;5297:6;5305;5358:2;5346:9;5337:7;5333:23;5329:32;5326:52;;;5374:1;5371;5364:12;5326:52;5397:29;5416:9;5397:29;:::i;:::-;5387:39;;5445:38;5479:2;5468:9;5464:18;5445:38;:::i;:::-;5435:48;;5229:260;;;;;:::o;5718:380::-;5797:1;5793:12;;;;5840;;;5861:61;;5915:4;5907:6;5903:17;5893:27;;5861:61;5968:2;5960:6;5957:14;5937:18;5934:38;5931:161;;6014:10;6009:3;6005:20;6002:1;5995:31;6049:4;6046:1;6039:15;6077:4;6074:1;6067:15;5931:161;;5718:380;;;:::o;6103:356::-;6305:2;6287:21;;;6324:18;;;6317:30;6383:34;6378:2;6363:18;;6356:62;6450:2;6435:18;;6103:356::o;6464:338::-;6666:2;6648:21;;;6705:2;6685:18;;;6678:30;-1:-1:-1;;;6739:2:7;6724:18;;6717:44;6793:2;6778:18;;6464:338::o;6807:355::-;7009:2;6991:21;;;7048:2;7028:18;;;7021:30;7087:33;7082:2;7067:18;;7060:61;7153:2;7138:18;;6807:355::o;7515:127::-;7576:10;7571:3;7567:20;7564:1;7557:31;7607:4;7604:1;7597:15;7631:4;7628:1;7621:15;7647:127;7708:10;7703:3;7699:20;7696:1;7689:31;7739:4;7736:1;7729:15;7763:4;7760:1;7753:15;7779:135;7818:3;7839:17;;;7836:43;;7859:18;;:::i;:::-;-1:-1:-1;7906:1:7;7895:13;;7779:135::o;7919:128::-;7959:3;7990:1;7986:6;7983:1;7980:13;7977:39;;;7996:18;;:::i;:::-;-1:-1:-1;8032:9:7;;7919:128::o;8052:184::-;8122:6;8175:2;8163:9;8154:7;8150:23;8146:32;8143:52;;;8191:1;8188;8181:12;8143:52;-1:-1:-1;8214:16:7;;8052:184;-1:-1:-1;8052:184:7:o;8241:125::-;8281:4;8309:1;8306;8303:8;8300:34;;;8314:18;;:::i;:::-;-1:-1:-1;8351:9:7;;8241:125::o;8371:344::-;8573:2;8555:21;;;8612:2;8592:18;;;8585:30;-1:-1:-1;;;8646:2:7;8631:18;;8624:50;8706:2;8691:18;;8371:344::o;9064:::-;9266:2;9248:21;;;9305:2;9285:18;;;9278:30;-1:-1:-1;;;9339:2:7;9324:18;;9317:50;9399:2;9384:18;;9064:344::o;9413:168::-;9453:7;9519:1;9515;9511:6;9507:14;9504:1;9501:21;9496:1;9489:9;9482:17;9478:45;9475:71;;;9526:18;;:::i;:::-;-1:-1:-1;9566:9:7;;9413:168::o;9586:217::-;9626:1;9652;9642:132;;9696:10;9691:3;9687:20;9684:1;9677:31;9731:4;9728:1;9721:15;9759:4;9756:1;9749:15;9642:132;-1:-1:-1;9788:9:7;;9586:217::o

Swarm Source

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