ETH Price: $2,967.57 (-1.75%)
Gas: 2 Gwei

Token

Nutty Squirrels 420 (NUTTY)
 

Overview

Max Total Supply

1,745 NUTTY

Holders

269

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 NUTTY
0xe16f76116c6920cd9bb046c000d05924152738f4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CC0 3D Nutty Squirrels awoke from hibernation to cause Chaos and smoke weed.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NuttySquirrels

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *
████████████████████████████████████████████████████████████████████████████████████████████████████████
█▄─▀█▄─▄█▄─██─▄█─▄─▄─█─▄─▄─█▄─█─▄█─▄▄▄▄█─▄▄▄─█▄─██─▄█▄─▄█▄─▄▄▀█▄─▄▄▀█▄─▄▄─█▄─▄███─▄▄▄▄███░█░██▀▄▄▀█─▄▄─█
██─█▄▀─███─██─████─█████─████▄─▄██▄▄▄▄─█─██▀─██─██─███─███─▄─▄██─▄─▄██─▄█▀██─██▀█▄▄▄▄─███▄▄░███▀▄██─██─█
▀▄▄▄▀▀▄▄▀▀▄▄▄▄▀▀▀▄▄▄▀▀▀▄▄▄▀▀▀▄▄▄▀▀▄▄▄▄▄▀───▄▄▀▀▄▄▄▄▀▀▄▄▄▀▄▄▀▄▄▀▄▄▀▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▀▀▀▄▄▄▀▄▄▄▄▀▄▄▄▄▀
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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(), "You are 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);
    }
}

pragma solidity ^0.8.0;

