ETH Price: $3,447.27 (-1.70%)
Gas: 5 Gwei

Token

WhoopRooms (ROOM)
 

Overview

Max Total Supply

1,000 ROOM

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 ROOM
0xf3302322e9dca493b27432419cff568a629ceb42
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:
Rooms

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : Rooms.sol
// SPDX-License-Identifier: MIT
//
//
//                                         .:~!!~^.
//             .~?Y5PP5Y?~:            .7G&@@@@@@@@@#Y^
//         :J#@@@@&###&@@@@@#5^      :G@@BJ!~^^::~Y&@@@&7
//       ?&@@#J:   ..::::^7G@@@&J   5@@?!YB&&@@@#Y. .5@@@#.
//     ?@@@J.  :Y#@@@@@@@&G!:7&@@@P&@G^Y5??JY?~?B@@B. .#@@@.
//    B@@5   7&@@&P??Y55?!P&@P.J@@@@G.~:J&@@@@P  .5@@.  &@@B
//   #@@?  .#@@&~.J&@@@@@?  :#@^!@@@. :@@@@@@@J    7@B  ^@@@.
//  5@@G   #@@G 7@@@@@@@@Y    J@:5@&  G@@@@@#~      &&   @@@~
//  @@@:  ~@@& !@@@@@@@@5      BB.@@. .JP57.   .~.  @#  :@@@:
// .@@@.  ?@@B 7@@@@@@P:       J&.@@G          &@G G@^  #@@&
//  &@@!  :@@&  :7?!:     ~!.  #Y^@@@P          ^J&@^  B@@@:
//  !@@&   J@@G          G@@B Y#.&@@@@&?^~!!7?5G#B!  ?@@@&:
//   Y@@#.  !@@&!         ~7?B5.B@@@@@@@@GJ7!!~^:^7B@@@&?
//    !@@@7   ?&@@BJ~:::~75GY^!&@@@B::?G&@@@@@@@@@@@#5^
//     .5@@@Y:  .~YGBBGPY7^^?&@@@#~       .:^~!~~^.
//       .7#@@@BY!^:::^!JG&@@@&Y:
//          .~JG#&@@@@@@&&BY!.
//                 ....
//
//
//    WhoopRooms (https://whooprooms.com)
//    Author: @GrizzlyDesign

pragma solidity ^0.8.15;

import "./Ownable.sol";
import "./ERC721A.sol";
import "./ERC721AQueryable.sol";
import "./ERC721ABurnable.sol";
import "./MerkleProof.sol";
import "./Address.sol";

