ETH Price: $3,275.39 (-5.74%)

Token

BattleCatsArena (BCA)
 

Overview

Max Total Supply

500 BCA

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BCA
0x3e134aDCc8fc3E71218E009C45fdcc8A6C39f385
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:
BattleCatsArena

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// 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);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

// File: @openzeppelin/contracts/utils/Strings.sol


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


// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: ERC721A.sol



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()))
        : "";
  }

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual {
    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 private 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 {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// 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(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


// File: contracts/BattleCatsArena.sol
pragma solidity ^0.8.0;

contract BattleCatsArena is ERC721A, Ownable {
  using Strings for uint256;
  
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  
  uint256 public cost = 0.065 ether;
  uint256 public maxSupply = 10000;
  uint256 public setMaxMintAmountPerTxn = 20; 
  uint256 public maxMintAmountPerWallet = 10000; 
  uint256 public totalPresaleTickets = 5000;
  uint256 public reserve = 200;
  uint256 public reserveMinted = 0;

  bool public paused = true;
  bool public revealed = false;
  bool public startMainSale = false;
  
  mapping(address => bool) private _presaleList;
  mapping(address => bool) private _giftFreeMint;
  mapping(address => uint256) public _totalMintedPresale;
  mapping(address => uint256) public _totalMintedMainsale;
  
  constructor() ERC721A("BattleCatsArena", "BCA", maxSupply, maxSupply) {
    setBaseURI("ipfs://Qmebgy2SzpgUa9EskNwoFYSBUMbP7Nzx6sCyvfZrW8Tdsj/");
    setNotRevealedURI("ipfs://QmSReC6aRvBKHvMBZosnnfxFwFE4hV8QWECxXYkq2Xet2x");
  }
  

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

    // This function is for Premint sale
    function preSaleMint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()){
            require(!paused, "Public sale is not live, can't mint");
            require(_presaleList[msg.sender] == true,"You're not on the whitelist");
            require(_mintAmount <= maxMintAmountPerWallet, "Max Mint amount per session exceeded");
        }
        require(_mintAmount > 0, "Need to mint atleast 1 BattleCat");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply - (reserve - reserveMinted), "Max NFT limit exceeded");
        require(supply + _mintAmount <= totalPresaleTickets, "Limit exceeded for presale");
        require(_totalMintedPresale[msg.sender] + _mintAmount <= maxMintAmountPerWallet,
            "exceeded presale total mints per wallet");
       
        if (msg.sender != owner()) {
            // checking if user have free mint available
            if (_giftFreeMint[msg.sender]==false){
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
            else{
                require(_mintAmount == 1, "You can only 1 free mint");
                _giftFreeMint[msg.sender]=false;
            }
        }
        // minting presale NFT
        _totalMintedPresale[msg.sender] = _totalMintedPresale[msg.sender] + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
        
  }
  
    // This function will add users to presale listing
    function addToPresaleListing(address[] calldata _addresses)
        external
        onlyOwner
        {
            for (uint256 index = 0; index < _addresses.length; index++) {
                require(_addresses[index] != address(0),"Can't add a zero address");
                if (_presaleList[_addresses[index]] == false) {
                    _presaleList[_addresses[index]] = true;
                }
            }
        }
    // This function will use to remove user from presale listing
    function removeFromPresaleListing(address[] calldata _addresses)
        external
        onlyOwner
        {
            for (uint256 ind = 0; ind < _addresses.length; ind++) {
                require(_addresses[ind] != address(0),"Can't remove a zero address");
                if (_presaleList[_addresses[ind]] == true) {
                    _presaleList[_addresses[ind]] = false;
                }
            }
        }
    // function will be check if user is eligible for presale
    function checkIsOnPresaleList(address _address) external view returns (bool) {
        return _presaleList[_address];
    }
    // function will be check if user is eligible for freemint
    function checkIsOnFreesaleList(address _address) external view returns (bool) {
        return _giftFreeMint[_address];
    }
  // This function will use for Main sale 
  function saleMint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()){
            require(!paused, "Public sale is not live, can't mint");
            require(_mintAmount <= setMaxMintAmountPerTxn, "Max Mint amount exceeded");
            require(startMainSale == true, "Main sale is not started yet");
        }
        require(_mintAmount > 0, "Need to mint at least 1 BattleCat");
        
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply - (reserve - reserveMinted), "Max NFT limit exceeded");

        require(
            _totalMintedMainsale[msg.sender] + _mintAmount <= maxMintAmountPerWallet,
            "exceeded presale total mints per wallet"
            );
        if (msg.sender != owner()) {
            if (_giftFreeMint[msg.sender]==false){
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
            else{
                require(_mintAmount == 1, "You can only 1 free mint");
                _giftFreeMint[msg.sender]=false;
            }
            
        }
        
        _safeMint(msg.sender, _mintAmount);
    }

    // Function for minting the reserve NFTs for owner
    function reserveNFTs(uint256 amount) public onlyOwner{
        require(reserveMinted + amount <= reserve, "Max NFT limit reserveration exceeded");
        
        _safeMint(msg.sender, amount);
        reserveMinted = reserveMinted + amount;
    }

  // function to get the total NFTs by one address
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
    // function will add user to free mint 
    function addToFreeMint(address[] calldata _addresses) external onlyOwner {
        for (uint256 index = 0; index < _addresses.length; index++) {
                require(
                    _addresses[index] != address(0),
                    "Can't add a zero address"
                );
                if (_giftFreeMint[_addresses[index]] == false) {
                    _giftFreeMint[_addresses[index]] = true;
                }
            }
    }
    // Removing user from the free mint
    function removeFromFreeMint(address[] calldata _addresses)
        external
        onlyOwner
        {
            for (uint256 index = 0; index < _addresses.length; index++) {
                require(
                    _addresses[index] != address(0),
                    "Can't remove a zero address"
                );
                if (_giftFreeMint[_addresses[index]] == true) {
                    _giftFreeMint[_addresses[index]] = false;
                }
            }
        }
  // for revealing the NFTs
  function revertReveal() public onlyOwner() {
      revealed = !revealed;
  }
  function revertStartMainSale() public onlyOwner{
      startMainSale = !startMainSale;
  }
  
  function setMaxMintAmountPerWallet(uint256 _limit) public onlyOwner() {
    maxMintAmountPerWallet = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }
  function setReserve(uint256 _reserve) public onlyOwner(){
      reserve = _reserve;
  }