contract NuttySquirrels is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.004 ether;//420BABYYYY
    uint256 public MAX_SUPPLY = 3500; //THAT'S ALOT OF F@%&ING SQUIRRELS
    uint256 public MAX_MINTS = 4;//might change later IDONT KNOW
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public paused = true;   
    
    constructor() ERC721A("Nutty Squirrels 420", "NUTTY", MAX_MINTS, MAX_SUPPLY) { 
    }
    

    function mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        require(MAX_MINTS >= numTokens, "Excess max per paid tx");
        require(msg.value >= numTokens * NFT_PRICE, "Invalid funds provided");
        
        _safeMint(msg.sender, numTokens);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }
    


    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }
    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function Withdrawalweedmoney() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Withdrawalweedmoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007819055660e35fa931a0000600955610dac600a556004600b5560e0604081905260c08290526200003a91600c919062000249565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006991600d9162000249565b50600e805460ff191660011790553480156200008457600080fd5b506040518060400160405280601381526020017f4e7574747920537175697272656c732034323000000000000000000000000000815250604051806040016040528060058152602001644e5554545960d81b815250600b54600a54600081116200014c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ae5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000143565b8351620001c390600190602087019062000249565b508251620001d990600290602086019062000249565b5060a09190915260805250620001f1905033620001f7565b6200032c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025790620002ef565b90600052602060002090601f0160209004810192826200027b5760008555620002c6565b82601f106200029657805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c6578251825591602001919060010190620002a9565b50620002d4929150620002d8565b5090565b5b80821115620002d45760008155600101620002d9565b600181811c908216806200030457607f821691505b602082108114156200032657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161228b6200035d600039600081816114f50152818161151f015261195201526000505061228b6000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063cce132d111610064578063cce132d114610538578063d7224ba01461054e578063e985e9c514610564578063f2fde38b146105ad57600080fd5b8063a22cb465146104c3578063b88d4fde146104e3578063c668286214610503578063c87b56dd1461051857600080fd5b8063914cdb4f116100d1578063914cdb4f1461046657806391b7f5ed1461047b57806395d89b411461049b578063a0712d68146104b057600080fd5b806370a08231146103f3578063715018a61461041357806379c9cb7b146104285780638da5cb5b1461044857600080fd5b806332cb6b0c1161017a5780635c975abb116101495780635c975abb1461038e5780636352211e146103a8578063676dd563146103c85780636c0360eb146103de57600080fd5b806332cb6b0c1461031857806342842e0e1461032e5780634f6ccce71461034e57806355f804b31461036e57600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102b957806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611e1e565b6105cd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611e03565b61063a565b005b34801561024b57600080fd5b50610254610680565b6040516102149190611ff0565b34801561026d57600080fd5b5061028161027c366004611ea1565b610712565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611dd9565b61079d565b3480156102c557600080fd5b506000545b604051908152602001610214565b3480156102e457600080fd5b5061023d6102f3366004611cf7565b6108b5565b34801561030457600080fd5b506102ca610313366004611dd9565b6108c0565b34801561032457600080fd5b506102ca600a5481565b34801561033a57600080fd5b5061023d610349366004611cf7565b610a2e565b34801561035a57600080fd5b506102ca610369366004611ea1565b610a49565b34801561037a57600080fd5b5061023d610389366004611e58565b610aab565b34801561039a57600080fd5b50600e546102089060ff1681565b3480156103b457600080fd5b506102816103c3366004611ea1565b610aec565b3480156103d457600080fd5b506102ca60095481565b3480156103ea57600080fd5b50610254610afe565b3480156103ff57600080fd5b506102ca61040e366004611ca2565b610b8c565b34801561041f57600080fd5b5061023d610c1d565b34801561043457600080fd5b5061023d610443366004611ea1565b610c53565b34801561045457600080fd5b506008546001600160a01b0316610281565b34801561047257600080fd5b5061023d610c82565b34801561048757600080fd5b5061023d610496366004611ea1565b610cd0565b3480156104a757600080fd5b50610254610cff565b61023d6104be366004611ea1565b610d0e565b3480156104cf57600080fd5b5061023d6104de366004611daf565b610e34565b3480156104ef57600080fd5b5061023d6104fe366004611d33565b610ef9565b34801561050f57600080fd5b50610254610f32565b34801561052457600080fd5b50610254610533366004611ea1565b610f3f565b34801561054457600080fd5b506102ca600b5481565b34801561055a57600080fd5b506102ca60075481565b34801561057057600080fd5b5061020861057f366004611cc4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105b957600080fd5b5061023d6105c8366004611ca2565b610ff7565b60006001600160e01b031982166380ac58cd60e01b14806105fe57506001600160e01b03198216635b5e139f60e01b145b8061061957506001600160e01b0319821663780e9d6360e01b145b8061063457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461066d5760405162461bcd60e51b815260040161066490612003565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461068f9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546106bb9061217d565b80156107085780601f106106dd57610100808354040283529160200191610708565b820191906000526020600020905b8154815290600101906020018083116106eb57829003601f168201915b5050505050905090565b600061071f826000541190565b6107815760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610664565b506000908152600560205260409020546001600160a01b031690565b60006107a882610aec565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610664565b336001600160a01b03821614806108335750610833813361057f565b6108a55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610664565b6108b083838361108f565b505050565b6108b08383836110eb565b60006108cb83610b8c565b82106109245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610664565b600080549080805b838110156109ce576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097f57805192505b876001600160a01b0316836001600160a01b031614156109bb57868414156109ad5750935061063492505050565b836109b7816121b8565b9450505b50806109c6816121b8565b91505061092c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610664565b6108b083838360405180602001604052806000815250610ef9565b600080548210610aa75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610664565b5090565b6008546001600160a01b03163314610ad55760405162461bcd60e51b815260040161066490612003565b8051610ae890600c906020840190611b70565b5050565b6000610af782611473565b5192915050565b600c8054610b0b9061217d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b379061217d565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610664565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c475760405162461bcd60e51b815260040161066490612003565b610c51600061161d565b565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161066490612003565b600b55565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161066490612003565b60405133904780156108fc02916000818181858888f19350505050610c5157600080fd5b6008546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161066490612003565b600955565b60606002805461068f9061217d565b600e5460ff1615610d4a5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610664565b600081118015610d5c5750600b548111155b610d6557600080fd5b600a5481610d7260005490565b610d7c91906120b0565b1115610d8757600080fd5b80600b541015610dd25760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610664565b600954610ddf90826120dc565b341015610e275760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610664565b610e31338261166f565b50565b6001600160a01b038216331415610e8d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610664565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f048484846110eb565b610f1084848484611689565b610f2c5760405162461bcd60e51b815260040161066490612032565b50505050565b600d8054610b0b9061217d565b6060610f4c826000541190565b610f985760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610664565b6000600c8054610fa79061217d565b905011610fc35760405180602001604052806000815250610634565b600c610fce83611797565b600d604051602001610fe293929190611f80565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110215760405162461bcd60e51b815260040161066490612003565b6001600160a01b0381166110865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610664565b610e318161161d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f682611473565b80519091506000906001600160a01b0316336001600160a01b0316148061112d57503361112284610712565b6001600160a01b0316145b8061113f5750815161113f903361057f565b9050806111a95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610664565b846001600160a01b031682600001516001600160a01b03161461121d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610664565b6001600160a01b0384166112815760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610664565b611291600084846000015161108f565b6001600160a01b03851660009081526004602052604081208054600192906112c39084906001600160801b03166120fb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261130f91859116612085565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113978460016120b0565b6000818152600360205260409020549091506001600160a01b0316611429576113c1816000541190565b156114295760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611492826000541190565b6114f15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610664565b60007f00000000000000000000000000000000000000000000000000000000000000008310611552576115447f000000000000000000000000000000000000000000000000000000000000000084612123565b61154f9060016120b0565b90505b825b8181106115bc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115a957949350505050565b50806115b481612166565b915050611554565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610664565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae8828260405180602001604052806000815250611895565b60006001600160a01b0384163b1561178b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cd903390899088908890600401611fb3565b602060405180830381600087803b1580156116e757600080fd5b505af1925050508015611717575060408051601f3d908101601f1916820190925261171491810190611e3b565b60015b611771573d808015611745576040519150601f19603f3d011682016040523d82523d6000602084013e61174a565b606091505b5080516117695760405162461bcd60e51b815260040161066490612032565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178f565b5060015b949350505050565b6060816117bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e557806117cf816121b8565b91506117de9050600a836120c8565b91506117bf565b60008167ffffffffffffffff81111561180057611800612229565b6040519080825280601f01601f19166020018201604052801561182a576020820181803683370190505b5090505b841561178f5761183f600183612123565b915061184c600a866121d3565b6118579060306120b0565b60f81b81838151811061186c5761186c612213565b60200101906001600160f81b031916908160001a90535061188e600a866120c8565b945061182e565b6000546001600160a01b0384166118f85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610664565b611903816000541190565b156119505760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610664565b7f00000000000000000000000000000000000000000000000000000000000000008311156119cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610664565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a27908790612085565b6001600160801b03168152602001858360200151611a459190612085565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b655760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b296000888488611689565b611b455760405162461bcd60e51b815260040161066490612032565b81611b4f816121b8565b9250508080611b5d906121b8565b915050611adc565b50600081905561146b565b828054611b7c9061217d565b90600052602060002090601f016020900481019282611b9e5760008555611be4565b82601f10611bb757805160ff1916838001178555611be4565b82800160010185558215611be4579182015b82811115611be4578251825591602001919060010190611bc9565b50610aa79291505b80821115610aa75760008155600101611bec565b600067ffffffffffffffff80841115611c1b57611c1b612229565b604051601f8501601f19908116603f01168101908282118183101715611c4357611c43612229565b81604052809350858152868686011115611c5c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8d57600080fd5b919050565b80358015158114611c8d57600080fd5b600060208284031215611cb457600080fd5b611cbd82611c76565b9392505050565b60008060408385031215611cd757600080fd5b611ce083611c76565b9150611cee60208401611c76565b90509250929050565b600080600060608486031215611d0c57600080fd5b611d1584611c76565b9250611d2360208501611c76565b9150604084013590509250925092565b60008060008060808587031215611d4957600080fd5b611d5285611c76565b9350611d6060208601611c76565b925060408501359150606085013567ffffffffffffffff811115611d8357600080fd5b8501601f81018713611d9457600080fd5b611da387823560208401611c00565b91505092959194509250565b60008060408385031215611dc257600080fd5b611dcb83611c76565b9150611cee60208401611c92565b60008060408385031215611dec57600080fd5b611df583611c76565b946020939093013593505050565b600060208284031215611e1557600080fd5b611cbd82611c92565b600060208284031215611e3057600080fd5b8135611cbd8161223f565b600060208284031215611e4d57600080fd5b8151611cbd8161223f565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b61178f84823560208401611c00565b600060208284031215611eb357600080fd5b5035919050565b60008151808452611ed281602086016020860161213a565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f0057607f831692505b6020808410821415611f2257634e487b7160e01b600052602260045260246000fd5b818015611f365760018114611f4757611f74565b60ff19861689528489019650611f74565b60008881526020902060005b86811015611f6c5781548b820152908501908301611f53565b505084890196505b50505050505092915050565b6000611f8c8286611ee6565b8451611f9c81836020890161213a565b611fa881830186611ee6565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe690830184611eba565b9695505050505050565b602081526000611cbd6020830184611eba565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120a7576120a76121e7565b01949350505050565b600082198211156120c3576120c36121e7565b500190565b6000826120d7576120d76121fd565b500490565b60008160001904831182151516156120f6576120f66121e7565b500290565b60006001600160801b038381169083168181101561211b5761211b6121e7565b039392505050565b600082821015612135576121356121e7565b500390565b60005b8381101561215557818101518382015260200161213d565b83811115610f2c5750506000910152565b600081612175576121756121e7565b506000190190565b600181811c9082168061219157607f821691505b602082108114156121b257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121cc576121cc6121e7565b5060010190565b6000826121e2576121e26121fd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3157600080fdfea2646970667358221220a1f5d44f84f7595b54bba5db451d09253caf8261f8e562d4bf80e20017a278ec64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063cce132d111610064578063cce132d114610538578063d7224ba01461054e578063e985e9c514610564578063f2fde38b146105ad57600080fd5b8063a22cb465146104c3578063b88d4fde146104e3578063c668286214610503578063c87b56dd1461051857600080fd5b8063914cdb4f116100d1578063914cdb4f1461046657806391b7f5ed1461047b57806395d89b411461049b578063a0712d68146104b057600080fd5b806370a08231146103f3578063715018a61461041357806379c9cb7b146104285780638da5cb5b1461044857600080fd5b806332cb6b0c1161017a5780635c975abb116101495780635c975abb1461038e5780636352211e146103a8578063676dd563146103c85780636c0360eb146103de57600080fd5b806332cb6b0c1461031857806342842e0e1461032e5780634f6ccce71461034e57806355f804b31461036e57600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102b957806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611e1e565b6105cd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611e03565b61063a565b005b34801561024b57600080fd5b50610254610680565b6040516102149190611ff0565b34801561026d57600080fd5b5061028161027c366004611ea1565b610712565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611dd9565b61079d565b3480156102c557600080fd5b506000545b604051908152602001610214565b3480156102e457600080fd5b5061023d6102f3366004611cf7565b6108b5565b34801561030457600080fd5b506102ca610313366004611dd9565b6108c0565b34801561032457600080fd5b506102ca600a5481565b34801561033a57600080fd5b5061023d610349366004611cf7565b610a2e565b34801561035a57600080fd5b506102ca610369366004611ea1565b610a49565b34801561037a57600080fd5b5061023d610389366004611e58565b610aab565b34801561039a57600080fd5b50600e546102089060ff1681565b3480156103b457600080fd5b506102816103c3366004611ea1565b610aec565b3480156103d457600080fd5b506102ca60095481565b3480156103ea57600080fd5b50610254610afe565b3480156103ff57600080fd5b506102ca61040e366004611ca2565b610b8c565b34801561041f57600080fd5b5061023d610c1d565b34801561043457600080fd5b5061023d610443366004611ea1565b610c53565b34801561045457600080fd5b506008546001600160a01b0316610281565b34801561047257600080fd5b5061023d610c82565b34801561048757600080fd5b5061023d610496366004611ea1565b610cd0565b3480156104a757600080fd5b50610254610cff565b61023d6104be366004611ea1565b610d0e565b3480156104cf57600080fd5b5061023d6104de366004611daf565b610e34565b3480156104ef57600080fd5b5061023d6104fe366004611d33565b610ef9565b34801561050f57600080fd5b50610254610f32565b34801561052457600080fd5b50610254610533366004611ea1565b610f3f565b34801561054457600080fd5b506102ca600b5481565b34801561055a57600080fd5b506102ca60075481565b34801561057057600080fd5b5061020861057f366004611cc4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105b957600080fd5b5061023d6105c8366004611ca2565b610ff7565b60006001600160e01b031982166380ac58cd60e01b14806105fe57506001600160e01b03198216635b5e139f60e01b145b8061061957506001600160e01b0319821663780e9d6360e01b145b8061063457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461066d5760405162461bcd60e51b815260040161066490612003565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461068f9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546106bb9061217d565b80156107085780601f106106dd57610100808354040283529160200191610708565b820191906000526020600020905b8154815290600101906020018083116106eb57829003601f168201915b5050505050905090565b600061071f826000541190565b6107815760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610664565b506000908152600560205260409020546001600160a01b031690565b60006107a882610aec565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610664565b336001600160a01b03821614806108335750610833813361057f565b6108a55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610664565b6108b083838361108f565b505050565b6108b08383836110eb565b60006108cb83610b8c565b82106109245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610664565b600080549080805b838110156109ce576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097f57805192505b876001600160a01b0316836001600160a01b031614156109bb57868414156109ad5750935061063492505050565b836109b7816121b8565b9450505b50806109c6816121b8565b91505061092c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610664565b6108b083838360405180602001604052806000815250610ef9565b600080548210610aa75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610664565b5090565b6008546001600160a01b03163314610ad55760405162461bcd60e51b815260040161066490612003565b8051610ae890600c906020840190611b70565b5050565b6000610af782611473565b5192915050565b600c8054610b0b9061217d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b379061217d565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610664565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c475760405162461bcd60e51b815260040161066490612003565b610c51600061161d565b565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161066490612003565b600b55565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161066490612003565b60405133904780156108fc02916000818181858888f19350505050610c5157600080fd5b6008546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161066490612003565b600955565b60606002805461068f9061217d565b600e5460ff1615610d4a5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610664565b600081118015610d5c5750600b548111155b610d6557600080fd5b600a5481610d7260005490565b610d7c91906120b0565b1115610d8757600080fd5b80600b541015610dd25760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610664565b600954610ddf90826120dc565b341015610e275760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610664565b610e31338261166f565b50565b6001600160a01b038216331415610e8d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610664565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f048484846110eb565b610f1084848484611689565b610f2c5760405162461bcd60e51b815260040161066490612032565b50505050565b600d8054610b0b9061217d565b6060610f4c826000541190565b610f985760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610664565b6000600c8054610fa79061217d565b905011610fc35760405180602001604052806000815250610634565b600c610fce83611797565b600d604051602001610fe293929190611f80565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110215760405162461bcd60e51b815260040161066490612003565b6001600160a01b0381166110865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610664565b610e318161161d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f682611473565b80519091506000906001600160a01b0316336001600160a01b0316148061112d57503361112284610712565b6001600160a01b0316145b8061113f5750815161113f903361057f565b9050806111a95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610664565b846001600160a01b031682600001516001600160a01b03161461121d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610664565b6001600160a01b0384166112815760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610664565b611291600084846000015161108f565b6001600160a01b03851660009081526004602052604081208054600192906112c39084906001600160801b03166120fb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261130f91859116612085565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113978460016120b0565b6000818152600360205260409020549091506001600160a01b0316611429576113c1816000541190565b156114295760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611492826000541190565b6114f15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610664565b60007f00000000000000000000000000000000000000000000000000000000000000048310611552576115447f000000000000000000000000000000000000000000000000000000000000000484612123565b61154f9060016120b0565b90505b825b8181106115bc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115a957949350505050565b50806115b481612166565b915050611554565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610664565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae8828260405180602001604052806000815250611895565b60006001600160a01b0384163b1561178b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cd903390899088908890600401611fb3565b602060405180830381600087803b1580156116e757600080fd5b505af1925050508015611717575060408051601f3d908101601f1916820190925261171491810190611e3b565b60015b611771573d808015611745576040519150601f19603f3d011682016040523d82523d6000602084013e61174a565b606091505b5080516117695760405162461bcd60e51b815260040161066490612032565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178f565b5060015b949350505050565b6060816117bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e557806117cf816121b8565b91506117de9050600a836120c8565b91506117bf565b60008167ffffffffffffffff81111561180057611800612229565b6040519080825280601f01601f19166020018201604052801561182a576020820181803683370190505b5090505b841561178f5761183f600183612123565b915061184c600a866121d3565b6118579060306120b0565b60f81b81838151811061186c5761186c612213565b60200101906001600160f81b031916908160001a90535061188e600a866120c8565b945061182e565b6000546001600160a01b0384166118f85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610664565b611903816000541190565b156119505760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610664565b7f00000000000000000000000000000000000000000000000000000000000000048311156119cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610664565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a27908790612085565b6001600160801b03168152602001858360200151611a459190612085565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b655760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b296000888488611689565b611b455760405162461bcd60e51b815260040161066490612032565b81611b4f816121b8565b9250508080611b5d906121b8565b915050611adc565b50600081905561146b565b828054611b7c9061217d565b90600052602060002090601f016020900481019282611b9e5760008555611be4565b82601f10611bb757805160ff1916838001178555611be4565b82800160010185558215611be4579182015b82811115611be4578251825591602001919060010190611bc9565b50610aa79291505b80821115610aa75760008155600101611bec565b600067ffffffffffffffff80841115611c1b57611c1b612229565b604051601f8501601f19908116603f01168101908282118183101715611c4357611c43612229565b81604052809350858152868686011115611c5c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8d57600080fd5b919050565b80358015158114611c8d57600080fd5b600060208284031215611cb457600080fd5b611cbd82611c76565b9392505050565b60008060408385031215611cd757600080fd5b611ce083611c76565b9150611cee60208401611c76565b90509250929050565b600080600060608486031215611d0c57600080fd5b611d1584611c76565b9250611d2360208501611c76565b9150604084013590509250925092565b60008060008060808587031215611d4957600080fd5b611d5285611c76565b9350611d6060208601611c76565b925060408501359150606085013567ffffffffffffffff811115611d8357600080fd5b8501601f81018713611d9457600080fd5b611da387823560208401611c00565b91505092959194509250565b60008060408385031215611dc257600080fd5b611dcb83611c76565b9150611cee60208401611c92565b60008060408385031215611dec57600080fd5b611df583611c76565b946020939093013593505050565b600060208284031215611e1557600080fd5b611cbd82611c92565b600060208284031215611e3057600080fd5b8135611cbd8161223f565b600060208284031215611e4d57600080fd5b8151611cbd8161223f565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b61178f84823560208401611c00565b600060208284031215611eb357600080fd5b5035919050565b60008151808452611ed281602086016020860161213a565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f0057607f831692505b6020808410821415611f2257634e487b7160e01b600052602260045260246000fd5b818015611f365760018114611f4757611f74565b60ff19861689528489019650611f74565b60008881526020902060005b86811015611f6c5781548b820152908501908301611f53565b505084890196505b50505050505092915050565b6000611f8c8286611ee6565b8451611f9c81836020890161213a565b611fa881830186611ee6565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe690830184611eba565b9695505050505050565b602081526000611cbd6020830184611eba565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120a7576120a76121e7565b01949350505050565b600082198211156120c3576120c36121e7565b500190565b6000826120d7576120d76121fd565b500490565b60008160001904831182151516156120f6576120f66121e7565b500290565b60006001600160801b038381169083168181101561211b5761211b6121e7565b039392505050565b600082821015612135576121356121e7565b500390565b60005b8381101561215557818101518382015260200161213d565b83811115610f2c5750506000910152565b600081612175576121756121e7565b506000190190565b600181811c9082168061219157607f821691505b602082108114156121b257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121cc576121cc6121e7565b5060010190565b6000826121e2576121e26121fd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3157600080fdfea2646970667358221220a1f5d44f84f7595b54bba5db451d09253caf8261f8e562d4bf80e20017a278ec64736f6c63430008070033