contract Rooms is ERC721AQueryable, ERC721ABurnable, Ownable {
    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public mintableSupply = MAX_SUPPLY;

    uint256 private maxMintGuestList = 3;
    uint256 private maxMintVip = 2;
    uint256 public mintRound = 0;

    uint256 public publicMintPrice = 0.04 ether;
    uint256 public guestListMintPrice = 0.02 ether;

    bool public publicSale = false;
    bool public guestListSale = false;
    bool public revealed = false;
    bytes32 private guestListMerkleRoot;
    bytes32 private vipListMerkleRoot;
    mapping(uint256 => mapping(address => uint256)) private vipMintCount;
    mapping(uint256 => mapping(address => uint256)) private guestMintCount;

    string private baseURI;
    string private notRevealedUri;
    string private baseExtension = ".json";

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A(_name, _symbol) {
        baseURI = _initBaseURI;
        notRevealedUri = _initNotRevealedUri;
    }

    /**
     * @notice Toggle the public sale
     */
    function togglePublicSale() external onlyOwner {
        publicSale = !publicSale;
    }

    modifier publicSaleActive() {
        require(publicSale, "Public Sale Not Started");
        _;
    }

    /**
     * @notice Toggle the guestList sale
     */
    function toggleGuestListSale() external onlyOwner {
        guestListSale = !guestListSale;
    }

    modifier guestListSaleActive() {
        require(guestListSale, "guestList Sale Not Started");
        _;
    }

    /**
     * @notice Public minting
     * @param _quantity - Quantity to mint
     */
    function mintPublic(uint256 _quantity)
        public
        payable
        publicSaleActive
        hasCorrectAmount(publicMintPrice, _quantity)
        withinMintableSupply(_quantity)
    {
        _mint(msg.sender, _quantity);
    }

    modifier hasCorrectAmount(uint256 price, uint256 quantity) {
        require(msg.value >= price * quantity, "Insufficent Funds");
        _;
    }

    modifier withinMintableSupply(uint256 quantity) {
        require(
            _totalMinted() + quantity <= mintableSupply,
            "Surpasses Supply"
        );
        _;
    }

    /**
     * @notice Set the merkle root for the guestList verification
     * @param merkleRoot - guestList merkle root
     */
    function setGuestListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        guestListMerkleRoot = merkleRoot;
    }

    /**
     * @notice Set the merkle root for the vipList verification
     * @param merkleRoot - guestList merkle root
     */
    function setVipListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        vipListMerkleRoot = merkleRoot;
    }

    /**
     * @param quantity - The quantity to mint
     * @param merkleProof - Proof to verify guestList
     */
    function mintGuestList(uint256 quantity, bytes32[] calldata merkleProof)
        public
        payable
        guestListSaleActive
        hasValidMerkleProof(merkleProof, guestListMerkleRoot)
        hasCorrectAmount(guestListMintPrice, quantity)
        withinMintableSupply(quantity)
    {
        uint256 netMinted = (guestMintCount[mintRound][msg.sender] += quantity);
        require((netMinted <= maxMintGuestList), "Max Guest List Mints.");
        _mint(msg.sender, quantity);
    }

    function mintVip(uint256 quantity, bytes32[] calldata merkleProof)
        public
        payable
        hasValidMerkleProof(merkleProof, vipListMerkleRoot)
        withinMintableSupply(quantity)
    {
        uint256 netMinted = (vipMintCount[mintRound][msg.sender] += quantity);
        require((netMinted <= maxMintVip), "Max Free Mints.");
        _mint(msg.sender, quantity);
    }

    modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address Not Listed"
        );
        _;
    }

    /**
     * @notice Admin mint
     * @param recipient - The receiver of the NFT
     * @param quantity - The quantity to mint
     */
    function mintAdmin(address recipient, uint256 quantity)
        external
        onlyOwner
        withinMintableSupply(quantity)
    {
        _mint(recipient, quantity);
    }

    /**
     * @notice Allow adjustment of minting price
     * @param publicPrice - Public mint price in wei
     * @param guestListPrice - guestList mint price in wei
     */
    function setMintPrice(uint256 publicPrice, uint256 guestListPrice)
        external
        onlyOwner
    {
        publicMintPrice = publicPrice;
        guestListMintPrice = guestListPrice;
    }

    /**
     * @notice Allow adjustment of minting price
     * @param guestListLimit - guestList mint price in wei
     */
    function setMaxMintGuestList(uint256 guestListLimit) external onlyOwner {
        maxMintGuestList = guestListLimit;
    }

    /**
     * @notice Allow adjustment of mintable supply
     * @param supply - Mintable supply, limited to the maximum supply
     */
    function setMintableSupply(uint256 supply) external onlyOwner {
        require(
            supply >= _totalMinted() && supply <= MAX_SUPPLY,
            "Invalid Supply"
        );
        mintableSupply = supply;
    }

    /**
     * @dev Set the minting round
     */
    function setMintRound(uint256 round) external onlyOwner {
        mintRound = round;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    /**
     * @notice Sets the base URI of the NFT
     * @param baseURI_ - The Base URI of the NFT
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

    /**
     * @dev Returns the Base URI of the NFT
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override(ERC721A, IERC721A)
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if (revealed == false) {
            return notRevealedUri;
        }

        return
            bytes(baseURI).length != 0
                ? string(
                    abi.encodePacked(baseURI, _toString(tokenId), baseExtension)
                )
                : "";
    }

    /**
     * @dev Returns the starting token ID.
     */
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /**
     * @notice Withdrawal of funds
     */

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

File 2 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 4 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 11 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721AQueryable.sol";
import "./ERC721A.sol";

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 6 of 11 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721ABurnable.sol";
import "./ERC721A.sol";

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 7 of 11 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

File 9 of 11 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 10 of 11 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 11 of 11 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guestListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guestListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintGuestList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintVip","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintableSupply","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":"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":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setGuestListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"guestListLimit","type":"uint256"}],"name":"setMaxMintGuestList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPrice","type":"uint256"},{"internalType":"uint256","name":"guestListPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"round","type":"uint256"}],"name":"setMintRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMintableSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setVipListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleGuestListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6115b36009556003600a556002600b556000600c55668e1bc9bf040000600d5566470de4df820000600e55600f805462ffffff1916905560c06040526005608090815264173539b7b760d91b60a0526016906200005d9082620001df565b503480156200006b57600080fd5b5060405162002e1238038062002e128339810160408190526200008e9162000362565b838360026200009e8382620001df565b506003620000ad8282620001df565b5050600160005550620000c033620000e8565b6014620000ce8382620001df565b506015620000dd8282620001df565b50505050506200041b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016557607f821691505b6020821081036200018657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001da57600081815260208120601f850160051c81016020861015620001b55750805b601f850160051c820191505b81811015620001d657828155600101620001c1565b5050505b505050565b81516001600160401b03811115620001fb57620001fb6200013a565b62000213816200020c845462000150565b846200018c565b602080601f8311600181146200024b5760008415620002325750858301515b600019600386901b1c1916600185901b178555620001d6565b600085815260208120601f198616915b828110156200027c578886015182559484019460019091019084016200025b565b50858210156200029b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620002bd57600080fd5b81516001600160401b0380821115620002da57620002da6200013a565b604051601f8301601f19908116603f011681019082821181831017156200030557620003056200013a565b816040528381526020925086838588010111156200032257600080fd5b600091505b8382101562000346578582018301518183018401529082019062000327565b83821115620003585760008385830101525b9695505050505050565b600080600080608085870312156200037957600080fd5b84516001600160401b03808211156200039157600080fd5b6200039f88838901620002ab565b95506020870151915080821115620003b657600080fd5b620003c488838901620002ab565b94506040870151915080821115620003db57600080fd5b620003e988838901620002ab565b935060608701519150808211156200040057600080fd5b506200040f87828801620002ab565b91505092959194509250565b6129e7806200042b6000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063c3a71999116100c1578063e3d955d31161007a578063e3d955d31461077f578063e985e9c514610795578063e9fe6850146107b5578063efd0cbf9146107d5578063f2c4ce1e146107e8578063f2fde38b1461080857600080fd5b8063c3a71999146106de578063c87b56dd146106fe578063cc5c095c1461071e578063da3ef23f14610734578063dc53fd9214610754578063e222c7f91461076a57600080fd5b806395d89b411161011357806395d89b411461062757806399a2557a1461063c578063a22cb4651461065c578063a475b5dd1461067c578063b88d4fde14610691578063c23dc68f146106b157600080fd5b806370a082311461057f578063715018a61461059f5780638446a16f146105b45780638462151c146105c95780638da5cb5b146105f657806393bae9491461061457600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104c05780635bbb2177146104e05780636352211e1461050d578063654abf201461052d57806365b244141461054c57806365cb98991461056c57600080fd5b80633ccfd60b1461041557806342842e0e1461042a57806342966c681461044a57806347af29111461046a57806349281f731461048057806351830227146104a057600080fd5b8063095ea7b311610250578063095ea7b31461035e5780630aead3111461037e57806318160ddd1461039e57806323b872dd146103c557806332cb6b0c146103e557806333bc1c5c146103fb57600080fd5b806301ffc9a71461028d5780630442bfa8146102c257806306fdde03146102e4578063081812fc14610306578063085a20e71461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461214e565b610828565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461216b565b61087a565b005b3480156102f057600080fd5b506102f96108b8565b6040516102b991906121e5565b34801561031257600080fd5b506103266103213660046121f8565b61094a565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e26103593660046121f8565b61098e565b34801561036a57600080fd5b506102e261037936600461222d565b6109bd565b34801561038a57600080fd5b506102e26103993660046121f8565b610a5d565b3480156103aa57600080fd5b5060015460005403600019015b6040519081526020016102b9565b3480156103d157600080fd5b506102e26103e0366004612257565b610a8c565b3480156103f157600080fd5b506103b76115b381565b34801561040757600080fd5b50600f546102ad9060ff1681565b34801561042157600080fd5b506102e2610c2f565b34801561043657600080fd5b506102e2610445366004612257565b610cb1565b34801561045657600080fd5b506102e26104653660046121f8565b610cd1565b34801561047657600080fd5b506103b7600c5481565b34801561048c57600080fd5b506102e261049b3660046121f8565b610cdc565b3480156104ac57600080fd5b50600f546102ad9062010000900460ff1681565b3480156104cc57600080fd5b506102e26104db366004612330565b610d60565b3480156104ec57600080fd5b506105006104fb366004612378565b610d9a565b6040516102b99190612459565b34801561051957600080fd5b506103266105283660046121f8565b610e67565b34801561053957600080fd5b50600f546102ad90610100900460ff1681565b34801561055857600080fd5b506102e26105673660046121f8565b610e72565b6102e261057a36600461249b565b610ea1565b34801561058b57600080fd5b506103b761059a366004612519565b611022565b3480156105ab57600080fd5b506102e2611070565b3480156105c057600080fd5b506102e26110a6565b3480156105d557600080fd5b506105e96105e4366004612519565b6110ed565b6040516102b99190612534565b34801561060257600080fd5b506008546001600160a01b0316610326565b6102e261062236600461249b565b6111f5565b34801561063357600080fd5b506102f961140f565b34801561064857600080fd5b506105e961065736600461256c565b61141e565b34801561066857600080fd5b506102e261067736600461259f565b6115a5565b34801561068857600080fd5b506102e261163a565b34801561069d57600080fd5b506102e26106ac3660046125db565b611677565b3480156106bd57600080fd5b506106d16106cc3660046121f8565b6116c1565b6040516102b99190612656565b3480156106ea57600080fd5b506102e26106f936600461222d565b611749565b34801561070a57600080fd5b506102f96107193660046121f8565b6117b7565b34801561072a57600080fd5b506103b760095481565b34801561074057600080fd5b506102e261074f366004612330565b6118e5565b34801561076057600080fd5b506103b7600d5481565b34801561077657600080fd5b506102e261191b565b34801561078b57600080fd5b506103b7600e5481565b3480156107a157600080fd5b506102ad6107b0366004612664565b611959565b3480156107c157600080fd5b506102e26107d03660046121f8565b611987565b6102e26107e33660046121f8565b6119b6565b3480156107f457600080fd5b506102e2610803366004612330565b611a9d565b34801561081457600080fd5b506102e2610823366004612519565b611ad3565b60006301ffc9a760e01b6001600160e01b03198316148061085957506380ac58cd60e01b6001600160e01b03198316145b806108745750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ad5760405162461bcd60e51b81526004016108a490612697565b60405180910390fd5b600d91909155600e55565b6060600280546108c7906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906126cc565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b600061095582611b6b565b610972576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109b85760405162461bcd60e51b81526004016108a490612697565b601155565b60006109c882610e67565b9050336001600160a01b03821614610a01576109e48133611959565b610a01576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a875760405162461bcd60e51b81526004016108a490612697565b601055565b6000610a9782611ba0565b9050836001600160a01b0316816001600160a01b031614610aca5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610af68187335b6001600160a01b039081169116811491141790565b610b2157610b048633611959565b610b2157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b4857604051633a954ecd60e21b815260040160405180910390fd5b8015610b5357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610be557600184016000818152600460205260408120549003610be3576000548114610be35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610c595760405162461bcd60e51b81526004016108a490612697565b604051600090339047908381818185875af1925050503d8060008114610c9b576040519150601f19603f3d011682016040523d82523d6000602084013e610ca0565b606091505b5050905080610cae57600080fd5b50565b610ccc83838360405180602001604052806000815250611677565b505050565b610cae816001611c0f565b6008546001600160a01b03163314610d065760405162461bcd60e51b81526004016108a490612697565b600054600019018110158015610d1e57506115b38111155b610d5b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420537570706c7960901b60448201526064016108a4565b600955565b6008546001600160a01b03163314610d8a5760405162461bcd60e51b81526004016108a490612697565b6014610d96828261274c565b5050565b80516060906000816001600160401b03811115610db957610db9612293565b604051908082528060200260200182016040528015610e0b57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610dd75790505b50905060005b828114610e5f57610e3a858281518110610e2d57610e2d61280b565b60200260200101516116c1565b828281518110610e4c57610e4c61280b565b6020908102919091010152600101610e11565b509392505050565b600061087482611ba0565b6008546001600160a01b03163314610e9c5760405162461bcd60e51b81526004016108a490612697565b600c55565b8181601154610f19838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120611d59565b610f5a5760405162461bcd60e51b81526020600482015260126024820152711059191c995cdcc8139bdd08131a5cdd195960721b60448201526064016108a4565b8560095481610f6c6000546000190190565b610f769190612837565b1115610f945760405162461bcd60e51b81526004016108a49061284f565b600c546000908152601260209081526040808320338452909152812080548991908390610fc2908490612837565b9250508190559050600b5481111561100e5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc10233932b29026b4b73a399760891b60448201526064016108a4565b6110183389611d6f565b5050505050505050565b60006001600160a01b03821661104b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461109a5760405162461bcd60e51b81526004016108a490612697565b6110a46000611e4f565b565b6008546001600160a01b031633146110d05760405162461bcd60e51b81526004016108a490612697565b600f805461ff001981166101009182900460ff1615909102179055565b606060008060006110fd85611022565b90506000816001600160401b0381111561111957611119612293565b604051908082528060200260200182016040528015611142578160200160208202803683370190505b50905061116f60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146111e95761118281611ea1565b915081604001516111e15781516001600160a01b0316156111a257815194505b876001600160a01b0316856001600160a01b0316036111e157808387806001019850815181106111d4576111d461280b565b6020026020010181815250505b600101611172565b50909695505050505050565b600f54610100900460ff1661124c5760405162461bcd60e51b815260206004820152601a60248201527f67756573744c6973742053616c65204e6f74205374617274656400000000000060448201526064016108a4565b81816010546112ad838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610efe565b6112ee5760405162461bcd60e51b81526020600482015260126024820152711059191c995cdcc8139bdd08131a5cdd195960721b60448201526064016108a4565b600e54866112fc8183612879565b34101561133f5760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742046756e647360781b60448201526064016108a4565b87600954816113516000546000190190565b61135b9190612837565b11156113795760405162461bcd60e51b81526004016108a49061284f565b600c546000908152601360209081526040808320338452909152812080548b919083906113a7908490612837565b9250508190559050600a548111156113f95760405162461bcd60e51b815260206004820152601560248201527426b0bc1023bab2b9ba102634b9ba1026b4b73a399760591b60448201526064016108a4565b611403338b611d6f565b50505050505050505050565b6060600380546108c7906126cc565b606081831061144057604051631960ccad60e11b815260040160405180910390fd5b60008061144c60005490565b9050600185101561145c57600194505b80841115611468578093505b600061147387611022565b905084861015611492578585038181101561148c578091505b50611496565b5060005b6000816001600160401b038111156114b0576114b0612293565b6040519080825280602002602001820160405280156114d9578160200160208202803683370190505b509050816000036114ef57935061159e92505050565b60006114fa886116c1565b90506000816040015161150b575080515b885b88811415801561151d5750848714155b156115925761152b81611ea1565b9250826040015161158a5782516001600160a01b03161561154b57825191505b8a6001600160a01b0316826001600160a01b03160361158a578084888060010199508151811061157d5761157d61280b565b6020026020010181815250505b60010161150d565b50505092835250909150505b9392505050565b336001600160a01b038316036115ce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116645760405162461bcd60e51b81526004016108a490612697565b600f805462ff0000191662010000179055565b611682848484610a8c565b6001600160a01b0383163b156116bb5761169e84848484611edd565b6116bb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061171a57506000548310155b156117255792915050565b61172e83611ea1565b90508060400151156117405792915050565b61159e83611fc9565b6008546001600160a01b031633146117735760405162461bcd60e51b81526004016108a490612697565b80600954816117856000546000190190565b61178f9190612837565b11156117ad5760405162461bcd60e51b81526004016108a49061284f565b610ccc8383611d6f565b60606117c282611b6b565b6117df57604051630a14c4b560e41b815260040160405180910390fd5b600f5462010000900460ff1615156000036118865760158054611801906126cc565b80601f016020809104026020016040519081016040528092919081815260200182805461182d906126cc565b801561187a5780601f1061184f5761010080835404028352916020019161187a565b820191906000526020600020905b81548152906001019060200180831161185d57829003601f168201915b50505050509050919050565b60148054611893906126cc565b90506000036118b15760405180602001604052806000815250610874565b60146118bc83611ffe565b60166040516020016118d09392919061290b565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461190f5760405162461bcd60e51b81526004016108a490612697565b6016610d96828261274c565b6008546001600160a01b031633146119455760405162461bcd60e51b81526004016108a490612697565b600f805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146119b15760405162461bcd60e51b81526004016108a490612697565b600a55565b600f5460ff16611a085760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65204e6f74205374617274656400000000000000000060448201526064016108a4565b600d5481611a168183612879565b341015611a595760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742046756e647360781b60448201526064016108a4565b8260095481611a6b6000546000190190565b611a759190612837565b1115611a935760405162461bcd60e51b81526004016108a49061284f565b6116bb3385611d6f565b6008546001600160a01b03163314611ac75760405162461bcd60e51b81526004016108a490612697565b6015610d96828261274c565b6008546001600160a01b03163314611afd5760405162461bcd60e51b81526004016108a490612697565b6001600160a01b038116611b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a4565b610cae81611e4f565b600081600111158015611b7f575060005482105b8015610874575050600090815260046020526040902054600160e01b161590565b60008180600111611bf657600054811015611bf65760008181526004602052604081205490600160e01b82169003611bf4575b8060000361159e575060001901600081815260046020526040902054611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611c1a83611ba0565b905080600080611c3886600090815260066020526040902080549091565b915091508415611c7857611c4d818433610ae1565b611c7857611c5b8333611959565b611c7857604051632ce44b5f60e11b815260040160405180910390fd5b8015611c8357600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611d1157600186016000818152600460205260408120549003611d0f576000548114611d0f5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600082611d66858461204d565b14949350505050565b6000546001600160a01b038316611d9857604051622e076360e81b815260040160405180910390fd5b81600003611db95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e035760005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610874906120f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f1290339089908890889060040161293e565b6020604051808303816000875af1925050508015611f4d575060408051601f3d908101601f19168201909252611f4a9181019061297b565b60015b611fab573d808015611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b508051600003611fa3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610874611ff983611ba0565b6120f1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561203b57600183039250600a81066030018353600a900461201d565b50819003601f19909101908152919050565b600081815b8451811015610e5f57600085828151811061206f5761206f61280b565b602002602001015190508083116120b15760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506120de565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120e981612998565b915050612052565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6001600160e01b031981168114610cae57600080fd5b60006020828403121561216057600080fd5b813561159e81612138565b6000806040838503121561217e57600080fd5b50508035926020909101359150565b60005b838110156121a8578181015183820152602001612190565b838111156116bb5750506000910152565b600081518084526121d181602086016020860161218d565b601f01601f19169290920160200192915050565b60208152600061159e60208301846121b9565b60006020828403121561220a57600080fd5b5035919050565b80356001600160a01b038116811461222857600080fd5b919050565b6000806040838503121561224057600080fd5b61224983612211565b946020939093013593505050565b60008060006060848603121561226c57600080fd5b61227584612211565b925061228360208501612211565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156122d1576122d1612293565b604052919050565b60006001600160401b038311156122f2576122f2612293565b612305601f8401601f19166020016122a9565b905082815283838301111561231957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561234257600080fd5b81356001600160401b0381111561235857600080fd5b8201601f8101841361236957600080fd5b611fc1848235602084016122d9565b6000602080838503121561238b57600080fd5b82356001600160401b03808211156123a257600080fd5b818501915085601f8301126123b657600080fd5b8135818111156123c8576123c8612293565b8060051b91506123d98483016122a9565b81815291830184019184810190888411156123f357600080fd5b938501935b83851015612411578435825293850193908501906123f8565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156111e95761248883855161241d565b9284019260809290920191600101612475565b6000806000604084860312156124b057600080fd5b8335925060208401356001600160401b03808211156124ce57600080fd5b818601915086601f8301126124e257600080fd5b8135818111156124f157600080fd5b8760208260051b850101111561250657600080fd5b6020830194508093505050509250925092565b60006020828403121561252b57600080fd5b61159e82612211565b6020808252825182820181905260009190848201906040850190845b818110156111e957835183529284019291840191600101612550565b60008060006060848603121561258157600080fd5b61258a84612211565b95602085013595506040909401359392505050565b600080604083850312156125b257600080fd5b6125bb83612211565b9150602083013580151581146125d057600080fd5b809150509250929050565b600080600080608085870312156125f157600080fd5b6125fa85612211565b935061260860208601612211565b92506040850135915060608501356001600160401b0381111561262a57600080fd5b8501601f8101871361263b57600080fd5b61264a878235602084016122d9565b91505092959194509250565b60808101610874828461241d565b6000806040838503121561267757600080fd5b61268083612211565b915061268e60208401612211565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ccc57600081815260208120601f850160051c8101602086101561272d5750805b601f850160051c820191505b81811015610c2757828155600101612739565b81516001600160401b0381111561276557612765612293565b6127798161277384546126cc565b84612706565b602080601f8311600181146127ae57600084156127965750858301515b600019600386901b1c1916600185901b178555610c27565b600085815260208120601f198616915b828110156127dd578886015182559484019460019091019084016127be565b50858210156127fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561284a5761284a612821565b500190565b60208082526010908201526f53757270617373657320537570706c7960801b604082015260600190565b600081600019048311821515161561289357612893612821565b500290565b600081546128a5816126cc565b600182811680156128bd57600181146128d257612901565b60ff1984168752821515830287019450612901565b8560005260208060002060005b858110156128f85781548a8201529084019082016128df565b50505082870194505b5050505092915050565b60006129178286612898565b845161292781836020890161218d565b61293381830186612898565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612971908301846121b9565b9695505050505050565b60006020828403121561298d57600080fd5b815161159e81612138565b6000600182016129aa576129aa612821565b506001019056fea26469706673582212208d91dca375339c0b09ac74d050fed06808bf3196dd8aeb4bcbf786c7c9f62aca64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a57686f6f70526f6f6d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f4f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5871567869546178414a457662523936444d6a56525564744d456a42413664697453534a616d5a66426e55422f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5256455541556b684779506d56344c706a3764665273374a617146754b656144577a425777533379576243380000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063c3a71999116100c1578063e3d955d31161007a578063e3d955d31461077f578063e985e9c514610795578063e9fe6850146107b5578063efd0cbf9146107d5578063f2c4ce1e146107e8578063f2fde38b1461080857600080fd5b8063c3a71999146106de578063c87b56dd146106fe578063cc5c095c1461071e578063da3ef23f14610734578063dc53fd9214610754578063e222c7f91461076a57600080fd5b806395d89b411161011357806395d89b411461062757806399a2557a1461063c578063a22cb4651461065c578063a475b5dd1461067c578063b88d4fde14610691578063c23dc68f146106b157600080fd5b806370a082311461057f578063715018a61461059f5780638446a16f146105b45780638462151c146105c95780638da5cb5b146105f657806393bae9491461061457600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104c05780635bbb2177146104e05780636352211e1461050d578063654abf201461052d57806365b244141461054c57806365cb98991461056c57600080fd5b80633ccfd60b1461041557806342842e0e1461042a57806342966c681461044a57806347af29111461046a57806349281f731461048057806351830227146104a057600080fd5b8063095ea7b311610250578063095ea7b31461035e5780630aead3111461037e57806318160ddd1461039e57806323b872dd146103c557806332cb6b0c146103e557806333bc1c5c146103fb57600080fd5b806301ffc9a71461028d5780630442bfa8146102c257806306fdde03146102e4578063081812fc14610306578063085a20e71461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461214e565b610828565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461216b565b61087a565b005b3480156102f057600080fd5b506102f96108b8565b6040516102b991906121e5565b34801561031257600080fd5b506103266103213660046121f8565b61094a565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e26103593660046121f8565b61098e565b34801561036a57600080fd5b506102e261037936600461222d565b6109bd565b34801561038a57600080fd5b506102e26103993660046121f8565b610a5d565b3480156103aa57600080fd5b5060015460005403600019015b6040519081526020016102b9565b3480156103d157600080fd5b506102e26103e0366004612257565b610a8c565b3480156103f157600080fd5b506103b76115b381565b34801561040757600080fd5b50600f546102ad9060ff1681565b34801561042157600080fd5b506102e2610c2f565b34801561043657600080fd5b506102e2610445366004612257565b610cb1565b34801561045657600080fd5b506102e26104653660046121f8565b610cd1565b34801561047657600080fd5b506103b7600c5481565b34801561048c57600080fd5b506102e261049b3660046121f8565b610cdc565b3480156104ac57600080fd5b50600f546102ad9062010000900460ff1681565b3480156104cc57600080fd5b506102e26104db366004612330565b610d60565b3480156104ec57600080fd5b506105006104fb366004612378565b610d9a565b6040516102b99190612459565b34801561051957600080fd5b506103266105283660046121f8565b610e67565b34801561053957600080fd5b50600f546102ad90610100900460ff1681565b34801561055857600080fd5b506102e26105673660046121f8565b610e72565b6102e261057a36600461249b565b610ea1565b34801561058b57600080fd5b506103b761059a366004612519565b611022565b3480156105ab57600080fd5b506102e2611070565b3480156105c057600080fd5b506102e26110a6565b3480156105d557600080fd5b506105e96105e4366004612519565b6110ed565b6040516102b99190612534565b34801561060257600080fd5b506008546001600160a01b0316610326565b6102e261062236600461249b565b6111f5565b34801561063357600080fd5b506102f961140f565b34801561064857600080fd5b506105e961065736600461256c565b61141e565b34801561066857600080fd5b506102e261067736600461259f565b6115a5565b34801561068857600080fd5b506102e261163a565b34801561069d57600080fd5b506102e26106ac3660046125db565b611677565b3480156106bd57600080fd5b506106d16106cc3660046121f8565b6116c1565b6040516102b99190612656565b3480156106ea57600080fd5b506102e26106f936600461222d565b611749565b34801561070a57600080fd5b506102f96107193660046121f8565b6117b7565b34801561072a57600080fd5b506103b760095481565b34801561074057600080fd5b506102e261074f366004612330565b6118e5565b34801561076057600080fd5b506103b7600d5481565b34801561077657600080fd5b506102e261191b565b34801561078b57600080fd5b506103b7600e5481565b3480156107a157600080fd5b506102ad6107b0366004612664565b611959565b3480156107c157600080fd5b506102e26107d03660046121f8565b611987565b6102e26107e33660046121f8565b6119b6565b3480156107f457600080fd5b506102e2610803366004612330565b611a9d565b34801561081457600080fd5b506102e2610823366004612519565b611ad3565b60006301ffc9a760e01b6001600160e01b03198316148061085957506380ac58cd60e01b6001600160e01b03198316145b806108745750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ad5760405162461bcd60e51b81526004016108a490612697565b60405180910390fd5b600d91909155600e55565b6060600280546108c7906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906126cc565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b600061095582611b6b565b610972576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109b85760405162461bcd60e51b81526004016108a490612697565b601155565b60006109c882610e67565b9050336001600160a01b03821614610a01576109e48133611959565b610a01576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a875760405162461bcd60e51b81526004016108a490612697565b601055565b6000610a9782611ba0565b9050836001600160a01b0316816001600160a01b031614610aca5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610af68187335b6001600160a01b039081169116811491141790565b610b2157610b048633611959565b610b2157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b4857604051633a954ecd60e21b815260040160405180910390fd5b8015610b5357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610be557600184016000818152600460205260408120549003610be3576000548114610be35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610c595760405162461bcd60e51b81526004016108a490612697565b604051600090339047908381818185875af1925050503d8060008114610c9b576040519150601f19603f3d011682016040523d82523d6000602084013e610ca0565b606091505b5050905080610cae57600080fd5b50565b610ccc83838360405180602001604052806000815250611677565b505050565b610cae816001611c0f565b6008546001600160a01b03163314610d065760405162461bcd60e51b81526004016108a490612697565b600054600019018110158015610d1e57506115b38111155b610d5b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420537570706c7960901b60448201526064016108a4565b600955565b6008546001600160a01b03163314610d8a5760405162461bcd60e51b81526004016108a490612697565b6014610d96828261274c565b5050565b80516060906000816001600160401b03811115610db957610db9612293565b604051908082528060200260200182016040528015610e0b57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610dd75790505b50905060005b828114610e5f57610e3a858281518110610e2d57610e2d61280b565b60200260200101516116c1565b828281518110610e4c57610e4c61280b565b6020908102919091010152600101610e11565b509392505050565b600061087482611ba0565b6008546001600160a01b03163314610e9c5760405162461bcd60e51b81526004016108a490612697565b600c55565b8181601154610f19838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120611d59565b610f5a5760405162461bcd60e51b81526020600482015260126024820152711059191c995cdcc8139bdd08131a5cdd195960721b60448201526064016108a4565b8560095481610f6c6000546000190190565b610f769190612837565b1115610f945760405162461bcd60e51b81526004016108a49061284f565b600c546000908152601260209081526040808320338452909152812080548991908390610fc2908490612837565b9250508190559050600b5481111561100e5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc10233932b29026b4b73a399760891b60448201526064016108a4565b6110183389611d6f565b5050505050505050565b60006001600160a01b03821661104b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461109a5760405162461bcd60e51b81526004016108a490612697565b6110a46000611e4f565b565b6008546001600160a01b031633146110d05760405162461bcd60e51b81526004016108a490612697565b600f805461ff001981166101009182900460ff1615909102179055565b606060008060006110fd85611022565b90506000816001600160401b0381111561111957611119612293565b604051908082528060200260200182016040528015611142578160200160208202803683370190505b50905061116f60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146111e95761118281611ea1565b915081604001516111e15781516001600160a01b0316156111a257815194505b876001600160a01b0316856001600160a01b0316036111e157808387806001019850815181106111d4576111d461280b565b6020026020010181815250505b600101611172565b50909695505050505050565b600f54610100900460ff1661124c5760405162461bcd60e51b815260206004820152601a60248201527f67756573744c6973742053616c65204e6f74205374617274656400000000000060448201526064016108a4565b81816010546112ad838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610efe565b6112ee5760405162461bcd60e51b81526020600482015260126024820152711059191c995cdcc8139bdd08131a5cdd195960721b60448201526064016108a4565b600e54866112fc8183612879565b34101561133f5760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742046756e647360781b60448201526064016108a4565b87600954816113516000546000190190565b61135b9190612837565b11156113795760405162461bcd60e51b81526004016108a49061284f565b600c546000908152601360209081526040808320338452909152812080548b919083906113a7908490612837565b9250508190559050600a548111156113f95760405162461bcd60e51b815260206004820152601560248201527426b0bc1023bab2b9ba102634b9ba1026b4b73a399760591b60448201526064016108a4565b611403338b611d6f565b50505050505050505050565b6060600380546108c7906126cc565b606081831061144057604051631960ccad60e11b815260040160405180910390fd5b60008061144c60005490565b9050600185101561145c57600194505b80841115611468578093505b600061147387611022565b905084861015611492578585038181101561148c578091505b50611496565b5060005b6000816001600160401b038111156114b0576114b0612293565b6040519080825280602002602001820160405280156114d9578160200160208202803683370190505b509050816000036114ef57935061159e92505050565b60006114fa886116c1565b90506000816040015161150b575080515b885b88811415801561151d5750848714155b156115925761152b81611ea1565b9250826040015161158a5782516001600160a01b03161561154b57825191505b8a6001600160a01b0316826001600160a01b03160361158a578084888060010199508151811061157d5761157d61280b565b6020026020010181815250505b60010161150d565b50505092835250909150505b9392505050565b336001600160a01b038316036115ce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116645760405162461bcd60e51b81526004016108a490612697565b600f805462ff0000191662010000179055565b611682848484610a8c565b6001600160a01b0383163b156116bb5761169e84848484611edd565b6116bb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061171a57506000548310155b156117255792915050565b61172e83611ea1565b90508060400151156117405792915050565b61159e83611fc9565b6008546001600160a01b031633146117735760405162461bcd60e51b81526004016108a490612697565b80600954816117856000546000190190565b61178f9190612837565b11156117ad5760405162461bcd60e51b81526004016108a49061284f565b610ccc8383611d6f565b60606117c282611b6b565b6117df57604051630a14c4b560e41b815260040160405180910390fd5b600f5462010000900460ff1615156000036118865760158054611801906126cc565b80601f016020809104026020016040519081016040528092919081815260200182805461182d906126cc565b801561187a5780601f1061184f5761010080835404028352916020019161187a565b820191906000526020600020905b81548152906001019060200180831161185d57829003601f168201915b50505050509050919050565b60148054611893906126cc565b90506000036118b15760405180602001604052806000815250610874565b60146118bc83611ffe565b60166040516020016118d09392919061290b565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461190f5760405162461bcd60e51b81526004016108a490612697565b6016610d96828261274c565b6008546001600160a01b031633146119455760405162461bcd60e51b81526004016108a490612697565b600f805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146119b15760405162461bcd60e51b81526004016108a490612697565b600a55565b600f5460ff16611a085760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65204e6f74205374617274656400000000000000000060448201526064016108a4565b600d5481611a168183612879565b341015611a595760405162461bcd60e51b8152602060048201526011602482015270496e737566666963656e742046756e647360781b60448201526064016108a4565b8260095481611a6b6000546000190190565b611a759190612837565b1115611a935760405162461bcd60e51b81526004016108a49061284f565b6116bb3385611d6f565b6008546001600160a01b03163314611ac75760405162461bcd60e51b81526004016108a490612697565b6015610d96828261274c565b6008546001600160a01b03163314611afd5760405162461bcd60e51b81526004016108a490612697565b6001600160a01b038116611b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a4565b610cae81611e4f565b600081600111158015611b7f575060005482105b8015610874575050600090815260046020526040902054600160e01b161590565b60008180600111611bf657600054811015611bf65760008181526004602052604081205490600160e01b82169003611bf4575b8060000361159e575060001901600081815260046020526040902054611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611c1a83611ba0565b905080600080611c3886600090815260066020526040902080549091565b915091508415611c7857611c4d818433610ae1565b611c7857611c5b8333611959565b611c7857604051632ce44b5f60e11b815260040160405180910390fd5b8015611c8357600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611d1157600186016000818152600460205260408120549003611d0f576000548114611d0f5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600082611d66858461204d565b14949350505050565b6000546001600160a01b038316611d9857604051622e076360e81b815260040160405180910390fd5b81600003611db95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e035760005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610874906120f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f1290339089908890889060040161293e565b6020604051808303816000875af1925050508015611f4d575060408051601f3d908101601f19168201909252611f4a9181019061297b565b60015b611fab573d808015611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b508051600003611fa3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610874611ff983611ba0565b6120f1565b604080516080810191829052607f0190826030600a8206018353600a90045b801561203b57600183039250600a81066030018353600a900461201d565b50819003601f19909101908152919050565b600081815b8451811015610e5f57600085828151811061206f5761206f61280b565b602002602001015190508083116120b15760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506120de565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120e981612998565b915050612052565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6001600160e01b031981168114610cae57600080fd5b60006020828403121561216057600080fd5b813561159e81612138565b6000806040838503121561217e57600080fd5b50508035926020909101359150565b60005b838110156121a8578181015183820152602001612190565b838111156116bb5750506000910152565b600081518084526121d181602086016020860161218d565b601f01601f19169290920160200192915050565b60208152600061159e60208301846121b9565b60006020828403121561220a57600080fd5b5035919050565b80356001600160a01b038116811461222857600080fd5b919050565b6000806040838503121561224057600080fd5b61224983612211565b946020939093013593505050565b60008060006060848603121561226c57600080fd5b61227584612211565b925061228360208501612211565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156122d1576122d1612293565b604052919050565b60006001600160401b038311156122f2576122f2612293565b612305601f8401601f19166020016122a9565b905082815283838301111561231957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561234257600080fd5b81356001600160401b0381111561235857600080fd5b8201601f8101841361236957600080fd5b611fc1848235602084016122d9565b6000602080838503121561238b57600080fd5b82356001600160401b03808211156123a257600080fd5b818501915085601f8301126123b657600080fd5b8135818111156123c8576123c8612293565b8060051b91506123d98483016122a9565b81815291830184019184810190888411156123f357600080fd5b938501935b83851015612411578435825293850193908501906123f8565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156111e95761248883855161241d565b9284019260809290920191600101612475565b6000806000604084860312156124b057600080fd5b8335925060208401356001600160401b03808211156124ce57600080fd5b818601915086601f8301126124e257600080fd5b8135818111156124f157600080fd5b8760208260051b850101111561250657600080fd5b6020830194508093505050509250925092565b60006020828403121561252b57600080fd5b61159e82612211565b6020808252825182820181905260009190848201906040850190845b818110156111e957835183529284019291840191600101612550565b60008060006060848603121561258157600080fd5b61258a84612211565b95602085013595506040909401359392505050565b600080604083850312156125b257600080fd5b6125bb83612211565b9150602083013580151581146125d057600080fd5b809150509250929050565b600080600080608085870312156125f157600080fd5b6125fa85612211565b935061260860208601612211565b92506040850135915060608501356001600160401b0381111561262a57600080fd5b8501601f8101871361263b57600080fd5b61264a878235602084016122d9565b91505092959194509250565b60808101610874828461241d565b6000806040838503121561267757600080fd5b61268083612211565b915061268e60208401612211565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ccc57600081815260208120601f850160051c8101602086101561272d5750805b601f850160051c820191505b81811015610c2757828155600101612739565b81516001600160401b0381111561276557612765612293565b6127798161277384546126cc565b84612706565b602080601f8311600181146127ae57600084156127965750858301515b600019600386901b1c1916600185901b178555610c27565b600085815260208120601f198616915b828110156127dd578886015182559484019460019091019084016127be565b50858210156127fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561284a5761284a612821565b500190565b60208082526010908201526f53757270617373657320537570706c7960801b604082015260600190565b600081600019048311821515161561289357612893612821565b500290565b600081546128a5816126cc565b600182811680156128bd57600181146128d257612901565b60ff1984168752821515830287019450612901565b8560005260208060002060005b858110156128f85781548a8201529084019082016128df565b50505082870194505b5050505092915050565b60006129178286612898565b845161292781836020890161218d565b61293381830186612898565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612971908301846121b9565b9695505050505050565b60006020828403121561298d57600080fd5b815161159e81612138565b6000600182016129aa576129aa612821565b506001019056fea26469706673582212208d91dca375339c0b09ac74d050fed06808bf3196dd8aeb4bcbf786c7c9f62aca64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a57686f6f70526f6f6d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f4f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5871567869546178414a457662523936444d6a56525564744d456a42413664697453534a616d5a66426e55422f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5256455541556b684779506d56344c706a3764665273374a617146754b656144577a425777533379576243380000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): WhoopRooms
Arg [1] : _symbol (string): ROOM
Arg [2] : _initBaseURI (string): ipfs://QmXqVxiTaxAJEvbR96DMjVRUdtMEjBA6ditSSJamZfBnUB/
Arg [3] : _initNotRevealedUri (string): ipfs://QmRVEUAUkhGyPmV4Lpj7dfRs7JaqFuKeaDWzBWwS3yWbC8

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 57686f6f70526f6f6d7300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 524f4f4d00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5871567869546178414a457662523936444d6a56525564
Arg [10] : 744d456a42413664697453534a616d5a66426e55422f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d5256455541556b684779506d56344c706a376466527337
Arg [13] : 4a617146754b656144577a425777533379576243380000000000000000000000


