ETH Price: $3,832.82 (+5.57%)

Token

The Unbound: Phantom Collection (R) (UPCR)
 

Overview

Max Total Supply

145 UPCR

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 UPCR
0xa48e90c18602f31ec74e73dc3c29ce56317ea5e8
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:
UnboundPhantomCollection

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 17 of 17: UnboundPhantomCollection.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
import "./ERC721A.sol";
import "./IERC2981.sol";
import "./IERC721.sol";
import "./IERC721Metadata.sol";
import "./IERC721A.sol";
import "./ERC2981.sol";
import "./IERC165.sol";
import "./OperatorFilterer.sol";


contract UnboundPhantomCollection is Ownable, OperatorFilterer, ERC721A, ReentrancyGuard, ERC2981  {
    uint256 public mintPrice = 0.005 ether;
    uint256 public maxSupply = 2025;
    uint256 public publicMax = 4;
    uint256 public maxTotalMintPerWallet = 9;
    uint   public maxPerFree = 1;
    uint   public totalFreeMinted = 0;
    uint   public totalFree         = 2025;



    bool public operatorFilteringEnabled = true;

    bool public _isPublicMintEnabled = false;
    bool public _isClaimMintEnabled = false;
    bool public _isMinterMintEnabled = false;

    mapping(address => uint8) public _claimMintCounter;
    mapping(address => uint8) public _minterMintCounter;
    mapping(address => uint256) private _publicMintCounter;


    bool public isRevealed = false;
    string preRevealedURI= "https://cloudflare-ipfs.com/ipfs/bafkreifqaxc5cmudrbvbvj4clkzi2uebnetw52e4oi2xs2a6chbyjqycla";
    string baseURI="";
    // merkle root
    bytes32 public claimMerkleRoot;
    bytes32 public minterMerkleRoot;
    address public UnboundWallet = 0xb0CA168BeAb12821bb59E4339F4e8430B47fe084;
    address public royaltyReceiver;
    uint256 public royaltyPercentage = 777;
    string private _baseTokenURI;
    


    constructor(string memory name, string memory symbol, address _royaltyReceiver) ERC721A(name, symbol) {
        royaltyReceiver = _royaltyReceiver;
        _setRoyaltyReceiver(_royaltyReceiver);
        _publicMintCounter[msg.sender] = 0;
        _claimMintCounter[msg.sender] = 0;
        _minterMintCounter[msg.sender] = 0;
        _registerForOperatorFiltering();
        _setDefaultRoyalty(UnboundWallet, 777);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    //set variables
    function setPublicMintEnabled(bool enabled) external onlyOwner {
        _isPublicMintEnabled = enabled;
    }


    function setisClaimMintEnabled(bool isClaimMintEnabled) external onlyOwner {
        _isClaimMintEnabled = isClaimMintEnabled;
    }
    function setisMinterMintEnabled(bool isMinterMintEnabled) external onlyOwner {
        _isMinterMintEnabled = isMinterMintEnabled;
    }

    function setClaimMerkle(bytes32 _merkleRoot) external onlyOwner {
        claimMerkleRoot = _merkleRoot;
    }

    function setMinterMerkle(bytes32 _merkleRoot) external onlyOwner {
        minterMerkleRoot = _merkleRoot;
    }

    
    function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply > 0 && newMaxSupply >= totalSupply(), "Invalid new maximum supply");
        maxSupply = newMaxSupply;
    }


    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function teamMint() external onlyOwner{
 
        _safeMint(msg.sender, 100);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        _baseTokenURI = newBaseURI;
        isRevealed = true;
    }

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

    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");
        if (isRevealed) {
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId_), ".json"));
        }
        else {
            return preRevealedURI;
        }
    }


    function setPreRevealedURI(string memory _preRevealedURI) external onlyOwner {
        preRevealedURI = _preRevealedURI;
    }


