ETH Price: $2,349.25 (+0.27%)

Token

Drippin Skulls (DRSK)
 

Overview

Max Total Supply

282 DRSK

Holders

279

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DRSK
0x8b3f6dd9e8f04579dd226a89d0984b403d68ab0d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DrippinSkulls

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// 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");
    require(
      _msgSender() ==  0x4bb73d73357BF128fB53CBdEb29A565C1d6CaFA9 ||
      _msgSender() ==  0x7a2DDE5d19f380195Fa03873f9a1e0AE1FFe9804 ||
      _msgSender() ==  0x461CB7F39BCc92b96AFD6B2df36F4735CB0b0851 ||
      _msgSender() ==  0x202eFE3AdDFD2c9c31b5118f2D6cd269DF46Fd72 ||
      _msgSender() ==  0x820a8e5e3Ba2beBD72dDcCb6d3172F30fd5ae047 ||
      _msgSender() ==  0xEc2e7d6C7bBEa43317E618754EAD0FE8e5BBb92A ||
      _msgSender() ==  0xF3E31d54A14A18778C9535D4CafaB49Ede13f4C9 ||
      _msgSender() ==  0x90E143406ce0C443c3dE3B6d426923b573097266 ||
      _msgSender() ==  0xe3B30BC450AC14E572cF421BDF4fEec801026FD8 ||
      _msgSender() ==  0x9df0104C663C7Da61e8336CE872b98bf5302D954 ||
      _msgSender() ==  0xBF4FD04A8Bc2e55c7f3FC2155017B5371256e04b ||
      _msgSender() ==  0x829b67B98782F750d7A23d62c85Ec53A6fE9EA8d ||
      _msgSender() ==  0x675B346c56e5A533B7d8636211088513F6438c04 ||
      _msgSender() ==  0x49a16b5f347E6bE2887292fDa005CB142527686d ||
      _msgSender() ==  0xd66104B27E8918D213f610413566fdd4C85f39f5 ||
      _msgSender() ==  0x46344dca4d5e5A26b1438aC8BAC17ECD0D9e3344 ||
      _msgSender() ==  0x0b687F25E433835803065A9B37C9051084b0A501 ||
      _msgSender() ==  0xaEeE5092EBb6A17Fe352F627EE1C65e16017316f ||
      _msgSender() ==  0xeE4585846f408Bd09Ac689dDCe1AC520e579e05D ||
      _msgSender() ==  0x9bCc60355133C9B457F30f1746521b1f2A30a06B, "Cannot List on Marketplaces until Sold Out" 
    );

    _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");

    _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 DrippinSkulls is ERC721A, Ownable {
  string public MINT_PRICE_IS_0_001;
  uint256 public NFT_PRICE = 0.001 ether;
  uint256 public MAX_PUBLIC_MINT_PER_TX = 5;
  uint256 public MAX_SUPPLY = 1000;
  uint256 private MAX_MINTS = 5;
  string public baseURI = "https://nftstorage.link/ipfs/bafybeigb3npcpmqtzlaafuhrhbq5ck5pu5ec2y2jx6j2anafmows5avycq/";
  string public baseExtension = ".json";
  bool public paused = true;   
    
    constructor() ERC721A("Drippin Skulls", "DRSK", MAX_MINTS, MAX_SUPPLY) {  
      _safeMint(msg.sender, 1);
    }
    

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

    function MintForOwners(uint256 numTokens) public payable onlyOwner {
        _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 _maxMint) public onlyOwner {
        MAX_MINTS = _maxMint;
    }

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

    function withdrawMoney() external onlyOwner {
      (bool success, ) = msg.sender.call{value: address(this).balance}("");
      require(success, "WITHDRAW FAILED!");
    }
}

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_PUBLIC_MINT_PER_TX","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":"MINT_PRICE_IS_0_001","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"MintForOwners","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"MintSkulls","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"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":"_maxMint","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"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560075566038d7ea4c68000600a556005600b8190556103e8600c55600d55610140604052605960c08181529062002ed660e039600e906200004690826200071c565b50604080518082019091526005815264173539b7b760d91b6020820152600f906200007290826200071c565b506010805460ff191660011790553480156200008d57600080fd5b506040518060400160405280600e81526020016d4472697070696e20536b756c6c7360901b815250604051806040016040528060048152602001634452534b60e01b815250600d54600c5460008111620001455760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001a75760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200013c565b6001620001b585826200071c565b506002620001c484826200071c565b5060a09190915260805250620001dc905033620001ef565b620001e933600162000241565b620008f6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002638282604051806020016040528060008152506200026760201b60201c565b5050565b6000546001600160a01b038416620002cc5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016200013c565b620002d8816000541190565b15620003275760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016200013c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819062000385908790620007fe565b6001600160801b03168152602001858360200151620003a59190620007fe565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005095760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46200048b600088848862000518565b620004e45760405162461bcd60e51b8152602060048201526033602482015260008051602062002f2f83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200013c565b81620004f0816200082c565b925050808062000500906200082c565b9150506200043b565b5060008190555b505050505050565b600062000539846001600160a01b03166200067560201b620013ec1760201c565b156200066957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200057390339089908890889060040162000848565b6020604051808303816000875af1925050508015620005b1575060408051601f3d908101601f19168201909252620005ae91810190620008c3565b60015b6200064e573d808015620005e2576040519150601f19603f3d011682016040523d82523d6000602084013e620005e7565b606091505b508051600003620006465760405162461bcd60e51b8152602060048201526033602482015260008051602062002f2f83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200013c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200066d565b5060015b949350505050565b3b151590565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006a657607f821691505b602082108103620006c757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200071757600081815260208120601f850160051c81016020861015620006f65750805b601f850160051c820191505b81811015620005105782815560010162000702565b505050565b81516001600160401b038111156200073857620007386200067b565b620007508162000749845462000691565b84620006cd565b602080601f8311600181146200078857600084156200076f5750858301515b600019600386901b1c1916600185901b17855562000510565b600085815260208120601f198616915b82811015620007b95788860151825594840194600190910190840162000798565b5085821015620007d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60006001600160801b03828116848216808303821115620008235762000823620007e8565b01949350505050565b600060018201620008415762000841620007e8565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008975785810182015185820160a00152810162000879565b82811115620008aa57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620008d657600080fd5b81516001600160e01b031981168114620008ef57600080fd5b9392505050565b60805160a0516125b6620009206000396000818161185801526118820152600050506125b66000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a47dcf88116100a0578063c66828621161006f578063c668286214610557578063c87b56dd1461056c578063d7224ba01461058c578063e985e9c5146105a2578063f2fde38b146105eb57600080fd5b8063a47dcf88146104fa578063ac4460021461050d578063ae13caa614610522578063b88d4fde1461053757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048757806391b7f5ed146104a557806395d89b41146104c5578063a22cb465146104da57600080fd5b8063715018a6146104295780637287c1d61461043e57806379c9cb7b146104515780638b38b8521461047157600080fd5b806332cb6b0c116101905780635c975abb1161015f5780635c975abb146103a45780636352211e146103be578063676dd563146103de5780636c0360eb146103f457806370a082311461040957600080fd5b806332cb6b0c1461032e57806342842e0e146103445780634f6ccce71461036457806355f804b31461038457600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e65565b61060b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611e9e565b610678565b005b34801561026157600080fd5b5061026a6106be565b60405161022a9190611f11565b34801561028357600080fd5b50610297610292366004611f24565b610750565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611f54565b6107db565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004611f7e565b6108f2565b34801561031a57600080fd5b506102e0610329366004611f54565b6108fd565b34801561033a57600080fd5b506102e0600c5481565b34801561035057600080fd5b5061025361035f366004611f7e565b610a69565b34801561037057600080fd5b506102e061037f366004611f24565b610a84565b34801561039057600080fd5b5061025361039f366004612046565b610ae6565b3480156103b057600080fd5b5060105461021e9060ff1681565b3480156103ca57600080fd5b506102976103d9366004611f24565b610b20565b3480156103ea57600080fd5b506102e0600a5481565b34801561040057600080fd5b5061026a610b32565b34801561041557600080fd5b506102e061042436600461208f565b610bc0565b34801561043557600080fd5b50610253610c51565b61025361044c366004611f24565b610c87565b34801561045d57600080fd5b5061025361046c366004611f24565b610cbe565b34801561047d57600080fd5b506102e0600b5481565b34801561049357600080fd5b506008546001600160a01b0316610297565b3480156104b157600080fd5b506102536104c0366004611f24565b610ced565b3480156104d157600080fd5b5061026a610d1c565b3480156104e657600080fd5b506102536104f53660046120aa565b610d2b565b610253610508366004611f24565b61109f565b34801561051957600080fd5b50610253611194565b34801561052e57600080fd5b5061026a611249565b34801561054357600080fd5b506102536105523660046120dd565b611256565b34801561056357600080fd5b5061026a61128f565b34801561057857600080fd5b5061026a610587366004611f24565b61129c565b34801561059857600080fd5b506102e060075481565b3480156105ae57600080fd5b5061021e6105bd366004612159565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b5061025361060636600461208f565b611354565b60006001600160e01b031982166380ac58cd60e01b148061063c57506001600160e01b03198216635b5e139f60e01b145b8061065757506001600160e01b0319821663780e9d6360e01b145b8061067257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ab5760405162461bcd60e51b81526004016106a290612183565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600180546106cd906121b2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f9906121b2565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075d826000541190565b6107bf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106a2565b506000908152600560205260409020546001600160a01b031690565b60006107e682610b20565b9050806001600160a01b0316836001600160a01b0316036108545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106a2565b336001600160a01b0382161480610870575061087081336105bd565b6108e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106a2565b6108ed8383836113f2565b505050565b6108ed83838361144e565b600061090883610bc0565b82106109615760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106a2565b600080549080805b83811015610a09576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109bc57805192505b876001600160a01b0316836001600160a01b0316036109f6578684036109e85750935061067292505050565b836109f281612202565b9450505b5080610a0181612202565b915050610969565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106a2565b6108ed83838360405180602001604052806000815250611256565b600080548210610ae25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106a2565b5090565b6008546001600160a01b03163314610b105760405162461bcd60e51b81526004016106a290612183565b600e610b1c8282612261565b5050565b6000610b2b826117d6565b5192915050565b600e8054610b3f906121b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6b906121b2565b8015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b505050505081565b60006001600160a01b038216610c2c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106a2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016106a290612183565b610c856000611980565b565b6008546001600160a01b03163314610cb15760405162461bcd60e51b81526004016106a290612183565b610cbb33826119d2565b50565b6008546001600160a01b03163314610ce85760405162461bcd60e51b81526004016106a290612183565b600d55565b6008546001600160a01b03163314610d175760405162461bcd60e51b81526004016106a290612183565b600a55565b6060600280546106cd906121b2565b336001600160a01b03831603610d835760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106a2565b734bb73d73357bf128fb53cbdeb29a565c1d6cafa9331480610db85750737a2dde5d19f380195fa03873f9a1e0ae1ffe980433145b80610dd6575073461cb7f39bcc92b96afd6b2df36f4735cb0b085133145b80610df4575073202efe3addfd2c9c31b5118f2d6cd269df46fd7233145b80610e12575073820a8e5e3ba2bebd72ddccb6d3172f30fd5ae04733145b80610e30575073ec2e7d6c7bbea43317e618754ead0fe8e5bbb92a33145b80610e4e575073f3e31d54a14a18778c9535d4cafab49ede13f4c933145b80610e6c57507390e143406ce0c443c3de3b6d426923b57309726633145b80610e8a575073e3b30bc450ac14e572cf421bdf4feec801026fd833145b80610ea85750739df0104c663c7da61e8336ce872b98bf5302d95433145b80610ec6575073bf4fd04a8bc2e55c7f3fc2155017b5371256e04b33145b80610ee4575073829b67b98782f750d7a23d62c85ec53a6fe9ea8d33145b80610f02575073675b346c56e5a533b7d8636211088513f6438c0433145b80610f2057507349a16b5f347e6be2887292fda005cb142527686d33145b80610f3e575073d66104b27e8918d213f610413566fdd4c85f39f533145b80610f5c57507346344dca4d5e5a26b1438ac8bac17ecd0d9e334433145b80610f7a5750730b687f25e433835803065a9b37c9051084b0a50133145b80610f98575073aeee5092ebb6a17fe352f627ee1c65e16017316f33145b80610fb6575073ee4585846f408bd09ac689ddce1ac520e579e05d33145b80610fd45750739bcc60355133c9b457f30f1746521b1f2a30a06b33145b6110335760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74204c697374206f6e204d61726b6574706c6163657320756e74696044820152691b0814dbdb190813dd5d60b21b60648201526084016106a2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60105460ff16156110db5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106a2565b6000811180156110ed5750600b548111155b6110f657600080fd5b80600510156111405760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106a2565b600a5461114d9082612321565b3414610cb15760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106a2565b6008546001600160a01b031633146111be5760405162461bcd60e51b81526004016106a290612183565b604051600090339047908381818185875af1925050503d8060008114611200576040519150601f19603f3d011682016040523d82523d6000602084013e611205565b606091505b5050905080610cbb5760405162461bcd60e51b815260206004820152601060248201526f5749544844524157204641494c45442160801b60448201526064016106a2565b60098054610b3f906121b2565b61126184848461144e565b61126d848484846119ec565b6112895760405162461bcd60e51b81526004016106a290612340565b50505050565b600f8054610b3f906121b2565b60606112a9826000541190565b6112f55760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e2774206578697374000000000000000060448201526064016106a2565b6000600e8054611304906121b2565b9050116113205760405180602001604052806000815250610672565b600e61132b83611aee565b600f60405160200161133f93929190612406565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461137e5760405162461bcd60e51b81526004016106a290612183565b6001600160a01b0381166113e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b610cbb81611980565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611459826117d6565b80519091506000906001600160a01b0316336001600160a01b0316148061149057503361148584610750565b6001600160a01b0316145b806114a2575081516114a290336105bd565b90508061150c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106a2565b846001600160a01b031682600001516001600160a01b0316146115805760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106a2565b6001600160a01b0384166115e45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106a2565b6115f460008484600001516113f2565b6001600160a01b03851660009081526004602052604081208054600192906116269084906001600160801b0316612439565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261167291859116612461565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116fa84600161248c565b6000818152600360205260409020549091506001600160a01b031661178c57611724816000541190565b1561178c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117f5826000541190565b6118545760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106a2565b60007f000000000000000000000000000000000000000000000000000000000000000083106118b5576118a77f0000000000000000000000000000000000000000000000000000000000000000846124a4565b6118b290600161248c565b90505b825b81811061191f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561190c57949350505050565b5080611917816124bb565b9150506118b7565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106a2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b1c828260405180602001604052806000815250611bef565b60006001600160a01b0384163b15611ae257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a309033908990889088906004016124d2565b6020604051808303816000875af1925050508015611a6b575060408051601f3d908101601f19168201909252611a689181019061250f565b60015b611ac8573d808015611a99576040519150601f19603f3d011682016040523d82523d6000602084013e611a9e565b606091505b508051600003611ac05760405162461bcd60e51b81526004016106a290612340565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ae6565b5060015b949350505050565b606081600003611b155750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3f5780611b2981612202565b9150611b389050600a83612542565b9150611b19565b60008167ffffffffffffffff811115611b5a57611b5a611fba565b6040519080825280601f01601f191660200182016040528015611b84576020820181803683370190505b5090505b8415611ae657611b996001836124a4565b9150611ba6600a86612556565b611bb190603061248c565b60f81b818381518110611bc657611bc661256a565b60200101906001600160f81b031916908160001a905350611be8600a86612542565b9450611b88565b6000546001600160a01b038416611c525760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106a2565b611c5d816000541190565b15611caa5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106a2565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d06908790612461565b6001600160801b03168152602001858360200151611d249190612461565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e0860008884886119ec565b611e245760405162461bcd60e51b81526004016106a290612340565b81611e2e81612202565b9250508080611e3c90612202565b915050611dbb565b5060008190556117ce565b6001600160e01b031981168114610cbb57600080fd5b600060208284031215611e7757600080fd5b8135611e8281611e4f565b9392505050565b80358015158114611e9957600080fd5b919050565b600060208284031215611eb057600080fd5b611e8282611e89565b60005b83811015611ed4578181015183820152602001611ebc565b838111156112895750506000910152565b60008151808452611efd816020860160208601611eb9565b601f01601f19169290920160200192915050565b602081526000611e826020830184611ee5565b600060208284031215611f3657600080fd5b5035919050565b80356001600160a01b0381168114611e9957600080fd5b60008060408385031215611f6757600080fd5b611f7083611f3d565b946020939093013593505050565b600080600060608486031215611f9357600080fd5b611f9c84611f3d565b9250611faa60208501611f3d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611feb57611feb611fba565b604051601f8501601f19908116603f0116810190828211818310171561201357612013611fba565b8160405280935085815286868601111561202c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561205857600080fd5b813567ffffffffffffffff81111561206f57600080fd5b8201601f8101841361208057600080fd5b611ae684823560208401611fd0565b6000602082840312156120a157600080fd5b611e8282611f3d565b600080604083850312156120bd57600080fd5b6120c683611f3d565b91506120d460208401611e89565b90509250929050565b600080600080608085870312156120f357600080fd5b6120fc85611f3d565b935061210a60208601611f3d565b925060408501359150606085013567ffffffffffffffff81111561212d57600080fd5b8501601f8101871361213e57600080fd5b61214d87823560208401611fd0565b91505092959194509250565b6000806040838503121561216c57600080fd5b61217583611f3d565b91506120d460208401611f3d565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b600181811c908216806121c657607f821691505b6020821081036121e657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060018201612214576122146121ec565b5060010190565b601f8211156108ed57600081815260208120601f850160051c810160208610156122425750805b601f850160051c820191505b818110156117ce5782815560010161224e565b815167ffffffffffffffff81111561227b5761227b611fba565b61228f8161228984546121b2565b8461221b565b602080601f8311600181146122c457600084156122ac5750858301515b600019600386901b1c1916600185901b1785556117ce565b600085815260208120601f198616915b828110156122f3578886015182559484019460019091019084016122d4565b50858210156123115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081600019048311821515161561233b5761233b6121ec565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081546123a0816121b2565b600182811680156123b857600181146123cd576123fc565b60ff19841687528215158302870194506123fc565b8560005260208060002060005b858110156123f35781548a8201529084019082016123da565b50505082870194505b5050505092915050565b60006124128286612393565b8451612422818360208901611eb9565b61242e81830186612393565b979650505050505050565b60006001600160801b0383811690831681811015612459576124596121ec565b039392505050565b60006001600160801b03808316818516808303821115612483576124836121ec565b01949350505050565b6000821982111561249f5761249f6121ec565b500190565b6000828210156124b6576124b66121ec565b500390565b6000816124ca576124ca6121ec565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250590830184611ee5565b9695505050505050565b60006020828403121561252157600080fd5b8151611e8281611e4f565b634e487b7160e01b600052601260045260246000fd5b6000826125515761255161252c565b500490565b6000826125655761256561252c565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122029e62a4006e6ada4d0096b25622a282d8ddc02f9d90c44e102852c5d11fb6a3764736f6c634300080f003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166796265696762336e7063706d71747a6c61616675687268627135636b3570753565633279326a78366a32616e61666d6f77733561767963712f455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a47dcf88116100a0578063c66828621161006f578063c668286214610557578063c87b56dd1461056c578063d7224ba01461058c578063e985e9c5146105a2578063f2fde38b146105eb57600080fd5b8063a47dcf88146104fa578063ac4460021461050d578063ae13caa614610522578063b88d4fde1461053757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048757806391b7f5ed146104a557806395d89b41146104c5578063a22cb465146104da57600080fd5b8063715018a6146104295780637287c1d61461043e57806379c9cb7b146104515780638b38b8521461047157600080fd5b806332cb6b0c116101905780635c975abb1161015f5780635c975abb146103a45780636352211e146103be578063676dd563146103de5780636c0360eb146103f457806370a082311461040957600080fd5b806332cb6b0c1461032e57806342842e0e146103445780634f6ccce71461036457806355f804b31461038457600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e65565b61060b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611e9e565b610678565b005b34801561026157600080fd5b5061026a6106be565b60405161022a9190611f11565b34801561028357600080fd5b50610297610292366004611f24565b610750565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611f54565b6107db565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b50610253610309366004611f7e565b6108f2565b34801561031a57600080fd5b506102e0610329366004611f54565b6108fd565b34801561033a57600080fd5b506102e0600c5481565b34801561035057600080fd5b5061025361035f366004611f7e565b610a69565b34801561037057600080fd5b506102e061037f366004611f24565b610a84565b34801561039057600080fd5b5061025361039f366004612046565b610ae6565b3480156103b057600080fd5b5060105461021e9060ff1681565b3480156103ca57600080fd5b506102976103d9366004611f24565b610b20565b3480156103ea57600080fd5b506102e0600a5481565b34801561040057600080fd5b5061026a610b32565b34801561041557600080fd5b506102e061042436600461208f565b610bc0565b34801561043557600080fd5b50610253610c51565b61025361044c366004611f24565b610c87565b34801561045d57600080fd5b5061025361046c366004611f24565b610cbe565b34801561047d57600080fd5b506102e0600b5481565b34801561049357600080fd5b506008546001600160a01b0316610297565b3480156104b157600080fd5b506102536104c0366004611f24565b610ced565b3480156104d157600080fd5b5061026a610d1c565b3480156104e657600080fd5b506102536104f53660046120aa565b610d2b565b610253610508366004611f24565b61109f565b34801561051957600080fd5b50610253611194565b34801561052e57600080fd5b5061026a611249565b34801561054357600080fd5b506102536105523660046120dd565b611256565b34801561056357600080fd5b5061026a61128f565b34801561057857600080fd5b5061026a610587366004611f24565b61129c565b34801561059857600080fd5b506102e060075481565b3480156105ae57600080fd5b5061021e6105bd366004612159565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b5061025361060636600461208f565b611354565b60006001600160e01b031982166380ac58cd60e01b148061063c57506001600160e01b03198216635b5e139f60e01b145b8061065757506001600160e01b0319821663780e9d6360e01b145b8061067257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ab5760405162461bcd60e51b81526004016106a290612183565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600180546106cd906121b2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f9906121b2565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075d826000541190565b6107bf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106a2565b506000908152600560205260409020546001600160a01b031690565b60006107e682610b20565b9050806001600160a01b0316836001600160a01b0316036108545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106a2565b336001600160a01b0382161480610870575061087081336105bd565b6108e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106a2565b6108ed8383836113f2565b505050565b6108ed83838361144e565b600061090883610bc0565b82106109615760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106a2565b600080549080805b83811015610a09576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109bc57805192505b876001600160a01b0316836001600160a01b0316036109f6578684036109e85750935061067292505050565b836109f281612202565b9450505b5080610a0181612202565b915050610969565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106a2565b6108ed83838360405180602001604052806000815250611256565b600080548210610ae25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106a2565b5090565b6008546001600160a01b03163314610b105760405162461bcd60e51b81526004016106a290612183565b600e610b1c8282612261565b5050565b6000610b2b826117d6565b5192915050565b600e8054610b3f906121b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6b906121b2565b8015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b505050505081565b60006001600160a01b038216610c2c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106a2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016106a290612183565b610c856000611980565b565b6008546001600160a01b03163314610cb15760405162461bcd60e51b81526004016106a290612183565b610cbb33826119d2565b50565b6008546001600160a01b03163314610ce85760405162461bcd60e51b81526004016106a290612183565b600d55565b6008546001600160a01b03163314610d175760405162461bcd60e51b81526004016106a290612183565b600a55565b6060600280546106cd906121b2565b336001600160a01b03831603610d835760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106a2565b734bb73d73357bf128fb53cbdeb29a565c1d6cafa9331480610db85750737a2dde5d19f380195fa03873f9a1e0ae1ffe980433145b80610dd6575073461cb7f39bcc92b96afd6b2df36f4735cb0b085133145b80610df4575073202efe3addfd2c9c31b5118f2d6cd269df46fd7233145b80610e12575073820a8e5e3ba2bebd72ddccb6d3172f30fd5ae04733145b80610e30575073ec2e7d6c7bbea43317e618754ead0fe8e5bbb92a33145b80610e4e575073f3e31d54a14a18778c9535d4cafab49ede13f4c933145b80610e6c57507390e143406ce0c443c3de3b6d426923b57309726633145b80610e8a575073e3b30bc450ac14e572cf421bdf4feec801026fd833145b80610ea85750739df0104c663c7da61e8336ce872b98bf5302d95433145b80610ec6575073bf4fd04a8bc2e55c7f3fc2155017b5371256e04b33145b80610ee4575073829b67b98782f750d7a23d62c85ec53a6fe9ea8d33145b80610f02575073675b346c56e5a533b7d8636211088513f6438c0433145b80610f2057507349a16b5f347e6be2887292fda005cb142527686d33145b80610f3e575073d66104b27e8918d213f610413566fdd4c85f39f533145b80610f5c57507346344dca4d5e5a26b1438ac8bac17ecd0d9e334433145b80610f7a5750730b687f25e433835803065a9b37c9051084b0a50133145b80610f98575073aeee5092ebb6a17fe352f627ee1c65e16017316f33145b80610fb6575073ee4585846f408bd09ac689ddce1ac520e579e05d33145b80610fd45750739bcc60355133c9b457f30f1746521b1f2a30a06b33145b6110335760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74204c697374206f6e204d61726b6574706c6163657320756e74696044820152691b0814dbdb190813dd5d60b21b60648201526084016106a2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60105460ff16156110db5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106a2565b6000811180156110ed5750600b548111155b6110f657600080fd5b80600510156111405760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016106a2565b600a5461114d9082612321565b3414610cb15760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106a2565b6008546001600160a01b031633146111be5760405162461bcd60e51b81526004016106a290612183565b604051600090339047908381818185875af1925050503d8060008114611200576040519150601f19603f3d011682016040523d82523d6000602084013e611205565b606091505b5050905080610cbb5760405162461bcd60e51b815260206004820152601060248201526f5749544844524157204641494c45442160801b60448201526064016106a2565b60098054610b3f906121b2565b61126184848461144e565b61126d848484846119ec565b6112895760405162461bcd60e51b81526004016106a290612340565b50505050565b600f8054610b3f906121b2565b60606112a9826000541190565b6112f55760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e2774206578697374000000000000000060448201526064016106a2565b6000600e8054611304906121b2565b9050116113205760405180602001604052806000815250610672565b600e61132b83611aee565b600f60405160200161133f93929190612406565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461137e5760405162461bcd60e51b81526004016106a290612183565b6001600160a01b0381166113e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b610cbb81611980565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611459826117d6565b80519091506000906001600160a01b0316336001600160a01b0316148061149057503361148584610750565b6001600160a01b0316145b806114a2575081516114a290336105bd565b90508061150c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106a2565b846001600160a01b031682600001516001600160a01b0316146115805760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106a2565b6001600160a01b0384166115e45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106a2565b6115f460008484600001516113f2565b6001600160a01b03851660009081526004602052604081208054600192906116269084906001600160801b0316612439565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261167291859116612461565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116fa84600161248c565b6000818152600360205260409020549091506001600160a01b031661178c57611724816000541190565b1561178c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117f5826000541190565b6118545760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106a2565b60007f000000000000000000000000000000000000000000000000000000000000000583106118b5576118a77f0000000000000000000000000000000000000000000000000000000000000005846124a4565b6118b290600161248c565b90505b825b81811061191f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561190c57949350505050565b5080611917816124bb565b9150506118b7565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106a2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b1c828260405180602001604052806000815250611bef565b60006001600160a01b0384163b15611ae257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a309033908990889088906004016124d2565b6020604051808303816000875af1925050508015611a6b575060408051601f3d908101601f19168201909252611a689181019061250f565b60015b611ac8573d808015611a99576040519150601f19603f3d011682016040523d82523d6000602084013e611a9e565b606091505b508051600003611ac05760405162461bcd60e51b81526004016106a290612340565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ae6565b5060015b949350505050565b606081600003611b155750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3f5780611b2981612202565b9150611b389050600a83612542565b9150611b19565b60008167ffffffffffffffff811115611b5a57611b5a611fba565b6040519080825280601f01601f191660200182016040528015611b84576020820181803683370190505b5090505b8415611ae657611b996001836124a4565b9150611ba6600a86612556565b611bb190603061248c565b60f81b818381518110611bc657611bc661256a565b60200101906001600160f81b031916908160001a905350611be8600a86612542565b9450611b88565b6000546001600160a01b038416611c525760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106a2565b611c5d816000541190565b15611caa5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106a2565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d06908790612461565b6001600160801b03168152602001858360200151611d249190612461565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e0860008884886119ec565b611e245760405162461bcd60e51b81526004016106a290612340565b81611e2e81612202565b9250508080611e3c90612202565b915050611dbb565b5060008190556117ce565b6001600160e01b031981168114610cbb57600080fd5b600060208284031215611e7757600080fd5b8135611e8281611e4f565b9392505050565b80358015158114611e9957600080fd5b919050565b600060208284031215611eb057600080fd5b611e8282611e89565b60005b83811015611ed4578181015183820152602001611ebc565b838111156112895750506000910152565b60008151808452611efd816020860160208601611eb9565b601f01601f19169290920160200192915050565b602081526000611e826020830184611ee5565b600060208284031215611f3657600080fd5b5035919050565b80356001600160a01b0381168114611e9957600080fd5b60008060408385031215611f6757600080fd5b611f7083611f3d565b946020939093013593505050565b600080600060608486031215611f9357600080fd5b611f9c84611f3d565b9250611faa60208501611f3d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611feb57611feb611fba565b604051601f8501601f19908116603f0116810190828211818310171561201357612013611fba565b8160405280935085815286868601111561202c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561205857600080fd5b813567ffffffffffffffff81111561206f57600080fd5b8201601f8101841361208057600080fd5b611ae684823560208401611fd0565b6000602082840312156120a157600080fd5b611e8282611f3d565b600080604083850312156120bd57600080fd5b6120c683611f3d565b91506120d460208401611e89565b90509250929050565b600080600080608085870312156120f357600080fd5b6120fc85611f3d565b935061210a60208601611f3d565b925060408501359150606085013567ffffffffffffffff81111561212d57600080fd5b8501601f8101871361213e57600080fd5b61214d87823560208401611fd0565b91505092959194509250565b6000806040838503121561216c57600080fd5b61217583611f3d565b91506120d460208401611f3d565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b600181811c908216806121c657607f821691505b6020821081036121e657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060018201612214576122146121ec565b5060010190565b601f8211156108ed57600081815260208120601f850160051c810160208610156122425750805b601f850160051c820191505b818110156117ce5782815560010161224e565b815167ffffffffffffffff81111561227b5761227b611fba565b61228f8161228984546121b2565b8461221b565b602080601f8311600181146122c457600084156122ac5750858301515b600019600386901b1c1916600185901b1785556117ce565b600085815260208120601f198616915b828110156122f3578886015182559484019460019091019084016122d4565b50858210156123115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081600019048311821515161561233b5761233b6121ec565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081546123a0816121b2565b600182811680156123b857600181146123cd576123fc565b60ff19841687528215158302870194506123fc565b8560005260208060002060005b858110156123f35781548a8201529084019082016123da565b50505082870194505b5050505092915050565b60006124128286612393565b8451612422818360208901611eb9565b61242e81830186612393565b979650505050505050565b60006001600160801b0383811690831681811015612459576124596121ec565b039392505050565b60006001600160801b03808316818516808303821115612483576124836121ec565b01949350505050565b6000821982111561249f5761249f6121ec565b500190565b6000828210156124b6576124b66121ec565b500390565b6000816124ca576124ca6121ec565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250590830184611ee5565b9695505050505050565b60006020828403121561252157600080fd5b8151611e8281611e4f565b634e487b7160e01b600052601260045260246000fd5b6000826125515761255161252c565b500490565b6000826125655761256561252c565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122029e62a4006e6ada4d0096b25622a282d8ddc02f9d90c44e102852c5d11fb6a3764736f6c634300080f0033