Deployed Bytecode Sourcemap

40877:2042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26015:370;;;;;;;;;;-1:-1:-1;26015:370:0;;;;;:::i;:::-;;:::i;:::-;;;6867:14:1;;6860:22;6842:41;;6830:2;6815:18;26015:370:0;;;;;;;;41764:79;;;;;;;;;;-1:-1:-1;41764:79:0;;;;;:::i;:::-;;:::i;:::-;;27741:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29275:204::-;;;;;;;;;;-1:-1:-1;29275:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6165:32:1;;;6147:51;;6135:2;6120:18;29275:204:0;6001:203:1;28838:379:0;;;;;;;;;;-1:-1:-1;28838:379:0;;;;;:::i;:::-;;:::i;24576:94::-;;;;;;;;;;-1:-1:-1;24629:7:0;24652:12;24576:94;;;16284:25:1;;;16272:2;16257:18;24576:94:0;16138:177:1;30125:142:0;;;;;;;;;;-1:-1:-1;30125:142:0;;;;;:::i;:::-;;:::i;25207:744::-;;;;;;;;;;-1:-1:-1;25207:744:0;;;;;:::i;:::-;;:::i;40985:32::-;;;;;;;;;;;;;;;;30330:157;;;;;;;;;;-1:-1:-1;30330:157:0;;;;;:::i;:::-;;:::i;24739:177::-;;;;;;;;;;-1:-1:-1;24739:177:0;;;;;:::i;:::-;;:::i;41849:102::-;;;;;;;;;;-1:-1:-1;41849:102:0;;;;;:::i;:::-;;:::i;41203:25::-;;;;;;;;;;-1:-1:-1;41203:25:0;;;;;;;;27564:118;;;;;;;;;;-1:-1:-1;27564:118:0;;;;;:::i;:::-;;:::i;40928:38::-;;;;;;;;;;;;;;;;41125:26;;;;;;;;;;;;;:::i;26441:211::-;;;;;;;;;;-1:-1:-1;26441:211:0;;;;;:::i;:::-;;:::i;39996:103::-;;;;;;;;;;;;;:::i;42578:91::-;;;;;;;;;;-1:-1:-1;42578:91:0;;;;;:::i;:::-;;:::i;39356:87::-;;;;;;;;;;-1:-1:-1;39429:6:0;;-1:-1:-1;;;;;39429:6:0;39356:87;;42793:123;;;;;;;;;;;;;:::i;42480:92::-;;;;;;;;;;-1:-1:-1;42480:92:0;;;;;:::i;:::-;;:::i;27896:98::-;;;;;;;;;;;;;:::i;41344:412::-;;;;;;:::i;:::-;;:::i;29543:274::-;;;;;;;;;;-1:-1:-1;29543:274:0;;;;;:::i;:::-;;:::i;30550:311::-;;;;;;;;;;-1:-1:-1;30550:311:0;;;;;:::i;:::-;;:::i;41158:37::-;;;;;;;;;;;;;:::i;41957:507::-;;;;;;;;;;-1:-1:-1;41957:507:0;;;;;:::i;:::-;;:::i;41059:28::-;;;;;;;;;;;;;;;;34965:43;;;;;;;;;;;;;;;;29880:186;;;;;;;;;;-1:-1:-1;29880:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;30025:25:0;;;30002:4;30025:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29880:186;40254:238;;;;;;;;;;-1:-1:-1;40254:238:0;;;;;:::i;:::-;;:::i;26015:370::-;26142:4;-1:-1:-1;;;;;;26172:40:0;;-1:-1:-1;;;26172:40:0;;:99;;-1:-1:-1;;;;;;;26223:48:0;;-1:-1:-1;;;26223:48:0;26172:99;:160;;;-1:-1:-1;;;;;;;26282:50:0;;-1:-1:-1;;;26282:50:0;26172:160;:207;;;-1:-1:-1;;;;;;;;;;9746:40:0;;;26343:36;26158:221;26015:370;-1:-1:-1;;26015:370:0:o;41764:79::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;;;;;;;;;41820:6:::1;:15:::0;;-1:-1:-1;;41820:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41764:79::o;27741:94::-;27795:13;27824:5;27817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27741:94;:::o;29275:204::-;29343:7;29367:16;29375:7;31157:4;31187:12;-1:-1:-1;31177:22:0;31100:105;29367:16;29359:74;;;;-1:-1:-1;;;29359:74:0;;15523:2:1;29359:74:0;;;15505:21:1;15562:2;15542:18;;;15535:30;15601:34;15581:18;;;15574:62;-1:-1:-1;;;15652:18:1;;;15645:43;15705:19;;29359:74:0;15321:409:1;29359:74:0;-1:-1:-1;29449:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29449:24:0;;29275:204::o;28838:379::-;28907:13;28923:24;28939:7;28923:15;:24::i;:::-;28907:40;;28968:5;-1:-1:-1;;;;;28962:11:0;:2;-1:-1:-1;;;;;28962:11:0;;;28954:58;;;;-1:-1:-1;;;28954:58:0;;13109:2:1;28954:58:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:32;13280:19;;28954:58:0;12907:398:1;28954:58:0;19066:10;-1:-1:-1;;;;;29037:21:0;;;;:62;;-1:-1:-1;29062:37:0;29079:5;19066:10;29880:186;:::i;29062:37::-;29021:153;;;;-1:-1:-1;;;29021:153:0;;10386:2:1;29021:153:0;;;10368:21:1;10425:2;10405:18;;;10398:30;10464:34;10444:18;;;10437:62;10535:27;10515:18;;;10508:55;10580:19;;29021:153:0;10184:421:1;29021:153:0;29183:28;29192:2;29196:7;29205:5;29183:8;:28::i;:::-;28900:317;28838:379;;:::o;30125:142::-;30233:28;30243:4;30249:2;30253:7;30233:9;:28::i;25207:744::-;25316:7;25351:16;25361:5;25351:9;:16::i;:::-;25343:5;:24;25335:71;;;;-1:-1:-1;;;25335:71:0;;7320:2:1;25335:71:0;;;7302:21:1;7359:2;7339:18;;;7332:30;7398:34;7378:18;;;7371:62;-1:-1:-1;;;7449:18:1;;;7442:32;7491:19;;25335:71:0;7118:398:1;25335:71:0;25413:22;24652:12;;;25413:22;;25533:350;25557:14;25553:1;:18;25533:350;;;25587:31;25621:14;;;:11;:14;;;;;;;;;25587:48;;;;;;;;;-1:-1:-1;;;;;25587:48:0;;;;;-1:-1:-1;;;25587:48:0;;;;;;;;;;;;25648:28;25644:89;;25709:14;;;-1:-1:-1;25644:89:0;25766:5;-1:-1:-1;;;;;25745:26:0;:17;-1:-1:-1;;;;;25745:26:0;;25741:135;;;25803:5;25788:11;:20;25784:59;;;-1:-1:-1;25830:1:0;-1:-1:-1;25823:8:0;;-1:-1:-1;;;25823:8:0;25784:59;25853:13;;;;:::i;:::-;;;;25741:135;-1:-1:-1;25573:3:0;;;;:::i;:::-;;;;25533:350;;;-1:-1:-1;25889:56:0;;-1:-1:-1;;;25889:56:0;;14692:2:1;25889:56:0;;;14674:21:1;14731:2;14711:18;;;14704:30;14770:34;14750:18;;;14743:62;-1:-1:-1;;;14821:18:1;;;14814:44;14875:19;;25889:56:0;14490:410:1;30330:157:0;30442:39;30459:4;30465:2;30469:7;30442:39;;;;;;;;;;;;:16;:39::i;24739:177::-;24806:7;24652:12;;24830:5;:21;24822:69;;;;-1:-1:-1;;;24822:69:0;;9226:2:1;24822:69:0;;;9208:21:1;9265:2;9245:18;;;9238:30;9304:34;9284:18;;;9277:62;-1:-1:-1;;;9355:18:1;;;9348:33;9398:19;;24822:69:0;9024:399:1;24822:69:0;-1:-1:-1;24905:5:0;24739:177::o;41849:102::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;41923:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41849:102:::0;:::o;27564:118::-;27628:7;27651:20;27663:7;27651:11;:20::i;:::-;:25;;27564:118;-1:-1:-1;;27564:118:0:o;41125:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26441:211::-;26505:7;-1:-1:-1;;;;;26529:19:0;;26521:75;;;;-1:-1:-1;;;26521:75:0;;10812:2:1;26521:75:0;;;10794:21:1;10851:2;10831:18;;;10824:30;10890:34;10870:18;;;10863:62;-1:-1:-1;;;10941:18:1;;;10934:41;10992:19;;26521:75:0;10610:407:1;26521:75:0;-1:-1:-1;;;;;;26618:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26618:27:0;;26441:211::o;39996:103::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;40061:30:::1;40088:1;40061:18;:30::i;:::-;39996:103::o:0;42578:91::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;42643:9:::1;:18:::0;42578:91::o;42793:123::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;42860:47:::1;::::0;42868:10:::1;::::0;42885:21:::1;42860:47:::0;::::1;;;::::0;::::1;::::0;;;42885:21;42868:10;42860:47;::::1;;;;;;42852:56;;;::::0;::::1;42480:92:::0;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;42544:9:::1;:20:::0;42480:92::o;27896:98::-;27952:13;27981:7;27974:14;;;;;:::i;41344:412::-;41412:6;;;;41411:7;41403:26;;;;-1:-1:-1;;;41403:26:0;;7723:2:1;41403:26:0;;;7705:21:1;7762:1;7742:18;;;7735:29;-1:-1:-1;;;7780:18:1;;;7773:36;7826:18;;41403:26:0;7521:329:1;41403:26:0;41460:1;41448:9;:13;:39;;;;;41478:9;;41465;:22;;41448:39;41440:48;;;;;;41536:10;;41523:9;41507:13;24629:7;24652:12;;24576:94;41507:13;:25;;;;:::i;:::-;:39;;41499:48;;;;;;41579:9;41566;;:22;;41558:57;;;;-1:-1:-1;;;41558:57:0;;8875:2:1;41558:57:0;;;8857:21:1;8914:2;8894:18;;;8887:30;-1:-1:-1;;;8933:18:1;;;8926:52;8995:18;;41558:57:0;8673:346:1;41558:57:0;41659:9;;41647:21;;:9;:21;:::i;:::-;41634:9;:34;;41626:69;;;;-1:-1:-1;;;41626:69:0;;12758:2:1;41626:69:0;;;12740:21:1;12797:2;12777:18;;;12770:30;-1:-1:-1;;;12816:18:1;;;12809:52;12878:18;;41626:69:0;12556:346:1;41626:69:0;41716:32;41726:10;41738:9;41716;:32::i;:::-;41344:412;:::o;29543:274::-;-1:-1:-1;;;;;29634:24:0;;19066:10;29634:24;;29626:63;;;;-1:-1:-1;;;29626:63:0;;11984:2:1;29626:63:0;;;11966:21:1;12023:2;12003:18;;;11996:30;12062:28;12042:18;;;12035:56;12108:18;;29626:63:0;11782:350:1;29626:63:0;19066:10;29698:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29698:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29698:53:0;;;;;;;;;;29763:48;;6842:41:1;;;29698:42:0;;19066:10;29763:48;;6815:18:1;29763:48:0;;;;;;;29543:274;;:::o;30550:311::-;30687:28;30697:4;30703:2;30707:7;30687:9;:28::i;:::-;30738:48;30761:4;30767:2;30771:7;30780:5;30738:22;:48::i;:::-;30722:133;;;;-1:-1:-1;;;30722:133:0;;;;;;;:::i;:::-;30550:311;;;;:::o;41158:37::-;;;;;;;:::i;41957:507::-;42059:13;42098:17;42106:8;31157:4;31187:12;-1:-1:-1;31177:22:0;31100:105;42098:17;42090:54;;;;-1:-1:-1;;;42090:54:0;;11224:2:1;42090:54:0;;;11206:21:1;11263:2;11243:18;;;11236:30;11302:26;11282:18;;;11275:54;11346:18;;42090:54:0;11022:348:1;42090:54:0;42199:1;42181:7;42175:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;42292:7;42326:26;42343:8;42326:16;:26::i;:::-;42379:13;42249:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42155:301;41957:507;-1:-1:-1;;41957:507:0:o;40254:238::-;39429:6;;-1:-1:-1;;;;;39429:6:0;19066:10;39576:23;39568:57;;;;-1:-1:-1;;;39568:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40357:22:0;::::1;40335:110;;;::::0;-1:-1:-1;;;40335:110:0;;8057:2:1;40335:110:0::1;::::0;::::1;8039:21:1::0;8096:2;8076:18;;;8069:30;8135:34;8115:18;;;8108:62;-1:-1:-1;;;8186:18:1;;;8179:36;8232:19;;40335:110:0::1;7855:402:1::0;40335:110:0::1;40456:28;40475:8;40456:18;:28::i;34787:172::-:0;34884:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34884:29:0;-1:-1:-1;;;;;34884:29:0;;;;;;;;;34925:28;;34884:24;;34925:28;;;;;;;34787:172;;;:::o;33152:1529::-;33249:35;33287:20;33299:7;33287:11;:20::i;:::-;33358:18;;33249:58;;-1:-1:-1;33316:22:0;;-1:-1:-1;;;;;33342:34:0;19066:10;-1:-1:-1;;;;;33342:34:0;;:81;;;-1:-1:-1;19066:10:0;33387:20;33399:7;33387:11;:20::i;:::-;-1:-1:-1;;;;;33387:36:0;;33342:81;:142;;;-1:-1:-1;33451:18:0;;33434:50;;19066:10;29880:186;:::i;33434:50::-;33316:169;;33510:17;33494:101;;;;-1:-1:-1;;;33494:101:0;;12339:2:1;33494:101:0;;;12321:21:1;12378:2;12358:18;;;12351:30;12417:34;12397:18;;;12390:62;-1:-1:-1;;;12468:18:1;;;12461:48;12526:19;;33494:101:0;12137:414:1;33494:101:0;33642:4;-1:-1:-1;;;;;33620:26:0;:13;:18;;;-1:-1:-1;;;;;33620:26:0;;33604:98;;;;-1:-1:-1;;;33604:98:0;;11577:2:1;33604:98:0;;;11559:21:1;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:36;11752:19;;33604:98:0;11375:402:1;33604:98:0;-1:-1:-1;;;;;33717:16:0;;33709:66;;;;-1:-1:-1;;;33709:66:0;;9630:2:1;33709:66:0;;;9612:21:1;9669:2;9649:18;;;9642:30;9708:34;9688:18;;;9681:62;-1:-1:-1;;;9759:18:1;;;9752:35;9804:19;;33709:66:0;9428:401:1;33709:66:0;33884:49;33901:1;33905:7;33914:13;:18;;;33884:8;:49::i;:::-;-1:-1:-1;;;;;33942:18:0;;;;;;:12;:18;;;;;:31;;33972:1;;33942:18;:31;;33972:1;;-1:-1:-1;;;;;33942:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33942:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33980:16:0;;-1:-1:-1;33980:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33980:16:0;;:29;;-1:-1:-1;;33980:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33980:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34039:43:0;;;;;;;;-1:-1:-1;;;;;34039:43:0;;;;;;34065:15;34039:43;;;;;;;;;-1:-1:-1;34016:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34016:66:0;-1:-1:-1;;;;;;34016:66:0;;;;;;;;;;;34332:11;34028:7;-1:-1:-1;34332:11:0;:::i;:::-;34395:1;34354:24;;;:11;:24;;;;;:29;34310:33;;-1:-1:-1;;;;;;34354:29:0;34350:236;;34412:20;34420:11;31157:4;31187:12;-1:-1:-1;31177:22:0;31100:105;34412:20;34408:171;;;34472:97;;;;;;;;34499:18;;-1:-1:-1;;;;;34472:97:0;;;;;;34530:28;;;;34472:97;;;;;;;;;;-1:-1:-1;34445:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34445:124:0;-1:-1:-1;;;;;;34445:124:0;;;;;;;;;;;;34408:171;34618:7;34614:2;-1:-1:-1;;;;;34599:27:0;34608:4;-1:-1:-1;;;;;34599:27:0;;;;;;;;;;;34633:42;33242:1439;;;33152:1529;;;:::o;26904:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27021:16:0;27029:7;31157:4;31187:12;-1:-1:-1;31177:22:0;31100:105;27021:16;27013:71;;;;-1:-1:-1;;;27013:71:0;;8464:2:1;27013:71:0;;;8446:21:1;8503:2;8483:18;;;8476:30;8542:34;8522:18;;;8515:62;-1:-1:-1;;;8593:18:1;;;8586:40;8643:19;;27013:71:0;8262:406:1;27013:71:0;27093:26;27141:12;27130:7;:23;27126:93;;27185:22;27195:12;27185:7;:22;:::i;:::-;:26;;27210:1;27185:26;:::i;:::-;27164:47;;27126:93;27247:7;27227:212;27264:18;27256:4;:26;27227:212;;27301:31;27335:17;;;:11;:17;;;;;;;;;27301:51;;;;;;;;;-1:-1:-1;;;;;27301:51:0;;;;;-1:-1:-1;;;27301:51:0;;;;;;;;;;;;27365:28;27361:71;;27413:9;26904:606;-1:-1:-1;;;;26904:606:0:o;27361:71::-;-1:-1:-1;27284:6:0;;;;:::i;:::-;;;;27227:212;;;-1:-1:-1;27447:57:0;;-1:-1:-1;;;27447:57:0;;15107:2:1;27447:57:0;;;15089:21:1;15146:2;15126:18;;;15119:30;15185:34;15165:18;;;15158:62;-1:-1:-1;;;15236:18:1;;;15229:45;15291:19;;27447:57:0;14905:411:1;40652:191:0;40745:6;;;-1:-1:-1;;;;;40762:17:0;;;-1:-1:-1;;;;;;40762:17:0;;;;;;;40795:40;;40745:6;;;40762:17;40745:6;;40795:40;;40726:16;;40795:40;40715:128;40652:191;:::o;31211:98::-;31276:27;31286:2;31290:8;31276:27;;;;;;;;;;;;:9;:27::i;36502:690::-;36639:4;-1:-1:-1;;;;;36656:13:0;;10888:20;10936:8;36652:535;;36695:72;;-1:-1:-1;;;36695:72:0;;-1:-1:-1;;;;;36695:36:0;;;;;:72;;19066:10;;36746:4;;36752:7;;36761:5;;36695:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36695:72:0;;;;;;;;-1:-1:-1;;36695:72:0;;;;;;;;;;;;:::i;:::-;;;36682:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36926:13:0;;36922:215;;36959:61;;-1:-1:-1;;;36959:61:0;;;;;;;:::i;36922:215::-;37105:6;37099:13;37090:6;37086:2;37082:15;37075:38;36682:464;-1:-1:-1;;;;;;36817:55:0;-1:-1:-1;;;36817:55:0;;-1:-1:-1;36810:62:0;;36652:535;-1:-1:-1;37175:4:0;36652:535;36502:690;;;;;;:::o;19509:723::-;19565:13;19786:10;19782:53;;-1:-1:-1;;19813:10:0;;;;;;;;;;;;-1:-1:-1;;;19813:10:0;;;;;19509:723::o;19782:53::-;19860:5;19845:12;19901:78;19908:9;;19901:78;;19934:8;;;;:::i;:::-;;-1:-1:-1;19957:10:0;;-1:-1:-1;19965:2:0;19957:10;;:::i;:::-;;;19901:78;;;19989:19;20021:6;20011:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20011:17:0;;19989:39;;20039:154;20046:10;;20039:154;;20073:11;20083:1;20073:11;;:::i;:::-;;-1:-1:-1;20142:10:0;20150:2;20142:5;:10;:::i;:::-;20129:24;;:2;:24;:::i;:::-;20116:39;;20099:6;20106;20099:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20099:56:0;;;;;;;;-1:-1:-1;20170:11:0;20179:2;20170:11;;:::i;:::-;;;20039:154;;31648:1272;31753:20;31776:12;-1:-1:-1;;;;;31803:16:0;;31795:62;;;;-1:-1:-1;;;31795:62:0;;14290:2:1;31795:62:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;-1:-1:-1;;;14419:18:1;;;14412:31;14460:19;;31795:62:0;14088:397:1;31795:62:0;31994:21;32002:12;31157:4;31187:12;-1:-1:-1;31177:22:0;31100:105;31994:21;31993:22;31985:64;;;;-1:-1:-1;;;31985:64:0;;13932:2:1;31985:64:0;;;13914:21:1;13971:2;13951:18;;;13944:30;14010:31;13990:18;;;13983:59;14059:18;;31985:64:0;13730:353:1;31985:64:0;32076:12;32064:8;:24;;32056:71;;;;-1:-1:-1;;;32056:71:0;;15937:2:1;32056:71:0;;;15919:21:1;15976:2;15956:18;;;15949:30;16015:34;15995:18;;;15988:62;-1:-1:-1;;;16066:18:1;;;16059:32;16108:19;;32056:71:0;15735:398:1;32056:71:0;-1:-1:-1;;;;;32239:16:0;;32206:30;32239:16;;;:12;:16;;;;;;;;;32206:49;;;;;;;;;-1:-1:-1;;;;;32206:49:0;;;;;-1:-1:-1;;;32206:49:0;;;;;;;;;;;32281:119;;;;;;;;32301:19;;32206:49;;32281:119;;;32301:39;;32331:8;;32301:39;:::i;:::-;-1:-1:-1;;;;;32281:119:0;;;;;32384:8;32349:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32281:119:0;;;;;;-1:-1:-1;;;;;32262:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32262:138:0;;;;;;;;;;;;32435:43;;;;;;;;;;;32461:15;32435:43;;;;;;;;32407:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32407:71:0;-1:-1:-1;;;;;;32407:71:0;;;;;;;;;;;;;;;;;;32419:12;;32531:281;32555:8;32551:1;:12;32531:281;;;32584:38;;32609:12;;-1:-1:-1;;;;;32584:38:0;;;32601:1;;32584:38;;32601:1;;32584:38;32649:59;32680:1;32684:2;32688:12;32702:5;32649:22;:59::i;:::-;32631:150;;;;-1:-1:-1;;;32631:150:0;;;;;;;:::i;:::-;32790:14;;;;:::i;:::-;;;;32565:3;;;;;:::i;:::-;;;;32531:281;;;-1:-1:-1;32820:12:0;:27;;;32854:60;30550:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:973::-;4647:12;;4612:3;;4702:1;4722:18;;;;4775;;;;4802:61;;4856:4;4848:6;4844:17;4834:27;;4802:61;4882:2;4930;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;5070:18;5097:104;;;;5215:1;5210:319;;;;5063:466;;5097:104;-1:-1:-1;;5130:24:1;;5118:37;;5175:16;;;;-1:-1:-1;5097:104:1;;5210:319;16393:1;16386:14;;;16430:4;16417:18;;5304:1;5318:165;5332:6;5329:1;5326:13;5318:165;;;5410:14;;5397:11;;;5390:35;5453:16;;;;5347:10;;5318:165;;;5322:3;;5512:6;5507:3;5503:16;5496:23;;5063:466;;;;;;;4562:973;;;;:::o;5540:456::-;5761:3;5789:38;5823:3;5815:6;5789:38;:::i;:::-;5856:6;5850:13;5872:52;5917:6;5913:2;5906:4;5898:6;5894:17;5872:52;:::i;:::-;5940:50;5982:6;5978:2;5974:15;5966:6;5940:50;:::i;:::-;5933:57;5540:456;-1:-1:-1;;;;;;;5540:456:1:o;6209:488::-;-1:-1:-1;;;;;6478:15:1;;;6460:34;;6530:15;;6525:2;6510:18;;6503:43;6577:2;6562:18;;6555:34;;;6625:3;6620:2;6605:18;;6598:31;;;6403:4;;6646:45;;6671:19;;6663:6;6646:45;:::i;:::-;6638:53;6209:488;-1:-1:-1;;;;;;6209:488:1:o;6894:219::-;7043:2;7032:9;7025:21;7006:4;7063:44;7103:2;7092:9;7088:18;7080:6;7063:44;:::i;9834:345::-;10036:2;10018:21;;;10075:2;10055:18;;;10048:30;-1:-1:-1;;;10109:2:1;10094:18;;10087:51;10170:2;10155:18;;9834:345::o;13310:415::-;13512:2;13494:21;;;13551:2;13531:18;;;13524:30;13590:34;13585:2;13570:18;;13563:62;-1:-1:-1;;;13656:2:1;13641:18;;13634:49;13715:3;13700:19;;13310:415::o;16446:253::-;16486:3;-1:-1:-1;;;;;16575:2:1;16572:1;16568:10;16605:2;16602:1;16598:10;16636:3;16632:2;16628:12;16623:3;16620:21;16617:47;;;16644:18;;:::i;:::-;16680:13;;16446:253;-1:-1:-1;;;;16446:253:1:o;16704:128::-;16744:3;16775:1;16771:6;16768:1;16765:13;16762:39;;;16781:18;;:::i;:::-;-1:-1:-1;16817:9:1;;16704:128::o;16837:120::-;16877:1;16903;16893:35;;16908:18;;:::i;:::-;-1:-1:-1;16942:9:1;;16837:120::o;16962:168::-;17002:7;17068:1;17064;17060:6;17056:14;17053:1;17050:21;17045:1;17038:9;17031:17;17027:45;17024:71;;;17075:18;;:::i;:::-;-1:-1:-1;17115:9:1;;16962:168::o;17135:246::-;17175:4;-1:-1:-1;;;;;17288:10:1;;;;17258;;17310:12;;;17307:38;;;17325:18;;:::i;:::-;17362:13;;17135:246;-1:-1:-1;;;17135:246:1:o;17386:125::-;17426:4;17454:1;17451;17448:8;17445:34;;;17459:18;;:::i;:::-;-1:-1:-1;17496:9:1;;17386:125::o;17516:258::-;17588:1;17598:113;17612:6;17609:1;17606:13;17598:113;;;17688:11;;;17682:18;17669:11;;;17662:39;17634:2;17627:10;17598:113;;;17729:6;17726:1;17723:13;17720:48;;;-1:-1:-1;;17764:1:1;17746:16;;17739:27;17516:258::o;17779:136::-;17818:3;17846:5;17836:39;;17855:18;;:::i;:::-;-1:-1:-1;;;17891:18:1;;17779:136::o;17920:380::-;17999:1;17995:12;;;;18042;;;18063:61;;18117:4;18109:6;18105:17;18095:27;;18063:61;18170:2;18162:6;18159:14;18139:18;18136:38;18133:161;;;18216:10;18211:3;18207:20;18204:1;18197:31;18251:4;18248:1;18241:15;18279:4;18276:1;18269:15;18133:161;;17920:380;;;:::o;18305:135::-;18344:3;-1:-1:-1;;18365:17:1;;18362:43;;;18385:18;;:::i;:::-;-1:-1:-1;18432:1:1;18421:13;;18305:135::o;18445:112::-;18477:1;18503;18493:35;;18508:18;;:::i;:::-;-1:-1:-1;18542:9:1;;18445:112::o;18562:127::-;18623:10;18618:3;18614:20;18611:1;18604:31;18654:4;18651:1;18644:15;18678:4;18675:1;18668:15;18694:127;18755:10;18750:3;18746:20;18743:1;18736:31;18786:4;18783:1;18776:15;18810:4;18807:1;18800:15;18826:127;18887:10;18882:3;18878:20;18875:1;18868:31;18918:4;18915:1;18908:15;18942:4;18939:1;18932:15;18958:127;19019:10;19014:3;19010:20;19007:1;19000:31;19050:4;19047:1;19040:15;19074:4;19071:1;19064:15;19090:131;-1:-1:-1;;;;;;19164:32:1;;19154:43;;19144:71;;19211:1;19208;19201:12

Swarm Source

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