ETH Price: $3,387.84 (-1.72%)
Gas: 4 Gwei

Token

Cigawrettes (CIG)
 

Overview

Max Total Supply

9,998 CIG

Holders

1,863

Market

Volume (24H)

0.2035 ETH

Min Price (24H)

$60.30 @ 0.017800 ETH

Max Price (24H)

$169.39 @ 0.050000 ETH
Filtered by Token Holder
pinkbubblegum.eth
Balance
1 CIG
0x7cd4854339e35fa0243792685baebce73d6a23d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An experimental literature project of 9999 NFTs exploring the space between PFP and utility.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cigawrettes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 1 of 8: Cigawrettes.sol
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ECDSA.sol";
import "./MerkleProof.sol";

contract Cigawrettes is ERC721A, Ownable {
    using ECDSA for bytes32;

    uint256 constant AMOUNT = 1;
    uint256 constant MAX = 20;
    uint256 constant CIG_MAX = 9999;
    uint256 constant RESERVE_MAX = 500;
    uint256 constant PRICE = 0.0333 ether;
    uint256 constant EARLY_PRICE = 0.0111 ether;
    uint256 constant EARLY_DATE = 1664596800;
    uint256 constant PRESALE_DATE = 1663945200;
    uint256 private _reserveMinted = 0;
    bytes32 private _merkleRoot;
    string private _baseTokenURI;

    constructor(string memory baseURI) ERC721A("Cigawrettes", "CIG") {
        _baseTokenURI = baseURI;
    }

    modifier callerIsUser() {
        require(
            tx.origin == msg.sender,
            "Are you who you say you are?"
        );
        _;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function getPrice(uint256 quantity) internal view returns (uint256) {
        uint256 unit = ((block.timestamp > EARLY_DATE) ? PRICE : EARLY_PRICE);
        if(quantity >= 5 && quantity < 11) {
            return unit * quantity * 90 / 100;
        } else if (quantity >= 11) {
            return unit * quantity * 81 / 100;
        } else {
            return unit * quantity;
        }
    }

    function mint(uint256 quantity) external callerIsUser payable {
        require(block.timestamp > PRESALE_DATE, "Still in presale, try again Sept 23th @ 11am EST!");
        require(_totalMinted() + quantity < CIG_MAX, "Not enough Cigawrettes left.");
        require(msg.value >= getPrice(quantity), "Not enough eth");
        require(balanceOf(msg.sender) + quantity < 20, "Can't buy more than 20 Packs.");
        _safeMint(msg.sender, quantity);
    }

    function freeMint(uint256 quantity, bytes32[] memory proof) external callerIsUser payable {
        require(_merkleRoot != "", "Free Mint merkle tree not set");
        require(
            MerkleProof.verify(
                proof,
                _merkleRoot,
                keccak256(abi.encodePacked(msg.sender, AMOUNT))
            ),
            "I'm sorry you're not on the presale list"
        );
        require(_totalMinted() + quantity < CIG_MAX, "Not enough Cigawrettes left.");
        require(msg.value >= (getPrice(balanceOf(msg.sender) < 1 ? quantity - 1 : quantity)), "Not enough eth");
        require(balanceOf(msg.sender) + quantity < 20, "Can't buy more than 20 Packs.");
        _safeMint(msg.sender, quantity);
    }

    function reserveMint(address[] memory to) external onlyOwner {
        require(_totalMinted() + to.length < CIG_MAX, "Not enough Cigawrettes left.");
        require(_reserveMinted + to.length < RESERVE_MAX, "Too many reserves, not allowed.");
        _reserveMinted += to.length;
        for (uint i=0; i<to.length; i++) {
            _safeMint(to[i], AMOUNT);
        }
    }

    function setMerkleRoot(bytes32 newMerkleRoot_) external onlyOwner {
        _merkleRoot = newMerkleRoot_;
    }

    function withdraw(address payable to) external onlyOwner {
        require(to != address(0));
        to.transfer(address(this).balance);
    }

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

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

File 2 of 8: 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 3 of 8: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 8: 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();
        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();

        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 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an 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, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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.
     * 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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `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();
            }
    }

    /**
     * @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();
            } else {
                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();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // 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`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

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

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

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

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

    /**
     * @dev 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();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

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

File 5 of 8: 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 6 of 8: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 8: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 8 of 8: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009553480156200001657600080fd5b50604051620038823803806200388283398181016040528101906200003c919062000333565b6040518060400160405280600b81526020017f43696761777265747465730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43494700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c092919062000205565b508060039080519060200190620000d992919062000205565b50620000ea6200013260201b60201c565b600081905550505062000112620001066200013760201b60201c565b6200013f60201b60201c565b80600b90805190602001906200012a92919062000205565b505062000508565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002139062000419565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b6000620002cc620002c684620003ad565b62000384565b905082815260208101848484011115620002eb57620002ea620004e8565b5b620002f8848285620003e3565b509392505050565b600082601f830112620003185762000317620004e3565b5b81516200032a848260208601620002b5565b91505092915050565b6000602082840312156200034c576200034b620004f2565b5b600082015167ffffffffffffffff8111156200036d576200036c620004ed565b5b6200037b8482850162000300565b91505092915050565b600062000390620003a3565b90506200039e82826200044f565b919050565b6000604051905090565b600067ffffffffffffffff821115620003cb57620003ca620004b4565b5b620003d682620004f7565b9050602081019050919050565b60005b8381101562000403578082015181840152602081019050620003e6565b8381111562000413576000848401525b50505050565b600060028204905060018216806200043257607f821691505b6020821081141562000449576200044862000485565b5b50919050565b6200045a82620004f7565b810181811067ffffffffffffffff821117156200047c576200047b620004b4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61336a80620005186000396000f3fe6080604052600436106101405760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde14610410578063c87b56dd1461042c578063cec5f26614610469578063e2f36dce14610492578063e985e9c5146104ae578063f2fde38b146104eb57610140565b8063715018a6146103355780637cb647591461034c5780638da5cb5b1461037557806395d89b41146103a0578063a0712d68146103cb578063a22cb465146103e757610140565b806323b872dd1161010857806323b872dd1461023157806342842e0e1461024d57806351cff8d91461026957806355f804b3146102925780636352211e146102bb57806370a08231146102f857610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c6004803603810190610167919061253c565b610514565b60405161017991906129db565b60405180910390f35b34801561018e57600080fd5b506101976105a6565b6040516101a491906129f6565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906125e3565b610638565b6040516101e19190612974565b60405180910390f35b61020460048036038101906101ff9190612486565b6106b7565b005b34801561021257600080fd5b5061021b6107fb565b6040516102289190612b58565b60405180910390f35b61024b60048036038101906102469190612370565b610812565b005b61026760048036038101906102629190612370565b610b37565b005b34801561027557600080fd5b50610290600480360381019061028b9190612303565b610b57565b005b34801561029e57600080fd5b506102b960048036038101906102b49190612596565b610be3565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906125e3565b610c01565b6040516102ef9190612974565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906122d6565b610c13565b60405161032c9190612b58565b60405180910390f35b34801561034157600080fd5b5061034a610ccc565b005b34801561035857600080fd5b50610373600480360381019061036e919061250f565b610ce0565b005b34801561038157600080fd5b5061038a610cf2565b6040516103979190612974565b60405180910390f35b3480156103ac57600080fd5b506103b5610d1c565b6040516103c291906129f6565b60405180910390f35b6103e560048036038101906103e091906125e3565b610dae565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612446565b610f66565b005b61042a600480360381019061042591906123c3565b611071565b005b34801561043857600080fd5b50610453600480360381019061044e91906125e3565b6110e4565b60405161046091906129f6565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906124c6565b611183565b005b6104ac60048036038101906104a79190612610565b611296565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612330565b6114e7565b6040516104e291906129db565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906122d6565b61157b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061059f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b590612e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546105e190612e4b565b801561062e5780601f106106035761010080835404028352916020019161062e565b820191906000526020600020905b81548152906001019060200180831161061157829003601f168201915b5050505050905090565b6000610643826115ff565b610679576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c282610c01565b90508073ffffffffffffffffffffffffffffffffffffffff166106e361165e565b73ffffffffffffffffffffffffffffffffffffffff16146107465761070f8161070a61165e565b6114e7565b610745576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610805611666565b6001546000540303905090565b600061081d8261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610884576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061089084611739565b915091506108a681876108a161165e565b611760565b6108f2576108bb866108b661165e565b6114e7565b6108f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610959576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096686868660016117a4565b801561097157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a3f85610a1b8888876117aa565b7c0200000000000000000000000000000000000000000000000000000000176117d2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ac7576000600185019050600060046000838152602001908152602001600020541415610ac5576000548114610ac4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b2f86868660016117fd565b505050505050565b610b5283838360405180602001604052806000815250611071565b505050565b610b5f611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bdf573d6000803e3d6000fd5b5050565b610beb611803565b8181600b9190610bfc929190611f9e565b505050565b6000610c0c8261166b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cd4611803565b610cde6000611881565b565b610ce8611803565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2b90612e4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5790612e4b565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390612a18565b60405180910390fd5b63632dc9f04211610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990612b18565b60405180910390fd5b61270f81610e6e611947565b610e789190612c64565b10610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612a78565b60405180910390fd5b610ec18161195a565b341015610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90612a58565b60405180910390fd5b601481610f0f33610c13565b610f199190612c64565b10610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090612ab8565b60405180910390fd5b610f633382611a0b565b50565b8060076000610f7361165e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102061165e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106591906129db565b60405180910390a35050565b61107c848484610812565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110de576110a784848484611a29565b6110dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110ef826115ff565b611125576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061112f611b89565b9050600081511415611150576040518060200160405280600081525061117b565b8061115a84611c1b565b60405160200161116b92919061293a565b6040516020818303038152906040525b915050919050565b61118b611803565b61270f8151611198611947565b6111a29190612c64565b106111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612a78565b60405180910390fd5b6101f481516009546111f49190612c64565b10611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612ad8565b60405180910390fd5b8051600960008282546112479190612c64565b9250508190555060005b81518110156112925761127f8282815181106112705761126f612fb2565b5b60200260200101516001611a0b565b808061128a90612eae565b915050611251565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612a18565b60405180910390fd5b6000600a54141561134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190612b38565b60405180910390fd5b61138081600a5433600160405160200161136592919061290e565b60405160208183030381529060405280519060200120611c74565b6113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612a98565b60405180910390fd5b61270f826113cb611947565b6113d59190612c64565b10611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90612a78565b60405180910390fd5b611441600161142333610c13565b1061142e578261143c565b60018361143b9190612d45565b5b61195a565b341015611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90612a58565b60405180910390fd5b60148261148f33610c13565b6114999190612c64565b106114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090612ab8565b60405180910390fd5b6114e33383611a0b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611583611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90612a38565b60405180910390fd5b6115fc81611881565b50565b60008161160a611666565b11158015611619575060005482105b8015611657575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061167a611666565b11611702576000548110156117015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ff575b60008114156116f55760046000836001900393508381526020019081526020016000205490506116ca565b8092505050611734565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c1868684611c8b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61180b611c94565b73ffffffffffffffffffffffffffffffffffffffff16611829610cf2565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690612af8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611951611666565b60005403905090565b600080636337bb4042116119755766276f642501c00061197e565b66764e2c6f0540005b9050600583101580156119915750600b83105b156119c2576064605a84836119a69190612ceb565b6119b09190612ceb565b6119ba9190612cba565b915050611a06565b600b83106119f6576064605184836119da9190612ceb565b6119e49190612ceb565b6119ee9190612cba565b915050611a06565b8281611a029190612ceb565b9150505b919050565b611a25828260405180602001604052806000815250611c9c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a4f61165e565b8786866040518563ffffffff1660e01b8152600401611a71949392919061298f565b602060405180830381600087803b158015611a8b57600080fd5b505af1925050508015611abc57506040513d601f19601f82011682018060405250810190611ab99190612569565b60015b611b36573d8060008114611aec576040519150601f19603f3d011682016040523d82523d6000602084013e611af1565b606091505b50600081511415611b2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611b9890612e4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc490612e4b565b8015611c115780601f10611be657610100808354040283529160200191611c11565b820191906000526020600020905b815481529060010190602001808311611bf457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c5f57600184039350600a81066030018453600a8104905080611c5a57611c5f565b611c34565b50828103602084039350808452505050919050565b600082611c818584611d39565b1490509392505050565b60009392505050565b600033905090565b611ca68383611d8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3457600080549050600083820390505b611ce66000868380600101945086611a29565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd3578160005414611d3157600080fd5b50505b505050565b60008082905060005b8451811015611d8457611d6f82868381518110611d6257611d61612fb2565b5b6020026020010151611f4c565b91508080611d7c90612eae565b915050611d42565b508091505092915050565b6000805490506000821415611dd0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ddd60008483856117a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e5483611e4560008660006117aa565b611e4e85611f77565b176117d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eba565b506000821415611f31576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f4760008483856117fd565b505050565b6000818310611f6457611f5f8284611f87565b611f6f565b611f6e8383611f87565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054611faa90612e4b565b90600052602060002090601f016020900481019282611fcc5760008555612013565b82601f10611fe557803560ff1916838001178555612013565b82800160010185558215612013579182015b82811115612012578235825591602001919060010190611ff7565b5b5090506120209190612024565b5090565b5b8082111561203d576000816000905550600101612025565b5090565b600061205461204f84612b98565b612b73565b905080838252602082019050828560208602820111156120775761207661301a565b5b60005b858110156120a7578161208d8882612163565b84526020840193506020830192505060018101905061207a565b5050509392505050565b60006120c46120bf84612bc4565b612b73565b905080838252602082019050828560208602820111156120e7576120e661301a565b5b60005b8581101561211757816120fd88826121fe565b8452602084019350602083019250506001810190506120ea565b5050509392505050565b600061213461212f84612bf0565b612b73565b9050828152602081018484840111156121505761214f61301f565b5b61215b848285612e09565b509392505050565b600081359050612172816132aa565b92915050565b600081359050612187816132c1565b92915050565b600082601f8301126121a2576121a1613015565b5b81356121b2848260208601612041565b91505092915050565b600082601f8301126121d0576121cf613015565b5b81356121e08482602086016120b1565b91505092915050565b6000813590506121f8816132d8565b92915050565b60008135905061220d816132ef565b92915050565b60008135905061222281613306565b92915050565b60008151905061223781613306565b92915050565b600082601f83011261225257612251613015565b5b8135612262848260208601612121565b91505092915050565b60008083601f84011261228157612280613015565b5b8235905067ffffffffffffffff81111561229e5761229d613010565b5b6020830191508360018202830111156122ba576122b961301a565b5b9250929050565b6000813590506122d08161331d565b92915050565b6000602082840312156122ec576122eb613029565b5b60006122fa84828501612163565b91505092915050565b60006020828403121561231957612318613029565b5b600061232784828501612178565b91505092915050565b6000806040838503121561234757612346613029565b5b600061235585828601612163565b925050602061236685828601612163565b9150509250929050565b60008060006060848603121561238957612388613029565b5b600061239786828701612163565b93505060206123a886828701612163565b92505060406123b9868287016122c1565b9150509250925092565b600080600080608085870312156123dd576123dc613029565b5b60006123eb87828801612163565b94505060206123fc87828801612163565b935050604061240d878288016122c1565b925050606085013567ffffffffffffffff81111561242e5761242d613024565b5b61243a8782880161223d565b91505092959194509250565b6000806040838503121561245d5761245c613029565b5b600061246b85828601612163565b925050602061247c858286016121e9565b9150509250929050565b6000806040838503121561249d5761249c613029565b5b60006124ab85828601612163565b92505060206124bc858286016122c1565b9150509250929050565b6000602082840312156124dc576124db613029565b5b600082013567ffffffffffffffff8111156124fa576124f9613024565b5b6125068482850161218d565b91505092915050565b60006020828403121561252557612524613029565b5b6000612533848285016121fe565b91505092915050565b60006020828403121561255257612551613029565b5b600061256084828501612213565b91505092915050565b60006020828403121561257f5761257e613029565b5b600061258d84828501612228565b91505092915050565b600080602083850312156125ad576125ac613029565b5b600083013567ffffffffffffffff8111156125cb576125ca613024565b5b6125d78582860161226b565b92509250509250929050565b6000602082840312156125f9576125f8613029565b5b6000612607848285016122c1565b91505092915050565b6000806040838503121561262757612626613029565b5b6000612635858286016122c1565b925050602083013567ffffffffffffffff81111561265657612655613024565b5b612662858286016121bb565b9150509250929050565b61267581612d79565b82525050565b61268c61268782612d79565b612ef7565b82525050565b61269b81612d9d565b82525050565b60006126ac82612c21565b6126b68185612c37565b93506126c6818560208601612e18565b6126cf8161302e565b840191505092915050565b60006126e582612c2c565b6126ef8185612c48565b93506126ff818560208601612e18565b6127088161302e565b840191505092915050565b600061271e82612c2c565b6127288185612c59565b9350612738818560208601612e18565b80840191505092915050565b6000612751601c83612c48565b915061275c8261304c565b602082019050919050565b6000612774602683612c48565b915061277f82613075565b604082019050919050565b6000612797600e83612c48565b91506127a2826130c4565b602082019050919050565b60006127ba601c83612c48565b91506127c5826130ed565b602082019050919050565b60006127dd602883612c48565b91506127e882613116565b604082019050919050565b6000612800601d83612c48565b915061280b82613165565b602082019050919050565b6000612823601f83612c48565b915061282e8261318e565b602082019050919050565b6000612846600583612c59565b9150612851826131b7565b600582019050919050565b6000612869602083612c48565b9150612874826131e0565b602082019050919050565b600061288c603183612c48565b915061289782613209565b604082019050919050565b60006128af601d83612c48565b91506128ba82613258565b602082019050919050565b60006128d2600183612c59565b91506128dd82613281565b600182019050919050565b6128f181612dff565b82525050565b61290861290382612dff565b612f1b565b82525050565b600061291a828561267b565b60148201915061292a82846128f7565b6020820191508190509392505050565b60006129468285612713565b9150612951826128c5565b915061295d8284612713565b915061296882612839565b91508190509392505050565b6000602082019050612989600083018461266c565b92915050565b60006080820190506129a4600083018761266c565b6129b1602083018661266c565b6129be60408301856128e8565b81810360608301526129d081846126a1565b905095945050505050565b60006020820190506129f06000830184612692565b92915050565b60006020820190508181036000830152612a1081846126da565b905092915050565b60006020820190508181036000830152612a3181612744565b9050919050565b60006020820190508181036000830152612a5181612767565b9050919050565b60006020820190508181036000830152612a718161278a565b9050919050565b60006020820190508181036000830152612a91816127ad565b9050919050565b60006020820190508181036000830152612ab1816127d0565b9050919050565b60006020820190508181036000830152612ad1816127f3565b9050919050565b60006020820190508181036000830152612af181612816565b9050919050565b60006020820190508181036000830152612b118161285c565b9050919050565b60006020820190508181036000830152612b318161287f565b9050919050565b60006020820190508181036000830152612b51816128a2565b9050919050565b6000602082019050612b6d60008301846128e8565b92915050565b6000612b7d612b8e565b9050612b898282612e7d565b919050565b6000604051905090565b600067ffffffffffffffff821115612bb357612bb2612fe1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612bdf57612bde612fe1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c0b57612c0a612fe1565b5b612c148261302e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6f82612dff565b9150612c7a83612dff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612caf57612cae612f25565b5b828201905092915050565b6000612cc582612dff565b9150612cd083612dff565b925082612ce057612cdf612f54565b5b828204905092915050565b6000612cf682612dff565b9150612d0183612dff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3a57612d39612f25565b5b828202905092915050565b6000612d5082612dff565b9150612d5b83612dff565b925082821015612d6e57612d6d612f25565b5b828203905092915050565b6000612d8482612ddf565b9050919050565b6000612d9682612ddf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e36578082015181840152602081019050612e1b565b83811115612e45576000848401525b50505050565b60006002820490506001821680612e6357607f821691505b60208210811415612e7757612e76612f83565b5b50919050565b612e868261302e565b810181811067ffffffffffffffff82111715612ea557612ea4612fe1565b5b80604052505050565b6000612eb982612dff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eec57612eeb612f25565b5b600182019050919050565b6000612f0282612f09565b9050919050565b6000612f148261303f565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f41726520796f752077686f20796f752073617920796f75206172653f00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204369676177726574746573206c6566742e00000000600082015250565b7f49276d20736f72727920796f75277265206e6f74206f6e20746865207072657360008201527f616c65206c697374000000000000000000000000000000000000000000000000602082015250565b7f43616e277420627579206d6f7265207468616e203230205061636b732e000000600082015250565b7f546f6f206d616e792072657365727665732c206e6f7420616c6c6f7765642e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5374696c6c20696e2070726573616c652c2074727920616761696e205365707460008201527f20323374682040203131616d2045535421000000000000000000000000000000602082015250565b7f46726565204d696e74206d65726b6c652074726565206e6f7420736574000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132b381612d79565b81146132be57600080fd5b50565b6132ca81612d8b565b81146132d557600080fd5b50565b6132e181612d9d565b81146132ec57600080fd5b50565b6132f881612da9565b811461330357600080fd5b50565b61330f81612db3565b811461331a57600080fd5b50565b61332681612dff565b811461333157600080fd5b5056fea2646970667358221220e117b96cb9f24936c22844ee28b46b190e2d842bdd7755046d8fe92d14a7bf0664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696467776e6562787872636a6a33676c6378746e63766b65756f6b796e6c7662336f696d7270346e776d763773647333346c656c61000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde14610410578063c87b56dd1461042c578063cec5f26614610469578063e2f36dce14610492578063e985e9c5146104ae578063f2fde38b146104eb57610140565b8063715018a6146103355780637cb647591461034c5780638da5cb5b1461037557806395d89b41146103a0578063a0712d68146103cb578063a22cb465146103e757610140565b806323b872dd1161010857806323b872dd1461023157806342842e0e1461024d57806351cff8d91461026957806355f804b3146102925780636352211e146102bb57806370a08231146102f857610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c6004803603810190610167919061253c565b610514565b60405161017991906129db565b60405180910390f35b34801561018e57600080fd5b506101976105a6565b6040516101a491906129f6565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906125e3565b610638565b6040516101e19190612974565b60405180910390f35b61020460048036038101906101ff9190612486565b6106b7565b005b34801561021257600080fd5b5061021b6107fb565b6040516102289190612b58565b60405180910390f35b61024b60048036038101906102469190612370565b610812565b005b61026760048036038101906102629190612370565b610b37565b005b34801561027557600080fd5b50610290600480360381019061028b9190612303565b610b57565b005b34801561029e57600080fd5b506102b960048036038101906102b49190612596565b610be3565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906125e3565b610c01565b6040516102ef9190612974565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906122d6565b610c13565b60405161032c9190612b58565b60405180910390f35b34801561034157600080fd5b5061034a610ccc565b005b34801561035857600080fd5b50610373600480360381019061036e919061250f565b610ce0565b005b34801561038157600080fd5b5061038a610cf2565b6040516103979190612974565b60405180910390f35b3480156103ac57600080fd5b506103b5610d1c565b6040516103c291906129f6565b60405180910390f35b6103e560048036038101906103e091906125e3565b610dae565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612446565b610f66565b005b61042a600480360381019061042591906123c3565b611071565b005b34801561043857600080fd5b50610453600480360381019061044e91906125e3565b6110e4565b60405161046091906129f6565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906124c6565b611183565b005b6104ac60048036038101906104a79190612610565b611296565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612330565b6114e7565b6040516104e291906129db565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906122d6565b61157b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061059f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b590612e4b565b80601f01602080910402602001604051908101604052809291908181526020018280546105e190612e4b565b801561062e5780601f106106035761010080835404028352916020019161062e565b820191906000526020600020905b81548152906001019060200180831161061157829003601f168201915b5050505050905090565b6000610643826115ff565b610679576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c282610c01565b90508073ffffffffffffffffffffffffffffffffffffffff166106e361165e565b73ffffffffffffffffffffffffffffffffffffffff16146107465761070f8161070a61165e565b6114e7565b610745576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610805611666565b6001546000540303905090565b600061081d8261166b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610884576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061089084611739565b915091506108a681876108a161165e565b611760565b6108f2576108bb866108b661165e565b6114e7565b6108f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610959576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096686868660016117a4565b801561097157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a3f85610a1b8888876117aa565b7c0200000000000000000000000000000000000000000000000000000000176117d2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ac7576000600185019050600060046000838152602001908152602001600020541415610ac5576000548114610ac4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b2f86868660016117fd565b505050505050565b610b5283838360405180602001604052806000815250611071565b505050565b610b5f611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bdf573d6000803e3d6000fd5b5050565b610beb611803565b8181600b9190610bfc929190611f9e565b505050565b6000610c0c8261166b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cd4611803565b610cde6000611881565b565b610ce8611803565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2b90612e4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5790612e4b565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390612a18565b60405180910390fd5b63632dc9f04211610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990612b18565b60405180910390fd5b61270f81610e6e611947565b610e789190612c64565b10610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612a78565b60405180910390fd5b610ec18161195a565b341015610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90612a58565b60405180910390fd5b601481610f0f33610c13565b610f199190612c64565b10610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090612ab8565b60405180910390fd5b610f633382611a0b565b50565b8060076000610f7361165e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102061165e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106591906129db565b60405180910390a35050565b61107c848484610812565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110de576110a784848484611a29565b6110dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110ef826115ff565b611125576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061112f611b89565b9050600081511415611150576040518060200160405280600081525061117b565b8061115a84611c1b565b60405160200161116b92919061293a565b6040516020818303038152906040525b915050919050565b61118b611803565b61270f8151611198611947565b6111a29190612c64565b106111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612a78565b60405180910390fd5b6101f481516009546111f49190612c64565b10611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90612ad8565b60405180910390fd5b8051600960008282546112479190612c64565b9250508190555060005b81518110156112925761127f8282815181106112705761126f612fb2565b5b60200260200101516001611a0b565b808061128a90612eae565b915050611251565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612a18565b60405180910390fd5b6000600a54141561134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190612b38565b60405180910390fd5b61138081600a5433600160405160200161136592919061290e565b60405160208183030381529060405280519060200120611c74565b6113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612a98565b60405180910390fd5b61270f826113cb611947565b6113d59190612c64565b10611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90612a78565b60405180910390fd5b611441600161142333610c13565b1061142e578261143c565b60018361143b9190612d45565b5b61195a565b341015611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90612a58565b60405180910390fd5b60148261148f33610c13565b6114999190612c64565b106114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090612ab8565b60405180910390fd5b6114e33383611a0b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611583611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90612a38565b60405180910390fd5b6115fc81611881565b50565b60008161160a611666565b11158015611619575060005482105b8015611657575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061167a611666565b11611702576000548110156117015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116ff575b60008114156116f55760046000836001900393508381526020019081526020016000205490506116ca565b8092505050611734565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c1868684611c8b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61180b611c94565b73ffffffffffffffffffffffffffffffffffffffff16611829610cf2565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690612af8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611951611666565b60005403905090565b600080636337bb4042116119755766276f642501c00061197e565b66764e2c6f0540005b9050600583101580156119915750600b83105b156119c2576064605a84836119a69190612ceb565b6119b09190612ceb565b6119ba9190612cba565b915050611a06565b600b83106119f6576064605184836119da9190612ceb565b6119e49190612ceb565b6119ee9190612cba565b915050611a06565b8281611a029190612ceb565b9150505b919050565b611a25828260405180602001604052806000815250611c9c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a4f61165e565b8786866040518563ffffffff1660e01b8152600401611a71949392919061298f565b602060405180830381600087803b158015611a8b57600080fd5b505af1925050508015611abc57506040513d601f19601f82011682018060405250810190611ab99190612569565b60015b611b36573d8060008114611aec576040519150601f19603f3d011682016040523d82523d6000602084013e611af1565b606091505b50600081511415611b2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611b9890612e4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc490612e4b565b8015611c115780601f10611be657610100808354040283529160200191611c11565b820191906000526020600020905b815481529060010190602001808311611bf457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c5f57600184039350600a81066030018453600a8104905080611c5a57611c5f565b611c34565b50828103602084039350808452505050919050565b600082611c818584611d39565b1490509392505050565b60009392505050565b600033905090565b611ca68383611d8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3457600080549050600083820390505b611ce66000868380600101945086611a29565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd3578160005414611d3157600080fd5b50505b505050565b60008082905060005b8451811015611d8457611d6f82868381518110611d6257611d61612fb2565b5b6020026020010151611f4c565b91508080611d7c90612eae565b915050611d42565b508091505092915050565b6000805490506000821415611dd0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ddd60008483856117a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e5483611e4560008660006117aa565b611e4e85611f77565b176117d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eba565b506000821415611f31576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f4760008483856117fd565b505050565b6000818310611f6457611f5f8284611f87565b611f6f565b611f6e8383611f87565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054611faa90612e4b565b90600052602060002090601f016020900481019282611fcc5760008555612013565b82601f10611fe557803560ff1916838001178555612013565b82800160010185558215612013579182015b82811115612012578235825591602001919060010190611ff7565b5b5090506120209190612024565b5090565b5b8082111561203d576000816000905550600101612025565b5090565b600061205461204f84612b98565b612b73565b905080838252602082019050828560208602820111156120775761207661301a565b5b60005b858110156120a7578161208d8882612163565b84526020840193506020830192505060018101905061207a565b5050509392505050565b60006120c46120bf84612bc4565b612b73565b905080838252602082019050828560208602820111156120e7576120e661301a565b5b60005b8581101561211757816120fd88826121fe565b8452602084019350602083019250506001810190506120ea565b5050509392505050565b600061213461212f84612bf0565b612b73565b9050828152602081018484840111156121505761214f61301f565b5b61215b848285612e09565b509392505050565b600081359050612172816132aa565b92915050565b600081359050612187816132c1565b92915050565b600082601f8301126121a2576121a1613015565b5b81356121b2848260208601612041565b91505092915050565b600082601f8301126121d0576121cf613015565b5b81356121e08482602086016120b1565b91505092915050565b6000813590506121f8816132d8565b92915050565b60008135905061220d816132ef565b92915050565b60008135905061222281613306565b92915050565b60008151905061223781613306565b92915050565b600082601f83011261225257612251613015565b5b8135612262848260208601612121565b91505092915050565b60008083601f84011261228157612280613015565b5b8235905067ffffffffffffffff81111561229e5761229d613010565b5b6020830191508360018202830111156122ba576122b961301a565b5b9250929050565b6000813590506122d08161331d565b92915050565b6000602082840312156122ec576122eb613029565b5b60006122fa84828501612163565b91505092915050565b60006020828403121561231957612318613029565b5b600061232784828501612178565b91505092915050565b6000806040838503121561234757612346613029565b5b600061235585828601612163565b925050602061236685828601612163565b9150509250929050565b60008060006060848603121561238957612388613029565b5b600061239786828701612163565b93505060206123a886828701612163565b92505060406123b9868287016122c1565b9150509250925092565b600080600080608085870312156123dd576123dc613029565b5b60006123eb87828801612163565b94505060206123fc87828801612163565b935050604061240d878288016122c1565b925050606085013567ffffffffffffffff81111561242e5761242d613024565b5b61243a8782880161223d565b91505092959194509250565b6000806040838503121561245d5761245c613029565b5b600061246b85828601612163565b925050602061247c858286016121e9565b9150509250929050565b6000806040838503121561249d5761249c613029565b5b60006124ab85828601612163565b92505060206124bc858286016122c1565b9150509250929050565b6000602082840312156124dc576124db613029565b5b600082013567ffffffffffffffff8111156124fa576124f9613024565b5b6125068482850161218d565b91505092915050565b60006020828403121561252557612524613029565b5b6000612533848285016121fe565b91505092915050565b60006020828403121561255257612551613029565b5b600061256084828501612213565b91505092915050565b60006020828403121561257f5761257e613029565b5b600061258d84828501612228565b91505092915050565b600080602083850312156125ad576125ac613029565b5b600083013567ffffffffffffffff8111156125cb576125ca613024565b5b6125d78582860161226b565b92509250509250929050565b6000602082840312156125f9576125f8613029565b5b6000612607848285016122c1565b91505092915050565b6000806040838503121561262757612626613029565b5b6000612635858286016122c1565b925050602083013567ffffffffffffffff81111561265657612655613024565b5b612662858286016121bb565b9150509250929050565b61267581612d79565b82525050565b61268c61268782612d79565b612ef7565b82525050565b61269b81612d9d565b82525050565b60006126ac82612c21565b6126b68185612c37565b93506126c6818560208601612e18565b6126cf8161302e565b840191505092915050565b60006126e582612c2c565b6126ef8185612c48565b93506126ff818560208601612e18565b6127088161302e565b840191505092915050565b600061271e82612c2c565b6127288185612c59565b9350612738818560208601612e18565b80840191505092915050565b6000612751601c83612c48565b915061275c8261304c565b602082019050919050565b6000612774602683612c48565b915061277f82613075565b604082019050919050565b6000612797600e83612c48565b91506127a2826130c4565b602082019050919050565b60006127ba601c83612c48565b91506127c5826130ed565b602082019050919050565b60006127dd602883612c48565b91506127e882613116565b604082019050919050565b6000612800601d83612c48565b915061280b82613165565b602082019050919050565b6000612823601f83612c48565b915061282e8261318e565b602082019050919050565b6000612846600583612c59565b9150612851826131b7565b600582019050919050565b6000612869602083612c48565b9150612874826131e0565b602082019050919050565b600061288c603183612c48565b915061289782613209565b604082019050919050565b60006128af601d83612c48565b91506128ba82613258565b602082019050919050565b60006128d2600183612c59565b91506128dd82613281565b600182019050919050565b6128f181612dff565b82525050565b61290861290382612dff565b612f1b565b82525050565b600061291a828561267b565b60148201915061292a82846128f7565b6020820191508190509392505050565b60006129468285612713565b9150612951826128c5565b915061295d8284612713565b915061296882612839565b91508190509392505050565b6000602082019050612989600083018461266c565b92915050565b60006080820190506129a4600083018761266c565b6129b1602083018661266c565b6129be60408301856128e8565b81810360608301526129d081846126a1565b905095945050505050565b60006020820190506129f06000830184612692565b92915050565b60006020820190508181036000830152612a1081846126da565b905092915050565b60006020820190508181036000830152612a3181612744565b9050919050565b60006020820190508181036000830152612a5181612767565b9050919050565b60006020820190508181036000830152612a718161278a565b9050919050565b60006020820190508181036000830152612a91816127ad565b9050919050565b60006020820190508181036000830152612ab1816127d0565b9050919050565b60006020820190508181036000830152612ad1816127f3565b9050919050565b60006020820190508181036000830152612af181612816565b9050919050565b60006020820190508181036000830152612b118161285c565b9050919050565b60006020820190508181036000830152612b318161287f565b9050919050565b60006020820190508181036000830152612b51816128a2565b9050919050565b6000602082019050612b6d60008301846128e8565b92915050565b6000612b7d612b8e565b9050612b898282612e7d565b919050565b6000604051905090565b600067ffffffffffffffff821115612bb357612bb2612fe1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612bdf57612bde612fe1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612c0b57612c0a612fe1565b5b612c148261302e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6f82612dff565b9150612c7a83612dff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612caf57612cae612f25565b5b828201905092915050565b6000612cc582612dff565b9150612cd083612dff565b925082612ce057612cdf612f54565b5b828204905092915050565b6000612cf682612dff565b9150612d0183612dff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3a57612d39612f25565b5b828202905092915050565b6000612d5082612dff565b9150612d5b83612dff565b925082821015612d6e57612d6d612f25565b5b828203905092915050565b6000612d8482612ddf565b9050919050565b6000612d9682612ddf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e36578082015181840152602081019050612e1b565b83811115612e45576000848401525b50505050565b60006002820490506001821680612e6357607f821691505b60208210811415612e7757612e76612f83565b5b50919050565b612e868261302e565b810181811067ffffffffffffffff82111715612ea557612ea4612fe1565b5b80604052505050565b6000612eb982612dff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eec57612eeb612f25565b5b600182019050919050565b6000612f0282612f09565b9050919050565b6000612f148261303f565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f41726520796f752077686f20796f752073617920796f75206172653f00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204369676177726574746573206c6566742e00000000600082015250565b7f49276d20736f72727920796f75277265206e6f74206f6e20746865207072657360008201527f616c65206c697374000000000000000000000000000000000000000000000000602082015250565b7f43616e277420627579206d6f7265207468616e203230205061636b732e000000600082015250565b7f546f6f206d616e792072657365727665732c206e6f7420616c6c6f7765642e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5374696c6c20696e2070726573616c652c2074727920616761696e205365707460008201527f20323374682040203131616d2045535421000000000000000000000000000000602082015250565b7f46726565204d696e74206d65726b6c652074726565206e6f7420736574000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132b381612d79565b81146132be57600080fd5b50565b6132ca81612d8b565b81146132d557600080fd5b50565b6132e181612d9d565b81146132ec57600080fd5b50565b6132f881612da9565b811461330357600080fd5b50565b61330f81612db3565b811461331a57600080fd5b50565b61332681612dff565b811461333157600080fd5b5056fea2646970667358221220e117b96cb9f24936c22844ee28b46b190e2d842bdd7755046d8fe92d14a7bf0664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696467776e6562787872636a6a33676c6378746e63766b65756f6b796e6c7662336f696d7270346e776d763773647333346c656c61000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://bafybeidgwnebxxrcjj3glcxtncvkeuokynlvb3oimrp4nwmv7sds34lela

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 697066733a2f2f626166796265696467776e6562787872636a6a33676c637874
Arg [3] : 6e63766b65756f6b796e6c7662336f696d7270346e776d763773647333346c65
Arg [4] : 6c61000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

160:3592:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22758:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3274:143:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;939:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:6;;;;;;;;;;;;;:::i;:::-;;3157:111:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1194:85:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1566:455:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3423:327:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2774:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2027:741;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:3;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;5894:317::-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;3274:143:0:-;1087:13:6;:11;:13::i;:::-;3363:1:0::1;3349:16;;:2;:16;;;;3341:25;;;::::0;::::1;;3376:2;:11;;:34;3388:21;3376:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3274:143:::0;:::o;939:104::-;1087:13:6;:11;:13::i;:::-;1029:7:0::1;;1013:13;:23;;;;;;;:::i;:::-;;939:104:::0;;:::o;11391:150:3:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;7045:230::-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:6:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;3157:111:0:-;1087:13:6;:11;:13::i;:::-;3247:14:0::1;3233:11;:28;;;;3157:111:::0;:::o;1194:85:6:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;10208:102:3:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1566:455:0:-;851:10;838:23;;:9;:23;;;817:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;548:10:::1;1646:15;:30;1638:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;328:4;1765:8;1748:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:35;1740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:18;1856:8;1847;:18::i;:::-;1834:9;:31;;1826:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1937:2;1926:8;1902:21;1912:10;1902:9;:21::i;:::-;:32;;;;:::i;:::-;:37;1894:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1983:31;1993:10;2005:8;1983:9;:31::i;:::-;1566:455:::0;:::o;16901:231:3:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;3423:327:0:-;3496:13;3526:16;3534:7;3526;:16::i;:::-;3521:59;;3551:29;;;;;;;;;;;;;;3521:59;3591:21;3615:10;:8;:10::i;:::-;3591:34;;3667:1;3648:7;3642:21;:26;;:101;;;;;;;;;;;;;;;;;3695:7;3709:18;3719:7;3709:9;:18::i;:::-;3678:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3642:101;3635:108;;;3423:327;;;:::o;2774:377::-;1087:13:6;:11;:13::i;:::-;328:4:0::1;2870:2;:9;2853:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:36;2845:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;369:3;2957:2;:9;2940:14;;:26;;;;:::i;:::-;:40;2932:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;3044:2;:9;3026:14;;:27;;;;;;;:::i;:::-;;;;;;;;3068:6;3063:82;3080:2;:9;3078:1;:11;3063:82;;;3110:24;3120:2;3123:1;3120:5;;;;;;;;:::i;:::-;;;;;;;;263:1;3110:9;:24::i;:::-;3091:3;;;;;:::i;:::-;;;;3063:82;;;;2774:377:::0;:::o;2027:741::-;851:10;838:23;;:9;:23;;;817:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:17:::1;:11;;:17;;2127:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2217:149;2253:5;2276:11;;2332:10;263:1;2315:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2305:47;;;;;;2217:18;:149::i;:::-;2196:236;;;;;;;;;;;;:::i;:::-;;;;;;;;;328:4;2467:8;2450:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:35;2442:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2550:61;2583:1;2559:21;2569:10;2559:9;:21::i;:::-;:25;:51;;2602:8;2559:51;;;2598:1;2587:8;:12;;;;:::i;:::-;2559:51;2550:8;:61::i;:::-;2536:9;:76;;2528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;2684:2;2673:8;2649:21;2659:10;2649:9;:21::i;:::-;:32;;;;:::i;:::-;:37;2641:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;2730:31;2740:10;2752:8;2730:9;:31::i;:::-;2027:741:::0;;:::o;17282:162:3:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2074:198:6:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;17693:277:3:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5426:90::-;5482:7;5426:90;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;1352:130:6:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;2426:187::-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;6304:290:3:-;6359:7;6562:15;:13;:15::i;:::-;6546:13;;:31;6539:38;;6304:290;:::o;1167:393:0:-;1226:7;1245:12;500:10;1262:15;:28;1261:52;;452:12;1261:52;;;403:12;1261:52;1245:69;;1339:1;1327:8;:13;;:30;;;;;1355:2;1344:8;:13;1327:30;1324:230;;;1403:3;1398:2;1387:8;1380:4;:15;;;;:::i;:::-;:20;;;;:::i;:::-;:26;;;;:::i;:::-;1373:33;;;;;1324:230;1439:2;1427:8;:14;1423:131;;1487:3;1482:2;1471:8;1464:4;:15;;;;:::i;:::-;:20;;;;:::i;:::-;:26;;;;:::i;:::-;1457:33;;;;;1423:131;1535:8;1528:4;:15;;;;:::i;:::-;1521:22;;;1167:393;;;;:::o;33423:110:3:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;1049:112:0:-;1109:13;1141;1134:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1049:112;:::o;39637:1708:3:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;1153:184:5:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;38475:143:3:-;38608:6;38475:143;;;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;32675:669:3:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;1991:290:5:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;27091:2902:3:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;8054:147:5:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;14837:318:3:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;8207:261:5:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:8:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2058:155::-;2112:5;2150:6;2137:20;2128:29;;2166:41;2201:5;2166:41;:::i;:::-;2058:155;;;;:::o;2236:370::-;2307:5;2356:3;2349:4;2341:6;2337:17;2333:27;2323:122;;2364:79;;:::i;:::-;2323:122;2481:6;2468:20;2506:94;2596:3;2588:6;2581:4;2573:6;2569:17;2506:94;:::i;:::-;2497:103;;2313:293;2236:370;;;;:::o;2629:::-;2700:5;2749:3;2742:4;2734:6;2730:17;2726:27;2716:122;;2757:79;;:::i;:::-;2716:122;2874:6;2861:20;2899:94;2989:3;2981:6;2974:4;2966:6;2962:17;2899:94;:::i;:::-;2890:103;;2706:293;2629:370;;;;:::o;3005:133::-;3048:5;3086:6;3073:20;3064:29;;3102:30;3126:5;3102:30;:::i;:::-;3005:133;;;;:::o;3144:139::-;3190:5;3228:6;3215:20;3206:29;;3244:33;3271:5;3244:33;:::i;:::-;3144:139;;;;:::o;3289:137::-;3334:5;3372:6;3359:20;3350:29;;3388:32;3414:5;3388:32;:::i;:::-;3289:137;;;;:::o;3432:141::-;3488:5;3519:6;3513:13;3504:22;;3535:32;3561:5;3535:32;:::i;:::-;3432:141;;;;:::o;3592:338::-;3647:5;3696:3;3689:4;3681:6;3677:17;3673:27;3663:122;;3704:79;;:::i;:::-;3663:122;3821:6;3808:20;3846:78;3920:3;3912:6;3905:4;3897:6;3893:17;3846:78;:::i;:::-;3837:87;;3653:277;3592:338;;;;:::o;3950:553::-;4008:8;4018:6;4068:3;4061:4;4053:6;4049:17;4045:27;4035:122;;4076:79;;:::i;:::-;4035:122;4189:6;4176:20;4166:30;;4219:18;4211:6;4208:30;4205:117;;;4241:79;;:::i;:::-;4205:117;4355:4;4347:6;4343:17;4331:29;;4409:3;4401:4;4393:6;4389:17;4379:8;4375:32;4372:41;4369:128;;;4416:79;;:::i;:::-;4369:128;3950:553;;;;;:::o;4509:139::-;4555:5;4593:6;4580:20;4571:29;;4609:33;4636:5;4609:33;:::i;:::-;4509:139;;;;:::o;4654:329::-;4713:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:119;;;4768:79;;:::i;:::-;4730:119;4888:1;4913:53;4958:7;4949:6;4938:9;4934:22;4913:53;:::i;:::-;4903:63;;4859:117;4654:329;;;;:::o;4989:345::-;5056:6;5105:2;5093:9;5084:7;5080:23;5076:32;5073:119;;;5111:79;;:::i;:::-;5073:119;5231:1;5256:61;5309:7;5300:6;5289:9;5285:22;5256:61;:::i;:::-;5246:71;;5202:125;4989:345;;;;:::o;5340:474::-;5408:6;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5340:474;;;;;:::o;5820:619::-;5897:6;5905;5913;5962:2;5950:9;5941:7;5937:23;5933:32;5930:119;;;5968:79;;:::i;:::-;5930:119;6088:1;6113:53;6158:7;6149:6;6138:9;6134:22;6113:53;:::i;:::-;6103:63;;6059:117;6215:2;6241:53;6286:7;6277:6;6266:9;6262:22;6241:53;:::i;:::-;6231:63;;6186:118;6343:2;6369:53;6414:7;6405:6;6394:9;6390:22;6369:53;:::i;:::-;6359:63;;6314:118;5820:619;;;;;:::o;6445:943::-;6540:6;6548;6556;6564;6613:3;6601:9;6592:7;6588:23;6584:33;6581:120;;;6620:79;;:::i;:::-;6581:120;6740:1;6765:53;6810:7;6801:6;6790:9;6786:22;6765:53;:::i;:::-;6755:63;;6711:117;6867:2;6893:53;6938:7;6929:6;6918:9;6914:22;6893:53;:::i;:::-;6883:63;;6838:118;6995:2;7021:53;7066:7;7057:6;7046:9;7042:22;7021:53;:::i;:::-;7011:63;;6966:118;7151:2;7140:9;7136:18;7123:32;7182:18;7174:6;7171:30;7168:117;;;7204:79;;:::i;:::-;7168:117;7309:62;7363:7;7354:6;7343:9;7339:22;7309:62;:::i;:::-;7299:72;;7094:287;6445:943;;;;;;;:::o;7394:468::-;7459:6;7467;7516:2;7504:9;7495:7;7491:23;7487:32;7484:119;;;7522:79;;:::i;:::-;7484:119;7642:1;7667:53;7712:7;7703:6;7692:9;7688:22;7667:53;:::i;:::-;7657:63;;7613:117;7769:2;7795:50;7837:7;7828:6;7817:9;7813:22;7795:50;:::i;:::-;7785:60;;7740:115;7394:468;;;;;:::o;7868:474::-;7936:6;7944;7993:2;7981:9;7972:7;7968:23;7964:32;7961:119;;;7999:79;;:::i;:::-;7961:119;8119:1;8144:53;8189:7;8180:6;8169:9;8165:22;8144:53;:::i;:::-;8134:63;;8090:117;8246:2;8272:53;8317:7;8308:6;8297:9;8293:22;8272:53;:::i;:::-;8262:63;;8217:118;7868:474;;;;;:::o;8348:539::-;8432:6;8481:2;8469:9;8460:7;8456:23;8452:32;8449:119;;;8487:79;;:::i;:::-;8449:119;8635:1;8624:9;8620:17;8607:31;8665:18;8657:6;8654:30;8651:117;;;8687:79;;:::i;:::-;8651:117;8792:78;8862:7;8853:6;8842:9;8838:22;8792:78;:::i;:::-;8782:88;;8578:302;8348:539;;;;:::o;8893:329::-;8952:6;9001:2;8989:9;8980:7;8976:23;8972:32;8969:119;;;9007:79;;:::i;:::-;8969:119;9127:1;9152:53;9197:7;9188:6;9177:9;9173:22;9152:53;:::i;:::-;9142:63;;9098:117;8893:329;;;;:::o;9228:327::-;9286:6;9335:2;9323:9;9314:7;9310:23;9306:32;9303:119;;;9341:79;;:::i;:::-;9303:119;9461:1;9486:52;9530:7;9521:6;9510:9;9506:22;9486:52;:::i;:::-;9476:62;;9432:116;9228:327;;;;:::o;9561:349::-;9630:6;9679:2;9667:9;9658:7;9654:23;9650:32;9647:119;;;9685:79;;:::i;:::-;9647:119;9805:1;9830:63;9885:7;9876:6;9865:9;9861:22;9830:63;:::i;:::-;9820:73;;9776:127;9561:349;;;;:::o;9916:529::-;9987:6;9995;10044:2;10032:9;10023:7;10019:23;10015:32;10012:119;;;10050:79;;:::i;:::-;10012:119;10198:1;10187:9;10183:17;10170:31;10228:18;10220:6;10217:30;10214:117;;;10250:79;;:::i;:::-;10214:117;10363:65;10420:7;10411:6;10400:9;10396:22;10363:65;:::i;:::-;10345:83;;;;10141:297;9916:529;;;;;:::o;10451:329::-;10510:6;10559:2;10547:9;10538:7;10534:23;10530:32;10527:119;;;10565:79;;:::i;:::-;10527:119;10685:1;10710:53;10755:7;10746:6;10735:9;10731:22;10710:53;:::i;:::-;10700:63;;10656:117;10451:329;;;;:::o;10786:684::-;10879:6;10887;10936:2;10924:9;10915:7;10911:23;10907:32;10904:119;;;10942:79;;:::i;:::-;10904:119;11062:1;11087:53;11132:7;11123:6;11112:9;11108:22;11087:53;:::i;:::-;11077:63;;11033:117;11217:2;11206:9;11202:18;11189:32;11248:18;11240:6;11237:30;11234:117;;;11270:79;;:::i;:::-;11234:117;11375:78;11445:7;11436:6;11425:9;11421:22;11375:78;:::i;:::-;11365:88;;11160:303;10786:684;;;;;:::o;11476:118::-;11563:24;11581:5;11563:24;:::i;:::-;11558:3;11551:37;11476:118;;:::o;11600:157::-;11705:45;11725:24;11743:5;11725:24;:::i;:::-;11705:45;:::i;:::-;11700:3;11693:58;11600:157;;:::o;11763:109::-;11844:21;11859:5;11844:21;:::i;:::-;11839:3;11832:34;11763:109;;:::o;11878:360::-;11964:3;11992:38;12024:5;11992:38;:::i;:::-;12046:70;12109:6;12104:3;12046:70;:::i;:::-;12039:77;;12125:52;12170:6;12165:3;12158:4;12151:5;12147:16;12125:52;:::i;:::-;12202:29;12224:6;12202:29;:::i;:::-;12197:3;12193:39;12186:46;;11968:270;11878:360;;;;:::o;12244:364::-;12332:3;12360:39;12393:5;12360:39;:::i;:::-;12415:71;12479:6;12474:3;12415:71;:::i;:::-;12408:78;;12495:52;12540:6;12535:3;12528:4;12521:5;12517:16;12495:52;:::i;:::-;12572:29;12594:6;12572:29;:::i;:::-;12567:3;12563:39;12556:46;;12336:272;12244:364;;;;:::o;12614:377::-;12720:3;12748:39;12781:5;12748:39;:::i;:::-;12803:89;12885:6;12880:3;12803:89;:::i;:::-;12796:96;;12901:52;12946:6;12941:3;12934:4;12927:5;12923:16;12901:52;:::i;:::-;12978:6;12973:3;12969:16;12962:23;;12724:267;12614:377;;;;:::o;12997:366::-;13139:3;13160:67;13224:2;13219:3;13160:67;:::i;:::-;13153:74;;13236:93;13325:3;13236:93;:::i;:::-;13354:2;13349:3;13345:12;13338:19;;12997:366;;;:::o;13369:::-;13511:3;13532:67;13596:2;13591:3;13532:67;:::i;:::-;13525:74;;13608:93;13697:3;13608:93;:::i;:::-;13726:2;13721:3;13717:12;13710:19;;13369:366;;;:::o;13741:::-;13883:3;13904:67;13968:2;13963:3;13904:67;:::i;:::-;13897:74;;13980:93;14069:3;13980:93;:::i;:::-;14098:2;14093:3;14089:12;14082:19;;13741:366;;;:::o;14113:::-;14255:3;14276:67;14340:2;14335:3;14276:67;:::i;:::-;14269:74;;14352:93;14441:3;14352:93;:::i;:::-;14470:2;14465:3;14461:12;14454:19;;14113:366;;;:::o;14485:::-;14627:3;14648:67;14712:2;14707:3;14648:67;:::i;:::-;14641:74;;14724:93;14813:3;14724:93;:::i;:::-;14842:2;14837:3;14833:12;14826:19;;14485:366;;;:::o;14857:::-;14999:3;15020:67;15084:2;15079:3;15020:67;:::i;:::-;15013:74;;15096:93;15185:3;15096:93;:::i;:::-;15214:2;15209:3;15205:12;15198:19;;14857:366;;;:::o;15229:::-;15371:3;15392:67;15456:2;15451:3;15392:67;:::i;:::-;15385:74;;15468:93;15557:3;15468:93;:::i;:::-;15586:2;15581:3;15577:12;15570:19;;15229:366;;;:::o;15601:400::-;15761:3;15782:84;15864:1;15859:3;15782:84;:::i;:::-;15775:91;;15875:93;15964:3;15875:93;:::i;:::-;15993:1;15988:3;15984:11;15977:18;;15601:400;;;:::o;16007:366::-;16149:3;16170:67;16234:2;16229:3;16170:67;:::i;:::-;16163:74;;16246:93;16335:3;16246:93;:::i;:::-;16364:2;16359:3;16355:12;16348:19;;16007:366;;;:::o;16379:::-;16521:3;16542:67;16606:2;16601:3;16542:67;:::i;:::-;16535:74;;16618:93;16707:3;16618:93;:::i;:::-;16736:2;16731:3;16727:12;16720:19;;16379:366;;;:::o;16751:::-;16893:3;16914:67;16978:2;16973:3;16914:67;:::i;:::-;16907:74;;16990:93;17079:3;16990:93;:::i;:::-;17108:2;17103:3;17099:12;17092:19;;16751:366;;;:::o;17123:400::-;17283:3;17304:84;17386:1;17381:3;17304:84;:::i;:::-;17297:91;;17397:93;17486:3;17397:93;:::i;:::-;17515:1;17510:3;17506:11;17499:18;;17123:400;;;:::o;17529:118::-;17616:24;17634:5;17616:24;:::i;:::-;17611:3;17604:37;17529:118;;:::o;17653:157::-;17758:45;17778:24;17796:5;17778:24;:::i;:::-;17758:45;:::i;:::-;17753:3;17746:58;17653:157;;:::o;17816:397::-;17956:3;17971:75;18042:3;18033:6;17971:75;:::i;:::-;18071:2;18066:3;18062:12;18055:19;;18084:75;18155:3;18146:6;18084:75;:::i;:::-;18184:2;18179:3;18175:12;18168:19;;18204:3;18197:10;;17816:397;;;;;:::o;18219:967::-;18601:3;18623:95;18714:3;18705:6;18623:95;:::i;:::-;18616:102;;18735:148;18879:3;18735:148;:::i;:::-;18728:155;;18900:95;18991:3;18982:6;18900:95;:::i;:::-;18893:102;;19012:148;19156:3;19012:148;:::i;:::-;19005:155;;19177:3;19170:10;;18219:967;;;;;:::o;19192:222::-;19285:4;19323:2;19312:9;19308:18;19300:26;;19336:71;19404:1;19393:9;19389:17;19380:6;19336:71;:::i;:::-;19192:222;;;;:::o;19420:640::-;19615:4;19653:3;19642:9;19638:19;19630:27;;19667:71;19735:1;19724:9;19720:17;19711:6;19667:71;:::i;:::-;19748:72;19816:2;19805:9;19801:18;19792:6;19748:72;:::i;:::-;19830;19898:2;19887:9;19883:18;19874:6;19830:72;:::i;:::-;19949:9;19943:4;19939:20;19934:2;19923:9;19919:18;19912:48;19977:76;20048:4;20039:6;19977:76;:::i;:::-;19969:84;;19420:640;;;;;;;:::o;20066:210::-;20153:4;20191:2;20180:9;20176:18;20168:26;;20204:65;20266:1;20255:9;20251:17;20242:6;20204:65;:::i;:::-;20066:210;;;;:::o;20282:313::-;20395:4;20433:2;20422:9;20418:18;20410:26;;20482:9;20476:4;20472:20;20468:1;20457:9;20453:17;20446:47;20510:78;20583:4;20574:6;20510:78;:::i;:::-;20502:86;;20282:313;;;;:::o;20601:419::-;20767:4;20805:2;20794:9;20790:18;20782:26;;20854:9;20848:4;20844:20;20840:1;20829:9;20825:17;20818:47;20882:131;21008:4;20882:131;:::i;:::-;20874:139;;20601:419;;;:::o;21026:::-;21192:4;21230:2;21219:9;21215:18;21207:26;;21279:9;21273:4;21269:20;21265:1;21254:9;21250:17;21243:47;21307:131;21433:4;21307:131;:::i;:::-;21299:139;;21026:419;;;:::o;21451:::-;21617:4;21655:2;21644:9;21640:18;21632:26;;21704:9;21698:4;21694:20;21690:1;21679:9;21675:17;21668:47;21732:131;21858:4;21732:131;:::i;:::-;21724:139;;21451:419;;;:::o;21876:::-;22042:4;22080:2;22069:9;22065:18;22057:26;;22129:9;22123:4;22119:20;22115:1;22104:9;22100:17;22093:47;22157:131;22283:4;22157:131;:::i;:::-;22149:139;;21876:419;;;:::o;22301:::-;22467:4;22505:2;22494:9;22490:18;22482:26;;22554:9;22548:4;22544:20;22540:1;22529:9;22525:17;22518:47;22582:131;22708:4;22582:131;:::i;:::-;22574:139;;22301:419;;;:::o;22726:::-;22892:4;22930:2;22919:9;22915:18;22907:26;;22979:9;22973:4;22969:20;22965:1;22954:9;22950:17;22943:47;23007:131;23133:4;23007:131;:::i;:::-;22999:139;;22726:419;;;:::o;23151:::-;23317:4;23355:2;23344:9;23340:18;23332:26;;23404:9;23398:4;23394:20;23390:1;23379:9;23375:17;23368:47;23432:131;23558:4;23432:131;:::i;:::-;23424:139;;23151:419;;;:::o;23576:::-;23742:4;23780:2;23769:9;23765:18;23757:26;;23829:9;23823:4;23819:20;23815:1;23804:9;23800:17;23793:47;23857:131;23983:4;23857:131;:::i;:::-;23849:139;;23576:419;;;:::o;24001:::-;24167:4;24205:2;24194:9;24190:18;24182:26;;24254:9;24248:4;24244:20;24240:1;24229:9;24225:17;24218:47;24282:131;24408:4;24282:131;:::i;:::-;24274:139;;24001:419;;;:::o;24426:::-;24592:4;24630:2;24619:9;24615:18;24607:26;;24679:9;24673:4;24669:20;24665:1;24654:9;24650:17;24643:47;24707:131;24833:4;24707:131;:::i;:::-;24699:139;;24426:419;;;:::o;24851:222::-;24944:4;24982:2;24971:9;24967:18;24959:26;;24995:71;25063:1;25052:9;25048:17;25039:6;24995:71;:::i;:::-;24851:222;;;;:::o;25079:129::-;25113:6;25140:20;;:::i;:::-;25130:30;;25169:33;25197:4;25189:6;25169:33;:::i;:::-;25079:129;;;:::o;25214:75::-;25247:6;25280:2;25274:9;25264:19;;25214:75;:::o;25295:311::-;25372:4;25462:18;25454:6;25451:30;25448:56;;;25484:18;;:::i;:::-;25448:56;25534:4;25526:6;25522:17;25514:25;;25594:4;25588;25584:15;25576:23;;25295:311;;;:::o;25612:::-;25689:4;25779:18;25771:6;25768:30;25765:56;;;25801:18;;:::i;:::-;25765:56;25851:4;25843:6;25839:17;25831:25;;25911:4;25905;25901:15;25893:23;;25612:311;;;:::o;25929:307::-;25990:4;26080:18;26072:6;26069:30;26066:56;;;26102:18;;:::i;:::-;26066:56;26140:29;26162:6;26140:29;:::i;:::-;26132:37;;26224:4;26218;26214:15;26206:23;;25929:307;;;:::o;26242:98::-;26293:6;26327:5;26321:12;26311:22;;26242:98;;;:::o;26346:99::-;26398:6;26432:5;26426:12;26416:22;;26346:99;;;:::o;26451:168::-;26534:11;26568:6;26563:3;26556:19;26608:4;26603:3;26599:14;26584:29;;26451:168;;;;:::o;26625:169::-;26709:11;26743:6;26738:3;26731:19;26783:4;26778:3;26774:14;26759:29;;26625:169;;;;:::o;26800:148::-;26902:11;26939:3;26924:18;;26800:148;;;;:::o;26954:305::-;26994:3;27013:20;27031:1;27013:20;:::i;:::-;27008:25;;27047:20;27065:1;27047:20;:::i;:::-;27042:25;;27201:1;27133:66;27129:74;27126:1;27123:81;27120:107;;;27207:18;;:::i;:::-;27120:107;27251:1;27248;27244:9;27237:16;;26954:305;;;;:::o;27265:185::-;27305:1;27322:20;27340:1;27322:20;:::i;:::-;27317:25;;27356:20;27374:1;27356:20;:::i;:::-;27351:25;;27395:1;27385:35;;27400:18;;:::i;:::-;27385:35;27442:1;27439;27435:9;27430:14;;27265:185;;;;:::o;27456:348::-;27496:7;27519:20;27537:1;27519:20;:::i;:::-;27514:25;;27553:20;27571:1;27553:20;:::i;:::-;27548:25;;27741:1;27673:66;27669:74;27666:1;27663:81;27658:1;27651:9;27644:17;27640:105;27637:131;;;27748:18;;:::i;:::-;27637:131;27796:1;27793;27789:9;27778:20;;27456:348;;;;:::o;27810:191::-;27850:4;27870:20;27888:1;27870:20;:::i;:::-;27865:25;;27904:20;27922:1;27904:20;:::i;:::-;27899:25;;27943:1;27940;27937:8;27934:34;;;27948:18;;:::i;:::-;27934:34;27993:1;27990;27986:9;27978:17;;27810:191;;;;:::o;28007:96::-;28044:7;28073:24;28091:5;28073:24;:::i;:::-;28062:35;;28007:96;;;:::o;28109:104::-;28154:7;28183:24;28201:5;28183:24;:::i;:::-;28172:35;;28109:104;;;:::o;28219:90::-;28253:7;28296:5;28289:13;28282:21;28271:32;;28219:90;;;:::o;28315:77::-;28352:7;28381:5;28370:16;;28315:77;;;:::o;28398:149::-;28434:7;28474:66;28467:5;28463:78;28452:89;;28398:149;;;:::o;28553:126::-;28590:7;28630:42;28623:5;28619:54;28608:65;;28553:126;;;:::o;28685:77::-;28722:7;28751:5;28740:16;;28685:77;;;:::o;28768:154::-;28852:6;28847:3;28842;28829:30;28914:1;28905:6;28900:3;28896:16;28889:27;28768:154;;;:::o;28928:307::-;28996:1;29006:113;29020:6;29017:1;29014:13;29006:113;;;29105:1;29100:3;29096:11;29090:18;29086:1;29081:3;29077:11;29070:39;29042:2;29039:1;29035:10;29030:15;;29006:113;;;29137:6;29134:1;29131:13;29128:101;;;29217:1;29208:6;29203:3;29199:16;29192:27;29128:101;28977:258;28928:307;;;:::o;29241:320::-;29285:6;29322:1;29316:4;29312:12;29302:22;;29369:1;29363:4;29359:12;29390:18;29380:81;;29446:4;29438:6;29434:17;29424:27;;29380:81;29508:2;29500:6;29497:14;29477:18;29474:38;29471:84;;;29527:18;;:::i;:::-;29471:84;29292:269;29241:320;;;:::o;29567:281::-;29650:27;29672:4;29650:27;:::i;:::-;29642:6;29638:40;29780:6;29768:10;29765:22;29744:18;29732:10;29729:34;29726:62;29723:88;;;29791:18;;:::i;:::-;29723:88;29831:10;29827:2;29820:22;29610:238;29567:281;;:::o;29854:233::-;29893:3;29916:24;29934:5;29916:24;:::i;:::-;29907:33;;29962:66;29955:5;29952:77;29949:103;;;30032:18;;:::i;:::-;29949:103;30079:1;30072:5;30068:13;30061:20;;29854:233;;;:::o;30093:100::-;30132:7;30161:26;30181:5;30161:26;:::i;:::-;30150:37;;30093:100;;;:::o;30199:94::-;30238:7;30267:20;30281:5;30267:20;:::i;:::-;30256:31;;30199:94;;;:::o;30299:79::-;30338:7;30367:5;30356:16;;30299:79;;;:::o;30384:180::-;30432:77;30429:1;30422:88;30529:4;30526:1;30519:15;30553:4;30550:1;30543:15;30570:180;30618:77;30615:1;30608:88;30715:4;30712:1;30705:15;30739:4;30736:1;30729:15;30756:180;30804:77;30801:1;30794:88;30901:4;30898:1;30891:15;30925:4;30922:1;30915:15;30942:180;30990:77;30987:1;30980:88;31087:4;31084:1;31077:15;31111:4;31108:1;31101:15;31128:180;31176:77;31173:1;31166:88;31273:4;31270:1;31263:15;31297:4;31294:1;31287:15;31314:117;31423:1;31420;31413:12;31437:117;31546:1;31543;31536:12;31560:117;31669:1;31666;31659:12;31683:117;31792:1;31789;31782:12;31806:117;31915:1;31912;31905:12;31929:117;32038:1;32035;32028:12;32052:102;32093:6;32144:2;32140:7;32135:2;32128:5;32124:14;32120:28;32110:38;;32052:102;;;:::o;32160:94::-;32193:8;32241:5;32237:2;32233:14;32212:35;;32160:94;;;:::o;32260:178::-;32400:30;32396:1;32388:6;32384:14;32377:54;32260:178;:::o;32444:225::-;32584:34;32580:1;32572:6;32568:14;32561:58;32653:8;32648:2;32640:6;32636:15;32629:33;32444:225;:::o;32675:164::-;32815:16;32811:1;32803:6;32799:14;32792:40;32675:164;:::o;32845:178::-;32985:30;32981:1;32973:6;32969:14;32962:54;32845:178;:::o;33029:227::-;33169:34;33165:1;33157:6;33153:14;33146:58;33238:10;33233:2;33225:6;33221:15;33214:35;33029:227;:::o;33262:179::-;33402:31;33398:1;33390:6;33386:14;33379:55;33262:179;:::o;33447:181::-;33587:33;33583:1;33575:6;33571:14;33564:57;33447:181;:::o;33634:155::-;33774:7;33770:1;33762:6;33758:14;33751:31;33634:155;:::o;33795:182::-;33935:34;33931:1;33923:6;33919:14;33912:58;33795:182;:::o;33983:236::-;34123:34;34119:1;34111:6;34107:14;34100:58;34192:19;34187:2;34179:6;34175:15;34168:44;33983:236;:::o;34225:179::-;34365:31;34361:1;34353:6;34349:14;34342:55;34225:179;:::o;34410:151::-;34550:3;34546:1;34538:6;34534:14;34527:27;34410:151;:::o;34567:122::-;34640:24;34658:5;34640:24;:::i;:::-;34633:5;34630:35;34620:63;;34679:1;34676;34669:12;34620:63;34567:122;:::o;34695:138::-;34776:32;34802:5;34776:32;:::i;:::-;34769:5;34766:43;34756:71;;34823:1;34820;34813:12;34756:71;34695:138;:::o;34839:116::-;34909:21;34924:5;34909:21;:::i;:::-;34902:5;34899:32;34889:60;;34945:1;34942;34935:12;34889:60;34839:116;:::o;34961:122::-;35034:24;35052:5;35034:24;:::i;:::-;35027:5;35024:35;35014:63;;35073:1;35070;35063:12;35014:63;34961:122;:::o;35089:120::-;35161:23;35178:5;35161:23;:::i;:::-;35154:5;35151:34;35141:62;;35199:1;35196;35189:12;35141:62;35089:120;:::o;35215:122::-;35288:24;35306:5;35288:24;:::i;:::-;35281:5;35278:35;35268:63;;35327:1;35324;35317:12;35268:63;35215:122;:::o

Swarm Source

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