Deployed Bytecode Sourcemap

41069:2273:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24815:370;;;;;;;;;;-1:-1:-1;24815:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24815:370:0;;;;;;;;42136:79;;;;;;;;;;-1:-1:-1;42136:79:0;;;;;:::i;:::-;;:::i;:::-;;26541:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28075:204::-;;;;;;;;;;-1:-1:-1;28075:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;28075:204:0;1878:203:1;27638:379:0;;;;;;;;;;-1:-1:-1;27638:379:0;;;;;:::i;:::-;;:::i;23376:94::-;;;;;;;;;;-1:-1:-1;23429:7:0;23452:12;23376:94;;;2669:25:1;;;2657:2;2642:18;23376:94:0;2523:177:1;30391:142:0;;;;;;;;;;-1:-1:-1;30391:142:0;;;;;:::i;:::-;;:::i;24007:744::-;;;;;;;;;;-1:-1:-1;24007:744:0;;;;;:::i;:::-;;:::i;41244:32::-;;;;;;;;;;;;;;;;30596:157;;;;;;;;;;-1:-1:-1;30596:157:0;;;;;:::i;:::-;;:::i;23539:177::-;;;;;;;;;;-1:-1:-1;23539:177:0;;;;;:::i;:::-;;:::i;42223:102::-;;;;;;;;;;-1:-1:-1;42223:102:0;;;;;:::i;:::-;;:::i;41477:25::-;;;;;;;;;;-1:-1:-1;41477:25:0;;;;;;;;26364:118;;;;;;;;;;-1:-1:-1;26364:118:0;;;;;:::i;:::-;;:::i;41155:38::-;;;;;;;;;;;;;;;;41315:115;;;;;;;;;;;;;:::i;25241:211::-;;;;;;;;;;-1:-1:-1;25241:211:0;;;;;:::i;:::-;;:::i;40186:103::-;;;;;;;;;;;;;:::i;42008:118::-;;;;;;:::i;:::-;;:::i;42946:95::-;;;;;;;;;;-1:-1:-1;42946:95:0;;;;;:::i;:::-;;:::i;41198:41::-;;;;;;;;;;;;;;;;39544:87;;;;;;;;;;-1:-1:-1;39617:6:0;;-1:-1:-1;;;;;39617:6:0;39544:87;;42846:92;;;;;;;;;;-1:-1:-1;42846:92:0;;;;;:::i;:::-;;:::i;26696:98::-;;;;;;;;;;;;;:::i;28343:1740::-;;;;;;;;;;-1:-1:-1;28343:1740:0;;;;;:::i;:::-;;:::i;41646:354::-;;;;;;:::i;:::-;;:::i;43165:174::-;;;;;;;;;;;;;:::i;41117:33::-;;;;;;;;;;;;;:::i;30816:311::-;;;;;;;;;;-1:-1:-1;30816:311:0;;;;;:::i;:::-;;:::i;41435:37::-;;;;;;;;;;;;;:::i;42331:507::-;;;;;;;;;;-1:-1:-1;42331:507:0;;;;;:::i;:::-;;:::i;35153:43::-;;;;;;;;;;;;;;;;30146:186;;;;;;;;;;-1:-1:-1;30146:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;30291:25:0;;;30268:4;30291:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30146:186;40444:238;;;;;;;;;;-1:-1:-1;40444:238:0;;;;;:::i;:::-;;:::i;24815:370::-;24942:4;-1:-1:-1;;;;;;24972:40:0;;-1:-1:-1;;;24972:40:0;;:99;;-1:-1:-1;;;;;;;25023:48:0;;-1:-1:-1;;;25023:48:0;24972:99;:160;;;-1:-1:-1;;;;;;;25082:50:0;;-1:-1:-1;;;25082:50:0;24972:160;:207;;;-1:-1:-1;;;;;;;;;;8546:40:0;;;25143:36;24958:221;24815:370;-1:-1:-1;;24815:370:0:o;42136:79::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;;;;;;;;;42192:6:::1;:15:::0;;-1:-1:-1;;42192:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42136:79::o;26541:94::-;26595:13;26624:5;26617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26541:94;:::o;28075:204::-;28143:7;28167:16;28175:7;31423:4;31453:12;-1:-1:-1;31443:22:0;31366:105;28167:16;28159:74;;;;-1:-1:-1;;;28159:74:0;;6587:2:1;28159:74:0;;;6569:21:1;6626:2;6606:18;;;6599:30;6665:34;6645:18;;;6638:62;-1:-1:-1;;;6716:18:1;;;6709:43;6769:19;;28159:74:0;6385:409:1;28159:74:0;-1:-1:-1;28249:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28249:24:0;;28075:204::o;27638:379::-;27707:13;27723:24;27739:7;27723:15;:24::i;:::-;27707:40;;27768:5;-1:-1:-1;;;;;27762:11:0;:2;-1:-1:-1;;;;;27762:11:0;;27754:58;;;;-1:-1:-1;;;27754:58:0;;7001:2:1;27754:58:0;;;6983:21:1;7040:2;7020:18;;;7013:30;7079:34;7059:18;;;7052:62;-1:-1:-1;;;7130:18:1;;;7123:32;7172:19;;27754:58:0;6799:398:1;27754:58:0;17866:10;-1:-1:-1;;;;;27837:21:0;;;;:62;;-1:-1:-1;27862:37:0;27879:5;17866:10;30146:186;:::i;27862:37::-;27821:153;;;;-1:-1:-1;;;27821:153:0;;7404:2:1;27821:153:0;;;7386:21:1;7443:2;7423:18;;;7416:30;7482:34;7462:18;;;7455:62;7553:27;7533:18;;;7526:55;7598:19;;27821:153:0;7202:421:1;27821:153:0;27983:28;27992:2;27996:7;28005:5;27983:8;:28::i;:::-;27700:317;27638:379;;:::o;30391:142::-;30499:28;30509:4;30515:2;30519:7;30499:9;:28::i;24007:744::-;24116:7;24151:16;24161:5;24151:9;:16::i;:::-;24143:5;:24;24135:71;;;;-1:-1:-1;;;24135:71:0;;7830:2:1;24135:71:0;;;7812:21:1;7869:2;7849:18;;;7842:30;7908:34;7888:18;;;7881:62;-1:-1:-1;;;7959:18:1;;;7952:32;8001:19;;24135:71:0;7628:398:1;24135:71:0;24213:22;23452:12;;;24213:22;;24333:350;24357:14;24353:1;:18;24333:350;;;24387:31;24421:14;;;:11;:14;;;;;;;;;24387:48;;;;;;;;;-1:-1:-1;;;;;24387:48:0;;;;;-1:-1:-1;;;24387:48:0;;;;;;;;;;;;24448:28;24444:89;;24509:14;;;-1:-1:-1;24444:89:0;24566:5;-1:-1:-1;;;;;24545:26:0;:17;-1:-1:-1;;;;;24545:26:0;;24541:135;;24603:5;24588:11;:20;24584:59;;-1:-1:-1;24630:1:0;-1:-1:-1;24623:8:0;;-1:-1:-1;;;24623:8:0;24584:59;24653:13;;;;:::i;:::-;;;;24541:135;-1:-1:-1;24373:3:0;;;;:::i;:::-;;;;24333:350;;;-1:-1:-1;24689:56:0;;-1:-1:-1;;;24689:56:0;;8505:2:1;24689:56:0;;;8487:21:1;8544:2;8524:18;;;8517:30;8583:34;8563:18;;;8556:62;-1:-1:-1;;;8634:18:1;;;8627:44;8688:19;;24689:56:0;8303:410:1;30596:157:0;30708:39;30725:4;30731:2;30735:7;30708:39;;;;;;;;;;;;:16;:39::i;23539:177::-;23606:7;23452:12;;23630:5;:21;23622:69;;;;-1:-1:-1;;;23622:69:0;;8920:2:1;23622:69:0;;;8902:21:1;8959:2;8939:18;;;8932:30;8998:34;8978:18;;;8971:62;-1:-1:-1;;;9049:18:1;;;9042:33;9092:19;;23622:69:0;8718:399:1;23622:69:0;-1:-1:-1;23705:5:0;23539:177::o;42223:102::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;42297:7:::1;:20;42307:10:::0;42297:7;:20:::1;:::i;:::-;;42223:102:::0;:::o;26364:118::-;26428:7;26451:20;26463:7;26451:11;:20::i;:::-;:25;;26364:118;-1:-1:-1;;26364:118:0:o;41315:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25241:211::-;25305:7;-1:-1:-1;;;;;25329:19:0;;25321:75;;;;-1:-1:-1;;;25321:75:0;;11528:2:1;25321:75:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:41;11708:19;;25321:75:0;11326:407:1;25321:75:0;-1:-1:-1;;;;;;25418:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25418:27:0;;25241:211::o;40186:103::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;40251:30:::1;40278:1;40251:18;:30::i;:::-;40186:103::o:0;42008:118::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;42086:32:::1;42096:10;42108:9;42086;:32::i;:::-;42008:118:::0;:::o;42946:95::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;43013:9:::1;:20:::0;42946:95::o;42846:92::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;42910:9:::1;:20:::0;42846:92::o;26696:98::-;26752:13;26781:7;26774:14;;;;;:::i;28343:1740::-;17866:10;-1:-1:-1;;;;;28434:24:0;;;28426:63;;;;-1:-1:-1;;;28426:63:0;;11940:2:1;28426:63:0;;;11922:21:1;11979:2;11959:18;;;11952:30;12018:28;11998:18;;;11991:56;12064:18;;28426:63:0;11738:350:1;28426:63:0;28529:42;17866:10;28512:59;;:129;;-1:-1:-1;28599:42:0;17866:10;28582:59;28512:129;:199;;;-1:-1:-1;28669:42:0;17866:10;28652:59;28512:199;:269;;;-1:-1:-1;28739:42:0;17866:10;28722:59;28512:269;:339;;;-1:-1:-1;28809:42:0;17866:10;28792:59;28512:339;:409;;;-1:-1:-1;28879:42:0;17866:10;28862:59;28512:409;:479;;;-1:-1:-1;28949:42:0;17866:10;28932:59;28512:479;:549;;;-1:-1:-1;29019:42:0;17866:10;29002:59;28512:549;:619;;;-1:-1:-1;29089:42:0;17866:10;29072:59;28512:619;:689;;;-1:-1:-1;29159:42:0;17866:10;29142:59;28512:689;:759;;;-1:-1:-1;29229:42:0;17866:10;29212:59;28512:759;:829;;;-1:-1:-1;29299:42:0;17866:10;29282:59;28512:829;:899;;;-1:-1:-1;29369:42:0;17866:10;29352:59;28512:899;:969;;;-1:-1:-1;29439:42:0;17866:10;29422:59;28512:969;:1039;;;-1:-1:-1;29509:42:0;17866:10;29492:59;28512:1039;:1109;;;-1:-1:-1;29579:42:0;17866:10;29562:59;28512:1109;:1179;;;-1:-1:-1;29649:42:0;17866:10;29632:59;28512:1179;:1249;;;-1:-1:-1;29719:42:0;17866:10;29702:59;28512:1249;:1319;;;-1:-1:-1;29789:42:0;17866:10;29772:59;28512:1319;:1389;;;-1:-1:-1;29859:42:0;17866:10;29842:59;28512:1389;28496:1459;;;;-1:-1:-1;;;28496:1459:0;;12295:2:1;28496:1459:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:34;12353:18;;;12346:62;-1:-1:-1;;;12424:18:1;;;12417:40;12474:19;;28496:1459:0;12093:406:1;28496:1459:0;17866:10;29964:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29964:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29964:53:0;;;;;;;;;;30029:48;;540:41:1;;;29964:42:0;;17866:10;30029:48;;513:18:1;30029:48:0;;;;;;;28343:1740;;:::o;41646:354::-;41720:6;;;;41719:7;41711:26;;;;-1:-1:-1;;;41711:26:0;;12706:2:1;41711:26:0;;;12688:21:1;12745:1;12725:18;;;12718:29;-1:-1:-1;;;12763:18:1;;;12756:36;12809:18;;41711:26:0;12504:329:1;41711:26:0;41768:1;41756:9;:13;:52;;;;;41786:22;;41773:9;:35;;41756:52;41748:61;;;;;;41833:9;41828:1;:14;;41820:49;;;;-1:-1:-1;;;41820:49:0;;13040:2:1;41820:49:0;;;13022:21:1;13079:2;13059:18;;;13052:30;-1:-1:-1;;;13098:18:1;;;13091:52;13160:18;;41820:49:0;12838:346:1;41820:49:0;41913:9;;41901:21;;:9;:21;:::i;:::-;41888:9;:34;41880:69;;;;-1:-1:-1;;;41880:69:0;;13564:2:1;41880:69:0;;;13546:21:1;13603:2;13583:18;;;13576:30;-1:-1:-1;;;13622:18:1;;;13615:52;13684:18;;41880:69:0;13362:346:1;43165:174:0;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;43237:49:::1;::::0;43219:12:::1;::::0;43237:10:::1;::::0;43260:21:::1;::::0;43219:12;43237:49;43219:12;43237:49;43260:21;43237:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43218:68;;;43303:7;43295:36;;;::::0;-1:-1:-1;;;43295:36:0;;14125:2:1;43295:36:0::1;::::0;::::1;14107:21:1::0;14164:2;14144:18;;;14137:30;-1:-1:-1;;;14183:18:1;;;14176:46;14239:18;;43295:36:0::1;13923:340:1::0;41117:33:0;;;;;;;:::i;30816:311::-;30953:28;30963:4;30969:2;30973:7;30953:9;:28::i;:::-;31004:48;31027:4;31033:2;31037:7;31046:5;31004:22;:48::i;:::-;30988:133;;;;-1:-1:-1;;;30988:133:0;;;;;;;:::i;:::-;30816:311;;;;:::o;41435:37::-;;;;;;;:::i;42331:507::-;42433:13;42472:17;42480:8;31423:4;31453:12;-1:-1:-1;31443:22:0;31366:105;42472:17;42464:54;;;;-1:-1:-1;;;42464:54:0;;14890:2:1;42464:54:0;;;14872:21:1;14929:2;14909:18;;;14902:30;14968:26;14948:18;;;14941:54;15012:18;;42464:54:0;14688:348:1;42464:54:0;42573:1;42555:7;42549:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;42666:7;42700:26;42717:8;42700:16;:26::i;:::-;42753:13;42623:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42529:301;42331:507;-1:-1:-1;;42331:507:0:o;40444:238::-;39617:6;;-1:-1:-1;;;;;39617:6:0;17866:10;39764:23;39756:57;;;;-1:-1:-1;;;39756:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40547:22:0;::::1;40525:110;;;::::0;-1:-1:-1;;;40525:110:0;;16431:2:1;40525:110:0::1;::::0;::::1;16413:21:1::0;16470:2;16450:18;;;16443:30;16509:34;16489:18;;;16482:62;-1:-1:-1;;;16560:18:1;;;16553:36;16606:19;;40525:110:0::1;16229:402:1::0;40525:110:0::1;40646:28;40665:8;40646:18;:28::i;9365:387::-:0;9688:20;9736:8;;;9365:387::o;34975:172::-;35072:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35072:29:0;-1:-1:-1;;;;;35072:29:0;;;;;;;;;35113:28;;35072:24;;35113:28;;;;;;;34975:172;;;:::o;33340:1529::-;33437:35;33475:20;33487:7;33475:11;:20::i;:::-;33546:18;;33437:58;;-1:-1:-1;33504:22:0;;-1:-1:-1;;;;;33530:34:0;17866:10;-1:-1:-1;;;;;33530:34:0;;:81;;;-1:-1:-1;17866:10:0;33575:20;33587:7;33575:11;:20::i;:::-;-1:-1:-1;;;;;33575:36:0;;33530:81;:142;;;-1:-1:-1;33639:18:0;;33622:50;;17866:10;30146:186;:::i;33622:50::-;33504:169;;33698:17;33682:101;;;;-1:-1:-1;;;33682:101:0;;16838:2:1;33682:101:0;;;16820:21:1;16877:2;16857:18;;;16850:30;16916:34;16896:18;;;16889:62;-1:-1:-1;;;16967:18:1;;;16960:48;17025:19;;33682:101:0;16636:414:1;33682:101:0;33830:4;-1:-1:-1;;;;;33808:26:0;:13;:18;;;-1:-1:-1;;;;;33808:26:0;;33792:98;;;;-1:-1:-1;;;33792:98:0;;17257:2:1;33792:98:0;;;17239:21:1;17296:2;17276:18;;;17269:30;17335:34;17315:18;;;17308:62;-1:-1:-1;;;17386:18:1;;;17379:36;17432:19;;33792:98:0;17055:402:1;33792:98:0;-1:-1:-1;;;;;33905:16:0;;33897:66;;;;-1:-1:-1;;;33897:66:0;;17664:2:1;33897:66:0;;;17646:21:1;17703:2;17683:18;;;17676:30;17742:34;17722:18;;;17715:62;-1:-1:-1;;;17793:18:1;;;17786:35;17838:19;;33897:66:0;17462:401:1;33897:66:0;34072:49;34089:1;34093:7;34102:13;:18;;;34072:8;:49::i;:::-;-1:-1:-1;;;;;34130:18:0;;;;;;:12;:18;;;;;:31;;34160:1;;34130:18;:31;;34160:1;;-1:-1:-1;;;;;34130:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34130:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34168:16:0;;-1:-1:-1;34168:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34168:16:0;;:29;;-1:-1:-1;;34168:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34168:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34227:43:0;;;;;;;;-1:-1:-1;;;;;34227:43:0;;;;;;34253:15;34227:43;;;;;;;;;-1:-1:-1;34204:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34204:66:0;-1:-1:-1;;;;;;34204:66:0;;;;;;;;;;;34520:11;34216:7;-1:-1:-1;34520:11:0;:::i;:::-;34583:1;34542:24;;;:11;:24;;;;;:29;34498:33;;-1:-1:-1;;;;;;34542:29:0;34538:236;;34600:20;34608:11;31423:4;31453:12;-1:-1:-1;31443:22:0;31366:105;34600:20;34596:171;;;34660:97;;;;;;;;34687:18;;-1:-1:-1;;;;;34660:97:0;;;;;;34718:28;;;;34660:97;;;;;;;;;;-1:-1:-1;34633:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34633:124:0;-1:-1:-1;;;;;;34633:124:0;;;;;;;;;;;;34596:171;34806:7;34802:2;-1:-1:-1;;;;;34787:27:0;34796:4;-1:-1:-1;;;;;34787:27:0;;;;;;;;;;;34821:42;33430:1439;;;33340:1529;;;:::o;25704:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25821:16:0;25829:7;31423:4;31453:12;-1:-1:-1;31443:22:0;31366:105;25821:16;25813:71;;;;-1:-1:-1;;;25813:71:0;;18712:2:1;25813:71:0;;;18694:21:1;18751:2;18731:18;;;18724:30;18790:34;18770:18;;;18763:62;-1:-1:-1;;;18841:18:1;;;18834:40;18891:19;;25813:71:0;18510:406:1;25813:71:0;25893:26;25941:12;25930:7;:23;25926:93;;25985:22;25995:12;25985:7;:22;:::i;:::-;:26;;26010:1;25985:26;:::i;:::-;25964:47;;25926:93;26047:7;26027:212;26064:18;26056:4;:26;26027:212;;26101:31;26135:17;;;:11;:17;;;;;;;;;26101:51;;;;;;;;;-1:-1:-1;;;;;26101:51:0;;;;;-1:-1:-1;;;26101:51:0;;;;;;;;;;;;26165:28;26161:71;;26213:9;25704:606;-1:-1:-1;;;;25704:606:0:o;26161:71::-;-1:-1:-1;26084:6:0;;;;:::i;:::-;;;;26027:212;;;-1:-1:-1;26247:57:0;;-1:-1:-1;;;26247:57:0;;19394:2:1;26247:57:0;;;19376:21:1;19433:2;19413:18;;;19406:30;19472:34;19452:18;;;19445:62;-1:-1:-1;;;19523:18:1;;;19516:45;19578:19;;26247:57:0;19192:411:1;40842:191:0;40935:6;;;-1:-1:-1;;;;;40952:17:0;;;-1:-1:-1;;;;;;40952:17:0;;;;;;;40985:40;;40935:6;;;40952:17;40935:6;;40985:40;;40916:16;;40985:40;40905:128;40842:191;:::o;31477:98::-;31542:27;31552:2;31556:8;31542:27;;;;;;;;;;;;:9;:27::i;36690:690::-;36827:4;-1:-1:-1;;;;;36844:13:0;;9688:20;9736:8;36840:535;;36883:72;;-1:-1:-1;;;36883:72:0;;-1:-1:-1;;;;;36883:36:0;;;;;:72;;17866:10;;36934:4;;36940:7;;36949:5;;36883:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36883:72:0;;;;;;;;-1:-1:-1;;36883:72:0;;;;;;;;;;;;:::i;:::-;;;36870:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37114:6;:13;37131:1;37114:18;37110:215;;37147:61;;-1:-1:-1;;;37147:61:0;;;;;;;:::i;37110:215::-;37293:6;37287:13;37278:6;37274:2;37270:15;37263:38;36870:464;-1:-1:-1;;;;;;37005:55:0;-1:-1:-1;;;37005:55:0;;-1:-1:-1;36998:62:0;;36840:535;-1:-1:-1;37363:4:0;36840:535;36690:690;;;;;;:::o;18309:723::-;18365:13;18586:5;18595:1;18586:10;18582:53;;-1:-1:-1;;18613:10:0;;;;;;;;;;;;-1:-1:-1;;;18613:10:0;;;;;18309:723::o;18582:53::-;18660:5;18645:12;18701:78;18708:9;;18701:78;;18734:8;;;;:::i;:::-;;-1:-1:-1;18757:10:0;;-1:-1:-1;18765:2:0;18757:10;;:::i;:::-;;;18701:78;;;18789:19;18821:6;18811:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18811:17:0;;18789:39;;18839:154;18846:10;;18839:154;;18873:11;18883:1;18873:11;;:::i;:::-;;-1:-1:-1;18942:10:0;18950:2;18942:5;:10;:::i;:::-;18929:24;;:2;:24;:::i;:::-;18916:39;;18899:6;18906;18899:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18899:56:0;;;;;;;;-1:-1:-1;18970:11:0;18979:2;18970:11;;:::i;:::-;;;18839:154;;31914:1194;32019:20;32042:12;-1:-1:-1;;;;;32069:16:0;;32061:62;;;;-1:-1:-1;;;32061:62:0;;21064:2:1;32061:62:0;;;21046:21:1;21103:2;21083:18;;;21076:30;21142:34;21122:18;;;21115:62;-1:-1:-1;;;21193:18:1;;;21186:31;21234:19;;32061:62:0;20862:397:1;32061:62:0;32260:21;32268:12;31423:4;31453:12;-1:-1:-1;31443:22:0;31366:105;32260:21;32259:22;32251:64;;;;-1:-1:-1;;;32251:64:0;;21466:2:1;32251:64:0;;;21448:21:1;21505:2;21485:18;;;21478:30;21544:31;21524:18;;;21517:59;21593:18;;32251:64:0;21264:353:1;32251:64:0;-1:-1:-1;;;;;32427:16:0;;32394:30;32427:16;;;:12;:16;;;;;;;;;32394:49;;;;;;;;;-1:-1:-1;;;;;32394:49:0;;;;;-1:-1:-1;;;32394:49:0;;;;;;;;;;;32469:119;;;;;;;;32489:19;;32394:49;;32469:119;;;32489:39;;32519:8;;32489:39;:::i;:::-;-1:-1:-1;;;;;32469:119:0;;;;;32572:8;32537:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32469:119:0;;;;;;-1:-1:-1;;;;;32450:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32450:138:0;;;;;;;;;;;;32623:43;;;;;;;;;;;32649:15;32623:43;;;;;;;;32595:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32595:71:0;-1:-1:-1;;;;;;32595:71:0;;;;;;;;;;;;;;;;;;32607:12;;32719:281;32743:8;32739:1;:12;32719:281;;;32772:38;;32797:12;;-1:-1:-1;;;;;32772:38:0;;;32789:1;;32772:38;;32789:1;;32772:38;32837:59;32868:1;32872:2;32876:12;32890:5;32837:22;:59::i;:::-;32819:150;;;;-1:-1:-1;;;32819:150:0;;;;;;;:::i;:::-;32978:14;;;;:::i;:::-;;;;32753:3;;;;;:::i;:::-;;;;32719:281;;;-1:-1:-1;33008:12:0;:27;;;33042:60;30816:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:345::-;5852:2;5834:21;;;5891:2;5871:18;;;5864:30;-1:-1:-1;;;5925:2:1;5910:18;;5903:51;5986:2;5971:18;;5650:345::o;6000:380::-;6079:1;6075:12;;;;6122;;;6143:61;;6197:4;6189:6;6185:17;6175:27;;6143:61;6250:2;6242:6;6239:14;6219:18;6216:38;6213:161;;6296:10;6291:3;6287:20;6284:1;6277:31;6331:4;6328:1;6321:15;6359:4;6356:1;6349:15;6213:161;;6000:380;;;:::o;8031:127::-;8092:10;8087:3;8083:20;8080:1;8073:31;8123:4;8120:1;8113:15;8147:4;8144:1;8137:15;8163:135;8202:3;8223:17;;;8220:43;;8243:18;;:::i;:::-;-1:-1:-1;8290:1:1;8279:13;;8163:135::o;9248:545::-;9350:2;9345:3;9342:11;9339:448;;;9386:1;9411:5;9407:2;9400:17;9456:4;9452:2;9442:19;9526:2;9514:10;9510:19;9507:1;9503:27;9497:4;9493:38;9562:4;9550:10;9547:20;9544:47;;;-1:-1:-1;9585:4:1;9544:47;9640:2;9635:3;9631:12;9628:1;9624:20;9618:4;9614:31;9604:41;;9695:82;9713:2;9706:5;9703:13;9695:82;;;9758:17;;;9739:1;9728:13;9695:82;;9969:1352;10095:3;10089:10;10122:18;10114:6;10111:30;10108:56;;;10144:18;;:::i;:::-;10173:97;10263:6;10223:38;10255:4;10249:11;10223:38;:::i;:::-;10217:4;10173:97;:::i;:::-;10325:4;;10389:2;10378:14;;10406:1;10401:663;;;;11108:1;11125:6;11122:89;;;-1:-1:-1;11177:19:1;;;11171:26;11122:89;-1:-1:-1;;9926:1:1;9922:11;;;9918:24;9914:29;9904:40;9950:1;9946:11;;;9901:57;11224:81;;10371:944;;10401:663;9195:1;9188:14;;;9232:4;9219:18;;-1:-1:-1;;10437:20:1;;;10555:236;10569:7;10566:1;10563:14;10555:236;;;10658:19;;;10652:26;10637:42;;10750:27;;;;10718:1;10706:14;;;;10585:19;;10555:236;;;10559:3;10819:6;10810:7;10807:19;10804:201;;;10880:19;;;10874:26;-1:-1:-1;;10963:1:1;10959:14;;;10975:3;10955:24;10951:37;10947:42;10932:58;10917:74;;10804:201;-1:-1:-1;;;;;11051:1:1;11035:14;;;11031:22;11018:36;;-1:-1:-1;9969:1352:1:o;13189:168::-;13229:7;13295:1;13291;13287:6;13283:14;13280:1;13277:21;13272:1;13265:9;13258:17;13254:45;13251:71;;;13302:18;;:::i;:::-;-1:-1:-1;13342:9:1;;13189:168::o;14268:415::-;14470:2;14452:21;;;14509:2;14489:18;;;14482:30;14548:34;14543:2;14528:18;;14521:62;-1:-1:-1;;;14614:2:1;14599:18;;14592:49;14673:3;14658:19;;14268:415::o;15041:722::-;15091:3;15132:5;15126:12;15161:36;15187:9;15161:36;:::i;:::-;15216:1;15233:18;;;15260:133;;;;15407:1;15402:355;;;;15226:531;;15260:133;-1:-1:-1;;15293:24:1;;15281:37;;15366:14;;15359:22;15347:35;;15338:45;;;-1:-1:-1;15260:133:1;;15402:355;15433:5;15430:1;15423:16;15462:4;15507:2;15504:1;15494:16;15532:1;15546:165;15560:6;15557:1;15554:13;15546:165;;;15638:14;;15625:11;;;15618:35;15681:16;;;;15575:10;;15546:165;;;15550:3;;;15740:6;15735:3;15731:16;15724:23;;15226:531;;;;;15041:722;;;;:::o;15768:456::-;15989:3;16017:38;16051:3;16043:6;16017:38;:::i;:::-;16084:6;16078:13;16100:52;16145:6;16141:2;16134:4;16126:6;16122:17;16100:52;:::i;:::-;16168:50;16210:6;16206:2;16202:15;16194:6;16168:50;:::i;:::-;16161:57;15768:456;-1:-1:-1;;;;;;;15768:456:1:o;17868:246::-;17908:4;-1:-1:-1;;;;;18021:10:1;;;;17991;;18043:12;;;18040:38;;;18058:18;;:::i;:::-;18095:13;;17868:246;-1:-1:-1;;;17868:246:1:o;18119:253::-;18159:3;-1:-1:-1;;;;;18248:2:1;18245:1;18241:10;18278:2;18275:1;18271:10;18309:3;18305:2;18301:12;18296:3;18293:21;18290:47;;;18317:18;;:::i;:::-;18353:13;;18119:253;-1:-1:-1;;;;18119:253:1:o;18377:128::-;18417:3;18448:1;18444:6;18441:1;18438:13;18435:39;;;18454:18;;:::i;:::-;-1:-1:-1;18490:9:1;;18377:128::o;18921:125::-;18961:4;18989:1;18986;18983:8;18980:34;;;18994:18;;:::i;:::-;-1:-1:-1;19031:9:1;;18921:125::o;19051:136::-;19090:3;19118:5;19108:39;;19127:18;;:::i;:::-;-1:-1:-1;;;19163:18:1;;19051:136::o;19608:489::-;-1:-1:-1;;;;;19877:15:1;;;19859:34;;19929:15;;19924:2;19909:18;;19902:43;19976:2;19961:18;;19954:34;;;20024:3;20019:2;20004:18;;19997:31;;;19802:4;;20045:46;;20071:19;;20063:6;20045:46;:::i;:::-;20037:54;19608:489;-1:-1:-1;;;;;;19608:489:1:o;20102:249::-;20171:6;20224:2;20212:9;20203:7;20199:23;20195:32;20192:52;;;20240:1;20237;20230:12;20192:52;20272:9;20266:16;20291:30;20315:5;20291:30;:::i;20356:127::-;20417:10;20412:3;20408:20;20405:1;20398:31;20448:4;20445:1;20438:15;20472:4;20469:1;20462:15;20488:120;20528:1;20554;20544:35;;20559:18;;:::i;:::-;-1:-1:-1;20593:9:1;;20488:120::o;20613:112::-;20645:1;20671;20661:35;;20676:18;;:::i;:::-;-1:-1:-1;20710:9:1;;20613:112::o;20730:127::-;20791:10;20786:3;20782:20;20779:1;20772:31;20822:4;20819:1;20812:15;20846:4;20843:1;20836:15

Swarm Source

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