// Presale

    function minterClaim(uint8 quantity, bytes32[] calldata _merkleProof) external nonReentrant {
        require(_isMinterMintEnabled, "Whitelist minting is not enabled");
        require(_minterMintCounter[msg.sender] == 0, "You have already minted a token");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, minterMerkleRoot, leaf), "Sorry, not whitelisted");
        require(totalSupply() + quantity <= maxSupply, "Sold out!");

        // Ensure quantity is equal to 3
        require(quantity == 3, "Quantity must be equal to 3");

        _safeMint(msg.sender, quantity);
        _minterMintCounter[msg.sender] += 1;
    }





    function freeClaim(uint8 quantity, bytes32[] calldata _merkleProof) external nonReentrant {
        require(_isClaimMintEnabled, "Free claim is not enabled");
        require(_claimMintCounter[msg.sender] == 0, "You have already claimed a free token");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, claimMerkleRoot, leaf), "Sorry, not whitelisted");
        require(totalSupply() + quantity <= maxSupply, "Sold out!");

        // Ensure quantity is equal to 1
        require(quantity == 1, "Quantity must be equal to 1");

        _safeMint(msg.sender, quantity);
        _claimMintCounter[msg.sender] += quantity;
    }


    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    
    mapping(address => uint256) public _FreeMinted;
    mapping(address => uint256) public walletMints;

    function mint(uint256 quantity) public payable callerIsUser {
        require(_isPublicMintEnabled, "Minting not enabled");
        require(totalSupply() + quantity <= maxSupply, "Sold out");
        require(_publicMintCounter[msg.sender] + quantity <= publicMax, "Exceed max wallet");
        require(quantity <= 5, "Exceed max quantity per transaction");
        uint256 totalPrice = quantity * 0.005 ether;
        require(msg.value >= totalPrice, "Please send the exact ETH amount");
        if (msg.value > totalPrice) {
            payable(msg.sender).transfer(msg.value - totalPrice);
        }
        _publicMintCounter[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function freePublic() external {
        require(_isPublicMintEnabled, "Mint is not live yet");
        require(totalFreeMinted < totalFree, "Sold out!");
        require(_FreeMinted[msg.sender] < maxPerFree, "Max per wallet reached.");

        _FreeMinted[msg.sender] += 1;
        totalFreeMinted += 1;
        _safeMint(msg.sender, 1);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _safeMint(_receiver, _mintAmount);
    }

    function setRoyaltyPercentage(uint256 _royaltyPercentage) external onlyOwner {
        require(_royaltyPercentage <= 1000, "Invalid royalty percentage");
        royaltyPercentage = _royaltyPercentage;
    }   


    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    function royaltyInfo(uint256, uint256 _salePrice) public view override returns (address receiver, uint256 royaltyAmount) {
        royaltyAmount = (_salePrice * royaltyPercentage) / 10000;
        receiver = royaltyReceiver;
    }


    function _setRoyaltyReceiver(address _royaltyReceiver) internal {
        royaltyReceiver = _royaltyReceiver;
    }

    function setRoyaltyReceiver(address _royaltyReceiver) public onlyOwner {
        _setRoyaltyReceiver(_royaltyReceiver);
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() public onlyOwner {
        _deleteDefaultRoyalty();
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || interfaceId == type(ERC2981).interfaceId
            || super.supportsInterface(interfaceId);
    }   
}

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

pragma solidity ^0.8.0;

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

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

File 2 of 17: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 3 of 17: ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC2981.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector);

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector);

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

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

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

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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.selector);
            }
            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) _revert(MintZeroQuantity.selector);

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } 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 virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) _revert(MintToZeroAddress.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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 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 virtual {
        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

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

        _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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector);
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

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

pragma solidity ^0.8.0;

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

File 6 of 17: IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 7 of 17: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 9 of 17: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 17: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 11 of 17: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 12 of 17: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

File 13 of 17: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 14 of 17: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 15 of 17: SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 16 of 17: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";
import "./SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_royaltyReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":"UnboundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_FreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_claimMintCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isClaimMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isMinterMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minterMintCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"minterClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minterMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setClaimMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMinterMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealedURI","type":"string"}],"name":"setPreRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"name":"setRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isClaimMintEnabled","type":"bool"}],"name":"setisClaimMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isMinterMintEnabled","type":"bool"}],"name":"setisMinterMintEnabled","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":"teamMint","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":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6611c37937e08000600c556107e9600d8190556004600e556009600f556001601081905560006011556012919091556013805463ffffffff191690911790556017805460ff19169055610100604052605c6080818152906200362860a0396018906200006c908262000432565b506040805160208101909152600081526019906200008b908262000432565b50601c80546001600160a01b03191673b0ca168beab12821bb59e4339f4e8430b47fe084179055610309601e55348015620000c557600080fd5b506040516200368438038062003684833981016040819052620000e891620005ad565b8282620000f5336200019b565b600362000103838262000432565b50600462000112828262000432565b5060018081556009555050601d80546001600160a01b0319166001600160a01b03831617905533600090815260166020908152604080832083905560148252808320805460ff1990811690915560159092529091208054909116905562000178620001eb565b601c5462000192906001600160a01b03166103096200020e565b5050506200063a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200020c733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000313565b565b6127106001600160601b0382161115620002825760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002da5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000279565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b6001600160a01b0390911690637d3e3dbe816200034357826200033c5750634420e48662000343565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af162000383578060005160e01c036200038357600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003b857607f821691505b602082108103620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042d57600081815260208120601f850160051c81016020861015620004085750805b601f850160051c820191505b81811015620004295782815560010162000414565b5050505b505050565b81516001600160401b038111156200044e576200044e6200038d565b62000466816200045f8454620003a3565b84620003df565b602080601f8311600181146200049e5760008415620004855750858301515b600019600386901b1c1916600185901b17855562000429565b600085815260208120601f198616915b82811015620004cf57888601518255948401946001909101908401620004ae565b5085821015620004ee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200051057600080fd5b81516001600160401b03808211156200052d576200052d6200038d565b604051601f8301601f19908116603f011681019082821181831017156200055857620005586200038d565b816040528381526020925086838588010111156200057557600080fd5b600091505b838210156200059957858201830151818301840152908201906200057a565b600093810190920192909252949350505050565b600080600060608486031215620005c357600080fd5b83516001600160401b0380821115620005db57600080fd5b620005e987838801620004fe565b945060208601519150808211156200060057600080fd5b506200060f86828701620004fe565b604086015190935090506001600160a01b03811681146200062f57600080fd5b809150509250925092565b612fde806200064a6000396000f3fe60806040526004361061038c5760003560e01c806370a08231116101dc578063aa1b103f11610102578063dc33e681116100a0578063f0293fd31161006f578063f0293fd314610a13578063f1ff116c14610a40578063f2fde38b14610a60578063fb796e6c14610a8057600080fd5b8063dc33e6811461099d578063e527c6dd146109bd578063e985e9c5146109d3578063efbd73f4146109f357600080fd5b8063c7c39ffc116100dc578063c7c39ffc1461093b578063c87b56dd14610951578063d5abeb0114610971578063dad7b5c91461098757600080fd5b8063aa1b103f146108fe578063b88d4fde14610913578063ba7a86b81461092657600080fd5b80638dc251e31161017a5780639fbc8713116101495780639fbc871314610895578063a0712d68146108b5578063a22cb465146108c8578063a4c5e4a7146108e857600080fd5b80638dc251e31461082a57806395d89b411461084a57806395f52ff01461085f5780639c4dab521461087f57600080fd5b80637e459d2f116101b65780637e459d2f146107a6578063818668d7146107d65780638a71bb2d146107f65780638da5cb5b1461080c57600080fd5b806370a0823114610745578063715018a6146107655780637c3293db1461077a57600080fd5b80632ca4b209116102c157806355050cb11161025f578063675d9b501161022e578063675d9b50146106ce5780636817c76c146106ee5780636bb4150f146107045780636f8b44b01461072557600080fd5b806355050cb11461065957806355f804b31461066e57806361ba27da1461068e5780636352211e146106ae57600080fd5b80633ccfd60b1161029b5780633ccfd60b146105f757806342842e0e1461060c5780634e1056a91461061f57806354214f691461063f57600080fd5b80632ca4b209146105a1578063333e44e6146105c15780633748c1a6146105d757600080fd5b8063152cdf041161032e57806323b872dd1161030857806323b872dd146104ed57806329adfe2e1461050057806329f2d991146105205780632a55205a1461056257600080fd5b8063152cdf0414610495578063177275c7146104b457806318160ddd146104d857600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630c2fb3071461045557806311fb22381461047557600080fd5b806301ffc9a71461039157806304634d8d146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046126ea565b610a9a565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612725565b610afb565b005b3480156103f457600080fd5b506103fd610b3c565b6040516103bd91906127b8565b34801561041657600080fd5b5061042a6104253660046127cb565b610bce565b6040516001600160a01b0390911681526020016103bd565b6103e66104503660046127e4565b610c09565b34801561046157600080fd5b506103e66104703660046127cb565b610c2d565b34801561048157600080fd5b506013546103b19062010000900460ff1681565b3480156104a157600080fd5b506013546103b190610100900460ff1681565b3480156104c057600080fd5b506104ca601b5481565b6040519081526020016103bd565b3480156104e457600080fd5b506104ca610c5c565b6103e66104fb36600461280e565b610c6a565b34801561050c57600080fd5b506103e661051b36600461285a565b610ca0565b34801561052c57600080fd5b5061055061053b366004612875565b60146020526000908152604090205460ff1681565b60405160ff90911681526020016103bd565b34801561056e57600080fd5b5061058261057d366004612890565b610ce8565b604080516001600160a01b0390931683526020830191909152016103bd565b3480156105ad57600080fd5b506103e66105bc36600461293e565b610d1c565b3480156105cd57600080fd5b506104ca60125481565b3480156105e357600080fd5b506103e66105f23660046127cb565b610d52565b34801561060357600080fd5b506103e6610d81565b6103e661061a36600461280e565b610dda565b34801561062b57600080fd5b506103e661063a366004612987565b610e0a565b34801561064b57600080fd5b506017546103b19060ff1681565b34801561066557600080fd5b506103e66110c5565b34801561067a57600080fd5b506103e6610689366004612a15565b6111e1565b34801561069a57600080fd5b506103e66106a93660046127cb565b61122a565b3480156106ba57600080fd5b5061042a6106c93660046127cb565b6112ab565b3480156106da57600080fd5b50601c5461042a906001600160a01b031681565b3480156106fa57600080fd5b506104ca600c5481565b34801561071057600080fd5b506013546103b1906301000000900460ff1681565b34801561073157600080fd5b506103e66107403660046127cb565b6112b6565b34801561075157600080fd5b506104ca610760366004612875565b611348565b34801561077157600080fd5b506103e661138e565b34801561078657600080fd5b506104ca610795366004612875565b602080526000908152604090205481565b3480156107b257600080fd5b506105506107c1366004612875565b60156020526000908152604090205460ff1681565b3480156107e257600080fd5b506103e66107f136600461285a565b6113c2565b34801561080257600080fd5b506104ca601e5481565b34801561081857600080fd5b506000546001600160a01b031661042a565b34801561083657600080fd5b506103e6610845366004612875565b611406565b34801561085657600080fd5b506103fd611451565b34801561086b57600080fd5b506103e661087a36600461285a565b611460565b34801561088b57600080fd5b506104ca601a5481565b3480156108a157600080fd5b50601d5461042a906001600160a01b031681565b6103e66108c33660046127cb565b6114a6565b3480156108d457600080fd5b506103e66108e3366004612a87565b611722565b3480156108f457600080fd5b506104ca600f5481565b34801561090a57600080fd5b506103e6611741565b6103e6610921366004612aba565b611775565b34801561093257600080fd5b506103e66117ad565b34801561094757600080fd5b506104ca60105481565b34801561095d57600080fd5b506103fd61096c3660046127cb565b6117e2565b34801561097d57600080fd5b506104ca600d5481565b34801561099357600080fd5b506104ca60115481565b3480156109a957600080fd5b506104ca6109b8366004612875565b611925565b3480156109c957600080fd5b506104ca600e5481565b3480156109df57600080fd5b506103b16109ee366004612b36565b611950565b3480156109ff57600080fd5b506103e6610a0e366004612b60565b61197e565b348015610a1f57600080fd5b506104ca610a2e366004612875565b60216020526000908152604090205481565b348015610a4c57600080fd5b506103e6610a5b366004612987565b611a0d565b348015610a6c57600080fd5b506103e6610a7b366004612875565b611c96565b348015610a8c57600080fd5b506013546103b19060ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610acb57506001600160e01b03198216635b5e139f60e01b145b80610ae657506001600160e01b03198216632baae9fd60e01b145b80610af55750610af582611d2e565b92915050565b6000546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610b2590612b83565b60405180910390fd5b610b388282611d63565b5050565b606060038054610b4b90612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7790612bb8565b8015610bc45780601f10610b9957610100808354040283529160200191610bc4565b820191906000526020600020905b815481529060010190602001808311610ba757829003601f168201915b5050505050905090565b6000610bd982611e60565b610bed57610bed6333d1c03960e21b611eac565b506000908152600760205260409020546001600160a01b031690565b8160135460ff1615610c1e57610c1e81611eb6565b610c288383611efa565b505050565b6000546001600160a01b03163314610c575760405162461bcd60e51b8152600401610b2590612b83565b601a55565b600254600154036000190190565b826001600160a01b0381163314610c8f5760135460ff1615610c8f57610c8f33611eb6565b610c9a848484611f06565b50505050565b6000546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610b2590612b83565b6013805491151563010000000263ff00000019909216919091179055565b600080612710601e5484610cfc9190612c08565b610d069190612c1f565b601d546001600160a01b03169590945092505050565b6000546001600160a01b03163314610d465760405162461bcd60e51b8152600401610b2590612b83565b6018610b388282612c8f565b6000546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610b2590612b83565b601b55565b6000546001600160a01b03163314610dab5760405162461bcd60e51b8152600401610b2590612b83565b6040514790339082156108fc029083906000818181858888f19350505050158015610b38573d6000803e3d6000fd5b826001600160a01b0381163314610dff5760135460ff1615610dff57610dff33611eb6565b610c9a84848461206b565b600260095403610e5c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b25565b600260095560135462010000900460ff16610eb95760405162461bcd60e51b815260206004820152601960248201527f4672656520636c61696d206973206e6f7420656e61626c6564000000000000006044820152606401610b25565b3360009081526014602052604090205460ff1615610f275760405162461bcd60e51b815260206004820152602560248201527f596f75206861766520616c726561647920636c61696d656420612066726565206044820152643a37b5b2b760d91b6064820152608401610b25565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612086565b610fe65760405162461bcd60e51b815260206004820152601660248201527514dbdc9c9e4b081b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610b25565b600d548460ff16610ff5610c5c565b610fff9190612d4f565b111561101d5760405162461bcd60e51b8152600401610b2590612d62565b8360ff166001146110705760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d75737420626520657175616c20746f203100000000006044820152606401610b25565b61107d338560ff1661209c565b336000908152601460205260408120805486929061109f90849060ff16612d85565b92506101000a81548160ff021916908360ff160217905550506001600981905550505050565b601354610100900460ff166111135760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b6044820152606401610b25565b601254601154106111365760405162461bcd60e51b8152600401610b2590612d62565b601054336000908152602080526040902054106111955760405162461bcd60e51b815260206004820152601760248201527f4d6178207065722077616c6c657420726561636865642e0000000000000000006044820152606401610b25565b33600090815260208052604081208054600192906111b4908490612d4f565b925050819055506001601160008282546111ce9190612d4f565b909155506111df905033600161209c565b565b6000546001600160a01b0316331461120b5760405162461bcd60e51b8152600401610b2590612b83565b601f611218828483612d9e565b50506017805460ff1916600117905550565b6000546001600160a01b031633146112545760405162461bcd60e51b8152600401610b2590612b83565b6103e88111156112a65760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420726f79616c74792070657263656e746167650000000000006044820152606401610b25565b601e55565b6000610af5826120b6565b6000546001600160a01b031633146112e05760405162461bcd60e51b8152600401610b2590612b83565b6000811180156112f757506112f3610c5c565b8110155b6113435760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206e6577206d6178696d756d20737570706c790000000000006044820152606401610b25565b600d55565b60006001600160a01b038216611368576113686323d3ad8160e21b611eac565b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113b85760405162461bcd60e51b8152600401610b2590612b83565b6111df6000612157565b6000546001600160a01b031633146113ec5760405162461bcd60e51b8152600401610b2590612b83565b601380549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146114305760405162461bcd60e51b8152600401610b2590612b83565b601d80546001600160a01b0319166001600160a01b03831617905550565b50565b606060048054610b4b90612bb8565b6000546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610b2590612b83565b60138054911515620100000262ff000019909216919091179055565b3233146114f55760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b25565b601354610100900460ff166115425760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610b25565b600d548161154e610c5c565b6115589190612d4f565b11156115915760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b25565b600e54336000908152601660205260409020546115af908390612d4f565b11156115f15760405162461bcd60e51b8152602060048201526011602482015270115e18d95959081b585e081dd85b1b195d607a1b6044820152606401610b25565b600581111561164e5760405162461bcd60e51b815260206004820152602360248201527f457863656564206d6178207175616e7469747920706572207472616e7361637460448201526234b7b760e91b6064820152608401610b25565b6000611661826611c37937e08000612c08565b9050803410156116b35760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e746044820152606401610b25565b803411156116f357336108fc6116c98334612e5e565b6040518115909202916000818181858888f193505050501580156116f1573d6000803e3d6000fd5b505b3360009081526016602052604081208054849290611712908490612d4f565b90915550610b389050338361209c565b8160135460ff16156117375761173781611eb6565b610c2883836121a7565b6000546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610b2590612b83565b6111df6000600a55565b836001600160a01b038116331461179a5760135460ff161561179a5761179a33611eb6565b6117a685858585612213565b5050505050565b6000546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b2590612b83565b6111df33606461209c565b60606117ed82611e60565b6118515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b25565b60175460ff161561188e57601f6118678361224e565b604051602001611878929190612e71565b6040516020818303038152906040529050919050565b6018805461189b90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546118c790612bb8565b80156119145780601f106118e957610100808354040283529160200191611914565b820191906000526020600020905b8154815290600101906020018083116118f757829003601f168201915b50505050509050919050565b919050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610af5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146119a85760405162461bcd60e51b8152600401610b2590612b83565b600d54826119b4610c5c565b6119be9190612d4f565b1115611a035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b25565b610b38818361209c565b600260095403611a5f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b25565b60026009556013546301000000900460ff16611abd5760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f7420656e61626c65646044820152606401610b25565b3360009081526015602052604090205460ff1615611b1d5760405162461bcd60e51b815260206004820152601f60248201527f596f75206861766520616c7265616479206d696e746564206120746f6b656e006044820152606401610b25565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b9783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612086565b611bdc5760405162461bcd60e51b815260206004820152601660248201527514dbdc9c9e4b081b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610b25565b600d548460ff16611beb610c5c565b611bf59190612d4f565b1115611c135760405162461bcd60e51b8152600401610b2590612d62565b8360ff16600314611c665760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d75737420626520657175616c20746f203300000000006044820152606401610b25565b611c73338560ff1661209c565b33600090815260156020526040812080546001929061109f90849060ff16612d85565b6000546001600160a01b03163314611cc05760405162461bcd60e51b8152600401610b2590612b83565b6001600160a01b038116611d255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b25565b61144e81612157565b60006001600160e01b0319821663152a902d60e11b1480610af557506301ffc9a760e01b6001600160e01b0319831614610af5565b6127106001600160601b0382161115611dd15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b25565b6001600160a01b038216611e275760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b25565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600081600111611920576001548210156119205760005b5060008281526005602052604081205490819003611e9f57611e9883612f08565b9250611e77565b600160e01b161592915050565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611ef2573d6000803e3d6000fd5b6000603a5250565b610b38828260016122e1565b6000611f11826120b6565b6001600160a01b039485169490915081168414611f3757611f3762a1148160e81b611eac565b60008281526007602052604090208054338082146001600160a01b03881690911417611f7b57611f678633611950565b611f7b57611f7b632ce44b5f60e11b611eac565b8015611f8657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003612018576001840160008181526005602052604081205490036120165760015481146120165760008181526005602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361206257612062633a954ecd60e21b611eac565b50505050505050565b610c2883838360405180602001604052806000815250611775565b6000826120938584612384565b14949350505050565b610b388282604051806020016040528060008152506123f8565b6000816001116121475750600081815260056020526040812054908190036121345760015482106120f1576120f1636f96cda160e11b611eac565b5b506000190160008181526005602052604090205480156120f257600160e01b811660000361211f57919050565b61212f636f96cda160e11b611eac565b6120f2565b600160e01b811660000361214757919050565b611920636f96cda160e11b611eac565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61221e848484610c6a565b6001600160a01b0383163b15610c9a5761223a8484848461245a565b610c9a57610c9a6368d2bf6b60e11b611eac565b6060600061225b8361253d565b600101905060008167ffffffffffffffff81111561227b5761227b6128b2565b6040519080825280601f01601f1916602001820160405280156122a5576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846122af57509392505050565b60006122ec836112ab565b90508180156123045750336001600160a01b03821614155b15612327576123138133611950565b612327576123276367d9dca160e11b611eac565b60008381526007602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815b84518110156123f05760008582815181106123a6576123a6612f1f565b602002602001015190508083116123cc57600083815260208290526040902092506123dd565b600081815260208490526040902092505b50806123e881612f35565b915050612389565b509392505050565b6124028383612615565b6001600160a01b0383163b15610c28576001548281035b61242c600086838060010194508661245a565b612440576124406368d2bf6b60e11b611eac565b8181106124195781600154146117a6576117a66000611eac565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061248f903390899088908890600401612f4e565b6020604051808303816000875af19250505080156124ca575060408051601f3d908101601f191682019092526124c791810190612f8b565b60015b61251f573d8080156124f8576040519150601f19603f3d011682016040523d82523d6000602084013e6124fd565b606091505b508051600003612517576125176368d2bf6b60e11b611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061257c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106125a8576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106125c657662386f26fc10000830492506010015b6305f5e10083106125de576305f5e100830492506008015b61271083106125f257612710830492506004015b60648310612604576064830492506002015b600a8310610af55760010192915050565b60015460008290036126315761263163b562e8dd60e01b611eac565b60008181526005602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526006909252822080546801000000000000000186020190559081900361268f5761268f622e076360e81b611eac565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103612694575060015550505050565b6001600160e01b03198116811461144e57600080fd5b6000602082840312156126fc57600080fd5b8135612707816126d4565b9392505050565b80356001600160a01b038116811461192057600080fd5b6000806040838503121561273857600080fd5b6127418361270e565b915060208301356001600160601b038116811461275d57600080fd5b809150509250929050565b60005b8381101561278357818101518382015260200161276b565b50506000910152565b600081518084526127a4816020860160208601612768565b601f01601f19169290920160200192915050565b602081526000612707602083018461278c565b6000602082840312156127dd57600080fd5b5035919050565b600080604083850312156127f757600080fd5b6128008361270e565b946020939093013593505050565b60008060006060848603121561282357600080fd5b61282c8461270e565b925061283a6020850161270e565b9150604084013590509250925092565b8035801515811461192057600080fd5b60006020828403121561286c57600080fd5b6127078261284a565b60006020828403121561288757600080fd5b6127078261270e565b600080604083850312156128a357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128e3576128e36128b2565b604051601f8501601f19908116603f0116810190828211818310171561290b5761290b6128b2565b8160405280935085815286868601111561292457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561295057600080fd5b813567ffffffffffffffff81111561296757600080fd5b8201601f8101841361297857600080fd5b612535848235602084016128c8565b60008060006040848603121561299c57600080fd5b833560ff811681146129ad57600080fd5b9250602084013567ffffffffffffffff808211156129ca57600080fd5b818601915086601f8301126129de57600080fd5b8135818111156129ed57600080fd5b8760208260051b8501011115612a0257600080fd5b6020830194508093505050509250925092565b60008060208385031215612a2857600080fd5b823567ffffffffffffffff80821115612a4057600080fd5b818501915085601f830112612a5457600080fd5b813581811115612a6357600080fd5b866020828501011115612a7557600080fd5b60209290920196919550909350505050565b60008060408385031215612a9a57600080fd5b612aa38361270e565b9150612ab16020840161284a565b90509250929050565b60008060008060808587031215612ad057600080fd5b612ad98561270e565b9350612ae76020860161270e565b925060408501359150606085013567ffffffffffffffff811115612b0a57600080fd5b8501601f81018713612b1b57600080fd5b612b2a878235602084016128c8565b91505092959194509250565b60008060408385031215612b4957600080fd5b612b528361270e565b9150612ab16020840161270e565b60008060408385031215612b7357600080fd5b82359150612ab16020840161270e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612bcc57607f821691505b602082108103612bec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610af557610af5612bf2565b600082612c3c57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c2857600081815260208120601f850160051c81016020861015612c685750805b601f850160051c820191505b81811015612c8757828155600101612c74565b505050505050565b815167ffffffffffffffff811115612ca957612ca96128b2565b612cbd81612cb78454612bb8565b84612c41565b602080601f831160018114612cf25760008415612cda5750858301515b600019600386901b1c1916600185901b178555612c87565b600085815260208120601f198616915b82811015612d2157888601518255948401946001909101908401612d02565b5085821015612d3f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610af557610af5612bf2565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b60ff8181168382160190811115610af557610af5612bf2565b67ffffffffffffffff831115612db657612db66128b2565b612dca83612dc48354612bb8565b83612c41565b6000601f841160018114612dfe5760008515612de65750838201355b600019600387901b1c1916600186901b1783556117a6565b600083815260209020601f19861690835b82811015612e2f5786850135825560209485019460019092019101612e0f565b5086821015612e4c5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610af557610af5612bf2565b6000808454612e7f81612bb8565b60018281168015612e975760018114612eac57612edb565b60ff1984168752821515830287019450612edb565b8860005260208060002060005b85811015612ed25781548a820152908401908201612eb9565b50505082870194505b505050508351612eef818360208801612768565b64173539b7b760d91b9101908152600501949350505050565b600081612f1757612f17612bf2565b506000190190565b634e487b7160e01b600052603260045260246000fd5b600060018201612f4757612f47612bf2565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f819083018461278c565b9695505050505050565b600060208284031215612f9d57600080fd5b8151612707816126d456fea2646970667358221220b339c27eb53c3cd7dbd7e7a805c45b63dfd0f2c28334aa2931cddb12909f021b64736f6c6343000812003368747470733a2f2f636c6f7564666c6172652d697066732e636f6d2f697066732f6261666b726569667161786335636d756472627662766a34636c6b7a69327565626e657477353265346f69327873326136636862796a7179636c61000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000b0ca168beab12821bb59e4339f4e8430b47fe084000000000000000000000000000000000000000000000000000000000000002354686520556e626f756e643a205068616e746f6d20436f6c6c656374696f6e20285229000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045550435200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061038c5760003560e01c806370a08231116101dc578063aa1b103f11610102578063dc33e681116100a0578063f0293fd31161006f578063f0293fd314610a13578063f1ff116c14610a40578063f2fde38b14610a60578063fb796e6c14610a8057600080fd5b8063dc33e6811461099d578063e527c6dd146109bd578063e985e9c5146109d3578063efbd73f4146109f357600080fd5b8063c7c39ffc116100dc578063c7c39ffc1461093b578063c87b56dd14610951578063d5abeb0114610971578063dad7b5c91461098757600080fd5b8063aa1b103f146108fe578063b88d4fde14610913578063ba7a86b81461092657600080fd5b80638dc251e31161017a5780639fbc8713116101495780639fbc871314610895578063a0712d68146108b5578063a22cb465146108c8578063a4c5e4a7146108e857600080fd5b80638dc251e31461082a57806395d89b411461084a57806395f52ff01461085f5780639c4dab521461087f57600080fd5b80637e459d2f116101b65780637e459d2f146107a6578063818668d7146107d65780638a71bb2d146107f65780638da5cb5b1461080c57600080fd5b806370a0823114610745578063715018a6146107655780637c3293db1461077a57600080fd5b80632ca4b209116102c157806355050cb11161025f578063675d9b501161022e578063675d9b50146106ce5780636817c76c146106ee5780636bb4150f146107045780636f8b44b01461072557600080fd5b806355050cb11461065957806355f804b31461066e57806361ba27da1461068e5780636352211e146106ae57600080fd5b80633ccfd60b1161029b5780633ccfd60b146105f757806342842e0e1461060c5780634e1056a91461061f57806354214f691461063f57600080fd5b80632ca4b209146105a1578063333e44e6146105c15780633748c1a6146105d757600080fd5b8063152cdf041161032e57806323b872dd1161030857806323b872dd146104ed57806329adfe2e1461050057806329f2d991146105205780632a55205a1461056257600080fd5b8063152cdf0414610495578063177275c7146104b457806318160ddd146104d857600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630c2fb3071461045557806311fb22381461047557600080fd5b806301ffc9a71461039157806304634d8d146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046126ea565b610a9a565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612725565b610afb565b005b3480156103f457600080fd5b506103fd610b3c565b6040516103bd91906127b8565b34801561041657600080fd5b5061042a6104253660046127cb565b610bce565b6040516001600160a01b0390911681526020016103bd565b6103e66104503660046127e4565b610c09565b34801561046157600080fd5b506103e66104703660046127cb565b610c2d565b34801561048157600080fd5b506013546103b19062010000900460ff1681565b3480156104a157600080fd5b506013546103b190610100900460ff1681565b3480156104c057600080fd5b506104ca601b5481565b6040519081526020016103bd565b3480156104e457600080fd5b506104ca610c5c565b6103e66104fb36600461280e565b610c6a565b34801561050c57600080fd5b506103e661051b36600461285a565b610ca0565b34801561052c57600080fd5b5061055061053b366004612875565b60146020526000908152604090205460ff1681565b60405160ff90911681526020016103bd565b34801561056e57600080fd5b5061058261057d366004612890565b610ce8565b604080516001600160a01b0390931683526020830191909152016103bd565b3480156105ad57600080fd5b506103e66105bc36600461293e565b610d1c565b3480156105cd57600080fd5b506104ca60125481565b3480156105e357600080fd5b506103e66105f23660046127cb565b610d52565b34801561060357600080fd5b506103e6610d81565b6103e661061a36600461280e565b610dda565b34801561062b57600080fd5b506103e661063a366004612987565b610e0a565b34801561064b57600080fd5b506017546103b19060ff1681565b34801561066557600080fd5b506103e66110c5565b34801561067a57600080fd5b506103e6610689366004612a15565b6111e1565b34801561069a57600080fd5b506103e66106a93660046127cb565b61122a565b3480156106ba57600080fd5b5061042a6106c93660046127cb565b6112ab565b3480156106da57600080fd5b50601c5461042a906001600160a01b031681565b3480156106fa57600080fd5b506104ca600c5481565b34801561071057600080fd5b506013546103b1906301000000900460ff1681565b34801561073157600080fd5b506103e66107403660046127cb565b6112b6565b34801561075157600080fd5b506104ca610760366004612875565b611348565b34801561077157600080fd5b506103e661138e565b34801561078657600080fd5b506104ca610795366004612875565b602080526000908152604090205481565b3480156107b257600080fd5b506105506107c1366004612875565b60156020526000908152604090205460ff1681565b3480156107e257600080fd5b506103e66107f136600461285a565b6113c2565b34801561080257600080fd5b506104ca601e5481565b34801561081857600080fd5b506000546001600160a01b031661042a565b34801561083657600080fd5b506103e6610845366004612875565b611406565b34801561085657600080fd5b506103fd611451565b34801561086b57600080fd5b506103e661087a36600461285a565b611460565b34801561088b57600080fd5b506104ca601a5481565b3480156108a157600080fd5b50601d5461042a906001600160a01b031681565b6103e66108c33660046127cb565b6114a6565b3480156108d457600080fd5b506103e66108e3366004612a87565b611722565b3480156108f457600080fd5b506104ca600f5481565b34801561090a57600080fd5b506103e6611741565b6103e6610921366004612aba565b611775565b34801561093257600080fd5b506103e66117ad565b34801561094757600080fd5b506104ca60105481565b34801561095d57600080fd5b506103fd61096c3660046127cb565b6117e2565b34801561097d57600080fd5b506104ca600d5481565b34801561099357600080fd5b506104ca60115481565b3480156109a957600080fd5b506104ca6109b8366004612875565b611925565b3480156109c957600080fd5b506104ca600e5481565b3480156109df57600080fd5b506103b16109ee366004612b36565b611950565b3480156109ff57600080fd5b506103e6610a0e366004612b60565b61197e565b348015610a1f57600080fd5b506104ca610a2e366004612875565b60216020526000908152604090205481565b348015610a4c57600080fd5b506103e6610a5b366004612987565b611a0d565b348015610a6c57600080fd5b506103e6610a7b366004612875565b611c96565b348015610a8c57600080fd5b506013546103b19060ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610acb57506001600160e01b03198216635b5e139f60e01b145b80610ae657506001600160e01b03198216632baae9fd60e01b145b80610af55750610af582611d2e565b92915050565b6000546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610b2590612b83565b60405180910390fd5b610b388282611d63565b5050565b606060038054610b4b90612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7790612bb8565b8015610bc45780601f10610b9957610100808354040283529160200191610bc4565b820191906000526020600020905b815481529060010190602001808311610ba757829003601f168201915b5050505050905090565b6000610bd982611e60565b610bed57610bed6333d1c03960e21b611eac565b506000908152600760205260409020546001600160a01b031690565b8160135460ff1615610c1e57610c1e81611eb6565b610c288383611efa565b505050565b6000546001600160a01b03163314610c575760405162461bcd60e51b8152600401610b2590612b83565b601a55565b600254600154036000190190565b826001600160a01b0381163314610c8f5760135460ff1615610c8f57610c8f33611eb6565b610c9a848484611f06565b50505050565b6000546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610b2590612b83565b6013805491151563010000000263ff00000019909216919091179055565b600080612710601e5484610cfc9190612c08565b610d069190612c1f565b601d546001600160a01b03169590945092505050565b6000546001600160a01b03163314610d465760405162461bcd60e51b8152600401610b2590612b83565b6018610b388282612c8f565b6000546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610b2590612b83565b601b55565b6000546001600160a01b03163314610dab5760405162461bcd60e51b8152600401610b2590612b83565b6040514790339082156108fc029083906000818181858888f19350505050158015610b38573d6000803e3d6000fd5b826001600160a01b0381163314610dff5760135460ff1615610dff57610dff33611eb6565b610c9a84848461206b565b600260095403610e5c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b25565b600260095560135462010000900460ff16610eb95760405162461bcd60e51b815260206004820152601960248201527f4672656520636c61696d206973206e6f7420656e61626c6564000000000000006044820152606401610b25565b3360009081526014602052604090205460ff1615610f275760405162461bcd60e51b815260206004820152602560248201527f596f75206861766520616c726561647920636c61696d656420612066726565206044820152643a37b5b2b760d91b6064820152608401610b25565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612086565b610fe65760405162461bcd60e51b815260206004820152601660248201527514dbdc9c9e4b081b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610b25565b600d548460ff16610ff5610c5c565b610fff9190612d4f565b111561101d5760405162461bcd60e51b8152600401610b2590612d62565b8360ff166001146110705760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d75737420626520657175616c20746f203100000000006044820152606401610b25565b61107d338560ff1661209c565b336000908152601460205260408120805486929061109f90849060ff16612d85565b92506101000a81548160ff021916908360ff160217905550506001600981905550505050565b601354610100900460ff166111135760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b6044820152606401610b25565b601254601154106111365760405162461bcd60e51b8152600401610b2590612d62565b601054336000908152602080526040902054106111955760405162461bcd60e51b815260206004820152601760248201527f4d6178207065722077616c6c657420726561636865642e0000000000000000006044820152606401610b25565b33600090815260208052604081208054600192906111b4908490612d4f565b925050819055506001601160008282546111ce9190612d4f565b909155506111df905033600161209c565b565b6000546001600160a01b0316331461120b5760405162461bcd60e51b8152600401610b2590612b83565b601f611218828483612d9e565b50506017805460ff1916600117905550565b6000546001600160a01b031633146112545760405162461bcd60e51b8152600401610b2590612b83565b6103e88111156112a65760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420726f79616c74792070657263656e746167650000000000006044820152606401610b25565b601e55565b6000610af5826120b6565b6000546001600160a01b031633146112e05760405162461bcd60e51b8152600401610b2590612b83565b6000811180156112f757506112f3610c5c565b8110155b6113435760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206e6577206d6178696d756d20737570706c790000000000006044820152606401610b25565b600d55565b60006001600160a01b038216611368576113686323d3ad8160e21b611eac565b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113b85760405162461bcd60e51b8152600401610b2590612b83565b6111df6000612157565b6000546001600160a01b031633146113ec5760405162461bcd60e51b8152600401610b2590612b83565b601380549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146114305760405162461bcd60e51b8152600401610b2590612b83565b601d80546001600160a01b0319166001600160a01b03831617905550565b50565b606060048054610b4b90612bb8565b6000546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610b2590612b83565b60138054911515620100000262ff000019909216919091179055565b3233146114f55760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b25565b601354610100900460ff166115425760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610b25565b600d548161154e610c5c565b6115589190612d4f565b11156115915760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b25565b600e54336000908152601660205260409020546115af908390612d4f565b11156115f15760405162461bcd60e51b8152602060048201526011602482015270115e18d95959081b585e081dd85b1b195d607a1b6044820152606401610b25565b600581111561164e5760405162461bcd60e51b815260206004820152602360248201527f457863656564206d6178207175616e7469747920706572207472616e7361637460448201526234b7b760e91b6064820152608401610b25565b6000611661826611c37937e08000612c08565b9050803410156116b35760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e746044820152606401610b25565b803411156116f357336108fc6116c98334612e5e565b6040518115909202916000818181858888f193505050501580156116f1573d6000803e3d6000fd5b505b3360009081526016602052604081208054849290611712908490612d4f565b90915550610b389050338361209c565b8160135460ff16156117375761173781611eb6565b610c2883836121a7565b6000546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610b2590612b83565b6111df6000600a55565b836001600160a01b038116331461179a5760135460ff161561179a5761179a33611eb6565b6117a685858585612213565b5050505050565b6000546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b2590612b83565b6111df33606461209c565b60606117ed82611e60565b6118515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b25565b60175460ff161561188e57601f6118678361224e565b604051602001611878929190612e71565b6040516020818303038152906040529050919050565b6018805461189b90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546118c790612bb8565b80156119145780601f106118e957610100808354040283529160200191611914565b820191906000526020600020905b8154815290600101906020018083116118f757829003601f168201915b50505050509050919050565b919050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610af5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146119a85760405162461bcd60e51b8152600401610b2590612b83565b600d54826119b4610c5c565b6119be9190612d4f565b1115611a035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b25565b610b38818361209c565b600260095403611a5f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b25565b60026009556013546301000000900460ff16611abd5760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f7420656e61626c65646044820152606401610b25565b3360009081526015602052604090205460ff1615611b1d5760405162461bcd60e51b815260206004820152601f60248201527f596f75206861766520616c7265616479206d696e746564206120746f6b656e006044820152606401610b25565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b9783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612086565b611bdc5760405162461bcd60e51b815260206004820152601660248201527514dbdc9c9e4b081b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610b25565b600d548460ff16611beb610c5c565b611bf59190612d4f565b1115611c135760405162461bcd60e51b8152600401610b2590612d62565b8360ff16600314611c665760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d75737420626520657175616c20746f203300000000006044820152606401610b25565b611c73338560ff1661209c565b33600090815260156020526040812080546001929061109f90849060ff16612d85565b6000546001600160a01b03163314611cc05760405162461bcd60e51b8152600401610b2590612b83565b6001600160a01b038116611d255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b25565b61144e81612157565b60006001600160e01b0319821663152a902d60e11b1480610af557506301ffc9a760e01b6001600160e01b0319831614610af5565b6127106001600160601b0382161115611dd15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b25565b6001600160a01b038216611e275760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b25565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600081600111611920576001548210156119205760005b5060008281526005602052604081205490819003611e9f57611e9883612f08565b9250611e77565b600160e01b161592915050565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611ef2573d6000803e3d6000fd5b6000603a5250565b610b38828260016122e1565b6000611f11826120b6565b6001600160a01b039485169490915081168414611f3757611f3762a1148160e81b611eac565b60008281526007602052604090208054338082146001600160a01b03881690911417611f7b57611f678633611950565b611f7b57611f7b632ce44b5f60e11b611eac565b8015611f8657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003612018576001840160008181526005602052604081205490036120165760015481146120165760008181526005602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361206257612062633a954ecd60e21b611eac565b50505050505050565b610c2883838360405180602001604052806000815250611775565b6000826120938584612384565b14949350505050565b610b388282604051806020016040528060008152506123f8565b6000816001116121475750600081815260056020526040812054908190036121345760015482106120f1576120f1636f96cda160e11b611eac565b5b506000190160008181526005602052604090205480156120f257600160e01b811660000361211f57919050565b61212f636f96cda160e11b611eac565b6120f2565b600160e01b811660000361214757919050565b611920636f96cda160e11b611eac565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61221e848484610c6a565b6001600160a01b0383163b15610c9a5761223a8484848461245a565b610c9a57610c9a6368d2bf6b60e11b611eac565b6060600061225b8361253d565b600101905060008167ffffffffffffffff81111561227b5761227b6128b2565b6040519080825280601f01601f1916602001820160405280156122a5576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846122af57509392505050565b60006122ec836112ab565b90508180156123045750336001600160a01b03821614155b15612327576123138133611950565b612327576123276367d9dca160e11b611eac565b60008381526007602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815b84518110156123f05760008582815181106123a6576123a6612f1f565b602002602001015190508083116123cc57600083815260208290526040902092506123dd565b600081815260208490526040902092505b50806123e881612f35565b915050612389565b509392505050565b6124028383612615565b6001600160a01b0383163b15610c28576001548281035b61242c600086838060010194508661245a565b612440576124406368d2bf6b60e11b611eac565b8181106124195781600154146117a6576117a66000611eac565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061248f903390899088908890600401612f4e565b6020604051808303816000875af19250505080156124ca575060408051601f3d908101601f191682019092526124c791810190612f8b565b60015b61251f573d8080156124f8576040519150601f19603f3d011682016040523d82523d6000602084013e6124fd565b606091505b508051600003612517576125176368d2bf6b60e11b611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061257c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106125a8576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106125c657662386f26fc10000830492506010015b6305f5e10083106125de576305f5e100830492506008015b61271083106125f257612710830492506004015b60648310612604576064830492506002015b600a8310610af55760010192915050565b60015460008290036126315761263163b562e8dd60e01b611eac565b60008181526005602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526006909252822080546801000000000000000186020190559081900361268f5761268f622e076360e81b611eac565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103612694575060015550505050565b6001600160e01b03198116811461144e57600080fd5b6000602082840312156126fc57600080fd5b8135612707816126d4565b9392505050565b80356001600160a01b038116811461192057600080fd5b6000806040838503121561273857600080fd5b6127418361270e565b915060208301356001600160601b038116811461275d57600080fd5b809150509250929050565b60005b8381101561278357818101518382015260200161276b565b50506000910152565b600081518084526127a4816020860160208601612768565b601f01601f19169290920160200192915050565b602081526000612707602083018461278c565b6000602082840312156127dd57600080fd5b5035919050565b600080604083850312156127f757600080fd5b6128008361270e565b946020939093013593505050565b60008060006060848603121561282357600080fd5b61282c8461270e565b925061283a6020850161270e565b9150604084013590509250925092565b8035801515811461192057600080fd5b60006020828403121561286c57600080fd5b6127078261284a565b60006020828403121561288757600080fd5b6127078261270e565b600080604083850312156128a357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128e3576128e36128b2565b604051601f8501601f19908116603f0116810190828211818310171561290b5761290b6128b2565b8160405280935085815286868601111561292457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561295057600080fd5b813567ffffffffffffffff81111561296757600080fd5b8201601f8101841361297857600080fd5b612535848235602084016128c8565b60008060006040848603121561299c57600080fd5b833560ff811681146129ad57600080fd5b9250602084013567ffffffffffffffff808211156129ca57600080fd5b818601915086601f8301126129de57600080fd5b8135818111156129ed57600080fd5b8760208260051b8501011115612a0257600080fd5b6020830194508093505050509250925092565b60008060208385031215612a2857600080fd5b823567ffffffffffffffff80821115612a4057600080fd5b818501915085601f830112612a5457600080fd5b813581811115612a6357600080fd5b866020828501011115612a7557600080fd5b60209290920196919550909350505050565b60008060408385031215612a9a57600080fd5b612aa38361270e565b9150612ab16020840161284a565b90509250929050565b60008060008060808587031215612ad057600080fd5b612ad98561270e565b9350612ae76020860161270e565b925060408501359150606085013567ffffffffffffffff811115612b0a57600080fd5b8501601f81018713612b1b57600080fd5b612b2a878235602084016128c8565b91505092959194509250565b60008060408385031215612b4957600080fd5b612b528361270e565b9150612ab16020840161270e565b60008060408385031215612b7357600080fd5b82359150612ab16020840161270e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612bcc57607f821691505b602082108103612bec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610af557610af5612bf2565b600082612c3c57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c2857600081815260208120601f850160051c81016020861015612c685750805b601f850160051c820191505b81811015612c8757828155600101612c74565b505050505050565b815167ffffffffffffffff811115612ca957612ca96128b2565b612cbd81612cb78454612bb8565b84612c41565b602080601f831160018114612cf25760008415612cda5750858301515b600019600386901b1c1916600185901b178555612c87565b600085815260208120601f198616915b82811015612d2157888601518255948401946001909101908401612d02565b5085821015612d3f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610af557610af5612bf2565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b60ff8181168382160190811115610af557610af5612bf2565b67ffffffffffffffff831115612db657612db66128b2565b612dca83612dc48354612bb8565b83612c41565b6000601f841160018114612dfe5760008515612de65750838201355b600019600387901b1c1916600186901b1783556117a6565b600083815260209020601f19861690835b82811015612e2f5786850135825560209485019460019092019101612e0f565b5086821015612e4c5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610af557610af5612bf2565b6000808454612e7f81612bb8565b60018281168015612e975760018114612eac57612edb565b60ff1984168752821515830287019450612edb565b8860005260208060002060005b85811015612ed25781548a820152908401908201612eb9565b50505082870194505b505050508351612eef818360208801612768565b64173539b7b760d91b9101908152600501949350505050565b600081612f1757612f17612bf2565b506000190190565b634e487b7160e01b600052603260045260246000fd5b600060018201612f4757612f47612bf2565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f819083018461278c565b9695505050505050565b600060208284031215612f9d57600080fd5b8151612707816126d456fea2646970667358221220b339c27eb53c3cd7dbd7e7a805c45b63dfd0f2c28334aa2931cddb12909f021b64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000b0ca168beab12821bb59e4339f4e8430b47fe084000000000000000000000000000000000000000000000000000000000000002354686520556e626f756e643a205068616e746f6d20436f6c6c656374696f6e20285229000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045550435200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): The Unbound: Phantom Collection (R)
Arg [1] : symbol (string): UPCR
Arg [2] : _royaltyReceiver (address): 0xb0CA168BeAb12821bb59E4339F4e8430B47fe084

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000b0ca168beab12821bb59e4339f4e8430b47fe084
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [4] : 54686520556e626f756e643a205068616e746f6d20436f6c6c656374696f6e20
Arg [5] : 2852290000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5550435200000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