Deployed Bytecode Sourcemap

1314:7509:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5821:615:2;;;;;;;;;;-1:-1:-1;5821:615:2;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;5821:615:2;;;;;;;;6102:203:10;;;;;;;;;;-1:-1:-1;6102:203:10;;;;;:::i;:::-;;:::i;:::-;;11468:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13414:204::-;;;;;;;;;;-1:-1:-1;13414:204:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1945:32:11;;;1927:51;;1915:2;1900:18;13414:204:2;1781:203:11;4099:118:10;;;;;;;;;;-1:-1:-1;4099:118:10;;;;;:::i;:::-;;:::i;12962:386:2:-;;;;;;;;;;-1:-1:-1;12962:386:2;;;;;:::i;:::-;;:::i;3836:122:10:-;;;;;;;;;;-1:-1:-1;3836:122:10;;;;;:::i;:::-;;:::i;4875:315:2:-;;;;;;;;;;-1:-1:-1;8561:1:10;5141:12:2;4928:7;5125:13;:28;-1:-1:-1;;5125:46:2;4875:315;;;2757:25:11;;;2745:2;2730:18;4875:315:2;2611:177:11;22679:2800:2;;;;;;;;;;-1:-1:-1;22679:2800:2;;;;;:::i;:::-;;:::i;1382:41:10:-;;;;;;;;;;;;1419:4;1382:41;;1703:30;;;;;;;;;;-1:-1:-1;1703:30:10;;;;;;;;8634:186;;;;;;;;;;;;;:::i;14304:185:2:-;;;;;;;;;;-1:-1:-1;14304:185:2;;;;;:::i;:::-;;:::i;533:94:3:-;;;;;;;;;;-1:-1:-1;533:94:3;;;;;:::i;:::-;;:::i;1561:28:10:-;;;;;;;;;;;;;;;;6714:227;;;;;;;;;;-1:-1:-1;6714:227:10;;;;;:::i;:::-;;:::i;1780:28::-;;;;;;;;;;-1:-1:-1;1780:28:10;;;;;;;;;;;7292:100;;;;;;;;;;-1:-1:-1;7292:100:10;;;;;:::i;:::-;;:::i;1705:468:4:-;;;;;;;;;;-1:-1:-1;1705:468:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11257:144:2:-;;;;;;;;;;-1:-1:-1;11257:144:2;;;;;:::i;:::-;;:::i;1740:33:10:-;;;;;;;;;;-1:-1:-1;1740:33:10;;;;;;;;;;;7002:92;;;;;;;;;;-1:-1:-1;7002:92:10;;;;;:::i;:::-;;:::i;4856:396::-;;;;;;:::i;:::-;;:::i;6500:224:2:-;;;;;;;;;;-1:-1:-1;6500:224:2;;;;;:::i;:::-;;:::i;1714:103:9:-;;;;;;;;;;;;;:::i;2773:99:10:-;;;;;;;;;;;;;:::i;5517:892:4:-;;;;;;;;;;-1:-1:-1;5517:892:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1063:87:9:-;;;;;;;;;;-1:-1:-1;1136:6:9;;-1:-1:-1;;;;;1136:6:9;1063:87;;4345:503:10;;;;;;:::i;:::-;;:::i;11637:104:2:-;;;;;;;;;;;;;:::i;2563:2505:4:-;;;;;;;;;;-1:-1:-1;2563:2505:4;;;;;:::i;:::-;;:::i;13690:308:2:-;;;;;;;;;;-1:-1:-1;13690:308:2;;;;;:::i;:::-;;:::i;7102:69:10:-;;;;;;;;;;;;;:::i;14560:399:2:-;;;;;;;;;;-1:-1:-1;14560:399:2;;;;;:::i;:::-;;:::i;1126:420:4:-;;;;;;;;;;-1:-1:-1;1126:420:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5729:183:10:-;;;;;;;;;;-1:-1:-1;5729:183:10;;;;;:::i;:::-;;:::i;7872:527::-;;;;;;;;;;-1:-1:-1;7872:527:10;;;;;:::i;:::-;;:::i;1430:42::-;;;;;;;;;;;;;;;;7713:151;;;;;;;;;;-1:-1:-1;7713:151:10;;;;;:::i;:::-;;:::i;1598:43::-;;;;;;;;;;;;;;;;2502:90;;;;;;;;;;;;;:::i;1648:46::-;;;;;;;;;;;;;;;;14069:164:2;;;;;;;;;;-1:-1:-1;14069:164:2;;;;;:::i;:::-;;:::i;6441:124:10:-;;;;;;;;;;-1:-1:-1;6441:124:10;;;;;:::i;:::-;;:::i;3095:245::-;;;;;;:::i;:::-;;:::i;7400:126::-;;;;;;;;;;-1:-1:-1;7400:126:10;;;;;:::i;:::-;;:::i;1972:201:9:-;;;;;;;;;;-1:-1:-1;1972:201:9;;;;;:::i;:::-;;:::i;5821:615:2:-;5906:4;-1:-1:-1;;;;;;;;;6206:25:2;;;;:102;;-1:-1:-1;;;;;;;;;;6283:25:2;;;6206:102;:179;;;-1:-1:-1;;;;;;;;;;6360:25:2;;;6206:179;6186:199;5821:615;-1:-1:-1;;5821:615:2:o;6102:203:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;;;;;;;;;6222:15:10::1;:29:::0;;;;6262:18:::1;:35:::0;6102:203::o;11468:100:2:-;11522:13;11555:5;11548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11468:100;:::o;13414:204::-;13482:7;13507:16;13515:7;13507;:16::i;:::-;13502:64;;13532:34;;-1:-1:-1;;;13532:34:2;;;;;;;;;;;13502:64;-1:-1:-1;13586:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;13586:24:2;;13414:204::o;4099:118:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;4179:17:10::1;:30:::0;4099:118::o;12962:386:2:-;13035:13;13051:16;13059:7;13051;:16::i;:::-;13035:32;-1:-1:-1;736:10:1;-1:-1:-1;;;;;13084:28:2;;;13080:175;;13132:44;13149:5;736:10:1;14069:164:2;:::i;13132:44::-;13127:128;;13204:35;;-1:-1:-1;;;13204:35:2;;;;;;;;;;;13127:128;13267:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;13267:29:2;-1:-1:-1;;;;;13267:29:2;;;;;;;;;13312:28;;13267:24;;13312:28;;;;;;;13024:324;12962:386;;:::o;3836:122:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;3918:19:10::1;:32:::0;3836:122::o;22679:2800:2:-;22813:27;22843;22862:7;22843:18;:27::i;:::-;22813:57;;22928:4;-1:-1:-1;;;;;22887:45:2;22903:19;-1:-1:-1;;;;;22887:45:2;;22883:86;;22941:28;;-1:-1:-1;;;22941:28:2;;;;;;;;;;;22883:86;22983:27;21409:21;;;21236:15;21451:4;21444:36;21533:4;21517:21;;21623:26;;23167:62;21623:26;23203:4;736:10:1;23209:19:2;-1:-1:-1;;;;;22228:31:2;;;22074:26;;22355:19;;22376:30;;22352:55;;21780:645;23167:62;23162:174;;23249:43;23266:4;736:10:1;14069:164:2;:::i;23249:43::-;23244:92;;23301:35;;-1:-1:-1;;;23301:35:2;;;;;;;;;;;23244:92;-1:-1:-1;;;;;23353:16:2;;23349:52;;23378:23;;-1:-1:-1;;;23378:23:2;;;;;;;;;;;23349:52;23550:15;23547:160;;;23690:1;23669:19;23662:30;23547:160;-1:-1:-1;;;;;24085:24:2;;;;;;;:18;:24;;;;;;24083:26;;-1:-1:-1;;24083:26:2;;;24154:22;;;;;;;;;24152:24;;-1:-1:-1;24152:24:2;;;11156:11;11132:22;11128:40;11115:62;-1:-1:-1;;;11115:62:2;24447:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;24741:46:2;;:51;;24737:626;;24845:1;24835:11;;24813:19;24968:30;;;:17;:30;;;;;;:35;;24964:384;;25106:13;;25091:11;:28;25087:242;;25253:30;;;;:17;:30;;;;;:52;;;25087:242;24794:569;24737:626;25410:7;25406:2;-1:-1:-1;;;;;25391:27:2;25400:4;-1:-1:-1;;;;;25391:27:2;;;;;;;;;;;25429:42;22802:2677;;;22679:2800;;;:::o;8634:186:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;8703:82:10::1;::::0;8685:12:::1;::::0;8711:10:::1;::::0;8749:21:::1;::::0;8685:12;8703:82;8685:12;8703:82;8749:21;8711:10;8703:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8684:101;;;8804:7;8796:16;;;::::0;::::1;;8673:147;8634:186::o:0;14304:185:2:-;14442:39;14459:4;14465:2;14469:7;14442:39;;;;;;;;;;;;:16;:39::i;:::-;14304:185;;;:::o;533:94:3:-;599:20;605:7;614:4;599:5;:20::i;6714:227:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;5335:7:2;5523:13;-1:-1:-1;;5523:31:2;6809:6:10::1;:24;;:48;;;;;1419:4;6837:6;:20;;6809:48;6787:112;;;::::0;-1:-1:-1;;;6787:112:10;;11003:2:11;6787:112:10::1;::::0;::::1;10985:21:11::0;11042:2;11022:18;;;11015:30;-1:-1:-1;;;11061:18:11;;;11054:44;11115:18;;6787:112:10::1;10801:338:11::0;6787:112:10::1;6910:14;:23:::0;6714:227::o;7292:100::-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;7366:7:10::1;:18;7376:8:::0;7366:7;:18:::1;:::i;:::-;;7292:100:::0;:::o;1705:468:4:-;1880:15;;1794:23;;1855:22;1880:15;-1:-1:-1;;;;;1947:36:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1947:36:4;;-1:-1:-1;;1947:36:4;;;;;;;;;;;;1910:73;;2003:9;1998:125;2019:14;2014:1;:19;1998:125;;2075:32;2095:8;2104:1;2095:11;;;;;;;;:::i;:::-;;;;;;;2075:19;:32::i;:::-;2059:10;2070:1;2059:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;2035:3;;1998:125;;;-1:-1:-1;2144:10:4;1705:468;-1:-1:-1;;;1705:468:4:o;11257:144:2:-;11321:7;11364:27;11383:7;11364:18;:27::i;7002:92:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;7069:9:10::1;:17:::0;7002:92::o;4856:396::-;4985:11;;4998:17;;5368:144;5405:11;;5368:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5468:28:10;;-1:-1:-1;;5485:10:10;13629:2:11;13625:15;13621:53;5468:28:10;;;13609:66:11;5435:4:10;;-1:-1:-1;13691:12:11;;;-1:-1:-1;5468:28:10;;;;;;;;;;;;;5458:39;;;;;;5368:18;:144::i;:::-;5346:212;;;;-1:-1:-1;;;5346:212:10;;13916:2:11;5346:212:10;;;13898:21:11;13955:2;13935:18;;;13928:30;-1:-1:-1;;;13974:18:11;;;13967:48;14032:18;;5346:212:10;13714:342:11;5346:212:10;5047:8:::1;3615:14;;3603:8;3586:14;5335:7:2::0;5523:13;-1:-1:-1;;5523:31:2;;5288:285;3586:14:10::1;:25;;;;:::i;:::-;:43;;3564:109;;;;-1:-1:-1::0;;;3564:109:10::1;;;;;;;:::i;:::-;5107:9:::2;::::0;5073:17:::2;5094:23:::0;;;:12:::2;:23;::::0;;;;;;;5118:10:::2;5094:35:::0;;;;;;;:47;;5133:8;;5094:35;5073:17;;5094:47:::2;::::0;5133:8;;5094:47:::2;:::i;:::-;;;;;;;5073:69;;5175:10;;5162:9;:23;;5153:53;;;::::0;-1:-1:-1;;;5153:53:10;;14873:2:11;5153:53:10::2;::::0;::::2;14855:21:11::0;14912:2;14892:18;;;14885:30;-1:-1:-1;;;14931:18:11;;;14924:45;14986:18;;5153:53:10::2;14671:339:11::0;5153:53:10::2;5217:27;5223:10;5235:8;5217:5;:27::i;:::-;5062:190;5569:1:::1;4856:396:::0;;;;;;:::o;6500:224:2:-;6564:7;-1:-1:-1;;;;;6588:19:2;;6584:60;;6616:28;;-1:-1:-1;;;6616:28:2;;;;;;;;;;;6584:60;-1:-1:-1;;;;;;6662:25:2;;;;;:18;:25;;;;;;-1:-1:-1;;;;;6662:54:2;;6500:224::o;1714:103:9:-;1136:6;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2773:99:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;2851:13:10::1;::::0;;-1:-1:-1;;2834:30:10;::::1;2851:13;::::0;;;::::1;;;2850:14;2834:30:::0;;::::1;;::::0;;2773:99::o;5517:892:4:-;5587:16;5641:19;5675:25;5715:22;5740:16;5750:5;5740:9;:16::i;:::-;5715:41;;5771:25;5813:14;-1:-1:-1;;;;;5799:29:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5799:29:4;;5771:57;;5843:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5843:31:4;8561:1:10;5889:472:4;5938:14;5923:11;:29;5889:472;;5990:15;6003:1;5990:12;:15::i;:::-;5978:27;;6028:9;:16;;;6069:8;6024:73;6119:14;;-1:-1:-1;;;;;6119:28:4;;6115:111;;6192:14;;;-1:-1:-1;6115:111:4;6269:5;-1:-1:-1;;;;;6248:26:4;:17;-1:-1:-1;;;;;6248:26:4;;6244:102;;6325:1;6299:8;6308:13;;;;;;6299:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6244:102;5954:3;;5889:472;;;-1:-1:-1;6382:8:4;;5517:892;-1:-1:-1;;;;;;5517:892:4:o;4345:503:10:-;2930:13;;;;;;;2922:52;;;;-1:-1:-1;;;2922:52:10;;15217:2:11;2922:52:10;;;15199:21:11;15256:2;15236:18;;;15229:30;15295:28;15275:18;;;15268:56;15341:18;;2922:52:10;15015:350:11;2922:52:10;4509:11:::1;;4522:19;;5368:144;5405:11;;5368:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;5468:28:10::1;::::0;-1:-1:-1;;5485:10:10::1;13629:2:11::0;13625:15;13621:53;5468:28:10::1;::::0;::::1;13609:66:11::0;5435:4:10;;-1:-1:-1;13691:12:11;;;-1:-1:-1;5468:28:10::1;13480:229:11::0;5368:144:10::1;5346:212;;;::::0;-1:-1:-1;;;5346:212:10;;13916:2:11;5346:212:10::1;::::0;::::1;13898:21:11::0;13955:2;13935:18;;;13928:30;-1:-1:-1;;;13974:18:11;;;13967:48;14032:18;;5346:212:10::1;13714:342:11::0;5346:212:10::1;4569:18:::2;::::0;4589:8;3439:16:::2;4589:8:::0;4569:18;3439:16:::2;:::i;:::-;3426:9;:29;;3418:59;;;::::0;-1:-1:-1;;;3418:59:10;;15745:2:11;3418:59:10::2;::::0;::::2;15727:21:11::0;15784:2;15764:18;;;15757:30;-1:-1:-1;;;15803:18:11;;;15796:47;15860:18;;3418:59:10::2;15543:341:11::0;3418:59:10::2;4629:8:::3;3615:14;;3603:8;3586:14;5335:7:2::0;5523:13;-1:-1:-1;;5523:31:2;;5288:285;3586:14:10::3;:25;;;;:::i;:::-;:43;;3564:109;;;;-1:-1:-1::0;;;3564:109:10::3;;;;;;;:::i;:::-;4691:9:::4;::::0;4655:17:::4;4676:25:::0;;;:14:::4;:25;::::0;;;;;;;4702:10:::4;4676:37:::0;;;;;;;:49;;4717:8;;4676:37;4655:17;;4676:49:::4;::::0;4717:8;;4676:49:::4;:::i;:::-;;;;;;;4655:71;;4759:16;;4746:9;:29;;4737:65;;;::::0;-1:-1:-1;;;4737:65:10;;16091:2:11;4737:65:10::4;::::0;::::4;16073:21:11::0;16130:2;16110:18;;;16103:30;-1:-1:-1;;;16149:18:11;;;16142:51;16210:18;;4737:65:10::4;15889:345:11::0;4737:65:10::4;4813:27;4819:10;4831:8;4813:5;:27::i;:::-;4644:204;3488:1:::3;5569::::2;;2985::::1;;;4345:503:::0;;;:::o;11637:104:2:-;11693:13;11726:7;11719:14;;;;;:::i;2563:2505:4:-;2698:16;2765:4;2756:5;:13;2752:45;;2778:19;;-1:-1:-1;;;2778:19:4;;;;;;;;;;;2752:45;2812:19;2846:17;2866:14;4617:7:2;4644:13;;4570:95;2866:14:4;2846:34;-1:-1:-1;8561:1:10;2958:5:4;:23;2954:87;;;8561:1:10;3002:23:4;;2954:87;3117:9;3110:4;:16;3106:73;;;3154:9;3147:16;;3106:73;3193:25;3221:16;3231:5;3221:9;:16::i;:::-;3193:44;;3415:4;3407:5;:12;3403:278;;;3462:12;;;3497:31;;;3493:111;;;3573:11;3553:31;;3493:111;3421:198;3403:278;;;-1:-1:-1;3664:1:4;3403:278;3695:25;3737:17;-1:-1:-1;;;;;3723:32:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3723:32:4;;3695:60;;3774:17;3795:1;3774:22;3770:78;;3824:8;-1:-1:-1;3817:15:4;;-1:-1:-1;;;3817:15:4;3770:78;3992:31;4026:26;4046:5;4026:19;:26::i;:::-;3992:60;;4067:25;4312:9;:16;;;4307:92;;-1:-1:-1;4369:14:4;;4307:92;4430:5;4413:478;4442:4;4437:1;:9;;:45;;;;;4465:17;4450:11;:32;;4437:45;4413:478;;;4520:15;4533:1;4520:12;:15::i;:::-;4508:27;;4558:9;:16;;;4599:8;4554:73;4649:14;;-1:-1:-1;;;;;4649:28:4;;4645:111;;4722:14;;;-1:-1:-1;4645:111:4;4799:5;-1:-1:-1;;;;;4778:26:4;:17;-1:-1:-1;;;;;4778:26:4;;4774:102;;4855:1;4829:8;4838:13;;;;;;4829:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4774:102;4484:3;;4413:478;;;-1:-1:-1;;;4976:29:4;;;-1:-1:-1;4983:8:4;;-1:-1:-1;;2563:2505:4;;;;;;:::o;13690:308:2:-;736:10:1;-1:-1:-1;;;;;13789:31:2;;;13785:61;;13829:17;;-1:-1:-1;;;13829:17:2;;;;;;;;;;;13785:61;736:10:1;13859:39:2;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13859:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;13859:60:2;;;;;;;;;;13935:55;;540:41:11;;;13859:49:2;;736:10:1;13935:55:2;;513:18:11;13935:55:2;;;;;;;13690:308;;:::o;7102:69:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;7148:8:10::1;:15:::0;;-1:-1:-1;;7148:15:10::1;::::0;::::1;::::0;;7102:69::o;14560:399:2:-;14727:31;14740:4;14746:2;14750:7;14727:12;:31::i;:::-;-1:-1:-1;;;;;14773:14:2;;;:19;14769:183;;14812:56;14843:4;14849:2;14853:7;14862:5;14812:30;:56::i;:::-;14807:145;;14896:40;;-1:-1:-1;;;14896:40:2;;;;;;;;;;;14807:145;14560:399;;;;:::o;1126:420:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8561:1:10;1282:7:4;:25;:54;;;-1:-1:-1;4617:7:2;4644:13;1311:7:4;:25;;1282:54;1278:103;;;1360:9;1126:420;-1:-1:-1;;1126:420:4:o;1278:103::-;1403:21;1416:7;1403:12;:21::i;:::-;1391:33;;1439:9;:16;;;1435:65;;;1479:9;1126:420;-1:-1:-1;;1126:420:4:o;1435:65::-;1517:21;1530:7;1517:12;:21::i;5729:183:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;5852:8:10::1;3615:14;;3603:8;3586:14;5335:7:2::0;5523:13;-1:-1:-1;;5523:31:2;;5288:285;3586:14:10::1;:25;;;;:::i;:::-;:43;;3564:109;;;;-1:-1:-1::0;;;3564:109:10::1;;;;;;;:::i;:::-;5878:26:::2;5884:9;5895:8;5878:5;:26::i;7872:527::-:0;8009:13;8045:16;8053:7;8045;:16::i;:::-;8040:59;;8070:29;;-1:-1:-1;;;8070:29:10;;;;;;;;;;;8040:59;8116:8;;;;;;;:17;;8128:5;8116:17;8112:71;;8157:14;8150:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7872:527;;;:::o;8112:71::-;8221:7;8215:21;;;;;:::i;:::-;;;8240:1;8215:26;:176;;;;;;;;;;;;;;;;;8307:7;8316:18;8326:7;8316:9;:18::i;:::-;8336:13;8290:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8195:196;7872:527;-1:-1:-1;;7872:527:10:o;7713:151::-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;7823:13:10::1;:33;7839:17:::0;7823:13;:33:::1;:::i;2502:90::-:0;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;2574:10:10::1;::::0;;-1:-1:-1;;2560:24:10;::::1;2574:10;::::0;;::::1;2573:11;2560:24;::::0;;2502:90::o;14069:164:2:-;-1:-1:-1;;;;;14190:25:2;;;14166:4;14190:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;14069:164::o;6441:124:10:-;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;6524:16:10::1;:33:::0;6441:124::o;3095:245::-;2647:10;;;;2639:46;;;;-1:-1:-1;;;2639:46:10;;17629:2:11;2639:46:10;;;17611:21:11;17668:2;17648:18;;;17641:30;17707:25;17687:18;;;17680:53;17750:18;;2639:46:10;17427:347:11;2639:46:10;3219:15:::1;::::0;3236:9;3439:16:::1;3236:9:::0;3219:15;3439:16:::1;:::i;:::-;3426:9;:29;;3418:59;;;::::0;-1:-1:-1;;;3418:59:10;;15745:2:11;3418:59:10::1;::::0;::::1;15727:21:11::0;15784:2;15764:18;;;15757:30;-1:-1:-1;;;15803:18:11;;;15796:47;15860:18;;3418:59:10::1;15543:341:11::0;3418:59:10::1;3277:9:::2;3615:14;;3603:8;3586:14;5335:7:2::0;5523:13;-1:-1:-1;;5523:31:2;;5288:285;3586:14:10::2;:25;;;;:::i;:::-;:43;;3564:109;;;;-1:-1:-1::0;;;3564:109:10::2;;;;;;;:::i;:::-;3304:28:::3;3310:10;3322:9;3304:5;:28::i;7400:126::-:0;1136:6:9;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;7486:14:10::1;:32;7503:15:::0;7486:14;:32:::1;:::i;1972:201:9:-:0;1136:6;;-1:-1:-1;;;;;1136:6:9;736:10:1;1283:23:9;1275:68;;;;-1:-1:-1;;;1275:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:9;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:9;;17981:2:11;2053:73:9::1;::::0;::::1;17963:21:11::0;18020:2;18000:18;;;17993:30;18059:34;18039:18;;;18032:62;-1:-1:-1;;;18110:18:11;;;18103:36;18156:19;;2053:73:9::1;17779:402:11::0;2053:73:9::1;2137:28;2156:8;2137:18;:28::i;15214:273:2:-:0;15271:4;15327:7;8561:1:10;15308:26:2;;:66;;;;;15361:13;;15351:7;:23;15308:66;:152;;;;-1:-1:-1;;15412:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;15412:43:2;:48;;15214:273::o;8174:1129::-;8241:7;8276;;8561:1:10;8325:23:2;8321:915;;8378:13;;8371:4;:20;8367:869;;;8416:14;8433:23;;;:17;:23;;;;;;;-1:-1:-1;;;8522:23:2;;:28;;8518:699;;9041:113;9048:6;9058:1;9048:11;9041:113;;-1:-1:-1;;;9119:6:2;9101:25;;;;:17;:25;;;;;;9041:113;;8518:699;8393:843;8367:869;9264:31;;-1:-1:-1;;;9264:31:2;;;;;;;;;;;25875:3063;25955:27;25985;26004:7;25985:18;:27::i;:::-;25955:57;-1:-1:-1;25955:57:2;26025:12;;26147:28;26167:7;21110:27;21409:21;;;21236:15;21451:4;21444:36;21533:4;21517:21;;21623:26;;21517:21;;21015:652;26147:28;26090:85;;;;26192:13;26188:310;;;26313:62;26332:15;26349:4;736:10:1;26355:19:2;656:98:1;26313:62:2;26308:178;;26399:43;26416:4;736:10:1;14069:164:2;:::i;26399:43::-;26394:92;;26451:35;;-1:-1:-1;;;26451:35:2;;;;;;;;;;;26394:92;26654:15;26651:160;;;26794:1;26773:19;26766:30;26651:160;-1:-1:-1;;;;;27412:24:2;;;;;;:18;:24;;;;;:59;;27440:31;27412:59;;;11156:11;11132:22;11128:40;11115:62;-1:-1:-1;;;11115:62:2;27709:26;;;;:17;:26;;;;;:203;;;;-1:-1:-1;;;28032:46:2;;:51;;28028:626;;28136:1;28126:11;;28104:19;28259:30;;;:17;:30;;;;;;:35;;28255:384;;28397:13;;28382:11;:28;28378:242;;28544:30;;;;:17;:30;;;;;:52;;;28378:242;28085:569;28028:626;28682:35;;28709:7;;28705:1;;-1:-1:-1;;;;;28682:35:2;;;;;28705:1;;28682:35;-1:-1:-1;;28905:12:2;:14;;;;;;-1:-1:-1;;;;25875:3063:2:o;868:190:8:-;993:4;1046;1017:25;1030:5;1037:4;1017:12;:25::i;:::-;:33;;868:190;-1:-1:-1;;;;868:190:8:o;17045:1529:2:-;17110:20;17133:13;-1:-1:-1;;;;;17161:16:2;;17157:48;;17186:19;;-1:-1:-1;;;17186:19:2;;;;;;;;;;;17157:48;17220:8;17232:1;17220:13;17216:44;;17242:18;;-1:-1:-1;;;17242:18:2;;;;;;;;;;;17216:44;-1:-1:-1;;;;;17748:22:2;;;;;;:18;:22;;1192:2;17748:22;;:70;;17786:31;17774:44;;17748:70;;;11156:11;11132:22;11128:40;-1:-1:-1;12866:15:2;;12841:23;12837:45;11125:51;11115:62;18061:31;;;;:17;:31;;;;;:173;18079:12;18310:23;;;18348:101;18375:35;;18400:9;;;;;-1:-1:-1;;;;;18375:35:2;;;18392:1;;18375:35;;18392:1;;18375:35;18444:3;18434:7;:13;18348:101;;18465:13;:19;-1:-1:-1;14304:185:2;;;:::o;2333:191:9:-;2426:6;;;-1:-1:-1;;;;;2443:17:9;;;-1:-1:-1;;;;;;2443:17:9;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;9851:153:2:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9971:24:2;;;;:17;:24;;;;;;9952:44;;:18;:44::i;29430:716::-;29614:88;;-1:-1:-1;;;29614:88:2;;29593:4;;-1:-1:-1;;;;;29614:45:2;;;;;:88;;736:10:1;;29681:4:2;;29687:7;;29696:5;;29614:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29614:88:2;;;;;;;;-1:-1:-1;;29614:88:2;;;;;;;;;;;;:::i;:::-;;;29610:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29897:6;:13;29914:1;29897:18;29893:235;;29943:40;;-1:-1:-1;;;29943:40:2;;;;;;;;;;;29893:235;30086:6;30080:13;30071:6;30067:2;30063:15;30056:38;29610:529;-1:-1:-1;;;;;;29773:64:2;-1:-1:-1;;;29773:64:2;;-1:-1:-1;29610:529:2;29430:716;;;;;;:::o;10507:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10610:47:2;10629:27;10648:7;10629:18;:27::i;:::-;10610:18;:47::i;33986:1960::-;34455:4;34449:11;;34462:3;34445:21;;34540:17;;;;35236:11;;;35115:5;35368:2;35382;35372:13;;35364:22;35236:11;35351:36;35423:2;35413:13;;35007:697;35442:4;35007:697;;;35633:1;35628:3;35624:11;35617:18;;35684:2;35678:4;35674:13;35670:2;35666:22;35661:3;35653:36;35537:2;35527:13;;35007:697;;;-1:-1:-1;35734:13:2;;;-1:-1:-1;;35849:12:2;;;35909:19;;;35849:12;33986:1960;-1:-1:-1;33986:1960:2:o;1420:701:8:-;1503:7;1546:4;1503:7;1561:523;1585:5;:12;1581:1;:16;1561:523;;;1619:20;1642:5;1648:1;1642:8;;;;;;;;:::i;:::-;;;;;;;1619:31;;1685:12;1669;:28;1665:408;;1822:44;;;;;;19091:19:11;;;19126:12;;;19119:28;;;19163:12;;1822:44:8;;;;;;;;;;;;1812:55;;;;;;1797:70;;1665:408;;;2012:44;;;;;;19091:19:11;;;19126:12;;;19119:28;;;19163:12;;2012:44:8;;;;;;;;;;;;2002:55;;;;;;1987:70;;1665:408;-1:-1:-1;1599:3:8;;;;:::i;:::-;;;;1561:523;;9397:363:2;-1:-1:-1;;;;;;;;;;;;;9507:41:2;;;;1709:3;9593:32;;;-1:-1:-1;;;;;9559:67:2;-1:-1:-1;;;9559:67:2;-1:-1:-1;;;9656:23:2;;:28;;-1:-1:-1;;;9637:47:2;;;;2226:3;9724:27;;;;-1:-1:-1;;;9695:57:2;-1:-1:-1;9397:363:2:o;14:131:11:-;-1:-1:-1;;;;;;88:32:11;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:248::-;660:6;668;721:2;709:9;700:7;696:23;692:32;689:52;;;737:1;734;727:12;689:52;-1:-1:-1;;760:23:11;;;830:2;815:18;;;802:32;;-1:-1:-1;592:248:11:o;845:258::-;917:1;927:113;941:6;938:1;935:13;927:113;;;1017:11;;;1011:18;998:11;;;991:39;963:2;956:10;927:113;;;1058:6;1055:1;1052:13;1049:48;;;-1:-1:-1;;1093:1:11;1075:16;;1068:27;845:258::o;1108:::-;1150:3;1188:5;1182:12;1215:6;1210:3;1203:19;1231:63;1287:6;1280:4;1275:3;1271:14;1264:4;1257:5;1253:16;1231:63;:::i;:::-;1348:2;1327:15;-1:-1:-1;;1323:29:11;1314:39;;;;1355:4;1310:50;;1108:258;-1:-1:-1;;1108:258:11:o;1371:220::-;1520:2;1509:9;1502:21;1483:4;1540:45;1581:2;1570:9;1566:18;1558:6;1540:45;:::i;1596:180::-;1655:6;1708:2;1696:9;1687:7;1683:23;1679:32;1676:52;;;1724:1;1721;1714:12;1676:52;-1:-1:-1;1747:23:11;;1596:180;-1:-1:-1;1596:180:11:o;2174:173::-;2242:20;;-1:-1:-1;;;;;2291:31:11;;2281:42;;2271:70;;2337:1;2334;2327:12;2271:70;2174:173;;;:::o;2352:254::-;2420:6;2428;2481:2;2469:9;2460:7;2456:23;2452:32;2449:52;;;2497:1;2494;2487:12;2449:52;2520:29;2539:9;2520:29;:::i;:::-;2510:39;2596:2;2581:18;;;;2568:32;;-1:-1:-1;;;2352:254:11:o;2793:328::-;2870:6;2878;2886;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2978:29;2997:9;2978:29;:::i;:::-;2968:39;;3026:38;3060:2;3049:9;3045:18;3026:38;:::i;:::-;3016:48;;3111:2;3100:9;3096:18;3083:32;3073:42;;2793:328;;;;;:::o;3126:127::-;3187:10;3182:3;3178:20;3175:1;3168:31;3218:4;3215:1;3208:15;3242:4;3239:1;3232:15;3258:275;3329:2;3323:9;3394:2;3375:13;;-1:-1:-1;;3371:27:11;3359:40;;-1:-1:-1;;;;;3414:34:11;;3450:22;;;3411:62;3408:88;;;3476:18;;:::i;:::-;3512:2;3505:22;3258:275;;-1:-1:-1;3258:275:11:o;3538:407::-;3603:5;-1:-1:-1;;;;;3629:6:11;3626:30;3623:56;;;3659:18;;:::i;:::-;3697:57;3742:2;3721:15;;-1:-1:-1;;3717:29:11;3748:4;3713:40;3697:57;:::i;:::-;3688:66;;3777:6;3770:5;3763:21;3817:3;3808:6;3803:3;3799:16;3796:25;3793:45;;;3834:1;3831;3824:12;3793:45;3883:6;3878:3;3871:4;3864:5;3860:16;3847:43;3937:1;3930:4;3921:6;3914:5;3910:18;3906:29;3899:40;3538:407;;;;;:::o;3950:451::-;4019:6;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4128:9;4115:23;-1:-1:-1;;;;;4153:6:11;4150:30;4147:50;;;4193:1;4190;4183:12;4147:50;4216:22;;4269:4;4261:13;;4257:27;-1:-1:-1;4247:55:11;;4298:1;4295;4288:12;4247:55;4321:74;4387:7;4382:2;4369:16;4364:2;4360;4356:11;4321:74;:::i;4406:946::-;4490:6;4521:2;4564;4552:9;4543:7;4539:23;4535:32;4532:52;;;4580:1;4577;4570:12;4532:52;4620:9;4607:23;-1:-1:-1;;;;;4690:2:11;4682:6;4679:14;4676:34;;;4706:1;4703;4696:12;4676:34;4744:6;4733:9;4729:22;4719:32;;4789:7;4782:4;4778:2;4774:13;4770:27;4760:55;;4811:1;4808;4801:12;4760:55;4847:2;4834:16;4869:2;4865;4862:10;4859:36;;;4875:18;;:::i;:::-;4921:2;4918:1;4914:10;4904:20;;4944:28;4968:2;4964;4960:11;4944:28;:::i;:::-;5006:15;;;5076:11;;;5072:20;;;5037:12;;;;5104:19;;;5101:39;;;5136:1;5133;5126:12;5101:39;5160:11;;;;5180:142;5196:6;5191:3;5188:15;5180:142;;;5262:17;;5250:30;;5213:12;;;;5300;;;;5180:142;;;5341:5;4406:946;-1:-1:-1;;;;;;;;4406:946:11:o;5357:349::-;5441:12;;-1:-1:-1;;;;;5437:38:11;5425:51;;5529:4;5518:16;;;5512:23;-1:-1:-1;;;;;5508:48:11;5492:14;;;5485:72;5620:4;5609:16;;;5603:23;5596:31;5589:39;5573:14;;;5566:63;5682:4;5671:16;;;5665:23;5690:8;5661:38;5645:14;;5638:62;5357:349::o;5711:724::-;5946:2;5998:21;;;6068:13;;5971:18;;;6090:22;;;5917:4;;5946:2;6169:15;;;;6143:2;6128:18;;;5917:4;6212:197;6226:6;6223:1;6220:13;6212:197;;;6275:52;6323:3;6314:6;6308:13;6275:52;:::i;:::-;6384:15;;;;6356:4;6347:14;;;;;6248:1;6241:9;6212:197;;6440:683;6535:6;6543;6551;6604:2;6592:9;6583:7;6579:23;6575:32;6572:52;;;6620:1;6617;6610:12;6572:52;6656:9;6643:23;6633:33;;6717:2;6706:9;6702:18;6689:32;-1:-1:-1;;;;;6781:2:11;6773:6;6770:14;6767:34;;;6797:1;6794;6787:12;6767:34;6835:6;6824:9;6820:22;6810:32;;6880:7;6873:4;6869:2;6865:13;6861:27;6851:55;;6902:1;6899;6892:12;6851:55;6942:2;6929:16;6968:2;6960:6;6957:14;6954:34;;;6984:1;6981;6974:12;6954:34;7037:7;7032:2;7022:6;7019:1;7015:14;7011:2;7007:23;7003:32;7000:45;6997:65;;;7058:1;7055;7048:12;6997:65;7089:2;7085;7081:11;7071:21;;7111:6;7101:16;;;;;6440:683;;;;;:::o;7128:186::-;7187:6;7240:2;7228:9;7219:7;7215:23;7211:32;7208:52;;;7256:1;7253;7246:12;7208:52;7279:29;7298:9;7279:29;:::i;7319:632::-;7490:2;7542:21;;;7612:13;;7515:18;;;7634:22;;;7461:4;;7490:2;7713:15;;;;7687:2;7672:18;;;7461:4;7756:169;7770:6;7767:1;7764:13;7756:169;;;7831:13;;7819:26;;7900:15;;;;7865:12;;;;7792:1;7785:9;7756:169;;7956:322;8033:6;8041;8049;8102:2;8090:9;8081:7;8077:23;8073:32;8070:52;;;8118:1;8115;8108:12;8070:52;8141:29;8160:9;8141:29;:::i;:::-;8131:39;8217:2;8202:18;;8189:32;;-1:-1:-1;8268:2:11;8253:18;;;8240:32;;7956:322;-1:-1:-1;;;7956:322:11:o;8283:347::-;8348:6;8356;8409:2;8397:9;8388:7;8384:23;8380:32;8377:52;;;8425:1;8422;8415:12;8377:52;8448:29;8467:9;8448:29;:::i;:::-;8438:39;;8527:2;8516:9;8512:18;8499:32;8574:5;8567:13;8560:21;8553:5;8550:32;8540:60;;8596:1;8593;8586:12;8540:60;8619:5;8609:15;;;8283:347;;;;;:::o;8635:667::-;8730:6;8738;8746;8754;8807:3;8795:9;8786:7;8782:23;8778:33;8775:53;;;8824:1;8821;8814:12;8775:53;8847:29;8866:9;8847:29;:::i;:::-;8837:39;;8895:38;8929:2;8918:9;8914:18;8895:38;:::i;:::-;8885:48;;8980:2;8969:9;8965:18;8952:32;8942:42;;9035:2;9024:9;9020:18;9007:32;-1:-1:-1;;;;;9054:6:11;9051:30;9048:50;;;9094:1;9091;9084:12;9048:50;9117:22;;9170:4;9162:13;;9158:27;-1:-1:-1;9148:55:11;;9199:1;9196;9189:12;9148:55;9222:74;9288:7;9283:2;9270:16;9265:2;9261;9257:11;9222:74;:::i;:::-;9212:84;;;8635:667;;;;;;;:::o;9307:268::-;9505:3;9490:19;;9518:51;9494:9;9551:6;9518:51;:::i;9580:260::-;9648:6;9656;9709:2;9697:9;9688:7;9684:23;9680:32;9677:52;;;9725:1;9722;9715:12;9677:52;9748:29;9767:9;9748:29;:::i;:::-;9738:39;;9796:38;9830:2;9819:9;9815:18;9796:38;:::i;:::-;9786:48;;9580:260;;;;;:::o;9845:356::-;10047:2;10029:21;;;10066:18;;;10059:30;10125:34;10120:2;10105:18;;10098:62;10192:2;10177:18;;9845:356::o;10206:380::-;10285:1;10281:12;;;;10328;;;10349:61;;10403:4;10395:6;10391:17;10381:27;;10349:61;10456:2;10448:6;10445:14;10425:18;10422:38;10419:161;;10502:10;10497:3;10493:20;10490:1;10483:31;10537:4;10534:1;10527:15;10565:4;10562:1;10555:15;10419:161;;10206:380;;;:::o;11270:545::-;11372:2;11367:3;11364:11;11361:448;;;11408:1;11433:5;11429:2;11422:17;11478:4;11474:2;11464:19;11548:2;11536:10;11532:19;11529:1;11525:27;11519:4;11515:38;11584:4;11572:10;11569:20;11566:47;;;-1:-1:-1;11607:4:11;11566:47;11662:2;11657:3;11653:12;11650:1;11646:20;11640:4;11636:31;11626:41;;11717:82;11735:2;11728:5;11725:13;11717:82;;;11780:17;;;11761:1;11750:13;11717:82;;11991:1352;12117:3;12111:10;-1:-1:-1;;;;;12136:6:11;12133:30;12130:56;;;12166:18;;:::i;:::-;12195:97;12285:6;12245:38;12277:4;12271:11;12245:38;:::i;:::-;12239:4;12195:97;:::i;:::-;12347:4;;12411:2;12400:14;;12428:1;12423:663;;;;13130:1;13147:6;13144:89;;;-1:-1:-1;13199:19:11;;;13193:26;13144:89;-1:-1:-1;;11948:1:11;11944:11;;;11940:24;11936:29;11926:40;11972:1;11968:11;;;11923:57;13246:81;;12393:944;;12423:663;11217:1;11210:14;;;11254:4;11241:18;;-1:-1:-1;;12459:20:11;;;12577:236;12591:7;12588:1;12585:14;12577:236;;;12680:19;;;12674:26;12659:42;;12772:27;;;;12740:1;12728:14;;;;12607:19;;12577:236;;;12581:3;12841:6;12832:7;12829:19;12826:201;;;12902:19;;;12896:26;-1:-1:-1;;12985:1:11;12981:14;;;12997:3;12977:24;12973:37;12969:42;12954:58;12939:74;;12826:201;-1:-1:-1;;;;;13073:1:11;13057:14;;;13053:22;13040:36;;-1:-1:-1;11991:1352:11:o;13348:127::-;13409:10;13404:3;13400:20;13397:1;13390:31;13440:4;13437:1;13430:15;13464:4;13461:1;13454:15;14061:127;14122:10;14117:3;14113:20;14110:1;14103:31;14153:4;14150:1;14143:15;14177:4;14174:1;14167:15;14193:128;14233:3;14264:1;14260:6;14257:1;14254:13;14251:39;;;14270:18;;:::i;:::-;-1:-1:-1;14306:9:11;;14193:128::o;14326:340::-;14528:2;14510:21;;;14567:2;14547:18;;;14540:30;-1:-1:-1;;;14601:2:11;14586:18;;14579:46;14657:2;14642:18;;14326:340::o;15370:168::-;15410:7;15476:1;15472;15468:6;15464:14;15461:1;15458:21;15453:1;15446:9;15439:17;15435:45;15432:71;;;15483:18;;:::i;:::-;-1:-1:-1;15523:9:11;;15370:168::o;16239:722::-;16289:3;16330:5;16324:12;16359:36;16385:9;16359:36;:::i;:::-;16414:1;16431:18;;;16458:133;;;;16605:1;16600:355;;;;16424:531;;16458:133;-1:-1:-1;;16491:24:11;;16479:37;;16564:14;;16557:22;16545:35;;16536:45;;;-1:-1:-1;16458:133:11;;16600:355;16631:5;16628:1;16621:16;16660:4;16705:2;16702:1;16692:16;16730:1;16744:165;16758:6;16755:1;16752:13;16744:165;;;16836:14;;16823:11;;;16816:35;16879:16;;;;16773:10;;16744:165;;;16748:3;;;16938:6;16933:3;16929:16;16922:23;;16424:531;;;;;16239:722;;;;:::o;16966:456::-;17187:3;17215:38;17249:3;17241:6;17215:38;:::i;:::-;17282:6;17276:13;17298:52;17343:6;17339:2;17332:4;17324:6;17320:17;17298:52;:::i;:::-;17366:50;17408:6;17404:2;17400:15;17392:6;17366:50;:::i;:::-;17359:57;16966:456;-1:-1:-1;;;;;;;16966:456:11:o;18186:489::-;-1:-1:-1;;;;;18455:15:11;;;18437:34;;18507:15;;18502:2;18487:18;;18480:43;18554:2;18539:18;;18532:34;;;18602:3;18597:2;18582:18;;18575:31;;;18380:4;;18623:46;;18649:19;;18641:6;18623:46;:::i;:::-;18615:54;18186:489;-1:-1:-1;;;;;;18186:489:11:o;18680:249::-;18749:6;18802:2;18790:9;18781:7;18777:23;18773:32;18770:52;;;18818:1;18815;18808:12;18770:52;18850:9;18844:16;18869:30;18893:5;18869:30;:::i;19186:135::-;19225:3;19246:17;;;19243:43;;19266:18;;:::i;:::-;-1:-1:-1;19313:1:11;19302:13;;19186:135::o

Swarm Source

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