//   function to update the presale NFT amount
  function setTotalPresaleQuantity( uint256 _totalPresaleTickets) public onlyOwner(){
      totalPresaleTickets = _totalPresaleTickets;
  }

  function setMaxMintAmountPerTransaction(uint256 _newmaxMintAmount) public onlyOwner() {
    setMaxMintAmountPerTxn = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function revertPause() external onlyOwner {
      paused = !paused;
  }
 
 
  function withdraw() external payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedMainsale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkIsOnFreesaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkIsOnPresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromPresaleListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revertPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revertReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revertStartMainSale","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxMintAmountPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalPresaleTickets","type":"uint256"}],"name":"setTotalPresaleQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalPresaleTickets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000808055600755610100604052600560c081905264173539b7b760d91b60e09081526200003191600a919062000335565b5066e6ed27d6668000600c55612710600d8190556014600e55600f5561138860105560c860115560006012556013805462ffffff191660011790553480156200007957600080fd5b506040518060400160405280600f81526020016e426174746c65436174734172656e6160881b8152506040518060400160405280600381526020016242434160e81b815250600d54600d5460008111620001315760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001935760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000128565b8351620001a890600190602087019062000335565b508251620001be90600290602086019062000335565b5060a09190915260805250620001d690503362000224565b620001fa60405180606001604052806036815260200162003b286036913962000276565b6200021e60405180606001604052806035815260200162003b7e60359139620002da565b62000418565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002c15760405162461bcd60e51b8152602060048201819052602482015260008051602062003b5e833981519152604482015260640162000128565b8051620002d690600990602084019062000335565b5050565b6008546001600160a01b03163314620003255760405162461bcd60e51b8152602060048201819052602482015260008051602062003b5e833981519152604482015260640162000128565b8051620002d690600b9060208401905b8280546200034390620003db565b90600052602060002090601f016020900481019282620003675760008555620003b2565b82601f106200038257805160ff1916838001178555620003b2565b82800160010185558215620003b2579182015b82811115620003b257825182559160200191906001019062000395565b50620003c0929150620003c4565b5090565b5b80821115620003c05760008155600101620003c5565b600181811c90821680620003f057607f821691505b602082108114156200041257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516136df620004496000396000818161281a015281816128440152612c860152600050506136df6000f3fe60806040526004361061036b5760003560e01c8063715018a6116101c6578063c6682862116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146109e2578063f3a6edd914610a02578063fa7bce6a14610a18578063fc5e9a6c14610a2d57600080fd5b8063e985e9c514610959578063ea9253d4146109a2578063f2c4ce1e146109c257600080fd5b8063cb33533b116100d1578063cb33533b146108ed578063cd3293de1461090d578063d5abeb0114610923578063da3ef23f1461093957600080fd5b8063c668286214610898578063c771dbd0146108ad578063c87b56dd146108cd57600080fd5b8063a22cb46511610164578063a9e2acd51161013e578063a9e2acd514610822578063b88d4fde14610842578063bc7df09114610862578063bc951b911461088257600080fd5b8063a22cb465146107d7578063a3fdbac2146107f7578063a94373141461080c57600080fd5b80638ca887ca116101a05780638ca887ca146107585780638da5cb5b1461076b57806395d89b41146107895780639a4075731461079e57600080fd5b8063715018a614610710578063766b7d09146107255780637835c6351461074557600080fd5b806342842e0e116102a057806355f804b31161023e5780636352211e116102185780636352211e1461068e57806367771e60146106ae5780636c0360eb146106db57806370a08231146106f057600080fd5b806355f804b314610634578063580e77d4146106545780635c975abb1461067457600080fd5b80634b0cc1f11161027a5780634b0cc1f1146105a65780634c81433f146105df5780634f6ccce7146105f5578063518302271461061557600080fd5b806342842e0e14610539578063438b63001461055957806344a0d68a1461058657600080fd5b806315dac9db1161030d5780632cc6f19d116102e75780632cc6f19d146104dc5780632f745c59146104f15780633ccfd60b146105115780634256dbe31461051957600080fd5b806315dac9db1461047a57806318160ddd146104a757806323b872dd146104bc57600080fd5b8063081c8c4411610349578063081c8c44146103ff578063095ea7b31461041457806313faede61461043657806314f348ac1461045a57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046131a7565b610a4d565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610aba565b60405161039c91906133b4565b3480156103d357600080fd5b506103e76103e236600461322a565b610b4c565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b506103ba610bdc565b34801561042057600080fd5b5061043461042f366004613108565b610c6a565b005b34801561044257600080fd5b5061044c600c5481565b60405190815260200161039c565b34801561046657600080fd5b50610434610475366004613132565b610d82565b34801561048657600080fd5b5061044c610495366004612fc6565b60166020526000908152604090205481565b3480156104b357600080fd5b5060005461044c565b3480156104c857600080fd5b506104346104d7366004613014565b610ee6565b3480156104e857600080fd5b50610434610ef1565b3480156104fd57600080fd5b5061044c61050c366004613108565b610f38565b6104346110a6565b34801561052557600080fd5b5061043461053436600461322a565b611128565b34801561054557600080fd5b50610434610554366004613014565b611157565b34801561056557600080fd5b50610579610574366004612fc6565b611172565b60405161039c9190613370565b34801561059257600080fd5b506104346105a136600461322a565b611214565b3480156105b257600080fd5b506103906105c1366004612fc6565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156105eb57600080fd5b5061044c60125481565b34801561060157600080fd5b5061044c61061036600461322a565b611243565b34801561062157600080fd5b5060135461039090610100900460ff1681565b34801561064057600080fd5b5061043461064f3660046131e1565b6112a5565b34801561066057600080fd5b506013546103909062010000900460ff1681565b34801561068057600080fd5b506013546103909060ff1681565b34801561069a57600080fd5b506103e76106a936600461322a565b6112e6565b3480156106ba57600080fd5b5061044c6106c9366004612fc6565b60176020526000908152604090205481565b3480156106e757600080fd5b506103ba6112f8565b3480156106fc57600080fd5b5061044c61070b366004612fc6565b611305565b34801561071c57600080fd5b50610434611396565b34801561073157600080fd5b5061043461074036600461322a565b6113cc565b61043461075336600461322a565b6113fb565b61043461076636600461322a565b611765565b34801561077757600080fd5b506008546001600160a01b03166103e7565b34801561079557600080fd5b506103ba611a3d565b3480156107aa57600080fd5b506103906107b9366004612fc6565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156107e357600080fd5b506104346107f23660046130cc565b611a4c565b34801561080357600080fd5b50610434611b11565b34801561081857600080fd5b5061044c60105481565b34801561082e57600080fd5b5061043461083d36600461322a565b611b4f565b34801561084e57600080fd5b5061043461085d366004613050565b611b7e565b34801561086e57600080fd5b5061043461087d36600461322a565b611bb7565b34801561088e57600080fd5b5061044c600f5481565b3480156108a457600080fd5b506103ba611c6a565b3480156108b957600080fd5b506104346108c8366004613132565b611c77565b3480156108d957600080fd5b506103ba6108e836600461322a565b611ddb565b3480156108f957600080fd5b5061043461090836600461322a565b611f4c565b34801561091957600080fd5b5061044c60115481565b34801561092f57600080fd5b5061044c600d5481565b34801561094557600080fd5b506104346109543660046131e1565b611f7b565b34801561096557600080fd5b50610390610974366004612fe1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109ae57600080fd5b506104346109bd366004613132565b611fb8565b3480156109ce57600080fd5b506104346109dd3660046131e1565b612127565b3480156109ee57600080fd5b506104346109fd366004612fc6565b612164565b348015610a0e57600080fd5b5061044c600e5481565b348015610a2457600080fd5b506104346121fc565b348015610a3957600080fd5b50610434610a48366004613132565b612245565b60006001600160e01b031982166380ac58cd60e01b1480610a7e57506001600160e01b03198216635b5e139f60e01b145b80610a9957506001600160e01b0319821663780e9d6360e01b145b80610ab457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610ac9906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610af5906135d1565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000610b59826000541190565b610bc05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610be9906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c15906135d1565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b505050505081565b6000610c75826112e6565b9050806001600160a01b0316836001600160a01b03161415610ce45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bb7565b336001600160a01b0382161480610d005750610d008133610974565b610d725760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb7565b610d7d8383836123b4565b505050565b6008546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d576000838383818110610dcb57610dcb613667565b9050602002016020810190610de09190612fc6565b6001600160a01b03161415610e325760405162461bcd60e51b815260206004820152601860248201527743616e2774206164642061207a65726f206164647265737360401b6044820152606401610bb7565b60146000848484818110610e4857610e48613667565b9050602002016020810190610e5d9190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16610ed457600160146000858585818110610e9657610e96613667565b9050602002016020810190610eab9190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610ede8161360c565b915050610daf565b610d7d838383612410565b6008546001600160a01b03163314610f1b5760405162461bcd60e51b8152600401610bb790613451565b6013805461ff001981166101009182900460ff1615909102179055565b6000610f4383611305565b8210610f9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bb7565b600080549080805b83811015611046576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ff757805192505b876001600160a01b0316836001600160a01b03161415611033578684141561102557509350610ab492505050565b8361102f8161360c565b9450505b508061103e8161360c565b915050610fa4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bb7565b6008546001600160a01b031633146110d05760405162461bcd60e51b8152600401610bb790613451565b604051600090339047908381818185875af1925050503d8060008114611112576040519150601f19603f3d011682016040523d82523d6000602084013e611117565b606091505b505090508061112557600080fd5b50565b6008546001600160a01b031633146111525760405162461bcd60e51b8152600401610bb790613451565b601155565b610d7d83838360405180602001604052806000815250611b7e565b6060600061117f83611305565b905060008167ffffffffffffffff81111561119c5761119c61367d565b6040519080825280602002602001820160405280156111c5578160200160208202803683370190505b50905060005b8281101561120c576111dd8582610f38565b8282815181106111ef576111ef613667565b6020908102919091010152806112048161360c565b9150506111cb565b509392505050565b6008546001600160a01b0316331461123e5760405162461bcd60e51b8152600401610bb790613451565b600c55565b6000805482106112a15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bb7565b5090565b6008546001600160a01b031633146112cf5760405162461bcd60e51b8152600401610bb790613451565b80516112e2906009906020840190612ea4565b5050565b60006112f182612798565b5192915050565b60098054610be9906135d1565b60006001600160a01b0382166113715760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bb7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113c05760405162461bcd60e51b8152600401610bb790613451565b6113ca6000612942565b565b6008546001600160a01b031633146113f65760405162461bcd60e51b8152600401610bb790613451565b600f55565b6008546001600160a01b031633146114f25760135460ff16156114305760405162461bcd60e51b8152600401610bb7906133c7565b3360009081526014602052604090205460ff1615156001146114945760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610bb7565b600f548111156114f25760405162461bcd60e51b8152602060048201526024808201527f4d6178204d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610bb7565b600081116115425760405162461bcd60e51b815260206004820181905260248201527f4e65656420746f206d696e742061746c65617374203120426174746c654361746044820152606401610bb7565b6000546012546011546115559190613577565b600d546115629190613577565b61156c8383613504565b11156115b35760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bb7565b6010546115c08383613504565b111561160e5760405162461bcd60e51b815260206004820152601a60248201527f4c696d697420657863656564656420666f722070726573616c650000000000006044820152606401610bb7565b600f543360009081526016602052604090205461162c908490613504565b111561164a5760405162461bcd60e51b8152600401610bb79061340a565b6008546001600160a01b0316331461172d573360009081526015602052604090205460ff166116ca5781600c546116819190613530565b3410156116c55760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bb7565b61172d565b816001146117155760405162461bcd60e51b8152602060048201526018602482015277165bdd4818d85b881bdb9b1e480c48199c9959481b5a5b9d60421b6044820152606401610bb7565b336000908152601560205260409020805460ff191690555b33600090815260166020526040902054611748908390613504565b336000818152601660205260409020919091556112e29083612994565b6008546001600160a01b031633146118495760135460ff161561179a5760405162461bcd60e51b8152600401610bb7906133c7565b600e548111156117ec5760405162461bcd60e51b815260206004820152601860248201527f4d6178204d696e7420616d6f756e7420657863656564656400000000000000006044820152606401610bb7565b60135462010000900460ff1615156001146118495760405162461bcd60e51b815260206004820152601c60248201527f4d61696e2073616c65206973206e6f74207374617274656420796574000000006044820152606401610bb7565b600081116118a35760405162461bcd60e51b815260206004820152602160248201527f4e65656420746f206d696e74206174206c65617374203120426174746c6543616044820152601d60fa1b6064820152608401610bb7565b6000546012546011546118b69190613577565b600d546118c39190613577565b6118cd8383613504565b11156119145760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bb7565b600f5433600090815260176020526040902054611932908490613504565b11156119505760405162461bcd60e51b8152600401610bb79061340a565b6008546001600160a01b03163314611a33573360009081526015602052604090205460ff166119d05781600c546119879190613530565b3410156119cb5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bb7565b611a33565b81600114611a1b5760405162461bcd60e51b8152602060048201526018602482015277165bdd4818d85b881bdb9b1e480c48199c9959481b5a5b9d60421b6044820152606401610bb7565b336000908152601560205260409020805460ff191690555b6112e23383612994565b606060028054610ac9906135d1565b6001600160a01b038216331415611aa55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611b3b5760405162461bcd60e51b8152600401610bb790613451565b6013805460ff19811660ff90911615179055565b6008546001600160a01b03163314611b795760405162461bcd60e51b8152600401610bb790613451565b600e55565b611b89848484612410565b611b95848484846129ae565b611bb15760405162461bcd60e51b8152600401610bb790613486565b50505050565b6008546001600160a01b03163314611be15760405162461bcd60e51b8152600401610bb790613451565b60115481601254611bf29190613504565b1115611c4c5760405162461bcd60e51b8152602060048201526024808201527f4d6178204e4654206c696d69742072657365727665726174696f6e20657863656044820152631959195960e21b6064820152608401610bb7565b611c563382612994565b80601254611c649190613504565b60125550565b600a8054610be9906135d1565b6008546001600160a01b03163314611ca15760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d576000838383818110611cc057611cc0613667565b9050602002016020810190611cd59190612fc6565b6001600160a01b03161415611d275760405162461bcd60e51b815260206004820152601860248201527743616e2774206164642061207a65726f206164647265737360401b6044820152606401610bb7565b60156000848484818110611d3d57611d3d613667565b9050602002016020810190611d529190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16611dc957600160156000858585818110611d8b57611d8b613667565b9050602002016020810190611da09190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611dd38161360c565b915050611ca4565b6060611de8826000541190565b611e4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bb7565b601354610100900460ff16611eed57600b8054611e68906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e94906135d1565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050919050565b6000611ef7612abc565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612acb565b600a604051602001611f359392919061326f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611f765760405162461bcd60e51b8152600401610bb790613451565b601055565b6008546001600160a01b03163314611fa55760405162461bcd60e51b8152600401610bb790613451565b80516112e290600a906020840190612ea4565b6008546001600160a01b03163314611fe25760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d57600083838381811061200157612001613667565b90506020020160208101906120169190612fc6565b6001600160a01b0316141561206d5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bb7565b6015600084848481811061208357612083613667565b90506020020160208101906120989190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415612115576000601560008585858181106120d7576120d7613667565b90506020020160208101906120ec9190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061211f8161360c565b915050611fe5565b6008546001600160a01b031633146121515760405162461bcd60e51b8152600401610bb790613451565b80516112e290600b906020840190612ea4565b6008546001600160a01b0316331461218e5760405162461bcd60e51b8152600401610bb790613451565b6001600160a01b0381166121f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb7565b61112581612942565b6008546001600160a01b031633146122265760405162461bcd60e51b8152600401610bb790613451565b6013805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b0316331461226f5760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d57600083838381811061228e5761228e613667565b90506020020160208101906122a39190612fc6565b6001600160a01b031614156122fa5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bb7565b6014600084848481811061231057612310613667565b90506020020160208101906123259190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff161515600114156123a25760006014600085858581811061236457612364613667565b90506020020160208101906123799190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806123ac8161360c565b915050612272565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061241b82612798565b80519091506000906001600160a01b0316336001600160a01b0316148061245257503361244784610b4c565b6001600160a01b0316145b80612464575081516124649033610974565b9050806124ce5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bb7565b846001600160a01b031682600001516001600160a01b0316146125425760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bb7565b6001600160a01b0384166125a65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bb7565b6125b660008484600001516123b4565b6001600160a01b03851660009081526004602052604081208054600192906125e89084906001600160801b031661354f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612634918591166134d9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556126bc846001613504565b6000818152600360205260409020549091506001600160a01b031661274e576126e6816000541190565b1561274e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526127b7826000541190565b6128165760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bb7565b60007f00000000000000000000000000000000000000000000000000000000000000008310612877576128697f000000000000000000000000000000000000000000000000000000000000000084613577565b612874906001613504565b90505b825b8181106128e1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156128ce57949350505050565b50806128d9816135ba565b915050612879565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bb7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e2828260405180602001604052806000815250612bc9565b60006001600160a01b0384163b15612ab057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129f2903390899088908890600401613333565b602060405180830381600087803b158015612a0c57600080fd5b505af1925050508015612a3c575060408051601f3d908101601f19168201909252612a39918101906131c4565b60015b612a96573d808015612a6a576040519150601f19603f3d011682016040523d82523d6000602084013e612a6f565b606091505b508051612a8e5760405162461bcd60e51b8152600401610bb790613486565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab4565b5060015b949350505050565b606060098054610ac9906135d1565b606081612aef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b195780612b038161360c565b9150612b129050600a8361351c565b9150612af3565b60008167ffffffffffffffff811115612b3457612b3461367d565b6040519080825280601f01601f191660200182016040528015612b5e576020820181803683370190505b5090505b8415612ab457612b73600183613577565b9150612b80600a86613627565b612b8b906030613504565b60f81b818381518110612ba057612ba0613667565b60200101906001600160f81b031916908160001a905350612bc2600a8661351c565b9450612b62565b6000546001600160a01b038416612c2c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bb7565b612c37816000541190565b15612c845760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bb7565b7f0000000000000000000000000000000000000000000000000000000000000000831115612cff5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bb7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d5b9087906134d9565b6001600160801b03168152602001858360200151612d7991906134d9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e995760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e5d60008884886129ae565b612e795760405162461bcd60e51b8152600401610bb790613486565b81612e838161360c565b9250508080612e919061360c565b915050612e10565b506000819055612790565b828054612eb0906135d1565b90600052602060002090601f016020900481019282612ed25760008555612f18565b82601f10612eeb57805160ff1916838001178555612f18565b82800160010185558215612f18579182015b82811115612f18578251825591602001919060010190612efd565b506112a19291505b808211156112a15760008155600101612f20565b600067ffffffffffffffff80841115612f4f57612f4f61367d565b604051601f8501601f19908116603f01168101908282118183101715612f7757612f7761367d565b81604052809350858152868686011115612f9057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612fc157600080fd5b919050565b600060208284031215612fd857600080fd5b611f4582612faa565b60008060408385031215612ff457600080fd5b612ffd83612faa565b915061300b60208401612faa565b90509250929050565b60008060006060848603121561302957600080fd5b61303284612faa565b925061304060208501612faa565b9150604084013590509250925092565b6000806000806080858703121561306657600080fd5b61306f85612faa565b935061307d60208601612faa565b925060408501359150606085013567ffffffffffffffff8111156130a057600080fd5b8501601f810187136130b157600080fd5b6130c087823560208401612f34565b91505092959194509250565b600080604083850312156130df57600080fd5b6130e883612faa565b9150602083013580151581146130fd57600080fd5b809150509250929050565b6000806040838503121561311b57600080fd5b61312483612faa565b946020939093013593505050565b6000806020838503121561314557600080fd5b823567ffffffffffffffff8082111561315d57600080fd5b818501915085601f83011261317157600080fd5b81358181111561318057600080fd5b8660208260051b850101111561319557600080fd5b60209290920196919550909350505050565b6000602082840312156131b957600080fd5b8135611f4581613693565b6000602082840312156131d657600080fd5b8151611f4581613693565b6000602082840312156131f357600080fd5b813567ffffffffffffffff81111561320a57600080fd5b8201601f8101841361321b57600080fd5b612ab484823560208401612f34565b60006020828403121561323c57600080fd5b5035919050565b6000815180845261325b81602086016020860161358e565b601f01601f19169290920160200192915050565b6000845160206132828285838a0161358e565b8551918401916132958184848a0161358e565b8554920191600090600181811c90808316806132b257607f831692505b8583108114156132d057634e487b7160e01b85526022600452602485fd5b8080156132e457600181146132f557613322565b60ff19851688528388019550613322565b60008b81526020902060005b8581101561331a5781548a820152908401908801613301565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061336690830184613243565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133a85783518352928401929184019160010161338c565b50909695505050505050565b602081526000611f456020830184613243565b60208082526023908201527f5075626c69632073616c65206973206e6f74206c6976652c2063616e2774206d6040820152621a5b9d60ea1b606082015260800190565b60208082526027908201527f65786365656465642070726573616c6520746f74616c206d696e747320706572604082015266081dd85b1b195d60ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156134fb576134fb61363b565b01949350505050565b600082198211156135175761351761363b565b500190565b60008261352b5761352b613651565b500490565b600081600019048311821515161561354a5761354a61363b565b500290565b60006001600160801b038381169083168181101561356f5761356f61363b565b039392505050565b6000828210156135895761358961363b565b500390565b60005b838110156135a9578181015183820152602001613591565b83811115611bb15750506000910152565b6000816135c9576135c961363b565b506000190190565b600181811c908216806135e557607f821691505b6020821081141561360657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136205761362061363b565b5060010190565b60008261363657613636613651565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112557600080fdfea2646970667358221220f464092625339f77f399a1f9b2f7dff6924c3a8ca3e96af732534b284a23d50b64736f6c63430008070033697066733a2f2f516d6562677932537a706755613945736b4e776f46595342554d6250374e7a783673437976665a7257385464736a2f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d5352654336615276424b48764d425a6f736e6e66784677464534685638515745437858596b71325865743278

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063715018a6116101c6578063c6682862116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146109e2578063f3a6edd914610a02578063fa7bce6a14610a18578063fc5e9a6c14610a2d57600080fd5b8063e985e9c514610959578063ea9253d4146109a2578063f2c4ce1e146109c257600080fd5b8063cb33533b116100d1578063cb33533b146108ed578063cd3293de1461090d578063d5abeb0114610923578063da3ef23f1461093957600080fd5b8063c668286214610898578063c771dbd0146108ad578063c87b56dd146108cd57600080fd5b8063a22cb46511610164578063a9e2acd51161013e578063a9e2acd514610822578063b88d4fde14610842578063bc7df09114610862578063bc951b911461088257600080fd5b8063a22cb465146107d7578063a3fdbac2146107f7578063a94373141461080c57600080fd5b80638ca887ca116101a05780638ca887ca146107585780638da5cb5b1461076b57806395d89b41146107895780639a4075731461079e57600080fd5b8063715018a614610710578063766b7d09146107255780637835c6351461074557600080fd5b806342842e0e116102a057806355f804b31161023e5780636352211e116102185780636352211e1461068e57806367771e60146106ae5780636c0360eb146106db57806370a08231146106f057600080fd5b806355f804b314610634578063580e77d4146106545780635c975abb1461067457600080fd5b80634b0cc1f11161027a5780634b0cc1f1146105a65780634c81433f146105df5780634f6ccce7146105f5578063518302271461061557600080fd5b806342842e0e14610539578063438b63001461055957806344a0d68a1461058657600080fd5b806315dac9db1161030d5780632cc6f19d116102e75780632cc6f19d146104dc5780632f745c59146104f15780633ccfd60b146105115780634256dbe31461051957600080fd5b806315dac9db1461047a57806318160ddd146104a757806323b872dd146104bc57600080fd5b8063081c8c4411610349578063081c8c44146103ff578063095ea7b31461041457806313faede61461043657806314f348ac1461045a57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046131a7565b610a4d565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610aba565b60405161039c91906133b4565b3480156103d357600080fd5b506103e76103e236600461322a565b610b4c565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b506103ba610bdc565b34801561042057600080fd5b5061043461042f366004613108565b610c6a565b005b34801561044257600080fd5b5061044c600c5481565b60405190815260200161039c565b34801561046657600080fd5b50610434610475366004613132565b610d82565b34801561048657600080fd5b5061044c610495366004612fc6565b60166020526000908152604090205481565b3480156104b357600080fd5b5060005461044c565b3480156104c857600080fd5b506104346104d7366004613014565b610ee6565b3480156104e857600080fd5b50610434610ef1565b3480156104fd57600080fd5b5061044c61050c366004613108565b610f38565b6104346110a6565b34801561052557600080fd5b5061043461053436600461322a565b611128565b34801561054557600080fd5b50610434610554366004613014565b611157565b34801561056557600080fd5b50610579610574366004612fc6565b611172565b60405161039c9190613370565b34801561059257600080fd5b506104346105a136600461322a565b611214565b3480156105b257600080fd5b506103906105c1366004612fc6565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156105eb57600080fd5b5061044c60125481565b34801561060157600080fd5b5061044c61061036600461322a565b611243565b34801561062157600080fd5b5060135461039090610100900460ff1681565b34801561064057600080fd5b5061043461064f3660046131e1565b6112a5565b34801561066057600080fd5b506013546103909062010000900460ff1681565b34801561068057600080fd5b506013546103909060ff1681565b34801561069a57600080fd5b506103e76106a936600461322a565b6112e6565b3480156106ba57600080fd5b5061044c6106c9366004612fc6565b60176020526000908152604090205481565b3480156106e757600080fd5b506103ba6112f8565b3480156106fc57600080fd5b5061044c61070b366004612fc6565b611305565b34801561071c57600080fd5b50610434611396565b34801561073157600080fd5b5061043461074036600461322a565b6113cc565b61043461075336600461322a565b6113fb565b61043461076636600461322a565b611765565b34801561077757600080fd5b506008546001600160a01b03166103e7565b34801561079557600080fd5b506103ba611a3d565b3480156107aa57600080fd5b506103906107b9366004612fc6565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156107e357600080fd5b506104346107f23660046130cc565b611a4c565b34801561080357600080fd5b50610434611b11565b34801561081857600080fd5b5061044c60105481565b34801561082e57600080fd5b5061043461083d36600461322a565b611b4f565b34801561084e57600080fd5b5061043461085d366004613050565b611b7e565b34801561086e57600080fd5b5061043461087d36600461322a565b611bb7565b34801561088e57600080fd5b5061044c600f5481565b3480156108a457600080fd5b506103ba611c6a565b3480156108b957600080fd5b506104346108c8366004613132565b611c77565b3480156108d957600080fd5b506103ba6108e836600461322a565b611ddb565b3480156108f957600080fd5b5061043461090836600461322a565b611f4c565b34801561091957600080fd5b5061044c60115481565b34801561092f57600080fd5b5061044c600d5481565b34801561094557600080fd5b506104346109543660046131e1565b611f7b565b34801561096557600080fd5b50610390610974366004612fe1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109ae57600080fd5b506104346109bd366004613132565b611fb8565b3480156109ce57600080fd5b506104346109dd3660046131e1565b612127565b3480156109ee57600080fd5b506104346109fd366004612fc6565b612164565b348015610a0e57600080fd5b5061044c600e5481565b348015610a2457600080fd5b506104346121fc565b348015610a3957600080fd5b50610434610a48366004613132565b612245565b60006001600160e01b031982166380ac58cd60e01b1480610a7e57506001600160e01b03198216635b5e139f60e01b145b80610a9957506001600160e01b0319821663780e9d6360e01b145b80610ab457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610ac9906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610af5906135d1565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000610b59826000541190565b610bc05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610be9906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c15906135d1565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b505050505081565b6000610c75826112e6565b9050806001600160a01b0316836001600160a01b03161415610ce45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bb7565b336001600160a01b0382161480610d005750610d008133610974565b610d725760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb7565b610d7d8383836123b4565b505050565b6008546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d576000838383818110610dcb57610dcb613667565b9050602002016020810190610de09190612fc6565b6001600160a01b03161415610e325760405162461bcd60e51b815260206004820152601860248201527743616e2774206164642061207a65726f206164647265737360401b6044820152606401610bb7565b60146000848484818110610e4857610e48613667565b9050602002016020810190610e5d9190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16610ed457600160146000858585818110610e9657610e96613667565b9050602002016020810190610eab9190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610ede8161360c565b915050610daf565b610d7d838383612410565b6008546001600160a01b03163314610f1b5760405162461bcd60e51b8152600401610bb790613451565b6013805461ff001981166101009182900460ff1615909102179055565b6000610f4383611305565b8210610f9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bb7565b600080549080805b83811015611046576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ff757805192505b876001600160a01b0316836001600160a01b03161415611033578684141561102557509350610ab492505050565b8361102f8161360c565b9450505b508061103e8161360c565b915050610fa4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bb7565b6008546001600160a01b031633146110d05760405162461bcd60e51b8152600401610bb790613451565b604051600090339047908381818185875af1925050503d8060008114611112576040519150601f19603f3d011682016040523d82523d6000602084013e611117565b606091505b505090508061112557600080fd5b50565b6008546001600160a01b031633146111525760405162461bcd60e51b8152600401610bb790613451565b601155565b610d7d83838360405180602001604052806000815250611b7e565b6060600061117f83611305565b905060008167ffffffffffffffff81111561119c5761119c61367d565b6040519080825280602002602001820160405280156111c5578160200160208202803683370190505b50905060005b8281101561120c576111dd8582610f38565b8282815181106111ef576111ef613667565b6020908102919091010152806112048161360c565b9150506111cb565b509392505050565b6008546001600160a01b0316331461123e5760405162461bcd60e51b8152600401610bb790613451565b600c55565b6000805482106112a15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bb7565b5090565b6008546001600160a01b031633146112cf5760405162461bcd60e51b8152600401610bb790613451565b80516112e2906009906020840190612ea4565b5050565b60006112f182612798565b5192915050565b60098054610be9906135d1565b60006001600160a01b0382166113715760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bb7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113c05760405162461bcd60e51b8152600401610bb790613451565b6113ca6000612942565b565b6008546001600160a01b031633146113f65760405162461bcd60e51b8152600401610bb790613451565b600f55565b6008546001600160a01b031633146114f25760135460ff16156114305760405162461bcd60e51b8152600401610bb7906133c7565b3360009081526014602052604090205460ff1615156001146114945760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610bb7565b600f548111156114f25760405162461bcd60e51b8152602060048201526024808201527f4d6178204d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610bb7565b600081116115425760405162461bcd60e51b815260206004820181905260248201527f4e65656420746f206d696e742061746c65617374203120426174746c654361746044820152606401610bb7565b6000546012546011546115559190613577565b600d546115629190613577565b61156c8383613504565b11156115b35760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bb7565b6010546115c08383613504565b111561160e5760405162461bcd60e51b815260206004820152601a60248201527f4c696d697420657863656564656420666f722070726573616c650000000000006044820152606401610bb7565b600f543360009081526016602052604090205461162c908490613504565b111561164a5760405162461bcd60e51b8152600401610bb79061340a565b6008546001600160a01b0316331461172d573360009081526015602052604090205460ff166116ca5781600c546116819190613530565b3410156116c55760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bb7565b61172d565b816001146117155760405162461bcd60e51b8152602060048201526018602482015277165bdd4818d85b881bdb9b1e480c48199c9959481b5a5b9d60421b6044820152606401610bb7565b336000908152601560205260409020805460ff191690555b33600090815260166020526040902054611748908390613504565b336000818152601660205260409020919091556112e29083612994565b6008546001600160a01b031633146118495760135460ff161561179a5760405162461bcd60e51b8152600401610bb7906133c7565b600e548111156117ec5760405162461bcd60e51b815260206004820152601860248201527f4d6178204d696e7420616d6f756e7420657863656564656400000000000000006044820152606401610bb7565b60135462010000900460ff1615156001146118495760405162461bcd60e51b815260206004820152601c60248201527f4d61696e2073616c65206973206e6f74207374617274656420796574000000006044820152606401610bb7565b600081116118a35760405162461bcd60e51b815260206004820152602160248201527f4e65656420746f206d696e74206174206c65617374203120426174746c6543616044820152601d60fa1b6064820152608401610bb7565b6000546012546011546118b69190613577565b600d546118c39190613577565b6118cd8383613504565b11156119145760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bb7565b600f5433600090815260176020526040902054611932908490613504565b11156119505760405162461bcd60e51b8152600401610bb79061340a565b6008546001600160a01b03163314611a33573360009081526015602052604090205460ff166119d05781600c546119879190613530565b3410156119cb5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bb7565b611a33565b81600114611a1b5760405162461bcd60e51b8152602060048201526018602482015277165bdd4818d85b881bdb9b1e480c48199c9959481b5a5b9d60421b6044820152606401610bb7565b336000908152601560205260409020805460ff191690555b6112e23383612994565b606060028054610ac9906135d1565b6001600160a01b038216331415611aa55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611b3b5760405162461bcd60e51b8152600401610bb790613451565b6013805460ff19811660ff90911615179055565b6008546001600160a01b03163314611b795760405162461bcd60e51b8152600401610bb790613451565b600e55565b611b89848484612410565b611b95848484846129ae565b611bb15760405162461bcd60e51b8152600401610bb790613486565b50505050565b6008546001600160a01b03163314611be15760405162461bcd60e51b8152600401610bb790613451565b60115481601254611bf29190613504565b1115611c4c5760405162461bcd60e51b8152602060048201526024808201527f4d6178204e4654206c696d69742072657365727665726174696f6e20657863656044820152631959195960e21b6064820152608401610bb7565b611c563382612994565b80601254611c649190613504565b60125550565b600a8054610be9906135d1565b6008546001600160a01b03163314611ca15760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d576000838383818110611cc057611cc0613667565b9050602002016020810190611cd59190612fc6565b6001600160a01b03161415611d275760405162461bcd60e51b815260206004820152601860248201527743616e2774206164642061207a65726f206164647265737360401b6044820152606401610bb7565b60156000848484818110611d3d57611d3d613667565b9050602002016020810190611d529190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16611dc957600160156000858585818110611d8b57611d8b613667565b9050602002016020810190611da09190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611dd38161360c565b915050611ca4565b6060611de8826000541190565b611e4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bb7565b601354610100900460ff16611eed57600b8054611e68906135d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e94906135d1565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050919050565b6000611ef7612abc565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612acb565b600a604051602001611f359392919061326f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611f765760405162461bcd60e51b8152600401610bb790613451565b601055565b6008546001600160a01b03163314611fa55760405162461bcd60e51b8152600401610bb790613451565b80516112e290600a906020840190612ea4565b6008546001600160a01b03163314611fe25760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d57600083838381811061200157612001613667565b90506020020160208101906120169190612fc6565b6001600160a01b0316141561206d5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bb7565b6015600084848481811061208357612083613667565b90506020020160208101906120989190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415612115576000601560008585858181106120d7576120d7613667565b90506020020160208101906120ec9190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061211f8161360c565b915050611fe5565b6008546001600160a01b031633146121515760405162461bcd60e51b8152600401610bb790613451565b80516112e290600b906020840190612ea4565b6008546001600160a01b0316331461218e5760405162461bcd60e51b8152600401610bb790613451565b6001600160a01b0381166121f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb7565b61112581612942565b6008546001600160a01b031633146122265760405162461bcd60e51b8152600401610bb790613451565b6013805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b0316331461226f5760405162461bcd60e51b8152600401610bb790613451565b60005b81811015610d7d57600083838381811061228e5761228e613667565b90506020020160208101906122a39190612fc6565b6001600160a01b031614156122fa5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bb7565b6014600084848481811061231057612310613667565b90506020020160208101906123259190612fc6565b6001600160a01b0316815260208101919091526040016000205460ff161515600114156123a25760006014600085858581811061236457612364613667565b90506020020160208101906123799190612fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806123ac8161360c565b915050612272565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061241b82612798565b80519091506000906001600160a01b0316336001600160a01b0316148061245257503361244784610b4c565b6001600160a01b0316145b80612464575081516124649033610974565b9050806124ce5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bb7565b846001600160a01b031682600001516001600160a01b0316146125425760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bb7565b6001600160a01b0384166125a65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bb7565b6125b660008484600001516123b4565b6001600160a01b03851660009081526004602052604081208054600192906125e89084906001600160801b031661354f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612634918591166134d9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556126bc846001613504565b6000818152600360205260409020549091506001600160a01b031661274e576126e6816000541190565b1561274e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526127b7826000541190565b6128165760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bb7565b60007f00000000000000000000000000000000000000000000000000000000000027108310612877576128697f000000000000000000000000000000000000000000000000000000000000271084613577565b612874906001613504565b90505b825b8181106128e1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156128ce57949350505050565b50806128d9816135ba565b915050612879565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bb7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e2828260405180602001604052806000815250612bc9565b60006001600160a01b0384163b15612ab057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129f2903390899088908890600401613333565b602060405180830381600087803b158015612a0c57600080fd5b505af1925050508015612a3c575060408051601f3d908101601f19168201909252612a39918101906131c4565b60015b612a96573d808015612a6a576040519150601f19603f3d011682016040523d82523d6000602084013e612a6f565b606091505b508051612a8e5760405162461bcd60e51b8152600401610bb790613486565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab4565b5060015b949350505050565b606060098054610ac9906135d1565b606081612aef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b195780612b038161360c565b9150612b129050600a8361351c565b9150612af3565b60008167ffffffffffffffff811115612b3457612b3461367d565b6040519080825280601f01601f191660200182016040528015612b5e576020820181803683370190505b5090505b8415612ab457612b73600183613577565b9150612b80600a86613627565b612b8b906030613504565b60f81b818381518110612ba057612ba0613667565b60200101906001600160f81b031916908160001a905350612bc2600a8661351c565b9450612b62565b6000546001600160a01b038416612c2c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bb7565b612c37816000541190565b15612c845760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bb7565b7f0000000000000000000000000000000000000000000000000000000000002710831115612cff5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bb7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d5b9087906134d9565b6001600160801b03168152602001858360200151612d7991906134d9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e995760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e5d60008884886129ae565b612e795760405162461bcd60e51b8152600401610bb790613486565b81612e838161360c565b9250508080612e919061360c565b915050612e10565b506000819055612790565b828054612eb0906135d1565b90600052602060002090601f016020900481019282612ed25760008555612f18565b82601f10612eeb57805160ff1916838001178555612f18565b82800160010185558215612f18579182015b82811115612f18578251825591602001919060010190612efd565b506112a19291505b808211156112a15760008155600101612f20565b600067ffffffffffffffff80841115612f4f57612f4f61367d565b604051601f8501601f19908116603f01168101908282118183101715612f7757612f7761367d565b81604052809350858152868686011115612f9057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612fc157600080fd5b919050565b600060208284031215612fd857600080fd5b611f4582612faa565b60008060408385031215612ff457600080fd5b612ffd83612faa565b915061300b60208401612faa565b90509250929050565b60008060006060848603121561302957600080fd5b61303284612faa565b925061304060208501612faa565b9150604084013590509250925092565b6000806000806080858703121561306657600080fd5b61306f85612faa565b935061307d60208601612faa565b925060408501359150606085013567ffffffffffffffff8111156130a057600080fd5b8501601f810187136130b157600080fd5b6130c087823560208401612f34565b91505092959194509250565b600080604083850312156130df57600080fd5b6130e883612faa565b9150602083013580151581146130fd57600080fd5b809150509250929050565b6000806040838503121561311b57600080fd5b61312483612faa565b946020939093013593505050565b6000806020838503121561314557600080fd5b823567ffffffffffffffff8082111561315d57600080fd5b818501915085601f83011261317157600080fd5b81358181111561318057600080fd5b8660208260051b850101111561319557600080fd5b60209290920196919550909350505050565b6000602082840312156131b957600080fd5b8135611f4581613693565b6000602082840312156131d657600080fd5b8151611f4581613693565b6000602082840312156131f357600080fd5b813567ffffffffffffffff81111561320a57600080fd5b8201601f8101841361321b57600080fd5b612ab484823560208401612f34565b60006020828403121561323c57600080fd5b5035919050565b6000815180845261325b81602086016020860161358e565b601f01601f19169290920160200192915050565b6000845160206132828285838a0161358e565b8551918401916132958184848a0161358e565b8554920191600090600181811c90808316806132b257607f831692505b8583108114156132d057634e487b7160e01b85526022600452602485fd5b8080156132e457600181146132f557613322565b60ff19851688528388019550613322565b60008b81526020902060005b8581101561331a5781548a820152908401908801613301565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061336690830184613243565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133a85783518352928401929184019160010161338c565b50909695505050505050565b602081526000611f456020830184613243565b60208082526023908201527f5075626c69632073616c65206973206e6f74206c6976652c2063616e2774206d6040820152621a5b9d60ea1b606082015260800190565b60208082526027908201527f65786365656465642070726573616c6520746f74616c206d696e747320706572604082015266081dd85b1b195d60ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156134fb576134fb61363b565b01949350505050565b600082198211156135175761351761363b565b500190565b60008261352b5761352b613651565b500490565b600081600019048311821515161561354a5761354a61363b565b500290565b60006001600160801b038381169083168181101561356f5761356f61363b565b039392505050565b6000828210156135895761358961363b565b500390565b60005b838110156135a9578181015183820152602001613591565b83811115611bb15750506000910152565b6000816135c9576135c961363b565b506000190190565b600181811c908216806135e557607f821691505b6020821081141561360657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136205761362061363b565b5060010190565b60008261363657613636613651565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112557600080fdfea2646970667358221220f464092625339f77f399a1f9b2f7dff6924c3a8ca3e96af732534b284a23d50b64736f6c63430008070033

Deployed Bytecode Sourcemap

39450:9030:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24539:370;;;;;;;;;;-1:-1:-1;24539:370:0;;;;;:::i;:::-;;:::i;:::-;;;8170:14:1;;8163:22;8145:41;;8133:2;8118:18;24539:370:0;;;;;;;;26265:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27790:204::-;;;;;;;;;;-1:-1:-1;27790:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6831:32:1;;;6813:51;;6801:2;6786:18;27790:204:0;6667:203:1;39602:28:0;;;;;;;;;;;;;:::i;27353:379::-;;;;;;;;;;-1:-1:-1;27353:379:0;;;;;:::i;:::-;;:::i;:::-;;39639:33;;;;;;;;;;;;;;;;;;;22191:25:1;;;22179:2;22164:18;39639:33:0;22045:177:1;42161:439:0;;;;;;;;;;-1:-1:-1;42161:439:0;;;;;:::i;:::-;;:::i;40137:54::-;;;;;;;;;;-1:-1:-1;40137:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;23100:94;;;;;;;;;;-1:-1:-1;23153:7:0;23176:12;23100:94;;28640:142;;;;;;;;;;-1:-1:-1;28640:142:0;;;;;:::i;:::-;;:::i;47051:78::-;;;;;;;;;;;;;:::i;23731:744::-;;;;;;;;;;-1:-1:-1;23731:744:0;;;;;:::i;:::-;;:::i;48317:160::-;;;:::i;47441:89::-;;;;;;;;;;-1:-1:-1;47441:89:0;;;;;:::i;:::-;;:::i;28845:157::-;;;;;;;;;;-1:-1:-1;28845:157:0;;;;;:::i;:::-;;:::i;45098:348::-;;;;;;;;;;-1:-1:-1;45098:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47355:82::-;;;;;;;;;;-1:-1:-1;47355:82:0;;;;;:::i;:::-;;:::i;43372:127::-;;;;;;;;;;-1:-1:-1;43372:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;43468:23:0;43444:4;43468:23;;;:13;:23;;;;;;;;;43372:127;39892:32;;;;;;;;;;;;;;;;23263:177;;;;;;;;;;-1:-1:-1;23263:177:0;;;;;:::i;:::-;;:::i;39961:28::-;;;;;;;;;;-1:-1:-1;39961:28:0;;;;;;;;;;;47874:98;;;;;;;;;;-1:-1:-1;47874:98:0;;;;;:::i;:::-;;:::i;39994:33::-;;;;;;;;;;-1:-1:-1;39994:33:0;;;;;;;;;;;39931:25;;;;;;;;;;-1:-1:-1;39931:25:0;;;;;;;;26088:118;;;;;;;;;;-1:-1:-1;26088:118:0;;;;;:::i;:::-;;:::i;40196:55::-;;;;;;;;;;-1:-1:-1;40196:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;39534:21;;;;;;;;;;;;;:::i;24965:211::-;;;;;;;;;;-1:-1:-1;24965:211:0;;;;;:::i;:::-;;:::i;38564:103::-;;;;;;;;;;;;;:::i;47233:114::-;;;;;;;;;;-1:-1:-1;47233:114:0;;;;;:::i;:::-;;:::i;40671:1424::-;;;;;;:::i;:::-;;:::i;43547:1176::-;;;;;;:::i;:::-;;:::i;37913:87::-;;;;;;;;;;-1:-1:-1;37986:6:0;;-1:-1:-1;;;;;37986:6:0;37913:87;;26420:98;;;;;;;;;;;;;:::i;43177:125::-;;;;;;;;;;-1:-1:-1;43177:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;43272:22:0;43248:4;43272:22;;;:12;:22;;;;;;;;;43177:125;28058:274;;;;;;;;;;-1:-1:-1;28058:274:0;;;;;:::i;:::-;;:::i;48234:73::-;;;;;;;;;;;;;:::i;39813:41::-;;;;;;;;;;;;;;;;47727:141;;;;;;;;;;-1:-1:-1;47727:141:0;;;;;:::i;:::-;;:::i;29065:311::-;;;;;;;;;;-1:-1:-1;29065:311:0;;;;;:::i;:::-;;:::i;44787:253::-;;;;;;;;;;-1:-1:-1;44787:253:0;;;;;:::i;:::-;;:::i;39762:45::-;;;;;;;;;;;;;;;;39560:37;;;;;;;;;;;;;:::i;46004:462::-;;;;;;;;;;-1:-1:-1;46004:462:0;;;;;:::i;:::-;;:::i;45452:497::-;;;;;;;;;;-1:-1:-1;45452:497:0;;;;;:::i;:::-;;:::i;47582:139::-;;;;;;;;;;-1:-1:-1;47582:139:0;;;;;:::i;:::-;;:::i;39859:28::-;;;;;;;;;;;;;;;;39677:32;;;;;;;;;;;;;;;;47978:122;;;;;;;;;;-1:-1:-1;47978:122:0;;;;;:::i;:::-;;:::i;28395:186::-;;;;;;;;;;-1:-1:-1;28395:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28540:25:0;;;28517:4;28540:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28395:186;46513:505;;;;;;;;;;-1:-1:-1;46513:505:0;;;;;:::i;:::-;;:::i;48108:120::-;;;;;;;;;;-1:-1:-1;48108:120:0;;;;;:::i;:::-;;:::i;38822:201::-;;;;;;;;;;-1:-1:-1;38822:201:0;;;;;:::i;:::-;;:::i;39714:42::-;;;;;;;;;;;;;;;;47133:92;;;;;;;;;;;;;:::i;42673:435::-;;;;;;;;;;-1:-1:-1;42673:435:0;;;;;:::i;:::-;;:::i;24539:370::-;24666:4;-1:-1:-1;;;;;;24696:40:0;;-1:-1:-1;;;24696:40:0;;:99;;-1:-1:-1;;;;;;;24747:48:0;;-1:-1:-1;;;24747:48:0;24696:99;:160;;;-1:-1:-1;;;;;;;24806:50:0;;-1:-1:-1;;;24806:50:0;24696:160;:207;;;-1:-1:-1;;;;;;;;;;10992:40:0;;;24867:36;24682:221;24539:370;-1:-1:-1;;24539:370:0:o;26265:94::-;26319:13;26348:5;26341:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26265:94;:::o;27790:204::-;27858:7;27882:16;27890:7;29672:4;29702:12;-1:-1:-1;29692:22:0;29615:105;27882:16;27874:74;;;;-1:-1:-1;;;27874:74:0;;21025:2:1;27874:74:0;;;21007:21:1;21064:2;21044:18;;;21037:30;21103:34;21083:18;;;21076:62;-1:-1:-1;;;21154:18:1;;;21147:43;21207:19;;27874:74:0;;;;;;;;;-1:-1:-1;27964:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27964:24:0;;27790:204::o;39602:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27353:379::-;27422:13;27438:24;27454:7;27438:15;:24::i;:::-;27422:40;;27483:5;-1:-1:-1;;;;;27477:11:0;:2;-1:-1:-1;;;;;27477:11:0;;;27469:58;;;;-1:-1:-1;;;27469:58:0;;16795:2:1;27469:58:0;;;16777:21:1;16834:2;16814:18;;;16807:30;16873:34;16853:18;;;16846:62;-1:-1:-1;;;16924:18:1;;;16917:32;16966:19;;27469:58:0;16593:398:1;27469:58:0;20676:10;-1:-1:-1;;;;;27552:21:0;;;;:62;;-1:-1:-1;27577:37:0;27594:5;20676:10;28395:186;:::i;27577:37::-;27536:153;;;;-1:-1:-1;;;27536:153:0;;13291:2:1;27536:153:0;;;13273:21:1;13330:2;13310:18;;;13303:30;13369:34;13349:18;;;13342:62;13440:27;13420:18;;;13413:55;13485:19;;27536:153:0;13089:421:1;27536:153:0;27698:28;27707:2;27711:7;27720:5;27698:8;:28::i;:::-;27415:317;27353:379;;:::o;42161:439::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;42287:13:::1;42282:307;42306:25:::0;;::::1;42282:307;;;42398:1;42369:10:::0;;42380:5;42369:17;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42369:31:0::1;;;42361:67;;;::::0;-1:-1:-1;;;42361:67:0;;9026:2:1;42361:67:0::1;::::0;::::1;9008:21:1::0;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:54;9148:18;;42361:67:0::1;8824:348:1::0;42361:67:0::1;42451:12;:31;42464:10;;42475:5;42464:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42451:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42451:31:0;;::::1;;42447:127;;42550:4;42516:12;:31;42529:10;;42540:5;42529:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42516:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42516:31:0;:38;;-1:-1:-1;;42516:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42447:127:::1;42333:7:::0;::::1;::::0;::::1;:::i;:::-;;;;42282:307;;28640:142:::0;28748:28;28758:4;28764:2;28768:7;28748:9;:28::i;47051:78::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47115:8:::1;::::0;;-1:-1:-1;;47103:20:0;::::1;47115:8;::::0;;;::::1;;;47114:9;47103:20:::0;;::::1;;::::0;;47051:78::o;23731:744::-;23840:7;23875:16;23885:5;23875:9;:16::i;:::-;23867:5;:24;23859:71;;;;-1:-1:-1;;;23859:71:0;;8623:2:1;23859:71:0;;;8605:21:1;8662:2;8642:18;;;8635:30;8701:34;8681:18;;;8674:62;-1:-1:-1;;;8752:18:1;;;8745:32;8794:19;;23859:71:0;8421:398:1;23859:71:0;23937:22;23176:12;;;23937:22;;24057:350;24081:14;24077:1;:18;24057:350;;;24111:31;24145:14;;;:11;:14;;;;;;;;;24111:48;;;;;;;;;-1:-1:-1;;;;;24111:48:0;;;;;-1:-1:-1;;;24111:48:0;;;;;;;;;;;;24172:28;24168:89;;24233:14;;;-1:-1:-1;24168:89:0;24290:5;-1:-1:-1;;;;;24269:26:0;:17;-1:-1:-1;;;;;24269:26:0;;24265:135;;;24327:5;24312:11;:20;24308:59;;;-1:-1:-1;24354:1:0;-1:-1:-1;24347:8:0;;-1:-1:-1;;;24347:8:0;24308:59;24377:13;;;;:::i;:::-;;;;24265:135;-1:-1:-1;24097:3:0;;;;:::i;:::-;;;;24057:350;;;-1:-1:-1;24413:56:0;;-1:-1:-1;;;24413:56:0;;20194:2:1;24413:56:0;;;20176:21:1;20233:2;20213:18;;;20206:30;20272:34;20252:18;;;20245:62;-1:-1:-1;;;20323:18:1;;;20316:44;20377:19;;24413:56:0;19992:410:1;48317:160:0;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;48390:58:::1;::::0;48372:12:::1;::::0;48398:10:::1;::::0;48422:21:::1;::::0;48372:12;48390:58;48372:12;48390:58;48422:21;48398:10;48390:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48371:77;;;48463:7;48455:16;;;::::0;::::1;;48364:113;48317:160::o:0;47441:89::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47506:7:::1;:18:::0;47441:89::o;28845:157::-;28957:39;28974:4;28980:2;28984:7;28957:39;;;;;;;;;;;;:16;:39::i;45098:348::-;45173:16;45201:23;45227:17;45237:6;45227:9;:17::i;:::-;45201:43;;45251:25;45293:15;45279:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45279:30:0;;45251:58;;45321:9;45316:103;45336:15;45332:1;:19;45316:103;;;45381:30;45401:6;45409:1;45381:19;:30::i;:::-;45367:8;45376:1;45367:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45353:3;;;;:::i;:::-;;;;45316:103;;;-1:-1:-1;45432:8:0;45098:348;-1:-1:-1;;;45098:348:0:o;47355:82::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47416:4:::1;:15:::0;47355:82::o;23263:177::-;23330:7;23176:12;;23354:5;:21;23346:69;;;;-1:-1:-1;;;23346:69:0;;10553:2:1;23346:69:0;;;10535:21:1;10592:2;10572:18;;;10565:30;10631:34;10611:18;;;10604:62;-1:-1:-1;;;10682:18:1;;;10675:33;10725:19;;23346:69:0;10351:399:1;23346:69:0;-1:-1:-1;23429:5:0;23263:177::o;47874:98::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47945:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47874:98:::0;:::o;26088:118::-;26152:7;26175:20;26187:7;26175:11;:20::i;:::-;:25;;26088:118;-1:-1:-1;;26088:118:0:o;39534:21::-;;;;;;;:::i;24965:211::-;25029:7;-1:-1:-1;;;;;25053:19:0;;25045:75;;;;-1:-1:-1;;;25045:75:0;;14068:2:1;25045:75:0;;;14050:21:1;14107:2;14087:18;;;14080:30;14146:34;14126:18;;;14119:62;-1:-1:-1;;;14197:18:1;;;14190:41;14248:19;;25045:75:0;13866:407:1;25045:75:0;-1:-1:-1;;;;;;25142:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25142:27:0;;24965:211::o;38564:103::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;38629:30:::1;38656:1;38629:18;:30::i;:::-;38564:103::o:0;47233:114::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47310:22:::1;:31:::0;47233:114::o;40671:1424::-;37986:6;;-1:-1:-1;;;;;37986:6:0;40743:10;:21;40739:295;;40789:6;;;;40788:7;40780:55;;;;-1:-1:-1;;;40780:55:0;;;;;;;:::i;:::-;40871:10;40858:24;;;;:12;:24;;;;;;;;:32;;:24;:32;40850:71;;;;-1:-1:-1;;;40850:71:0;;10197:2:1;40850:71:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:29;10255:18;;;10248:57;10322:18;;40850:71:0;9995:351:1;40850:71:0;40959:22;;40944:11;:37;;40936:86;;;;-1:-1:-1;;;40936:86:0;;12531:2:1;40936:86:0;;;12513:21:1;12570:2;12550:18;;;12543:30;12609:34;12589:18;;;12582:62;-1:-1:-1;;;12660:18:1;;;12653:34;12704:19;;40936:86:0;12329:400:1;40936:86:0;41066:1;41052:11;:15;41044:60;;;;-1:-1:-1;;;41044:60:0;;19480:2:1;41044:60:0;;;19462:21:1;;;19499:18;;;19492:30;19558:34;19538:18;;;19531:62;19610:18;;41044:60:0;19278:356:1;41044:60:0;41115:14;23176:12;41211:13;;41201:7;;:23;;41211:13;41201:23;:::i;:::-;41188:9;;:37;;;;:::i;:::-;41164:20;41173:11;41164:6;:20;:::i;:::-;:61;;41156:96;;;;-1:-1:-1;;;41156:96:0;;13717:2:1;41156:96:0;;;13699:21:1;13756:2;13736:18;;;13729:30;-1:-1:-1;;;13775:18:1;;;13768:52;13837:18;;41156:96:0;13515:346:1;41156:96:0;41295:19;;41271:20;41280:11;41271:6;:20;:::i;:::-;:43;;41263:82;;;;-1:-1:-1;;;41263:82:0;;12936:2:1;41263:82:0;;;12918:21:1;12975:2;12955:18;;;12948:30;13014:28;12994:18;;;12987:56;13060:18;;41263:82:0;12734:350:1;41263:82:0;41413:22;;41384:10;41364:31;;;;:19;:31;;;;;;:45;;41398:11;;41364:45;:::i;:::-;:71;;41356:136;;;;-1:-1:-1;;;41356:136:0;;;;;;;:::i;:::-;37986:6;;-1:-1:-1;;;;;37986:6:0;41516:10;:21;41512:401;;41630:10;41616:25;;;;:13;:25;;;;;;;;41612:290;;41696:11;41689:4;;:18;;;;:::i;:::-;41676:9;:31;;41668:62;;;;-1:-1:-1;;;41668:62:0;;17198:2:1;41668:62:0;;;17180:21:1;17237:2;17217:18;;;17210:30;-1:-1:-1;;;17256:18:1;;;17249:48;17314:18;;41668:62:0;16996:342:1;41668:62:0;41612:290;;;41791:11;41806:1;41791:16;41783:53;;;;-1:-1:-1;;;41783:53:0;;19841:2:1;41783:53:0;;;19823:21:1;19880:2;19860:18;;;19853:30;-1:-1:-1;;;19899:18:1;;;19892:54;19963:18;;41783:53:0;19639:348:1;41783:53:0;41869:10;41881:5;41855:25;;;:13;:25;;;;;:31;;-1:-1:-1;;41855:31:0;;;41612:290;42009:10;41989:31;;;;:19;:31;;;;;;:45;;42023:11;;41989:45;:::i;:::-;41975:10;41955:31;;;;:19;:31;;;;;:79;;;;42045:34;;42067:11;42045:9;:34::i;43547:1176::-;37986:6;;-1:-1:-1;;;;;37986:6:0;43616:10;:21;43612:274;;43662:6;;;;43661:7;43653:55;;;;-1:-1:-1;;;43653:55:0;;;;;;;:::i;:::-;43746:22;;43731:11;:37;;43723:74;;;;-1:-1:-1;;;43723:74:0;;18725:2:1;43723:74:0;;;18707:21:1;18764:2;18744:18;;;18737:30;18803:26;18783:18;;;18776:54;18847:18;;43723:74:0;18523:348:1;43723:74:0;43820:13;;;;;;;:21;;43837:4;43820:21;43812:62;;;;-1:-1:-1;;;43812:62:0;;16438:2:1;43812:62:0;;;16420:21:1;16477:2;16457:18;;;16450:30;16516;16496:18;;;16489:58;16564:18;;43812:62:0;16236:352:1;43812:62:0;43918:1;43904:11;:15;43896:61;;;;-1:-1:-1;;;43896:61:0;;18323:2:1;43896:61:0;;;18305:21:1;18362:2;18342:18;;;18335:30;18401:34;18381:18;;;18374:62;-1:-1:-1;;;18452:18:1;;;18445:31;18493:19;;43896:61:0;18121:397:1;43896:61:0;43978:14;23176:12;44074:13;;44064:7;;:23;;44074:13;44064:23;:::i;:::-;44051:9;;:37;;;;:::i;:::-;44027:20;44036:11;44027:6;:20;:::i;:::-;:61;;44019:96;;;;-1:-1:-1;;;44019:96:0;;13717:2:1;44019:96:0;;;13699:21:1;13756:2;13736:18;;;13729:30;-1:-1:-1;;;13775:18:1;;;13768:52;13837:18;;44019:96:0;13515:346:1;44019:96:0;44200:22;;44171:10;44150:32;;;;:20;:32;;;;;;:46;;44185:11;;44150:46;:::i;:::-;:72;;44128:165;;;;-1:-1:-1;;;44128:165:0;;;;;;;:::i;:::-;37986:6;;-1:-1:-1;;;;;37986:6:0;44308:10;:21;44304:357;;44364:10;44350:25;;;;:13;:25;;;;;;;;44346:290;;44430:11;44423:4;;:18;;;;:::i;:::-;44410:9;:31;;44402:62;;;;-1:-1:-1;;;44402:62:0;;17198:2:1;44402:62:0;;;17180:21:1;17237:2;17217:18;;;17210:30;-1:-1:-1;;;17256:18:1;;;17249:48;17314:18;;44402:62:0;16996:342:1;44402:62:0;44346:290;;;44525:11;44540:1;44525:16;44517:53;;;;-1:-1:-1;;;44517:53:0;;19841:2:1;44517:53:0;;;19823:21:1;19880:2;19860:18;;;19853:30;-1:-1:-1;;;19899:18:1;;;19892:54;19963:18;;44517:53:0;19639:348:1;44517:53:0;44603:10;44615:5;44589:25;;;:13;:25;;;;;:31;;-1:-1:-1;;44589:31:0;;;44346:290;44681:34;44691:10;44703:11;44681:9;:34::i;26420:98::-;26476:13;26505:7;26498:14;;;;;:::i;28058:274::-;-1:-1:-1;;;;;28149:24:0;;20676:10;28149:24;;28141:63;;;;-1:-1:-1;;;28141:63:0;;15664:2:1;28141:63:0;;;15646:21:1;15703:2;15683:18;;;15676:30;15742:28;15722:18;;;15715:56;15788:18;;28141:63:0;15462:350:1;28141:63:0;20676:10;28213:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28213:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28213:53:0;;;;;;;;;;28278:48;;8145:41:1;;;28213:42:0;;20676:10;28278:48;;8118:18:1;28278:48:0;;;;;;;28058:274;;:::o;48234:73::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;48295:6:::1;::::0;;-1:-1:-1;;48285:16:0;::::1;48295:6;::::0;;::::1;48294:7;48285:16;::::0;;48234:73::o;47727:141::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47820:22:::1;:42:::0;47727:141::o;29065:311::-;29202:28;29212:4;29218:2;29222:7;29202:9;:28::i;:::-;29253:48;29276:4;29282:2;29286:7;29295:5;29253:22;:48::i;:::-;29237:133;;;;-1:-1:-1;;;29237:133:0;;;;;;;:::i;:::-;29065:311;;;;:::o;44787:253::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;44885:7:::1;;44875:6;44859:13;;:22;;;;:::i;:::-;:33;;44851:82;;;::::0;-1:-1:-1;;;44851:82:0;;21842:2:1;44851:82:0::1;::::0;::::1;21824:21:1::0;21881:2;21861:18;;;21854:30;21920:34;21900:18;;;21893:62;-1:-1:-1;;;21971:18:1;;;21964:34;22015:19;;44851:82:0::1;21640:400:1::0;44851:82:0::1;44954:29;44964:10;44976:6;44954:9;:29::i;:::-;45026:6;45010:13;;:22;;;;:::i;:::-;44994:13;:38:::0;-1:-1:-1;44787:253:0:o;39560:37::-;;;;;;;:::i;46004:462::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;46093:13:::1;46088:371;46112:25:::0;;::::1;46088:371;;;46226:1;46197:10:::0;;46208:5;46197:17;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46197:31:0::1;;;46167:129;;;::::0;-1:-1:-1;;;46167:129:0;;9026:2:1;46167:129:0::1;::::0;::::1;9008:21:1::0;9065:2;9045:18;;;9038:30;-1:-1:-1;;;9084:18:1;;;9077:54;9148:18;;46167:129:0::1;8824:348:1::0;46167:129:0::1;46319:13;:32;46333:10;;46344:5;46333:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46319:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46319:32:0;;::::1;;46315:129;;46420:4;46385:13;:32;46399:10;;46410:5;46399:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46385:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46385:32:0;:39;;-1:-1:-1;;46385:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46315:129:::1;46139:7:::0;::::1;::::0;::::1;:::i;:::-;;;;46088:371;;45452:497:::0;45550:13;45591:16;45599:7;29672:4;29702:12;-1:-1:-1;29692:22:0;29615:105;45591:16;45575:97;;;;-1:-1:-1;;;45575:97:0;;15248:2:1;45575:97:0;;;15230:21:1;15287:2;15267:18;;;15260:30;15326:34;15306:18;;;15299:62;-1:-1:-1;;;15377:18:1;;;15370:45;15432:19;;45575:97:0;15046:411:1;45575:97:0;45688:8;;;;;;;45685:62;;45725:14;45718:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45452:497;;;:::o;45685:62::-;45755:28;45786:10;:8;:10::i;:::-;45755:41;;45841:1;45816:14;45810:28;:32;:133;;;;;;;;;;;;;;;;;45878:14;45894:18;:7;:16;:18::i;:::-;45914:13;45861:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45810:133;45803:140;45452:497;-1:-1:-1;;;45452:497:0:o;47582:139::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47673:19:::1;:42:::0;47582:139::o;47978:122::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;48061:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46513:505::-:0;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;46638:13:::1;46633:374;46657:25:::0;;::::1;46633:374;;;46771:1;46742:10:::0;;46753:5;46742:17;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46742:31:0::1;;;46712:132;;;::::0;-1:-1:-1;;;46712:132:0;;12175:2:1;46712:132:0::1;::::0;::::1;12157:21:1::0;12214:2;12194:18;;;12187:30;12253:29;12233:18;;;12226:57;12300:18;;46712:132:0::1;11973:351:1::0;46712:132:0::1;46867:13;:32;46881:10;;46892:5;46881:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46867:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46867:32:0;;::::1;;:40;;:32:::0;:40:::1;46863:129;;;46967:5;46932:13;:32;46946:10;;46957:5;46946:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46932:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46932:32:0;:40;;-1:-1:-1;;46932:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46863:129:::1;46684:7:::0;::::1;::::0;::::1;:::i;:::-;;;;46633:374;;48108:120:::0;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;48190:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;38822:201::-:0;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38911:22:0;::::1;38903:73;;;::::0;-1:-1:-1;;;38903:73:0;;9379:2:1;38903:73:0::1;::::0;::::1;9361:21:1::0;9418:2;9398:18;;;9391:30;9457:34;9437:18;;;9430:62;-1:-1:-1;;;9508:18:1;;;9501:36;9554:19;;38903:73:0::1;9177:402:1::0;38903:73:0::1;38987:28;39006:8;38987:18;:28::i;47133:92::-:0;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;47206:13:::1;::::0;;-1:-1:-1;;47189:30:0;::::1;47206:13:::0;;;;::::1;;;47205:14;47189:30:::0;;::::1;;::::0;;47133:92::o;42673:435::-;37986:6;;-1:-1:-1;;;;;37986:6:0;20676:10;38133:23;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;42804:11:::1;42799:298;42821:23:::0;;::::1;42799:298;;;42907:1;42880:10:::0;;42891:3;42880:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42880:29:0::1;;;42872:68;;;::::0;-1:-1:-1;;;42872:68:0;;12175:2:1;42872:68:0::1;::::0;::::1;12157:21:1::0;12214:2;12194:18;;;12187:30;12253:29;12233:18;;;12226:57;12300:18;;42872:68:0::1;11973:351:1::0;42872:68:0::1;42963:12;:29;42976:10;;42987:3;42976:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42963:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42963:29:0;;::::1;;:37;;:29:::0;:37:::1;42959:123;;;43057:5;43025:12;:29;43038:10;;43049:3;43038:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43025:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43025:29:0;:37;;-1:-1:-1;;43025:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42959:123:::1;42846:5:::0;::::1;::::0;::::1;:::i;:::-;;;;42799:298;;33311:172:::0;33408:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33408:29:0;-1:-1:-1;;;;;33408:29:0;;;;;;;;;33449:28;;33408:24;;33449:28;;;;;;;33311:172;;;:::o;31667:1538::-;31773:35;31811:20;31823:7;31811:11;:20::i;:::-;31882:18;;31773:58;;-1:-1:-1;31840:22:0;;-1:-1:-1;;;;;31866:34:0;20676:10;-1:-1:-1;;;;;31866:34:0;;:81;;;-1:-1:-1;20676:10:0;31911:20;31923:7;31911:11;:20::i;:::-;-1:-1:-1;;;;;31911:36:0;;31866:81;:142;;;-1:-1:-1;31975:18:0;;31958:50;;20676:10;28395:186;:::i;31958:50::-;31840:169;;32034:17;32018:101;;;;-1:-1:-1;;;32018:101:0;;16019:2:1;32018:101:0;;;16001:21:1;16058:2;16038:18;;;16031:30;16097:34;16077:18;;;16070:62;-1:-1:-1;;;16148:18:1;;;16141:48;16206:19;;32018:101:0;15817:414:1;32018:101:0;32166:4;-1:-1:-1;;;;;32144:26:0;:13;:18;;;-1:-1:-1;;;;;32144:26:0;;32128:98;;;;-1:-1:-1;;;32128:98:0;;14480:2:1;32128:98:0;;;14462:21:1;14519:2;14499:18;;;14492:30;14558:34;14538:18;;;14531:62;-1:-1:-1;;;14609:18:1;;;14602:36;14655:19;;32128:98:0;14278:402:1;32128:98:0;-1:-1:-1;;;;;32241:16:0;;32233:66;;;;-1:-1:-1;;;32233:66:0;;10957:2:1;32233:66:0;;;10939:21:1;10996:2;10976:18;;;10969:30;11035:34;11015:18;;;11008:62;-1:-1:-1;;;11086:18:1;;;11079:35;11131:19;;32233:66:0;10755:401:1;32233:66:0;32408:49;32425:1;32429:7;32438:13;:18;;;32408:8;:49::i;:::-;-1:-1:-1;;;;;32466:18:0;;;;;;:12;:18;;;;;:31;;32496:1;;32466:18;:31;;32496:1;;-1:-1:-1;;;;;32466:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32466:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32504:16:0;;-1:-1:-1;32504:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32504:16:0;;:29;;-1:-1:-1;;32504:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32504:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32563:43:0;;;;;;;;-1:-1:-1;;;;;32563:43:0;;;;;;32589:15;32563:43;;;;;;;;;-1:-1:-1;32540:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32540:66:0;-1:-1:-1;;;;;;32540:66:0;;;;;;;;;;;32856:11;32552:7;-1:-1:-1;32856:11:0;:::i;:::-;32919:1;32878:24;;;:11;:24;;;;;:29;32834:33;;-1:-1:-1;;;;;;32878:29:0;32874:236;;32936:20;32944:11;29672:4;29702:12;-1:-1:-1;29692:22:0;29615:105;32936:20;32932:171;;;32996:97;;;;;;;;33023:18;;-1:-1:-1;;;;;32996:97:0;;;;;;33054:28;;;;32996:97;;;;;;;;;;-1:-1:-1;32969:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32969:124:0;-1:-1:-1;;;;;;32969:124:0;;;;;;;;;;;;32932:171;33142:7;33138:2;-1:-1:-1;;;;;33123:27:0;33132:4;-1:-1:-1;;;;;33123:27:0;;;;;;;;;;;33157:42;31766:1439;;;31667:1538;;;:::o;25428:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25545:16:0;25553:7;29672:4;29702:12;-1:-1:-1;29692:22:0;29615:105;25545:16;25537:71;;;;-1:-1:-1;;;25537:71:0;;9786:2:1;25537:71:0;;;9768:21:1;9825:2;9805:18;;;9798:30;9864:34;9844:18;;;9837:62;-1:-1:-1;;;9915:18:1;;;9908:40;9965:19;;25537:71:0;9584:406:1;25537:71:0;25617:26;25665:12;25654:7;:23;25650:93;;25709:22;25719:12;25709:7;:22;:::i;:::-;:26;;25734:1;25709:26;:::i;:::-;25688:47;;25650:93;25771:7;25751:212;25788:18;25780:4;:26;25751:212;;25825:31;25859:17;;;:11;:17;;;;;;;;;25825:51;;;;;;;;;-1:-1:-1;;;;;25825:51:0;;;;;-1:-1:-1;;;25825:51:0;;;;;;;;;;;;25889:28;25885:71;;25937:9;25428:606;-1:-1:-1;;;;25428:606:0:o;25885:71::-;-1:-1:-1;25808:6:0;;;;:::i;:::-;;;;25751:212;;;-1:-1:-1;25971:57:0;;-1:-1:-1;;;25971:57:0;;20609:2:1;25971:57:0;;;20591:21:1;20648:2;20628:18;;;20621:30;20687:34;20667:18;;;20660:62;-1:-1:-1;;;20738:18:1;;;20731:45;20793:19;;25971:57:0;20407:411:1;39183:191:0;39276:6;;;-1:-1:-1;;;;;39293:17:0;;;-1:-1:-1;;;;;;39293:17:0;;;;;;;39326:40;;39276:6;;;39293:17;39276:6;;39326:40;;39257:16;;39326:40;39246:128;39183:191;:::o;29726:98::-;29791:27;29801:2;29805:8;29791:27;;;;;;;;;;;;:9;:27::i;35027:690::-;35164:4;-1:-1:-1;;;;;35181:13:0;;1066:20;1114:8;35177:535;;35220:72;;-1:-1:-1;;;35220:72:0;;-1:-1:-1;;;;;35220:36:0;;;;;:72;;20676:10;;35271:4;;35277:7;;35286:5;;35220:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35220:72:0;;;;;;;;-1:-1:-1;;35220:72:0;;;;;;;;;;;;:::i;:::-;;;35207:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35451:13:0;;35447:215;;35484:61;;-1:-1:-1;;;35484:61:0;;;;;;;:::i;35447:215::-;35630:6;35624:13;35615:6;35611:2;35607:15;35600:38;35207:464;-1:-1:-1;;;;;;35342:55:0;-1:-1:-1;;;35342:55:0;;-1:-1:-1;35335:62:0;;35177:535;-1:-1:-1;35700:4:0;35177:535;35027:690;;;;;;:::o;40519:102::-;40579:13;40608:7;40601:14;;;;;:::i;18160:723::-;18216:13;18437:10;18433:53;;-1:-1:-1;;18464:10:0;;;;;;;;;;;;-1:-1:-1;;;18464:10:0;;;;;18160:723::o;18433:53::-;18511:5;18496:12;18552:78;18559:9;;18552:78;;18585:8;;;;:::i;:::-;;-1:-1:-1;18608:10:0;;-1:-1:-1;18616:2:0;18608:10;;:::i;:::-;;;18552:78;;;18640:19;18672:6;18662:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18662:17:0;;18640:39;;18690:154;18697:10;;18690:154;;18724:11;18734:1;18724:11;;:::i;:::-;;-1:-1:-1;18793:10:0;18801:2;18793:5;:10;:::i;:::-;18780:24;;:2;:24;:::i;:::-;18767:39;;18750:6;18757;18750:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18750:56:0;;;;;;;;-1:-1:-1;18821:11:0;18830:2;18821:11;;:::i;:::-;;;18690:154;;30163:1272;30268:20;30291:12;-1:-1:-1;;;;;30318:16:0;;30310:62;;;;-1:-1:-1;;;30310:62:0;;19078:2:1;30310:62:0;;;19060:21:1;19117:2;19097:18;;;19090:30;19156:34;19136:18;;;19129:62;-1:-1:-1;;;19207:18:1;;;19200:31;19248:19;;30310:62:0;18876:397:1;30310:62:0;30509:21;30517:12;29672:4;29702:12;-1:-1:-1;29692:22:0;29615:105;30509:21;30508:22;30500:64;;;;-1:-1:-1;;;30500:64:0;;17965:2:1;30500:64:0;;;17947:21:1;18004:2;17984:18;;;17977:30;18043:31;18023:18;;;18016:59;18092:18;;30500:64:0;17763:353:1;30500:64:0;30591:12;30579:8;:24;;30571:71;;;;-1:-1:-1;;;30571:71:0;;21439:2:1;30571:71:0;;;21421:21:1;21478:2;21458:18;;;21451:30;21517:34;21497:18;;;21490:62;-1:-1:-1;;;21568:18:1;;;21561:32;21610:19;;30571:71:0;21237:398:1;30571:71:0;-1:-1:-1;;;;;30754:16:0;;30721:30;30754:16;;;:12;:16;;;;;;;;;30721:49;;;;;;;;;-1:-1:-1;;;;;30721:49:0;;;;;-1:-1:-1;;;30721:49:0;;;;;;;;;;;30796:119;;;;;;;;30816:19;;30721:49;;30796:119;;;30816:39;;30846:8;;30816:39;:::i;:::-;-1:-1:-1;;;;;30796:119:0;;;;;30899:8;30864:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30796:119:0;;;;;;-1:-1:-1;;;;;30777:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30777:138:0;;;;;;;;;;;;30950:43;;;;;;;;;;;30976:15;30950:43;;;;;;;;30922:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30922:71:0;-1:-1:-1;;;;;;30922:71:0;;;;;;;;;;;;;;;;;;30934:12;;31046:281;31070:8;31066:1;:12;31046:281;;;31099:38;;31124:12;;-1:-1:-1;;;;;31099:38:0;;;31116:1;;31099:38;;31116:1;;31099:38;31164:59;31195:1;31199:2;31203:12;31217:5;31164:22;:59::i;:::-;31146:150;;;;-1:-1:-1;;;31146:150:0;;;;;;;:::i;:::-;31305:14;;;;:::i;:::-;;;;31080:3;;;;;:::i;:::-;;;;31046:281;;;-1:-1:-1;31335:12:0;:27;;;31369:60;29065:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:1527::-;5149:3;5187:6;5181:13;5213:4;5226:51;5270:6;5265:3;5260:2;5252:6;5248:15;5226:51;:::i;:::-;5340:13;;5299:16;;;;5362:55;5340:13;5299:16;5384:15;;;5362:55;:::i;:::-;5506:13;;5439:20;;;5479:1;;5566;5588:18;;;;5641;;;;5668:93;;5746:4;5736:8;5732:19;5720:31;;5668:93;5809:2;5799:8;5796:16;5776:18;5773:40;5770:167;;;-1:-1:-1;;;5836:33:1;;5892:4;5889:1;5882:15;5922:4;5843:3;5910:17;5770:167;5953:18;5980:110;;;;6104:1;6099:328;;;;5946:481;;5980:110;-1:-1:-1;;6015:24:1;;6001:39;;6060:20;;;;-1:-1:-1;5980:110:1;;6099:328;22300:1;22293:14;;;22337:4;22324:18;;6194:1;6208:169;6222:8;6219:1;6216:15;6208:169;;;6304:14;;6289:13;;;6282:37;6347:16;;;;6239:10;;6208:169;;;6212:3;;6408:8;6401:5;6397:20;6390:27;;5946:481;-1:-1:-1;6443:3:1;;4925:1527;-1:-1:-1;;;;;;;;;;;4925:1527:1:o;6875:488::-;-1:-1:-1;;;;;7144:15:1;;;7126:34;;7196:15;;7191:2;7176:18;;7169:43;7243:2;7228:18;;7221:34;;;7291:3;7286:2;7271:18;;7264:31;;;7069:4;;7312:45;;7337:19;;7329:6;7312:45;:::i;:::-;7304:53;6875:488;-1:-1:-1;;;;;;6875:488:1:o;7368:632::-;7539:2;7591:21;;;7661:13;;7564:18;;;7683:22;;;7510:4;;7539:2;7762:15;;;;7736:2;7721:18;;;7510:4;7805:169;7819:6;7816:1;7813:13;7805:169;;;7880:13;;7868:26;;7949:15;;;;7914:12;;;;7841:1;7834:9;7805:169;;;-1:-1:-1;7991:3:1;;7368:632;-1:-1:-1;;;;;;7368:632:1:o;8197:219::-;8346:2;8335:9;8328:21;8309:4;8366:44;8406:2;8395:9;8391:18;8383:6;8366:44;:::i;11161:399::-;11363:2;11345:21;;;11402:2;11382:18;;;11375:30;11441:34;11436:2;11421:18;;11414:62;-1:-1:-1;;;11507:2:1;11492:18;;11485:33;11550:3;11535:19;;11161:399::o;11565:403::-;11767:2;11749:21;;;11806:2;11786:18;;;11779:30;11845:34;11840:2;11825:18;;11818:62;-1:-1:-1;;;11911:2:1;11896:18;;11889:37;11958:3;11943:19;;11565:403::o;14685:356::-;14887:2;14869:21;;;14906:18;;;14899:30;14965:34;14960:2;14945:18;;14938:62;15032:2;15017:18;;14685:356::o;17343:415::-;17545:2;17527:21;;;17584:2;17564:18;;;17557:30;17623:34;17618:2;17603:18;;17596:62;-1:-1:-1;;;17689:2:1;17674:18;;17667:49;17748:3;17733:19;;17343:415::o;22353:253::-;22393:3;-1:-1:-1;;;;;22482:2:1;22479:1;22475:10;22512:2;22509:1;22505:10;22543:3;22539:2;22535:12;22530:3;22527:21;22524:47;;;22551:18;;:::i;:::-;22587:13;;22353:253;-1:-1:-1;;;;22353:253:1:o;22611:128::-;22651:3;22682:1;22678:6;22675:1;22672:13;22669:39;;;22688:18;;:::i;:::-;-1:-1:-1;22724:9:1;;22611:128::o;22744:120::-;22784:1;22810;22800:35;;22815:18;;:::i;:::-;-1:-1:-1;22849:9:1;;22744:120::o;22869:168::-;22909:7;22975:1;22971;22967:6;22963:14;22960:1;22957:21;22952:1;22945:9;22938:17;22934:45;22931:71;;;22982:18;;:::i;:::-;-1:-1:-1;23022:9:1;;22869:168::o;23042:246::-;23082:4;-1:-1:-1;;;;;23195:10:1;;;;23165;;23217:12;;;23214:38;;;23232:18;;:::i;:::-;23269:13;;23042:246;-1:-1:-1;;;23042:246:1:o;23293:125::-;23333:4;23361:1;23358;23355:8;23352:34;;;23366:18;;:::i;:::-;-1:-1:-1;23403:9:1;;23293:125::o;23423:258::-;23495:1;23505:113;23519:6;23516:1;23513:13;23505:113;;;23595:11;;;23589:18;23576:11;;;23569:39;23541:2;23534:10;23505:113;;;23636:6;23633:1;23630:13;23627:48;;;-1:-1:-1;;23671:1:1;23653:16;;23646:27;23423:258::o;23686:136::-;23725:3;23753:5;23743:39;;23762:18;;:::i;:::-;-1:-1:-1;;;23798:18:1;;23686:136::o;23827:380::-;23906:1;23902:12;;;;23949;;;23970:61;;24024:4;24016:6;24012:17;24002:27;;23970:61;24077:2;24069:6;24066:14;24046:18;24043:38;24040:161;;;24123:10;24118:3;24114:20;24111:1;24104:31;24158:4;24155:1;24148:15;24186:4;24183:1;24176:15;24040:161;;23827:380;;;:::o;24212:135::-;24251:3;-1:-1:-1;;24272:17:1;;24269:43;;;24292:18;;:::i;:::-;-1:-1:-1;24339:1:1;24328:13;;24212:135::o;24352:112::-;24384:1;24410;24400:35;;24415:18;;:::i;:::-;-1:-1:-1;24449:9:1;;24352:112::o;24469:127::-;24530:10;24525:3;24521:20;24518:1;24511:31;24561:4;24558:1;24551:15;24585:4;24582:1;24575:15;24601:127;24662:10;24657:3;24653:20;24650:1;24643:31;24693:4;24690:1;24683:15;24717:4;24714:1;24707:15;24733:127;24794:10;24789:3;24785:20;24782:1;24775:31;24825:4;24822:1;24815:15;24849:4;24846:1;24839:15;24865:127;24926:10;24921:3;24917:20;24914:1;24907:31;24957:4;24954:1;24947:15;24981:4;24978:1;24971:15;24997:131;-1:-1:-1;;;;;;25071:32:1;;25061:43;;25051:71;;25118:1;25115;25108:12

Swarm Source

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