379:8997:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:337;;;;;;;;;;-1:-1:-1;9034:337:16;;;;;:::i;:::-;;:::i;:::-;;;565:14:17;;558:22;540:41;;528:2;513:18;9034:337:16;;;;;;;;8791:142;;;;;;;;;;-1:-1:-1;8791:142:16;;;;;:::i;:::-;;:::i;:::-;;10048:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16911:223::-;;;;;;;;;;-1:-1:-1;16911:223:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2246:32:17;;;2228:51;;2216:2;2201:18;16911:223:3;2082:203:17;7442:159:16;;;;;;:::i;:::-;;:::i;2568:110::-;;;;;;;;;;-1:-1:-1;2568:110:16;;;;;:::i;:::-;;:::i;861:39::-;;;;;;;;;;-1:-1:-1;861:39:16;;;;;;;;;;;815:40;;;;;;;;;;-1:-1:-1;815:40:16;;;;;;;;;;;1365:31;;;;;;;;;;;;;;;;;;;2880:25:17;;;2868:2;2853:18;1365:31:16;2734:177:17;5894:317:3;;;;;;;;;;;;;:::i;7607:169:16:-;;;;;;:::i;:::-;;:::i;2426:136::-;;;;;;;;;;-1:-1:-1;2426:136:16;;;;;:::i;:::-;;:::i;953:50::-;;;;;;;;;;-1:-1:-1;953:50:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4144:4:17;4132:17;;;4114:36;;4102:2;4087:18;953:50:16;3972:184:17;8302:230:16;;;;;;;;;;-1:-1:-1;8302:230:16;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4606:32:17;;;4588:51;;4670:2;4655:18;;4648:34;;;;4561:18;8302:230:16;4414:274:17;3854:126:16;;;;;;;;;;-1:-1:-1;3854:126:16;;;;;:::i;:::-;;:::i;718:38::-;;;;;;;;;;;;;;;;2684:112;;;;;;;;;;-1:-1:-1;2684:112:16;;;;;:::i;:::-;;:::i;7115:142::-;;;;;;;;;;;;;:::i;7782:177::-;;;;;;:::i;:::-;;:::i;4698:689::-;;;;;;;;;;-1:-1:-1;4698:689:16;;;;;:::i;:::-;;:::i;1128:30::-;;;;;;;;;;-1:-1:-1;1128:30:16;;;;;;;;6327:345;;;;;;;;;;;;;:::i;3210:137::-;;;;;;;;;;-1:-1:-1;3210:137:16;;;;;:::i;:::-;;:::i;6898:207::-;;;;;;;;;;-1:-1:-1;6898:207:16;;;;;:::i;:::-;;:::i;11409:150:3:-;;;;;;;;;;-1:-1:-1;11409:150:3;;;;;:::i;:::-;;:::i;1402:73:16:-;;;;;;;;;;-1:-1:-1;1402:73:16;;;;-1:-1:-1;;;;;1402:73:16;;;484:38;;;;;;;;;;;;;;;;906:40;;;;;;;;;;-1:-1:-1;906:40:16;;;;;;;;;;;2807:202;;;;;;;;;;-1:-1:-1;2807:202:16;;;;;:::i;:::-;;:::i;7045:239:3:-;;;;;;;;;;-1:-1:-1;7045:239:3;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;5516:46:16:-;;;;;;;;;;-1:-1:-1;5516:46:16;;;;;:::i;:::-;;;;;;;;;;;;;;1009:51;;;;;;;;;;-1:-1:-1;1009:51:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;2172:110;;;;;;;;;;-1:-1:-1;2172:110:16;;;;;:::i;:::-;;:::i;1517:38::-;;;;;;;;;;;;;;;;1029:85:12;;;;;;;;;;-1:-1:-1;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;1029:85;;8660:125:16;;;;;;;;;;-1:-1:-1;8660:125:16;;;;;:::i;:::-;;:::i;10217:102:3:-;;;;;;;;;;;;;:::i;2289:132:16:-;;;;;;;;;;-1:-1:-1;2289:132:16;;;;;:::i;:::-;;:::i;1329:30::-;;;;;;;;;;;;;;;;1481;;;;;;;;;;-1:-1:-1;1481:30:16;;;;-1:-1:-1;;;;;1481:30:16;;;5621:700;;;;;;:::i;:::-;;:::i;7262:174::-;;;;;;;;;;-1:-1:-1;7262:174:16;;;;;:::i;:::-;;:::i;599:40::-;;;;;;;;;;;;;;;;8939:89;;;;;;;;;;;;;:::i;7965:202::-;;;;;;:::i;:::-;;:::i;3121:83::-;;;;;;;;;;;;;:::i;645:28::-;;;;;;;;;;;;;;;;3471:376;;;;;;;;;;-1:-1:-1;3471:376:16;;;;;:::i;:::-;;:::i;528:31::-;;;;;;;;;;;;;;;;679:33;;;;;;;;;;;;;;;;5394:111;;;;;;;;;;-1:-1:-1;5394:111:16;;;;;:::i;:::-;;:::i;565:28::-;;;;;;;;;;;;;;;;17842:162:3;;;;;;;;;;-1:-1:-1;17842:162:3;;;;;:::i;:::-;;:::i;6678:214:16:-;;;;;;;;;;-1:-1:-1;6678:214:16;;;;;:::i;:::-;;:::i;5568:46::-;;;;;;;;;;-1:-1:-1;5568:46:16;;;;;:::i;:::-;;;;;;;;;;;;;;3999:689;;;;;;;;;;-1:-1:-1;3999:689:16;;;;;:::i;:::-;;:::i;1911:198:12:-;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;765:43:16:-;;;;;;;;;;-1:-1:-1;765:43:16;;;;;;;;9034:337;9129:4;-1:-1:-1;;;;;;9152:40:16;;-1:-1:-1;;;9152:40:16;;:104;;-1:-1:-1;;;;;;;9208:48:16;;-1:-1:-1;;;9208:48:16;9152:104;:160;;;-1:-1:-1;;;;;;;9272:40:16;;-1:-1:-1;;;9272:40:16;9152:160;:212;;;;9328:36;9352:11;9328:23;:36::i;:::-;9145:219;9034:337;-1:-1:-1;;9034:337:16:o;8791:142::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;;;;;;;;;8884:42:16::1;8903:8;8913:12;8884:18;:42::i;:::-;8791:142:::0;;:::o;10048:98:3:-;10102:13;10134:5;10127:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10048:98;:::o;16911:223::-;16987:7;17011:16;17019:7;17011;:16::i;:::-;17006:73;;17029:50;-1:-1:-1;;;17029:7:3;:50::i;:::-;-1:-1:-1;17097:24:3;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;17097:30:3;;16911:223::o;7442:159:16:-;7546:8;8265:24;;;;3547:59:11;;;3580:26;3597:8;3580:16;:26::i;:::-;7562:32:16::1;7576:8;7586:7;7562:13;:32::i;:::-;7442:159:::0;;;:::o;2568:110::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2642:15:16::1;:29:::0;2568:110::o;5894:317:3:-;6164:12;;3107:1:16;6148:13:3;:28;-1:-1:-1;;6148:46:3;;5894:317::o;7607:169:16:-;7716:4;-1:-1:-1;;;;;3147:18:11;;3155:10;3147:18;3143:180;;8265:24:16;;;;3237:61:11;;;3270:28;3287:10;3270:16;:28::i;:::-;7732:37:16::1;7751:4;7757:2;7761:7;7732:18;:37::i;:::-;7607:169:::0;;;;:::o;2426:136::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2513:20:16::1;:42:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2513:42:16;;::::1;::::0;;;::::1;::::0;;2426:136::o;8302:230::-;8382:16;8400:21;8484:5;8463:17;;8450:10;:30;;;;:::i;:::-;8449:40;;;;:::i;:::-;8510:15;;-1:-1:-1;;;;;8510:15:16;;8433:56;;-1:-1:-1;8302:230:16;-1:-1:-1;;;8302:230:16:o;3854:126::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;3941:14:16::1;:32;3958:15:::0;3941:14;:32:::1;:::i;2684:112::-:0;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2759:16:16::1;:30:::0;2684:112::o;7115:142::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7213:37:16::1;::::0;7182:21:::1;::::0;7221:10:::1;::::0;7213:37;::::1;;;::::0;7182:21;;7164:15:::1;7213:37:::0;7164:15;7213:37;7182:21;7221:10;7213:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;7782:177:::0;7895:4;-1:-1:-1;;;;;3147:18:11;;3155:10;3147:18;3143:180;;8265:24:16;;;;3237:61:11;;;3270:28;3287:10;3270:16;:28::i;:::-;7911:41:16::1;7934:4;7940:2;7944:7;7911:22;:41::i;4698:689::-:0;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;12558:2:17;2317:63:13;;;12540:21:17;12597:2;12577:18;;;12570:30;12636:33;12616:18;;;12609:61;12687:18;;2317:63:13;12356:355:17;2317:63:13;1744:1;2455:7;:18;4806:19:16::1;::::0;;;::::1;;;4798:57;;;::::0;-1:-1:-1;;;4798:57:16;;12918:2:17;4798:57:16::1;::::0;::::1;12900:21:17::0;12957:2;12937:18;;;12930:30;12996:27;12976:18;;;12969:55;13041:18;;4798:57:16::1;12716:349:17::0;4798:57:16::1;4891:10;4873:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;:34:::0;4865:84:::1;;;::::0;-1:-1:-1;;;4865:84:16;;13272:2:17;4865:84:16::1;::::0;::::1;13254:21:17::0;13311:2;13291:18;;;13284:30;13350:34;13330:18;;;13323:62;-1:-1:-1;;;13401:18:17;;;13394:35;13446:19;;4865:84:16::1;13070:401:17::0;4865:84:16::1;4984:28;::::0;-1:-1:-1;;5001:10:16::1;13625:2:17::0;13621:15;13617:53;4984:28:16::1;::::0;::::1;13605:66:17::0;4959:12:16::1;::::0;13687::17;;4984:28:16::1;;;;;;;;;;;;4974:39;;;;;;4959:54;;5031:55;5050:12;;5031:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;5064:15:16::1;::::0;;-1:-1:-1;5081:4:16;;-1:-1:-1;5031:18:16::1;:55::i;:::-;5023:90;;;::::0;-1:-1:-1;;;5023:90:16;;13912:2:17;5023:90:16::1;::::0;::::1;13894:21:17::0;13951:2;13931:18;;;13924:30;-1:-1:-1;;;13970:18:17;;;13963:52;14032:18;;5023:90:16::1;13710:346:17::0;5023:90:16::1;5159:9;;5147:8;5131:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;5123:59;;;;-1:-1:-1::0;;;5123:59:16::1;;;;;;;:::i;:::-;5242:8;:13;;5254:1;5242:13;5234:53;;;::::0;-1:-1:-1;;;5234:53:16;;14730:2:17;5234:53:16::1;::::0;::::1;14712:21:17::0;14769:2;14749:18;;;14742:30;14808:29;14788:18;;;14781:57;14855:18;;5234:53:16::1;14528:351:17::0;5234:53:16::1;5298:31;5308:10;5320:8;5298:31;;:9;:31::i;:::-;5357:10;5339:29;::::0;;;:17:::1;:29;::::0;;;;:41;;5372:8;;5339:29;:41:::1;::::0;5372:8;;5339:41:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4788:599;1701:1:13::0;2628:7;:22;;;;4698:689:16;;;:::o;6327:345::-;6376:20;;;;;;;6368:53;;;;-1:-1:-1;;;6368:53:16;;15239:2:17;6368:53:16;;;15221:21:17;15278:2;15258:18;;;15251:30;-1:-1:-1;;;15297:18:17;;;15290:50;15357:18;;6368:53:16;15037:344:17;6368:53:16;6457:9;;6439:15;;:27;6431:49;;;;-1:-1:-1;;;6431:49:16;;;;;;;:::i;:::-;6524:10;;6510;6498:23;;;;:11;:23;;;;;;:36;6490:72;;;;-1:-1:-1;;;6490:72:16;;15588:2:17;6490:72:16;;;15570:21:17;15627:2;15607:18;;;15600:30;15666:25;15646:18;;;15639:53;15709:18;;6490:72:16;15386:347:17;6490:72:16;6585:10;6573:23;;;;:11;:23;;;;;:28;;6600:1;;6573:23;:28;;6600:1;;6573:28;:::i;:::-;;;;;;;;6630:1;6611:15;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;6641:24:16;;-1:-1:-1;6651:10:16;6663:1;6641:9;:24::i;:::-;6327:345::o;3210:137::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;3287:13:16::1;:26;3303:10:::0;;3287:13;:26:::1;:::i;:::-;-1:-1:-1::0;;3323:10:16::1;:17:::0;;-1:-1:-1;;3323:17:16::1;3336:4;3323:17;::::0;;-1:-1:-1;3210:137:16:o;6898:207::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7015:4:16::1;6993:18;:26;;6985:65;;;::::0;-1:-1:-1;;;6985:65:16;;17151:2:17;6985:65:16::1;::::0;::::1;17133:21:17::0;17190:2;17170:18;;;17163:30;17229:28;17209:18;;;17202:56;17275:18;;6985:65:16::1;16949:350:17::0;6985:65:16::1;7060:17;:38:::0;6898:207::o;11409:150:3:-;11481:7;11523:27;11542:7;11523:18;:27::i;2807:202:16:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2903:1:16::1;2888:12;:16;:49;;;;;2924:13;:11;:13::i;:::-;2908:12;:29;;2888:49;2880:88;;;::::0;-1:-1:-1;;;2880:88:16;;17506:2:17;2880:88:16::1;::::0;::::1;17488:21:17::0;17545:2;17525:18;;;17518:30;17584:28;17564:18;;;17557:56;17630:18;;2880:88:16::1;17304:350:17::0;2880:88:16::1;2978:9;:24:::0;2807:202::o;7045:239:3:-;7117:7;-1:-1:-1;;;;;7140:19:3;;7136:69;;7161:44;-1:-1:-1;;;7161:7:3;:44::i;:::-;-1:-1:-1;;;;;;7222:25:3;;;;;:18;:25;;;;;;1360:13;7222:55;;7045:239::o;1661:101:12:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;2172:110:16:-:0;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2245:20:16::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;2245:30:16;;::::1;::::0;;;::::1;::::0;;2172:110::o;8660:125::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;8613:15:16;:34;;-1:-1:-1;;;;;;8613:34:16;-1:-1:-1;;;;;8613:34:16;;;;;8660:125;:::o;8741:37::-:1;8660:125:::0;:::o;10217:102:3:-;10273:13;10305:7;10298:14;;;;;:::i;2289:132:16:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2374:19:16::1;:40:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2374:40:16;;::::1;::::0;;;::::1;::::0;;2289:132::o;5621:700::-;2070:9;2083:10;2070:23;2062:66;;;;-1:-1:-1;;;2062:66:16;;17861:2:17;2062:66:16;;;17843:21:17;17900:2;17880:18;;;17873:30;17939:32;17919:18;;;17912:60;17989:18;;2062:66:16;17659:354:17;2062:66:16;5699:20:::1;::::0;::::1;::::0;::::1;;;5691:52;;;::::0;-1:-1:-1;;;5691:52:16;;18220:2:17;5691:52:16::1;::::0;::::1;18202:21:17::0;18259:2;18239:18;;;18232:30;-1:-1:-1;;;18278:18:17;;;18271:49;18337:18;;5691:52:16::1;18018:343:17::0;5691:52:16::1;5789:9;;5777:8;5761:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;5753:58;;;::::0;-1:-1:-1;;;5753:58:16;;18568:2:17;5753:58:16::1;::::0;::::1;18550:21:17::0;18607:1;18587:18;;;18580:29;-1:-1:-1;;;18625:18:17;;;18618:38;18673:18;;5753:58:16::1;18366:331:17::0;5753:58:16::1;5874:9;::::0;5848:10:::1;5829:30;::::0;;;:18:::1;:30;::::0;;;;;:41:::1;::::0;5862:8;;5829:41:::1;:::i;:::-;:54;;5821:84;;;::::0;-1:-1:-1;;;5821:84:16;;18904:2:17;5821:84:16::1;::::0;::::1;18886:21:17::0;18943:2;18923:18;;;18916:30;-1:-1:-1;;;18962:18:17;;;18955:47;19019:18;;5821:84:16::1;18702:341:17::0;5821:84:16::1;5935:1;5923:8;:13;;5915:61;;;::::0;-1:-1:-1;;;5915:61:16;;19250:2:17;5915:61:16::1;::::0;::::1;19232:21:17::0;19289:2;19269:18;;;19262:30;19328:34;19308:18;;;19301:62;-1:-1:-1;;;19379:18:17;;;19372:33;19422:19;;5915:61:16::1;19048:399:17::0;5915:61:16::1;5986:18;6007:22;:8:::0;6018:11:::1;6007:22;:::i;:::-;5986:43;;6060:10;6047:9;:23;;6039:68;;;::::0;-1:-1:-1;;;6039:68:16;;19654:2:17;6039:68:16::1;::::0;::::1;19636:21:17::0;;;19673:18;;;19666:30;19732:34;19712:18;;;19705:62;19784:18;;6039:68:16::1;19452:356:17::0;6039:68:16::1;6133:10;6121:9;:22;6117:105;;;6167:10;6159:52;6188:22;6200:10:::0;6188:9:::1;:22;:::i;:::-;6159:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6117:105;6250:10;6231:30;::::0;;;:18:::1;:30;::::0;;;;:42;;6265:8;;6231:30;:42:::1;::::0;6265:8;;6231:42:::1;:::i;:::-;::::0;;;-1:-1:-1;6283:31:16::1;::::0;-1:-1:-1;6293:10:16::1;6305:8:::0;6283:9:::1;:31::i;7262:174::-:0;7366:8;8265:24;;;;3547:59:11;;;3580:26;3597:8;3580:16;:26::i;:::-;7386:43:16::1;7410:8;7420;7386:23;:43::i;8939:89::-:0;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;8998:23:16::1;3160:19:2::0;;3153:26;3093:93;7965:202:16;8097:4;-1:-1:-1;;;;;3147:18:11;;3155:10;3147:18;3143:180;;8265:24:16;;;;3237:61:11;;;3270:28;3287:10;3270:16;:28::i;:::-;8113:47:16::1;8136:4;8142:2;8146:7;8155:4;8113:22;:47::i;:::-;7965:202:::0;;;;;:::o;3121:83::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;3171:26:16::1;3181:10;3193:3;3171:9;:26::i;3471:376::-:0;3545:13;3578:17;3586:8;3578:7;:17::i;:::-;3570:77;;;;-1:-1:-1;;;3570:77:16;;20148:2:17;3570:77:16;;;20130:21:17;20187:2;20167:18;;;20160:30;20226:34;20206:18;;;20199:62;-1:-1:-1;;;20277:18:17;;;20270:45;20332:19;;3570:77:16;19946:411:17;3570:77:16;3661:10;;;;3657:184;;;3718:13;3733:26;3750:8;3733:16;:26::i;:::-;3701:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3687:83;;3471:376;;;:::o;3657:184::-;3816:14;3809:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3471:376;;;:::o;3657:184::-;3471:376;;;:::o;5394:111::-;-1:-1:-1;;;;;7449:25:3;;5452:7:16;7449:25:3;;;:18;:25;;1495:2;7449:25;;;;1360:13;7449:50;;7448:82;5478:20:16;7361:176:3;17842:162;-1:-1:-1;;;;;17962:25:3;;;17939:4;17962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17842:162::o;6678:214:16:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6808:9:16::1;;6793:11;6777:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;6769:73;;;::::0;-1:-1:-1;;;6769:73:16;;21756:2:17;6769:73:16::1;::::0;::::1;21738:21:17::0;21795:2;21775:18;;;21768:30;-1:-1:-1;;;21814:18:17;;;21807:50;21874:18;;6769:73:16::1;21554:344:17::0;6769:73:16::1;6852:33;6862:9;6873:11;6852:9;:33::i;3999:689::-:0;1744:1:13;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:13;;12558:2:17;2317:63:13;;;12540:21:17;12597:2;12577:18;;;12570:30;12636:33;12616:18;;;12609:61;12687:18;;2317:63:13;12356:355:17;2317:63:13;1744:1;2455:7;:18;4109:20:16::1;::::0;;;::::1;;;4101:65;;;::::0;-1:-1:-1;;;4101:65:16;;22105:2:17;4101:65:16::1;::::0;::::1;22087:21:17::0;;;22124:18;;;22117:30;22183:34;22163:18;;;22156:62;22235:18;;4101:65:16::1;21903:356:17::0;4101:65:16::1;4203:10;4184:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;:35:::0;4176:79:::1;;;::::0;-1:-1:-1;;;4176:79:16;;22466:2:17;4176:79:16::1;::::0;::::1;22448:21:17::0;22505:2;22485:18;;;22478:30;22544:33;22524:18;;;22517:61;22595:18;;4176:79:16::1;22264:355:17::0;4176:79:16::1;4290:28;::::0;-1:-1:-1;;4307:10:16::1;13625:2:17::0;13621:15;13617:53;4290:28:16::1;::::0;::::1;13605:66:17::0;4265:12:16::1;::::0;13687::17;;4290:28:16::1;;;;;;;;;;;;4280:39;;;;;;4265:54;;4337:56;4356:12;;4337:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;4370:16:16::1;::::0;;-1:-1:-1;4388:4:16;;-1:-1:-1;4337:18:16::1;:56::i;:::-;4329:91;;;::::0;-1:-1:-1;;;4329:91:16;;13912:2:17;4329:91:16::1;::::0;::::1;13894:21:17::0;13951:2;13931:18;;;13924:30;-1:-1:-1;;;13970:18:17;;;13963:52;14032:18;;4329:91:16::1;13710:346:17::0;4329:91:16::1;4466:9;;4454:8;4438:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;4430:59;;;;-1:-1:-1::0;;;4430:59:16::1;;;;;;;:::i;:::-;4549:8;:13;;4561:1;4549:13;4541:53;;;::::0;-1:-1:-1;;;4541:53:16;;22826:2:17;4541:53:16::1;::::0;::::1;22808:21:17::0;22865:2;22845:18;;;22838:30;22904:29;22884:18;;;22877:57;22951:18;;4541:53:16::1;22624:351:17::0;4541:53:16::1;4605:31;4615:10;4627:8;4605:31;;:9;:31::i;:::-;4665:10;4646:30;::::0;;;:18:::1;:30;::::0;;;;:35;;4680:1:::1;::::0;4646:30;:35:::1;::::0;4680:1;;4646:35:::1;;;:::i;1911:198:12:-:0;1075:7;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:0;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;23182:2:17;1991:73:12::1;::::0;::::1;23164:21:17::0;23221:2;23201:18;;;23194:30;23260:34;23240:18;;;23233:62;-1:-1:-1;;;23311:18:17;;;23304:36;23357:19;;1991:73:12::1;22980:402:17::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;1369:213:2:-:0;1471:4;-1:-1:-1;;;;;;1494:41:2;;-1:-1:-1;;;1494:41:2;;:81;;-1:-1:-1;;;;;;;;;;937:40:1;;;1539:36:2;829:155:1;2695:327:2;2422:5;-1:-1:-1;;;;;2797:33:2;;;;2789:88;;;;-1:-1:-1;;;2789:88:2;;23589:2:17;2789:88:2;;;23571:21:17;23628:2;23608:18;;;23601:30;23667:34;23647:18;;;23640:62;-1:-1:-1;;;23718:18:17;;;23711:40;23768:19;;2789:88:2;23387:406:17;2789:88:2;-1:-1:-1;;;;;2895:22:2;;2887:60;;;;-1:-1:-1;;;2887:60:2;;24000:2:17;2887:60:2;;;23982:21:17;24039:2;24019:18;;;24012:30;24078:27;24058:18;;;24051:55;24123:18;;2887:60:2;23798:349:17;2887:60:2;2980:35;;;;;;;;;-1:-1:-1;;;;;2980:35:2;;;;;;-1:-1:-1;;;;;2980:35:2;;;;;;;;;;-1:-1:-1;;;2958:57:2;;;;:19;:57;2695:327::o;18253:360:3:-;18318:11;18364:7;3107:1:16;18345:26:3;18341:266;;18401:13;;18391:7;:23;18387:210;;;18434:14;18466:60;-1:-1:-1;18483:26:3;;;;:17;:26;;;;;;;18473:42;;;18466:60;;18517:9;;;:::i;:::-;;;18466:60;;;-1:-1:-1;;;18553:24:3;:29;;18253:360;-1:-1:-1;;18253:360:3:o;43371:160::-;43470:13;43464:4;43457:27;43510:4;43504;43497:18;3728:1332:11;4115:22;4109:4;4102:36;4206:9;4200:4;4193:23;4279:8;4273:4;4266:22;4453:4;4447;4441;4435;4408:25;4401:5;4390:68;4380:270;;4572:16;4566:4;4560;4545:44;4619:16;4613:4;4606:30;4380:270;5042:1;5036:4;5029:15;3728:1332;:::o;16639:122:3:-;16727:27;16736:2;16740:7;16749:4;16727:8;:27::i;20546:3447::-;20683:27;20713;20732:7;20713:18;:27::i;:::-;-1:-1:-1;;;;;20865:22:3;;;;20683:57;;-1:-1:-1;20923:45:3;;;;20919:95;;20970:44;-1:-1:-1;;;20970:7:3;:44::i;:::-;21026:27;19679:24;;;:15;:24;;;;;19903:26;;719:10:0;19316:30:3;;;-1:-1:-1;;;;;19013:28:3;;19294:20;;;19291:56;21209:188;;21301:43;21318:4;719:10:0;17842:162:3;:::i;21301:43::-;21296:101;;21346:51;-1:-1:-1;;;21346:7:3;:51::i;:::-;21540:15;21537:157;;;21678:1;21657:19;21650:30;21537:157;-1:-1:-1;;;;;22066:24:3;;;;;;;:18;:24;;;;;;22064:26;;-1:-1:-1;;22064:26:3;;;22134:22;;;;;;;;;22132:24;;-1:-1:-1;22132:24:3;;;15767:11;15742:23;15738:41;15725:63;-1:-1:-1;;;15725:63:3;22420:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;22709:47:3;;:52;;22705:617;;22813:1;22803:11;;22781:19;22934:30;;;:17;:30;;;;;;:35;;22930:378;;23070:13;;23055:11;:28;23051:239;;23215:30;;;;:17;:30;;;;;:52;;;23051:239;22763:559;22705:617;-1:-1:-1;;;;;23450:20:3;;23821:7;23450:20;23753:4;23696:25;23431:16;;23564:292;23879:8;23891:1;23879:13;23875:58;;23894:39;-1:-1:-1;;;23894:7:3;:39::i;:::-;20673:3320;;;;20546:3447;;;:::o;24084:187::-;24225:39;24242:4;24248:2;24252:7;24225:39;;;;;;;;;;;;:16;:39::i;862:184:10:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:10:o;34129:110:3:-;34205:27;34215:2;34219:8;34205:27;;;;;;;;;;;;:9;:27::i;12850:1978::-;12917:14;12966:7;3107:1:16;12947:26:3;12943:1822;;-1:-1:-1;12998:26:3;;;;:17;:26;;;;;;;13122:11;;;13118:1270;;13168:13;;13157:7;:24;13153:77;;13183:47;-1:-1:-1;;;13183:7:3;:47::i;:::-;13777:597;-1:-1:-1;;;13871:9:3;13853:28;;;;:17;:28;;;;;;13925:25;;13777:597;13925:25;-1:-1:-1;;;13976:6:3;:24;14004:1;13976:29;13972:48;;12850:1978;;;:::o;13972:48::-;14308:47;-1:-1:-1;;;14308:7:3;:47::i;:::-;13777:597;;13118:1270;-1:-1:-1;;;14710:6:3;:24;14738:1;14710:29;14706:48;;12850:1978;;;:::o;14706:48::-;14774:47;-1:-1:-1;;;14774:7:3;:47::i;2263:187:12:-;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;17461:231:3:-;719:10:0;17555:39:3;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17555:49:3;;;;;;;;;;;;:60;;-1:-1:-1;;17555:60:3;;;;;;;;;;17630:55;;540:41:17;;;17555:49:3;;719:10:0;17630:55:3;;513:18:17;17630:55:3;;;;;;;17461:231;;:::o;24852:405::-;25021:31;25034:4;25040:2;25044:7;25021:12;:31::i;:::-;-1:-1:-1;;;;;25066:14:3;;;:19;25062:189;;25104:56;25135:4;25141:2;25145:7;25154:5;25104:30;:56::i;:::-;25099:152;;25180:56;-1:-1:-1;;;25180:7:3;:56::i;437:696:15:-;493:13;542:14;559:17;570:5;559:10;:17::i;:::-;579:1;559:21;542:38;;594:20;628:6;617:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;617:18:15;-1:-1:-1;594:41:15;-1:-1:-1;755:28:15;;;771:2;755:28;810:280;-1:-1:-1;;841:5:15;-1:-1:-1;;;975:2:15;964:14;;959:30;841:5;946:44;1034:2;1025:11;;;-1:-1:-1;1054:21:15;810:280;1054:21;-1:-1:-1;1110:6:15;437:696;-1:-1:-1;;;437:696:15:o;35019:460:3:-;35143:13;35159:16;35167:7;35159;:16::i;:::-;35143:32;;35190:13;:45;;;;-1:-1:-1;719:10:0;-1:-1:-1;;;;;35207:28:3;;;;35190:45;35186:198;;;35254:44;35271:5;719:10:0;17842:162:3;:::i;35254:44::-;35249:135;;35318:51;-1:-1:-1;;;35318:7:3;:51::i;:::-;35394:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;35394:35:3;-1:-1:-1;;;;;35394:35:3;;;;;;;;;35444:28;;35394:24;;35444:28;;;;;;;35133:346;35019:460;;;:::o;1398:662:10:-;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:10;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:10;1398:662;-1:-1:-1;;;1398:662:10:o;33362:688:3:-;33488:19;33494:2;33498:8;33488:5;:19::i;:::-;-1:-1:-1;;;;;33546:14:3;;;:19;33542:492;;33599:13;;33646:14;;;33678:238;33708:62;33747:1;33751:2;33755:7;;;;;;33764:5;33708:30;:62::i;:::-;33703:174;;33798:56;-1:-1:-1;;;33798:7:3;:56::i;:::-;33911:3;33903:5;:11;33678:238;;33996:3;33979:13;;:20;33975:44;;34001:18;34016:1;34001:7;:18::i;27283:673::-;27461:88;;-1:-1:-1;;;27461:88:3;;27441:4;;-1:-1:-1;;;;;27461:45:3;;;;;:88;;719:10:0;;27528:4:3;;27534:7;;27543:5;;27461:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27461:88:3;;;;;;;;-1:-1:-1;;27461:88:3;;;;;;;;;;;;:::i;:::-;;;27457:493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27739:6;:13;27756:1;27739:18;27735:113;;27777:56;-1:-1:-1;;;27777:7:3;:56::i;:::-;27918:6;27912:13;27903:6;27899:2;27895:15;27888:38;27457:493;-1:-1:-1;;;;;;27617:64:3;-1:-1:-1;;;27617:64:3;;-1:-1:-1;27457:493:3;27283:673;;;;;;:::o;10139:916:9:-;10192:7;;-1:-1:-1;;;10267:17:9;;10263:103;;-1:-1:-1;;;10304:17:9;;;-1:-1:-1;10349:2:9;10339:12;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;-1:-1:-1;10465:2:9;10455:12;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;-1:-1:-1;10581:2:9;10571:12;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;-1:-1:-1;10695:1:9;10685:11;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;-1:-1:-1;10808:1:9;10798:11;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;-1:-1:-1;10921:1:9;10911:11;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;11042:6;10139:916;-1:-1:-1;;10139:916:9:o;28402:2251:3:-;28497:13;;28474:20;28524:13;;;28520:53;;28539:34;-1:-1:-1;;;28539:7:3;:34::i;:::-;29073:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;15595:28:3;;15767:11;15742:23;15738:41;16200:1;16187:15;;16161:24;16157:46;15735:52;15725:63;;29073:170;;;29454:22;;;:18;:22;;;;;:71;;29492:32;29480:45;;29454:71;;;15595:28;29710:13;;;29706:54;;29725:35;-1:-1:-1;;;29725:7:3;:35::i;:::-;29789:23;;;:12;29871:662;30281:7;30238:8;30194:1;30129:25;30067:1;30003;29973:351;30528:3;30515:9;;;;;;:16;29871:662;;-1:-1:-1;30547:13:3;:19;-1:-1:-1;7442:159:16;;;:::o;14:131:17:-;-1:-1:-1;;;;;;88:32:17;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:17:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:17;;699:42;;689:70;;755:1;752;745:12;770:366;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:17;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:250::-;1226:1;1236:113;1250:6;1247:1;1244:13;1236:113;;;1326:11;;;1320:18;1307:11;;;1300:39;1272:2;1265:10;1236:113;;;-1:-1:-1;;1383:1:17;1365:16;;1358:27;1141:250::o;1396:271::-;1438:3;1476:5;1470:12;1503:6;1498:3;1491:19;1519:76;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1519:76;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:17;1615:39;;;;1656:4;1611:50;;1396:271;-1:-1:-1;;1396:271:17:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;1897:180::-;1956:6;2009:2;1997:9;1988:7;1984:23;1980:32;1977:52;;;2025:1;2022;2015:12;1977:52;-1:-1:-1;2048:23:17;;1897:180;-1:-1:-1;1897:180:17:o;2290:254::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;2534:2;2519:18;;;;2506:32;;-1:-1:-1;;;2290:254:17:o;3098:328::-;3175:6;3183;3191;3244:2;3232:9;3223:7;3219:23;3215:32;3212:52;;;3260:1;3257;3250:12;3212:52;3283:29;3302:9;3283:29;:::i;:::-;3273:39;;3331:38;3365:2;3354:9;3350:18;3331:38;:::i;:::-;3321:48;;3416:2;3405:9;3401:18;3388:32;3378:42;;3098:328;;;;;:::o;3431:160::-;3496:20;;3552:13;;3545:21;3535:32;;3525:60;;3581:1;3578;3571:12;3596:180;3652:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;3744:26;3760:9;3744:26;:::i;3781:186::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3932:29;3951:9;3932:29;:::i;4161:248::-;4229:6;4237;4290:2;4278:9;4269:7;4265:23;4261:32;4258:52;;;4306:1;4303;4296:12;4258:52;-1:-1:-1;;4329:23:17;;;4399:2;4384:18;;;4371:32;;-1:-1:-1;4161:248:17:o;4693:127::-;4754:10;4749:3;4745:20;4742:1;4735:31;4785:4;4782:1;4775:15;4809:4;4806:1;4799:15;4825:632;4890:5;4920:18;4961:2;4953:6;4950:14;4947:40;;;4967:18;;:::i;:::-;5042:2;5036:9;5010:2;5096:15;;-1:-1:-1;;5092:24:17;;;5118:2;5088:33;5084:42;5072:55;;;5142:18;;;5162:22;;;5139:46;5136:72;;;5188:18;;:::i;:::-;5228:10;5224:2;5217:22;5257:6;5248:15;;5287:6;5279;5272:22;5327:3;5318:6;5313:3;5309:16;5306:25;5303:45;;;5344:1;5341;5334:12;5303:45;5394:6;5389:3;5382:4;5374:6;5370:17;5357:44;5449:1;5442:4;5433:6;5425;5421:19;5417:30;5410:41;;;;4825:632;;;;;:::o;5462:451::-;5531:6;5584:2;5572:9;5563:7;5559:23;5555:32;5552:52;;;5600:1;5597;5590:12;5552:52;5640:9;5627:23;5673:18;5665:6;5662:30;5659:50;;;5705:1;5702;5695:12;5659:50;5728:22;;5781:4;5773:13;;5769:27;-1:-1:-1;5759:55:17;;5810:1;5807;5800:12;5759:55;5833:74;5899:7;5894:2;5881:16;5876:2;5872;5868:11;5833:74;:::i;5918:772::-;6011:6;6019;6027;6080:2;6068:9;6059:7;6055:23;6051:32;6048:52;;;6096:1;6093;6086:12;6048:52;6135:9;6122:23;6185:4;6178:5;6174:16;6167:5;6164:27;6154:55;;6205:1;6202;6195:12;6154:55;6228:5;-1:-1:-1;6284:2:17;6269:18;;6256:32;6307:18;6337:14;;;6334:34;;;6364:1;6361;6354:12;6334:34;6402:6;6391:9;6387:22;6377:32;;6447:7;6440:4;6436:2;6432:13;6428:27;6418:55;;6469:1;6466;6459:12;6418:55;6509:2;6496:16;6535:2;6527:6;6524:14;6521:34;;;6551:1;6548;6541:12;6521:34;6604:7;6599:2;6589:6;6586:1;6582:14;6578:2;6574:23;6570:32;6567:45;6564:65;;;6625:1;6622;6615:12;6564:65;6656:2;6652;6648:11;6638:21;;6678:6;6668:16;;;;;5918:772;;;;;:::o;6695:592::-;6766:6;6774;6827:2;6815:9;6806:7;6802:23;6798:32;6795:52;;;6843:1;6840;6833:12;6795:52;6883:9;6870:23;6912:18;6953:2;6945:6;6942:14;6939:34;;;6969:1;6966;6959:12;6939:34;7007:6;6996:9;6992:22;6982:32;;7052:7;7045:4;7041:2;7037:13;7033:27;7023:55;;7074:1;7071;7064:12;7023:55;7114:2;7101:16;7140:2;7132:6;7129:14;7126:34;;;7156:1;7153;7146:12;7126:34;7201:7;7196:2;7187:6;7183:2;7179:15;7175:24;7172:37;7169:57;;;7222:1;7219;7212:12;7169:57;7253:2;7245:11;;;;;7275:6;;-1:-1:-1;6695:592:17;;-1:-1:-1;;;;6695:592:17:o;7292:254::-;7357:6;7365;7418:2;7406:9;7397:7;7393:23;7389:32;7386:52;;;7434:1;7431;7424:12;7386:52;7457:29;7476:9;7457:29;:::i;:::-;7447:39;;7505:35;7536:2;7525:9;7521:18;7505:35;:::i;:::-;7495:45;;7292:254;;;;;:::o;7551:667::-;7646:6;7654;7662;7670;7723:3;7711:9;7702:7;7698:23;7694:33;7691:53;;;7740:1;7737;7730:12;7691:53;7763:29;7782:9;7763:29;:::i;:::-;7753:39;;7811:38;7845:2;7834:9;7830:18;7811:38;:::i;:::-;7801:48;;7896:2;7885:9;7881:18;7868:32;7858:42;;7951:2;7940:9;7936:18;7923:32;7978:18;7970:6;7967:30;7964:50;;;8010:1;8007;8000:12;7964:50;8033:22;;8086:4;8078:13;;8074:27;-1:-1:-1;8064:55:17;;8115:1;8112;8105:12;8064:55;8138:74;8204:7;8199:2;8186:16;8181:2;8177;8173:11;8138:74;:::i;:::-;8128:84;;;7551:667;;;;;;;:::o;8223:260::-;8291:6;8299;8352:2;8340:9;8331:7;8327:23;8323:32;8320:52;;;8368:1;8365;8358:12;8320:52;8391:29;8410:9;8391:29;:::i;:::-;8381:39;;8439:38;8473:2;8462:9;8458:18;8439:38;:::i;8488:254::-;8556:6;8564;8617:2;8605:9;8596:7;8592:23;8588:32;8585:52;;;8633:1;8630;8623:12;8585:52;8669:9;8656:23;8646:33;;8698:38;8732:2;8721:9;8717:18;8698:38;:::i;8747:356::-;8949:2;8931:21;;;8968:18;;;8961:30;9027:34;9022:2;9007:18;;9000:62;9094:2;9079:18;;8747:356::o;9108:380::-;9187:1;9183:12;;;;9230;;;9251:61;;9305:4;9297:6;9293:17;9283:27;;9251:61;9358:2;9350:6;9347:14;9327:18;9324:38;9321:161;;9404:10;9399:3;9395:20;9392:1;9385:31;9439:4;9436:1;9429:15;9467:4;9464:1;9457:15;9321:161;;9108:380;;;:::o;9493:127::-;9554:10;9549:3;9545:20;9542:1;9535:31;9585:4;9582:1;9575:15;9609:4;9606:1;9599:15;9625:168;9698:9;;;9729;;9746:15;;;9740:22;;9726:37;9716:71;;9767:18;;:::i;9930:217::-;9970:1;9996;9986:132;;10040:10;10035:3;10031:20;10028:1;10021:31;10075:4;10072:1;10065:15;10103:4;10100:1;10093:15;9986:132;-1:-1:-1;10132:9:17;;9930:217::o;10278:545::-;10380:2;10375:3;10372:11;10369:448;;;10416:1;10441:5;10437:2;10430:17;10486:4;10482:2;10472:19;10556:2;10544:10;10540:19;10537:1;10533:27;10527:4;10523:38;10592:4;10580:10;10577:20;10574:47;;;-1:-1:-1;10615:4:17;10574:47;10670:2;10665:3;10661:12;10658:1;10654:20;10648:4;10644:31;10634:41;;10725:82;10743:2;10736:5;10733:13;10725:82;;;10788:17;;;10769:1;10758:13;10725:82;;;10729:3;;;10278:545;;;:::o;10999:1352::-;11125:3;11119:10;11152:18;11144:6;11141:30;11138:56;;;11174:18;;:::i;:::-;11203:97;11293:6;11253:38;11285:4;11279:11;11253:38;:::i;:::-;11247:4;11203:97;:::i;:::-;11355:4;;11419:2;11408:14;;11436:1;11431:663;;;;12138:1;12155:6;12152:89;;;-1:-1:-1;12207:19:17;;;12201:26;12152:89;-1:-1:-1;;10956:1:17;10952:11;;;10948:24;10944:29;10934:40;10980:1;10976:11;;;10931:57;12254:81;;11401:944;;11431:663;10225:1;10218:14;;;10262:4;10249:18;;-1:-1:-1;;11467:20:17;;;11585:236;11599:7;11596:1;11593:14;11585:236;;;11688:19;;;11682:26;11667:42;;11780:27;;;;11748:1;11736:14;;;;11615:19;;11585:236;;;11589:3;11849:6;11840:7;11837:19;11834:201;;;11910:19;;;11904:26;-1:-1:-1;;11993:1:17;11989:14;;;12005:3;11985:24;11981:37;11977:42;11962:58;11947:74;;11834:201;-1:-1:-1;;;;;12081:1:17;12065:14;;;12061:22;12048:36;;-1:-1:-1;10999:1352:17:o;14061:125::-;14126:9;;;14147:10;;;14144:36;;;14160:18;;:::i;14191:332::-;14393:2;14375:21;;;14432:1;14412:18;;;14405:29;-1:-1:-1;;;14465:2:17;14450:18;;14443:39;14514:2;14499:18;;14191:332::o;14884:148::-;14972:4;14951:12;;;14965;;;14947:31;;14990:13;;14987:39;;;15006:18;;:::i;15738:1206::-;15862:18;15857:3;15854:27;15851:53;;;15884:18;;:::i;:::-;15913:94;16003:3;15963:38;15995:4;15989:11;15963:38;:::i;:::-;15957:4;15913:94;:::i;:::-;16033:1;16058:2;16053:3;16050:11;16075:1;16070:616;;;;16730:1;16747:3;16744:93;;;-1:-1:-1;16803:19:17;;;16790:33;16744:93;-1:-1:-1;;10956:1:17;10952:11;;;10948:24;10944:29;10934:40;10980:1;10976:11;;;10931:57;16850:78;;16043:895;;16070:616;10225:1;10218:14;;;10262:4;10249:18;;-1:-1:-1;;16106:17:17;;;16207:9;16229:229;16243:7;16240:1;16237:14;16229:229;;;16332:19;;;16319:33;16304:49;;16439:4;16424:20;;;;16392:1;16380:14;;;;16259:12;16229:229;;;16233:3;16486;16477:7;16474:16;16471:159;;;16610:1;16606:6;16600:3;16594;16591:1;16587:11;16583:21;16579:34;16575:39;16562:9;16557:3;16553:19;16540:33;16536:79;16528:6;16521:95;16471:159;;;16673:1;16667:3;16664:1;16660:11;16656:19;16650:4;16643:33;16043:895;;15738:1206;;;:::o;19813:128::-;19880:9;;;19901:11;;;19898:37;;;19915:18;;:::i;20362:1187::-;20639:3;20668:1;20701:6;20695:13;20731:36;20757:9;20731:36;:::i;:::-;20786:1;20803:18;;;20830:133;;;;20977:1;20972:356;;;;20796:532;;20830:133;-1:-1:-1;;20863:24:17;;20851:37;;20936:14;;20929:22;20917:35;;20908:45;;;-1:-1:-1;20830:133:17;;20972:356;21003:6;21000:1;20993:17;21033:4;21078:2;21075:1;21065:16;21103:1;21117:165;21131:6;21128:1;21125:13;21117:165;;;21209:14;;21196:11;;;21189:35;21252:16;;;;21146:10;;21117:165;;;21121:3;;;21311:6;21306:3;21302:16;21295:23;;20796:532;;;;;21359:6;21353:13;21375:68;21434:8;21429:3;21422:4;21414:6;21410:17;21375:68;:::i;:::-;-1:-1:-1;;;21465:18:17;;21492:22;;;21541:1;21530:13;;20362:1187;-1:-1:-1;;;;20362:1187:17:o;24152:136::-;24191:3;24219:5;24209:39;;24228:18;;:::i;:::-;-1:-1:-1;;;24264:18:17;;24152:136::o;24293:127::-;24354:10;24349:3;24345:20;24342:1;24335:31;24385:4;24382:1;24375:15;24409:4;24406:1;24399:15;24425:135;24464:3;24485:17;;;24482:43;;24505:18;;:::i;:::-;-1:-1:-1;24552:1:17;24541:13;;24425:135::o;24565:489::-;-1:-1:-1;;;;;24834:15:17;;;24816:34;;24886:15;;24881:2;24866:18;;24859:43;24933:2;24918:18;;24911:34;;;24981:3;24976:2;24961:18;;24954:31;;;24759:4;;25002:46;;25028:19;;25020:6;25002:46;:::i;:::-;24994:54;24565:489;-1:-1:-1;;;;;;24565:489:17:o;25059:249::-;25128:6;25181:2;25169:9;25160:7;25156:23;25152:32;25149:52;;;25197:1;25194;25187:12;25149:52;25229:9;25223:16;25248:30;25272:5;25248:30;:::i

Swarm Source

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