ETH Price: $3,262.44 (+0.07%)
Gas: 2 Gwei

Holy Kitten (Holy Kitten)
 

Overview

TokenID

319

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HolyKitten

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-06
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;



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

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

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



// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;



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

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @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 {}
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}




// 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);
    }
}
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;



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

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

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

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


pragma solidity >=0.8.6;


contract HolyKitten is ERC721A, Ownable {

    uint public price = 0.015 ether;
    uint public maxSupply = 2000;
    uint public maxTx = 3;

    bytes32 public merkleRoot;

    bool private mintOpen = false;
    bool private presaleOpen = false;

    mapping(address => uint256) public _preSaleCounter;

    string internal baseTokenURI = '';
    

    constructor() ERC721A("Holy Kitten", "Holy Kitten") {}

    function togglePublic() external onlyOwner {
        mintOpen = !mintOpen;
    }

    function togglePresale() external onlyOwner {
        presaleOpen = !presaleOpen;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }
    
    function setSaveWLSpots(uint saveWL) external onlyOwner {
        maxSupply = saveWL;
    }

    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

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

    function buyTo(address to, uint qty) external onlyOwner {
        _mintTo(to, qty);
    }

    function whitelistMint(uint qty, bytes32[] memory proof) external payable {
        require(presaleOpen, "Mint is not Open Yet.");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        require(verify(proof), "Your Address is not on the Whitelist.");
        _mint(qty);
    }
    
    function mint(uint qty) external payable {
        require(mintOpen, "Mint is not Open Yet.");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        _mint(qty);
    }

    function _mint(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(msg.value >= price * (qty), "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + totalSupply() <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        _mint(to, qty);
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    function verify(bytes32[] memory proof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function airdrop(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            _safeMint(_users[i], 1);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saveWL","type":"uint256"}],"name":"setSaveWLSpots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266354a6ba7a180006009556107d0600a556003600b556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200007792919062000235565b503480156200008557600080fd5b506040518060400160405280600b81526020017f486f6c79204b697474656e0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f486f6c79204b697474656e00000000000000000000000000000000000000000081525081600290805190602001906200010a92919062000235565b5080600390805190602001906200012392919062000235565b50620001346200016260201b60201c565b60008190555050506200015c620001506200016760201b60201c565b6200016f60201b60201c565b6200034a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613daf806200035a6000396000f3fe6080604052600436106101f95760003560e01c80637437681e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106c0578063d2cab056146106fd578063d5abeb0114610719578063e985e9c514610744578063f2fde38b14610781576101f9565b8063a0712d6814610629578063a22cb46514610645578063b88d4fde1461066e578063bc33718214610697576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059357806395d89b41146105bc578063981d8771146105e7578063a035b1fe146105fe576101f9565b80637437681e146104eb5780637cb6475914610516578063858af87b1461053f5780638da5cb5b14610568576101f9565b80632eb4a7ab1161019057806342842e0e1161015f57806342842e0e146104085780636352211e1461043157806370a082311461046e578063715018a6146104ab578063729ad39e146104c2576101f9565b80632eb4a7ab1461038657806330176e13146103b157806334393743146103da5780633ccfd60b146103f1576101f9565b806309bd4c31116101cc57806309bd4c31146102cc57806318160ddd146102f557806323b872dd1461032057806327b1425a14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130e7565b6107aa565b60405161023291906134cb565b60405180910390f35b34801561024757600080fd5b5061025061088c565b60405161025d9190613501565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061318e565b61091e565b60405161029a9190613464565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061302d565b61099a565b005b3480156102d857600080fd5b506102f360048036038101906102ee919061302d565b610a9f565b005b34801561030157600080fd5b5061030a610ab5565b6040516103179190613623565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f17565b610acc565b005b34801561035557600080fd5b50610370600480360381019061036b9190612eaa565b610adc565b60405161037d9190613623565b60405180910390f35b34801561039257600080fd5b5061039b610af4565b6040516103a891906134e6565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613141565b610afa565b005b3480156103e657600080fd5b506103ef610b18565b005b3480156103fd57600080fd5b50610406610b4c565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612f17565b610ba4565b005b34801561043d57600080fd5b506104586004803603810190610453919061318e565b610bc4565b6040516104659190613464565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612eaa565b610bda565b6040516104a29190613623565b60405180910390f35b3480156104b757600080fd5b506104c0610caa565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061306d565b610cbe565b005b3480156104f757600080fd5b50610500610d1e565b60405161050d9190613623565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906130ba565b610d24565b005b34801561054b57600080fd5b506105666004803603810190610561919061318e565b610d36565b005b34801561057457600080fd5b5061057d610d48565b60405161058a9190613464565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061318e565b610d72565b005b3480156105c857600080fd5b506105d1610d84565b6040516105de9190613501565b60405180910390f35b3480156105f357600080fd5b506105fc610e16565b005b34801561060a57600080fd5b50610613610e4a565b6040516106209190613623565b60405180910390f35b610643600480360381019061063e919061318e565b610e50565b005b34801561065157600080fd5b5061066c60048036038101906106679190612fed565b610fc8565b005b34801561067a57600080fd5b5061069560048036038101906106909190612f6a565b611140565b005b3480156106a357600080fd5b506106be60048036038101906106b9919061318e565b6111b8565b005b3480156106cc57600080fd5b506106e760048036038101906106e2919061318e565b6111ca565b6040516106f49190613501565b60405180910390f35b610717600480360381019061071291906131bb565b611269565b005b34801561072557600080fd5b5061072e61142a565b60405161073b9190613623565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190612ed7565b611430565b60405161077891906134cb565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612eaa565b6114c4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610885575061088482611548565b5b9050919050565b60606002805461089b906138d8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c7906138d8565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b6000610929826115b2565b61095f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a582610bc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2c611600565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f57610a5881610a53611600565b611430565b610a8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a9a838383611608565b505050565b610aa76116ba565b610ab18282611738565b5050565b6000610abf61179d565b6001546000540303905090565b610ad78383836117a2565b505050565b600e6020528060005260406000206000915090505481565b600c5481565b610b026116ba565b8181600f9190610b13929190612b8c565b505050565b610b206116ba565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610b546116ba565b610b5c611600565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ba1573d6000803e3d6000fd5b50565b610bbf83838360405180602001604052806000815250611140565b505050565b6000610bcf82611c58565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cb26116ba565b610cbc6000611ee3565b565b610cc66116ba565b60005b82829050811015610d1957610d06838383818110610cea57610ce9613a66565b5b9050602002016020810190610cff9190612eaa565b6001611fa9565b8080610d119061393b565b915050610cc9565b505050565b600b5481565b610d2c6116ba565b80600c8190555050565b610d3e6116ba565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7a6116ba565b8060098190555050565b606060038054610d93906138d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbf906138d8565b8015610e0c5780601f10610de157610100808354040283529160200191610e0c565b820191906000526020600020905b815481529060010190602001808311610def57829003601f168201915b5050505050905090565b610e1e6116ba565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b600d60009054906101000a900460ff16610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613603565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eed9190613703565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906135e3565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f799190613703565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fc581611fc7565b50565b610fd0611600565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611042611600565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ef611600565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113491906134cb565b60405180910390a35050565b61114b8484846117a2565b61116a8373ffffffffffffffffffffffffffffffffffffffff1661207c565b156111b25761117b8484848461209f565b6111b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6111c06116ba565b80600b8190555050565b60606111d5826115b2565b61120b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112156121ff565b90506000815114156112365760405180602001604052806000815250611261565b8061124084612291565b604051602001611251929190613440565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff166112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613603565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113069190613703565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906135e3565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113929190613703565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113de816123f2565b61141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906135a3565b60405180910390fd5b61142682611fc7565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cc6116ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613523565b60405180910390fd5b61154581611ee3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115bd61179d565b111580156115cc575060005482105b80156115f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6116c2611600565b73ffffffffffffffffffffffffffffffffffffffff166116e0610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613583565b60405180910390fd5b565b600a54611743610ab5565b8261174e9190613703565b111561178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906135c3565b60405180910390fd5b6117998282612433565b5050565b600090565b60006117ad82611c58565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611818576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611839611600565b73ffffffffffffffffffffffffffffffffffffffff161480611868575061186785611862611600565b611430565b5b806118ad5750611876611600565b73ffffffffffffffffffffffffffffffffffffffff166118958461091e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561194d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195a858585600161270f565b61196660008487611608565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be6576000548214611be557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c518585856001612715565b5050505050565b611c60612c12565b600082905080611c6e61179d565b11611eac57600054811015611eab576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ea957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d8d578092505050611ede565b5b600115611ea857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ea3578092505050611ede565b611d8e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc382826040518060200160405280600081525061271b565b5050565b600b548111158015611fd95750600081115b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613543565b60405180910390fd5b80600954612026919061378a565b341015612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613563565b60405180910390fd5b612079612073611600565b82611738565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c5611600565b8786866040518563ffffffff1660e01b81526004016120e7949392919061347f565b602060405180830381600087803b15801561210157600080fd5b505af192505050801561213257506040513d601f19601f8201168201806040525081019061212f9190613114565b60015b6121ac573d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b506000815114156121a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461220e906138d8565b80601f016020809104026020016040519081016040528092919081815260200182805461223a906138d8565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b5050505050905090565b606060008214156122d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ed565b600082905060005b6000821461230b5780806122f49061393b565b915050600a826123049190613759565b91506122e1565b60008167ffffffffffffffff81111561232757612326613a95565b5b6040519080825280601f01601f1916602001820160405280156123595781602001600182028036833780820191505090505b5090505b600085146123e65760018261237291906137e4565b9150600a8561238191906139a8565b603061238d9190613703565b60f81b8183815181106123a3576123a2613a66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123df9190613759565b945061235d565b8093505050505b919050565b600080336040516020016124069190613425565b60405160208183030381529060405280519060200120905061242b83600c5483612add565b915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156124db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124e8600084838561270f565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061268b5781600081905550505061270a6000848385612715565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612788576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d0600085838661270f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129918673ffffffffffffffffffffffffffffffffffffffff1661207c565b15612a56575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a06600087848060010195508761209f565b612a3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612997578260005414612a5157600080fd5b612ac1565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a57575b816000819055505050612ad76000858386612715565b50505050565b600082612aea8584612af4565b1490509392505050565b60008082905060005b8451811015612b3f57612b2a82868381518110612b1d57612b1c613a66565b5b6020026020010151612b4a565b91508080612b379061393b565b915050612afd565b508091505092915050565b6000818310612b6257612b5d8284612b75565b612b6d565b612b6c8383612b75565b5b905092915050565b600082600052816020526040600020905092915050565b828054612b98906138d8565b90600052602060002090601f016020900481019282612bba5760008555612c01565b82601f10612bd357803560ff1916838001178555612c01565b82800160010185558215612c01579182015b82811115612c00578235825591602001919060010190612be5565b5b509050612c0e9190612c55565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c6e576000816000905550600101612c56565b5090565b6000612c85612c8084613663565b61363e565b90508083825260208201905082856020860282011115612ca857612ca7613ace565b5b60005b85811015612cd85781612cbe8882612dd2565b845260208401935060208301925050600181019050612cab565b5050509392505050565b6000612cf5612cf08461368f565b61363e565b905082815260208101848484011115612d1157612d10613ad3565b5b612d1c848285613896565b509392505050565b600081359050612d3381613d06565b92915050565b60008083601f840112612d4f57612d4e613ac9565b5b8235905067ffffffffffffffff811115612d6c57612d6b613ac4565b5b602083019150836020820283011115612d8857612d87613ace565b5b9250929050565b600082601f830112612da457612da3613ac9565b5b8135612db4848260208601612c72565b91505092915050565b600081359050612dcc81613d1d565b92915050565b600081359050612de181613d34565b92915050565b600081359050612df681613d4b565b92915050565b600081519050612e0b81613d4b565b92915050565b600082601f830112612e2657612e25613ac9565b5b8135612e36848260208601612ce2565b91505092915050565b60008083601f840112612e5557612e54613ac9565b5b8235905067ffffffffffffffff811115612e7257612e71613ac4565b5b602083019150836001820283011115612e8e57612e8d613ace565b5b9250929050565b600081359050612ea481613d62565b92915050565b600060208284031215612ec057612ebf613add565b5b6000612ece84828501612d24565b91505092915050565b60008060408385031215612eee57612eed613add565b5b6000612efc85828601612d24565b9250506020612f0d85828601612d24565b9150509250929050565b600080600060608486031215612f3057612f2f613add565b5b6000612f3e86828701612d24565b9350506020612f4f86828701612d24565b9250506040612f6086828701612e95565b9150509250925092565b60008060008060808587031215612f8457612f83613add565b5b6000612f9287828801612d24565b9450506020612fa387828801612d24565b9350506040612fb487828801612e95565b925050606085013567ffffffffffffffff811115612fd557612fd4613ad8565b5b612fe187828801612e11565b91505092959194509250565b6000806040838503121561300457613003613add565b5b600061301285828601612d24565b925050602061302385828601612dbd565b9150509250929050565b6000806040838503121561304457613043613add565b5b600061305285828601612d24565b925050602061306385828601612e95565b9150509250929050565b6000806020838503121561308457613083613add565b5b600083013567ffffffffffffffff8111156130a2576130a1613ad8565b5b6130ae85828601612d39565b92509250509250929050565b6000602082840312156130d0576130cf613add565b5b60006130de84828501612dd2565b91505092915050565b6000602082840312156130fd576130fc613add565b5b600061310b84828501612de7565b91505092915050565b60006020828403121561312a57613129613add565b5b600061313884828501612dfc565b91505092915050565b6000806020838503121561315857613157613add565b5b600083013567ffffffffffffffff81111561317657613175613ad8565b5b61318285828601612e3f565b92509250509250929050565b6000602082840312156131a4576131a3613add565b5b60006131b284828501612e95565b91505092915050565b600080604083850312156131d2576131d1613add565b5b60006131e085828601612e95565b925050602083013567ffffffffffffffff81111561320157613200613ad8565b5b61320d85828601612d8f565b9150509250929050565b61322081613818565b82525050565b61323761323282613818565b613984565b82525050565b6132468161382a565b82525050565b61325581613836565b82525050565b6000613266826136c0565b61327081856136d6565b93506132808185602086016138a5565b61328981613ae2565b840191505092915050565b600061329f826136cb565b6132a981856136e7565b93506132b98185602086016138a5565b6132c281613ae2565b840191505092915050565b60006132d8826136cb565b6132e281856136f8565b93506132f28185602086016138a5565b80840191505092915050565b600061330b6026836136e7565b915061331682613b00565b604082019050919050565b600061332e6024836136e7565b915061333982613b4f565b604082019050919050565b60006133516016836136e7565b915061335c82613b9e565b602082019050919050565b60006133746020836136e7565b915061337f82613bc7565b602082019050919050565b60006133976025836136e7565b91506133a282613bf0565b604082019050919050565b60006133ba6021836136e7565b91506133c582613c3f565b604082019050919050565b60006133dd6022836136e7565b91506133e882613c8e565b604082019050919050565b60006134006015836136e7565b915061340b82613cdd565b602082019050919050565b61341f8161388c565b82525050565b60006134318284613226565b60148201915081905092915050565b600061344c82856132cd565b915061345882846132cd565b91508190509392505050565b60006020820190506134796000830184613217565b92915050565b60006080820190506134946000830187613217565b6134a16020830186613217565b6134ae6040830185613416565b81810360608301526134c0818461325b565b905095945050505050565b60006020820190506134e0600083018461323d565b92915050565b60006020820190506134fb600083018461324c565b92915050565b6000602082019050818103600083015261351b8184613294565b905092915050565b6000602082019050818103600083015261353c816132fe565b9050919050565b6000602082019050818103600083015261355c81613321565b9050919050565b6000602082019050818103600083015261357c81613344565b9050919050565b6000602082019050818103600083015261359c81613367565b9050919050565b600060208201905081810360008301526135bc8161338a565b9050919050565b600060208201905081810360008301526135dc816133ad565b9050919050565b600060208201905081810360008301526135fc816133d0565b9050919050565b6000602082019050818103600083015261361c816133f3565b9050919050565b60006020820190506136386000830184613416565b92915050565b6000613648613659565b9050613654828261390a565b919050565b6000604051905090565b600067ffffffffffffffff82111561367e5761367d613a95565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136aa576136a9613a95565b5b6136b382613ae2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061370e8261388c565b91506137198361388c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561374e5761374d6139d9565b5b828201905092915050565b60006137648261388c565b915061376f8361388c565b92508261377f5761377e613a08565b5b828204905092915050565b60006137958261388c565b91506137a08361388c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137d9576137d86139d9565b5b828202905092915050565b60006137ef8261388c565b91506137fa8361388c565b92508282101561380d5761380c6139d9565b5b828203905092915050565b60006138238261386c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138c35780820151818401526020810190506138a8565b838111156138d2576000848401525b50505050565b600060028204905060018216806138f057607f821691505b6020821081141561390457613903613a37565b5b50919050565b61391382613ae2565b810181811067ffffffffffffffff8211171561393257613931613a95565b5b80604052505050565b60006139468261388c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613979576139786139d9565b5b600182019050919050565b600061398f82613996565b9050919050565b60006139a182613af3565b9050919050565b60006139b38261388c565b91506139be8361388c565b9250826139ce576139cd613a08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75722041646472657373206973206e6f74206f6e2074686520576869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e205965742e0000000000000000000000600082015250565b613d0f81613818565b8114613d1a57600080fd5b50565b613d268161382a565b8114613d3157600080fd5b50565b613d3d81613836565b8114613d4857600080fd5b50565b613d5481613840565b8114613d5f57600080fd5b50565b613d6b8161388c565b8114613d7657600080fd5b5056fea2646970667358221220c9a669dfdcd1833b2e2d8170ff3f4757023a5ddaacd5b27e55f9d45362f270ce64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637437681e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106c0578063d2cab056146106fd578063d5abeb0114610719578063e985e9c514610744578063f2fde38b14610781576101f9565b8063a0712d6814610629578063a22cb46514610645578063b88d4fde1461066e578063bc33718214610697576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059357806395d89b41146105bc578063981d8771146105e7578063a035b1fe146105fe576101f9565b80637437681e146104eb5780637cb6475914610516578063858af87b1461053f5780638da5cb5b14610568576101f9565b80632eb4a7ab1161019057806342842e0e1161015f57806342842e0e146104085780636352211e1461043157806370a082311461046e578063715018a6146104ab578063729ad39e146104c2576101f9565b80632eb4a7ab1461038657806330176e13146103b157806334393743146103da5780633ccfd60b146103f1576101f9565b806309bd4c31116101cc57806309bd4c31146102cc57806318160ddd146102f557806323b872dd1461032057806327b1425a14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130e7565b6107aa565b60405161023291906134cb565b60405180910390f35b34801561024757600080fd5b5061025061088c565b60405161025d9190613501565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061318e565b61091e565b60405161029a9190613464565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061302d565b61099a565b005b3480156102d857600080fd5b506102f360048036038101906102ee919061302d565b610a9f565b005b34801561030157600080fd5b5061030a610ab5565b6040516103179190613623565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f17565b610acc565b005b34801561035557600080fd5b50610370600480360381019061036b9190612eaa565b610adc565b60405161037d9190613623565b60405180910390f35b34801561039257600080fd5b5061039b610af4565b6040516103a891906134e6565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613141565b610afa565b005b3480156103e657600080fd5b506103ef610b18565b005b3480156103fd57600080fd5b50610406610b4c565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612f17565b610ba4565b005b34801561043d57600080fd5b506104586004803603810190610453919061318e565b610bc4565b6040516104659190613464565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612eaa565b610bda565b6040516104a29190613623565b60405180910390f35b3480156104b757600080fd5b506104c0610caa565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061306d565b610cbe565b005b3480156104f757600080fd5b50610500610d1e565b60405161050d9190613623565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906130ba565b610d24565b005b34801561054b57600080fd5b506105666004803603810190610561919061318e565b610d36565b005b34801561057457600080fd5b5061057d610d48565b60405161058a9190613464565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061318e565b610d72565b005b3480156105c857600080fd5b506105d1610d84565b6040516105de9190613501565b60405180910390f35b3480156105f357600080fd5b506105fc610e16565b005b34801561060a57600080fd5b50610613610e4a565b6040516106209190613623565b60405180910390f35b610643600480360381019061063e919061318e565b610e50565b005b34801561065157600080fd5b5061066c60048036038101906106679190612fed565b610fc8565b005b34801561067a57600080fd5b5061069560048036038101906106909190612f6a565b611140565b005b3480156106a357600080fd5b506106be60048036038101906106b9919061318e565b6111b8565b005b3480156106cc57600080fd5b506106e760048036038101906106e2919061318e565b6111ca565b6040516106f49190613501565b60405180910390f35b610717600480360381019061071291906131bb565b611269565b005b34801561072557600080fd5b5061072e61142a565b60405161073b9190613623565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190612ed7565b611430565b60405161077891906134cb565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612eaa565b6114c4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610885575061088482611548565b5b9050919050565b60606002805461089b906138d8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c7906138d8565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b6000610929826115b2565b61095f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a582610bc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2c611600565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f57610a5881610a53611600565b611430565b610a8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a9a838383611608565b505050565b610aa76116ba565b610ab18282611738565b5050565b6000610abf61179d565b6001546000540303905090565b610ad78383836117a2565b505050565b600e6020528060005260406000206000915090505481565b600c5481565b610b026116ba565b8181600f9190610b13929190612b8c565b505050565b610b206116ba565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610b546116ba565b610b5c611600565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ba1573d6000803e3d6000fd5b50565b610bbf83838360405180602001604052806000815250611140565b505050565b6000610bcf82611c58565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cb26116ba565b610cbc6000611ee3565b565b610cc66116ba565b60005b82829050811015610d1957610d06838383818110610cea57610ce9613a66565b5b9050602002016020810190610cff9190612eaa565b6001611fa9565b8080610d119061393b565b915050610cc9565b505050565b600b5481565b610d2c6116ba565b80600c8190555050565b610d3e6116ba565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7a6116ba565b8060098190555050565b606060038054610d93906138d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbf906138d8565b8015610e0c5780601f10610de157610100808354040283529160200191610e0c565b820191906000526020600020905b815481529060010190602001808311610def57829003601f168201915b5050505050905090565b610e1e6116ba565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b600d60009054906101000a900460ff16610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613603565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eed9190613703565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906135e3565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f799190613703565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fc581611fc7565b50565b610fd0611600565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611042611600565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ef611600565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113491906134cb565b60405180910390a35050565b61114b8484846117a2565b61116a8373ffffffffffffffffffffffffffffffffffffffff1661207c565b156111b25761117b8484848461209f565b6111b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6111c06116ba565b80600b8190555050565b60606111d5826115b2565b61120b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112156121ff565b90506000815114156112365760405180602001604052806000815250611261565b8061124084612291565b604051602001611251929190613440565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff166112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613603565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113069190613703565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906135e3565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113929190613703565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113de816123f2565b61141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906135a3565b60405180910390fd5b61142682611fc7565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cc6116ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613523565b60405180910390fd5b61154581611ee3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115bd61179d565b111580156115cc575060005482105b80156115f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6116c2611600565b73ffffffffffffffffffffffffffffffffffffffff166116e0610d48565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613583565b60405180910390fd5b565b600a54611743610ab5565b8261174e9190613703565b111561178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906135c3565b60405180910390fd5b6117998282612433565b5050565b600090565b60006117ad82611c58565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611818576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611839611600565b73ffffffffffffffffffffffffffffffffffffffff161480611868575061186785611862611600565b611430565b5b806118ad5750611876611600565b73ffffffffffffffffffffffffffffffffffffffff166118958461091e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561194d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195a858585600161270f565b61196660008487611608565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be6576000548214611be557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c518585856001612715565b5050505050565b611c60612c12565b600082905080611c6e61179d565b11611eac57600054811015611eab576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ea957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d8d578092505050611ede565b5b600115611ea857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ea3578092505050611ede565b611d8e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc382826040518060200160405280600081525061271b565b5050565b600b548111158015611fd95750600081115b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613543565b60405180910390fd5b80600954612026919061378a565b341015612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613563565b60405180910390fd5b612079612073611600565b82611738565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c5611600565b8786866040518563ffffffff1660e01b81526004016120e7949392919061347f565b602060405180830381600087803b15801561210157600080fd5b505af192505050801561213257506040513d601f19601f8201168201806040525081019061212f9190613114565b60015b6121ac573d8060008114612162576040519150601f19603f3d011682016040523d82523d6000602084013e612167565b606091505b506000815114156121a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461220e906138d8565b80601f016020809104026020016040519081016040528092919081815260200182805461223a906138d8565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b5050505050905090565b606060008214156122d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ed565b600082905060005b6000821461230b5780806122f49061393b565b915050600a826123049190613759565b91506122e1565b60008167ffffffffffffffff81111561232757612326613a95565b5b6040519080825280601f01601f1916602001820160405280156123595781602001600182028036833780820191505090505b5090505b600085146123e65760018261237291906137e4565b9150600a8561238191906139a8565b603061238d9190613703565b60f81b8183815181106123a3576123a2613a66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123df9190613759565b945061235d565b8093505050505b919050565b600080336040516020016124069190613425565b60405160208183030381529060405280519060200120905061242b83600c5483612add565b915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156124db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124e8600084838561270f565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061268b5781600081905550505061270a6000848385612715565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612788576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d0600085838661270f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129918673ffffffffffffffffffffffffffffffffffffffff1661207c565b15612a56575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a06600087848060010195508761209f565b612a3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612997578260005414612a5157600080fd5b612ac1565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a57575b816000819055505050612ad76000858386612715565b50505050565b600082612aea8584612af4565b1490509392505050565b60008082905060005b8451811015612b3f57612b2a82868381518110612b1d57612b1c613a66565b5b6020026020010151612b4a565b91508080612b379061393b565b915050612afd565b508091505092915050565b6000818310612b6257612b5d8284612b75565b612b6d565b612b6c8383612b75565b5b905092915050565b600082600052816020526040600020905092915050565b828054612b98906138d8565b90600052602060002090601f016020900481019282612bba5760008555612c01565b82601f10612bd357803560ff1916838001178555612c01565b82800160010185558215612c01579182015b82811115612c00578235825591602001919060010190612be5565b5b509050612c0e9190612c55565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c6e576000816000905550600101612c56565b5090565b6000612c85612c8084613663565b61363e565b90508083825260208201905082856020860282011115612ca857612ca7613ace565b5b60005b85811015612cd85781612cbe8882612dd2565b845260208401935060208301925050600181019050612cab565b5050509392505050565b6000612cf5612cf08461368f565b61363e565b905082815260208101848484011115612d1157612d10613ad3565b5b612d1c848285613896565b509392505050565b600081359050612d3381613d06565b92915050565b60008083601f840112612d4f57612d4e613ac9565b5b8235905067ffffffffffffffff811115612d6c57612d6b613ac4565b5b602083019150836020820283011115612d8857612d87613ace565b5b9250929050565b600082601f830112612da457612da3613ac9565b5b8135612db4848260208601612c72565b91505092915050565b600081359050612dcc81613d1d565b92915050565b600081359050612de181613d34565b92915050565b600081359050612df681613d4b565b92915050565b600081519050612e0b81613d4b565b92915050565b600082601f830112612e2657612e25613ac9565b5b8135612e36848260208601612ce2565b91505092915050565b60008083601f840112612e5557612e54613ac9565b5b8235905067ffffffffffffffff811115612e7257612e71613ac4565b5b602083019150836001820283011115612e8e57612e8d613ace565b5b9250929050565b600081359050612ea481613d62565b92915050565b600060208284031215612ec057612ebf613add565b5b6000612ece84828501612d24565b91505092915050565b60008060408385031215612eee57612eed613add565b5b6000612efc85828601612d24565b9250506020612f0d85828601612d24565b9150509250929050565b600080600060608486031215612f3057612f2f613add565b5b6000612f3e86828701612d24565b9350506020612f4f86828701612d24565b9250506040612f6086828701612e95565b9150509250925092565b60008060008060808587031215612f8457612f83613add565b5b6000612f9287828801612d24565b9450506020612fa387828801612d24565b9350506040612fb487828801612e95565b925050606085013567ffffffffffffffff811115612fd557612fd4613ad8565b5b612fe187828801612e11565b91505092959194509250565b6000806040838503121561300457613003613add565b5b600061301285828601612d24565b925050602061302385828601612dbd565b9150509250929050565b6000806040838503121561304457613043613add565b5b600061305285828601612d24565b925050602061306385828601612e95565b9150509250929050565b6000806020838503121561308457613083613add565b5b600083013567ffffffffffffffff8111156130a2576130a1613ad8565b5b6130ae85828601612d39565b92509250509250929050565b6000602082840312156130d0576130cf613add565b5b60006130de84828501612dd2565b91505092915050565b6000602082840312156130fd576130fc613add565b5b600061310b84828501612de7565b91505092915050565b60006020828403121561312a57613129613add565b5b600061313884828501612dfc565b91505092915050565b6000806020838503121561315857613157613add565b5b600083013567ffffffffffffffff81111561317657613175613ad8565b5b61318285828601612e3f565b92509250509250929050565b6000602082840312156131a4576131a3613add565b5b60006131b284828501612e95565b91505092915050565b600080604083850312156131d2576131d1613add565b5b60006131e085828601612e95565b925050602083013567ffffffffffffffff81111561320157613200613ad8565b5b61320d85828601612d8f565b9150509250929050565b61322081613818565b82525050565b61323761323282613818565b613984565b82525050565b6132468161382a565b82525050565b61325581613836565b82525050565b6000613266826136c0565b61327081856136d6565b93506132808185602086016138a5565b61328981613ae2565b840191505092915050565b600061329f826136cb565b6132a981856136e7565b93506132b98185602086016138a5565b6132c281613ae2565b840191505092915050565b60006132d8826136cb565b6132e281856136f8565b93506132f28185602086016138a5565b80840191505092915050565b600061330b6026836136e7565b915061331682613b00565b604082019050919050565b600061332e6024836136e7565b915061333982613b4f565b604082019050919050565b60006133516016836136e7565b915061335c82613b9e565b602082019050919050565b60006133746020836136e7565b915061337f82613bc7565b602082019050919050565b60006133976025836136e7565b91506133a282613bf0565b604082019050919050565b60006133ba6021836136e7565b91506133c582613c3f565b604082019050919050565b60006133dd6022836136e7565b91506133e882613c8e565b604082019050919050565b60006134006015836136e7565b915061340b82613cdd565b602082019050919050565b61341f8161388c565b82525050565b60006134318284613226565b60148201915081905092915050565b600061344c82856132cd565b915061345882846132cd565b91508190509392505050565b60006020820190506134796000830184613217565b92915050565b60006080820190506134946000830187613217565b6134a16020830186613217565b6134ae6040830185613416565b81810360608301526134c0818461325b565b905095945050505050565b60006020820190506134e0600083018461323d565b92915050565b60006020820190506134fb600083018461324c565b92915050565b6000602082019050818103600083015261351b8184613294565b905092915050565b6000602082019050818103600083015261353c816132fe565b9050919050565b6000602082019050818103600083015261355c81613321565b9050919050565b6000602082019050818103600083015261357c81613344565b9050919050565b6000602082019050818103600083015261359c81613367565b9050919050565b600060208201905081810360008301526135bc8161338a565b9050919050565b600060208201905081810360008301526135dc816133ad565b9050919050565b600060208201905081810360008301526135fc816133d0565b9050919050565b6000602082019050818103600083015261361c816133f3565b9050919050565b60006020820190506136386000830184613416565b92915050565b6000613648613659565b9050613654828261390a565b919050565b6000604051905090565b600067ffffffffffffffff82111561367e5761367d613a95565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136aa576136a9613a95565b5b6136b382613ae2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061370e8261388c565b91506137198361388c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561374e5761374d6139d9565b5b828201905092915050565b60006137648261388c565b915061376f8361388c565b92508261377f5761377e613a08565b5b828204905092915050565b60006137958261388c565b91506137a08361388c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137d9576137d86139d9565b5b828202905092915050565b60006137ef8261388c565b91506137fa8361388c565b92508282101561380d5761380c6139d9565b5b828203905092915050565b60006138238261386c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138c35780820151818401526020810190506138a8565b838111156138d2576000848401525b50505050565b600060028204905060018216806138f057607f821691505b6020821081141561390457613903613a37565b5b50919050565b61391382613ae2565b810181811067ffffffffffffffff8211171561393257613931613a95565b5b80604052505050565b60006139468261388c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613979576139786139d9565b5b600182019050919050565b600061398f82613996565b9050919050565b60006139a182613af3565b9050919050565b60006139b38261388c565b91506139be8361388c565b9250826139ce576139cd613a08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75722041646472657373206973206e6f74206f6e2074686520576869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e205965742e0000000000000000000000600082015250565b613d0f81613818565b8114613d1a57600080fd5b50565b613d268161382a565b8114613d3157600080fd5b50565b613d3d81613836565b8114613d4857600080fd5b50565b613d5481613840565b8114613d5f57600080fd5b50565b613d6b8161388c565b8114613d7657600080fd5b5056fea2646970667358221220c9a669dfdcd1833b2e2d8170ff3f4757023a5ddaacd5b27e55f9d45362f270ce64736f6c63430008070033

Deployed Bytecode Sourcemap

56882:3132:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18556:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18118:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58131:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13177:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57145:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57034:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57604:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57404:89;;;;;;;;;;;;;:::i;:::-;;59504:111;;;;;;;;;;;;;:::i;:::-;;19662:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14306:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56033:103;;;;;;;;;;;;;:::i;:::-;;59834:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57004:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57716:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57820:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57314:82;;;;;;;;;;;;;:::i;:::-;;56931:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58712:360;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18832:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19918:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57927:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58230:470;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56969:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19190:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13937:305;14039:4;14091:25;14076:40;;;:11;:40;;;;:105;;;;14148:33;14133:48;;;:11;:48;;;;14076:105;:158;;;;14198:36;14222:11;14198:23;:36::i;:::-;14076:158;14056:178;;13937:305;;;:::o;17052:100::-;17106:13;17139:5;17132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17052:100;:::o;18556:204::-;18624:7;18649:16;18657:7;18649;:16::i;:::-;18644:64;;18674:34;;;;;;;;;;;;;;18644:64;18728:15;:24;18744:7;18728:24;;;;;;;;;;;;;;;;;;;;;18721:31;;18556:204;;;:::o;18118:372::-;18191:13;18207:24;18223:7;18207:15;:24::i;:::-;18191:40;;18252:5;18246:11;;:2;:11;;;18242:48;;;18266:24;;;;;;;;;;;;;;18242:48;18323:5;18307:21;;:12;:10;:12::i;:::-;:21;;;18303:139;;18334:37;18351:5;18358:12;:10;:12::i;:::-;18334:16;:37::i;:::-;18330:112;;18395:35;;;;;;;;;;;;;;18330:112;18303:139;18454:28;18463:2;18467:7;18476:5;18454:8;:28::i;:::-;18180:310;18118:372;;:::o;58131:91::-;55271:13;:11;:13::i;:::-;58198:16:::1;58206:2;58210:3;58198:7;:16::i;:::-;58131:91:::0;;:::o;13177:312::-;13230:7;13455:15;:13;:15::i;:::-;13440:12;;13424:13;;:28;:46;13417:53;;13177:312;:::o;19421:170::-;19555:28;19565:4;19571:2;19575:7;19555:9;:28::i;:::-;19421:170;;;:::o;57145:50::-;;;;;;;;;;;;;;;;;:::o;57034:25::-;;;;:::o;57604:104::-;55271:13;:11;:13::i;:::-;57696:4:::1;;57681:12;:19;;;;;;;:::i;:::-;;57604:104:::0;;:::o;57404:89::-;55271:13;:11;:13::i;:::-;57474:11:::1;;;;;;;;;;;57473:12;57459:11;;:26;;;;;;;;;;;;;;;;;;57404:89::o:0;59504:111::-;55271:13;:11;:13::i;:::-;59562:12:::1;:10;:12::i;:::-;59554:30;;:53;59585:21;59554:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59504:111::o:0;19662:185::-;19800:39;19817:4;19823:2;19827:7;19800:39;;;;;;;;;;;;:16;:39::i;:::-;19662:185;;;:::o;16860:125::-;16924:7;16951:21;16964:7;16951:12;:21::i;:::-;:26;;;16944:33;;16860:125;;;:::o;14306:206::-;14370:7;14411:1;14394:19;;:5;:19;;;14390:60;;;14422:28;;;;;;;;;;;;;;14390:60;14476:12;:19;14489:5;14476:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;14468:36;;14461:43;;14306:206;;;:::o;56033:103::-;55271:13;:11;:13::i;:::-;56098:30:::1;56125:1;56098:18;:30::i;:::-;56033:103::o:0;59834:175::-;55271:13;:11;:13::i;:::-;59913:9:::1;59908:94;59932:6;;:13;;59928:1;:17;59908:94;;;59967:23;59977:6;;59984:1;59977:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;59988:1;59967:9;:23::i;:::-;59947:3;;;;;:::i;:::-;;;;59908:94;;;;59834:175:::0;;:::o;57004:21::-;;;;:::o;57716:92::-;55271:13;:11;:13::i;:::-;57796:4:::1;57783:10;:17;;;;57716:92:::0;:::o;57820:93::-;55271:13;:11;:13::i;:::-;57899:6:::1;57887:9;:18;;;;57820:93:::0;:::o;55385:87::-;55431:7;55458:6;;;;;;;;;;;55451:13;;55385:87;:::o;57505:::-;55271:13;:11;:13::i;:::-;57576:8:::1;57568:5;:16;;;;57505:87:::0;:::o;17221:104::-;17277:13;17310:7;17303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17221:104;:::o;57314:82::-;55271:13;:11;:13::i;:::-;57380:8:::1;;;;;;;;;;;57379:9;57368:8;;:20;;;;;;;;;;;;;;;;;;57314:82::o:0;56931:31::-;;;;:::o;58712:360::-;58772:8;;;;;;;;;;;58764:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;58876:5;;58869:3;58839:15;:27;58855:10;58839:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58817:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59040:3;58997:15;:27;59013:10;58997:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58954:15;:27;58970:10;58954:27;;;;;;;;;;;;;;;:89;;;;59054:10;59060:3;59054:5;:10::i;:::-;58712:360;:::o;18832:287::-;18943:12;:10;:12::i;:::-;18931:24;;:8;:24;;;18927:54;;;18964:17;;;;;;;;;;;;;;18927:54;19039:8;18994:18;:32;19013:12;:10;:12::i;:::-;18994:32;;;;;;;;;;;;;;;:42;19027:8;18994:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;19092:8;19063:48;;19078:12;:10;:12::i;:::-;19063:48;;;19102:8;19063:48;;;;;;:::i;:::-;;;;;;;;18832:287;;:::o;19918:370::-;20085:28;20095:4;20101:2;20105:7;20085:9;:28::i;:::-;20128:15;:2;:13;;;:15::i;:::-;20124:157;;;20149:56;20180:4;20186:2;20190:7;20199:5;20149:30;:56::i;:::-;20145:136;;20229:40;;;;;;;;;;;;;;20145:136;20124:157;19918:370;;;;:::o;57927:83::-;55271:13;:11;:13::i;:::-;57996:6:::1;57988:5;:14;;;;57927:83:::0;:::o;17396:318::-;17469:13;17500:16;17508:7;17500;:16::i;:::-;17495:59;;17525:29;;;;;;;;;;;;;;17495:59;17567:21;17591:10;:8;:10::i;:::-;17567:34;;17644:1;17625:7;17619:21;:26;;:87;;;;;;;;;;;;;;;;;17672:7;17681:18;:7;:16;:18::i;:::-;17655:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17619:87;17612:94;;;17396:318;;;:::o;58230:470::-;58323:11;;;;;;;;;;;58315:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;58430:5;;58423:3;58393:15;:27;58409:10;58393:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58371:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;58594:3;58551:15;:27;58567:10;58551:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58508:15;:27;58524:10;58508:27;;;;;;;;;;;;;;;:89;;;;58616:13;58623:5;58616:6;:13::i;:::-;58608:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58682:10;58688:3;58682:5;:10::i;:::-;58230:470;;:::o;56969:28::-;;;;:::o;19190:164::-;19287:4;19311:18;:25;19330:5;19311:25;;;;;;;;;;;;;;;:35;19337:8;19311:35;;;;;;;;;;;;;;;;;;;;;;;;;19304:42;;19190:164;;;;:::o;56291:201::-;55271:13;:11;:13::i;:::-;56400:1:::1;56380:22;;:8;:22;;;;56372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:28;56475:8;56456:18;:28::i;:::-;56291:201:::0;:::o;10978:157::-;11063:4;11102:25;11087:40;;;:11;:40;;;;11080:47;;10978:157;;;:::o;20543:174::-;20600:4;20643:7;20624:15;:13;:15::i;:::-;:26;;:53;;;;;20664:13;;20654:7;:23;20624:53;:85;;;;;20682:11;:20;20694:7;20682:20;;;;;;;;;;;:27;;;;;;;;;;;;20681:28;20624:85;20617:92;;20543:174;;;:::o;9966:98::-;10019:7;10046:10;10039:17;;9966:98;:::o;29765:196::-;29907:2;29880:15;:24;29896:7;29880:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29945:7;29941:2;29925:28;;29934:5;29925:28;;;;;;;;;;;;29765:196;;;:::o;55550:132::-;55625:12;:10;:12::i;:::-;55614:23;;:7;:5;:7::i;:::-;:23;;;55606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55550:132::o;59322:170::-;59412:9;;59395:13;:11;:13::i;:::-;59389:3;:19;;;;:::i;:::-;:32;;59381:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;59470:14;59476:2;59480:3;59470:5;:14::i;:::-;59322:170;;:::o;12951:92::-;13007:7;12951:92;:::o;24713:2130::-;24828:35;24866:21;24879:7;24866:12;:21::i;:::-;24828:59;;24926:4;24904:26;;:13;:18;;;:26;;;24900:67;;24939:28;;;;;;;;;;;;;;24900:67;24980:22;25022:4;25006:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;25043:36;25060:4;25066:12;:10;:12::i;:::-;25043:16;:36::i;:::-;25006:73;:126;;;;25120:12;:10;:12::i;:::-;25096:36;;:20;25108:7;25096:11;:20::i;:::-;:36;;;25006:126;24980:153;;25151:17;25146:66;;25177:35;;;;;;;;;;;;;;25146:66;25241:1;25227:16;;:2;:16;;;25223:52;;;25252:23;;;;;;;;;;;;;;25223:52;25288:43;25310:4;25316:2;25320:7;25329:1;25288:21;:43::i;:::-;25396:35;25413:1;25417:7;25426:4;25396:8;:35::i;:::-;25757:1;25727:12;:18;25740:4;25727:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;25773:12;:16;25786:2;25773:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25819:31;25853:11;:20;25865:7;25853:20;;;;;;;;;;;25819:54;;25904:2;25888:8;:13;;;:18;;;;;;;;;;;;;;;;;;25954:15;25921:8;:23;;;:49;;;;;;;;;;;;;;;;;;26222:19;26254:1;26244:7;:11;26222:33;;26270:31;26304:11;:24;26316:11;26304:24;;;;;;;;;;;26270:58;;26372:1;26347:27;;:8;:13;;;;;;;;;;;;:27;;;26343:384;;;26557:13;;26542:11;:28;26538:174;;26611:4;26595:8;:13;;;:20;;;;;;;;;;;;;;;;;;26664:13;:28;;;26638:8;:23;;;:54;;;;;;;;;;;;;;;;;;26538:174;26343:384;25702:1036;;;26774:7;26770:2;26755:27;;26764:4;26755:27;;;;;;;;;;;;26793:42;26814:4;26820:2;26824:7;26833:1;26793:20;:42::i;:::-;24817:2026;;24713:2130;;;:::o;15687:1111::-;15749:21;;:::i;:::-;15783:12;15798:7;15783:22;;15866:4;15847:15;:13;:15::i;:::-;:23;15843:888;;15883:13;;15876:4;:20;15872:859;;;15917:31;15951:11;:17;15963:4;15951:17;;;;;;;;;;;15917:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15992:9;:16;;;15987:729;;16063:1;16037:28;;:9;:14;;;:28;;;16033:101;;16101:9;16094:16;;;;;;16033:101;16436:261;16443:4;16436:261;;;16476:6;;;;;;;;16521:11;:17;16533:4;16521:17;;;;;;;;;;;16509:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16595:1;16569:28;;:9;:14;;;:28;;;16565:109;;16637:9;16630:16;;;;;;16565:109;16436:261;;;15987:729;15898:833;15872:859;15843:888;16759:31;;;;;;;;;;;;;;15687:1111;;;;:::o;56652:191::-;56726:16;56745:6;;;;;;;;;;;56726:25;;56771:8;56762:6;;:17;;;;;;;;;;;;;;;;;;56826:8;56795:40;;56816:8;56795:40;;;;;;;;;;;;56715:128;56652:191;:::o;20801:104::-;20870:27;20880:2;20884:8;20870:27;;;;;;;;;;;;:9;:27::i;:::-;20801:104;;:::o;59080:234::-;59140:5;;59133:3;:12;;:23;;;;;59155:1;59149:3;:7;59133:23;59125:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59238:3;59229:5;;:13;;;;:::i;:::-;59216:9;:26;;59208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59280:26;59288:12;:10;:12::i;:::-;59302:3;59280:7;:26::i;:::-;59080:234;:::o;37354:326::-;37414:4;37671:1;37649:7;:19;;;:23;37642:30;;37354:326;;;:::o;30453:667::-;30616:4;30653:2;30637:36;;;30674:12;:10;:12::i;:::-;30688:4;30694:7;30703:5;30637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30633:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:1;30871:6;:13;:18;30867:235;;;30917:40;;;;;;;;;;;;;;30867:235;31060:6;31054:13;31045:6;31041:2;31037:15;31030:38;30633:480;30766:45;;;30756:55;;;:6;:55;;;;30749:62;;;30453:667;;;;;;:::o;58018:105::-;58070:13;58103:12;58096:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58018:105;:::o;34112:723::-;34168:13;34398:1;34389:5;:10;34385:53;;;34416:10;;;;;;;;;;;;;;;;;;;;;34385:53;34448:12;34463:5;34448:20;;34479:14;34504:78;34519:1;34511:4;:9;34504:78;;34537:8;;;;;:::i;:::-;;;;34568:2;34560:10;;;;;:::i;:::-;;;34504:78;;;34592:19;34624:6;34614:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:39;;34642:154;34658:1;34649:5;:10;34642:154;;34686:1;34676:11;;;;;:::i;:::-;;;34753:2;34745:5;:10;;;;:::i;:::-;34732:2;:24;;;;:::i;:::-;34719:39;;34702:6;34709;34702:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;34782:2;34773:11;;;;;:::i;:::-;;;34642:154;;;34820:6;34806:21;;;;;34112:723;;;;:::o;59623:203::-;59686:4;59703:12;59745:10;59728:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;59718:39;;;;;;59703:54;;59775:43;59794:5;59801:10;;59813:4;59775:18;:43::i;:::-;59768:50;;;59623:203;;;:::o;23286:1173::-;23351:20;23374:13;;23351:36;;23416:1;23402:16;;:2;:16;;;23398:48;;;23427:19;;;;;;;;;;;;;;23398:48;23473:1;23461:8;:13;23457:44;;;23483:18;;;;;;;;;;;;;;23457:44;23514:61;23544:1;23548:2;23552:12;23566:8;23514:21;:61::i;:::-;23887:8;23852:12;:16;23865:2;23852:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23951:8;23911:12;:16;23924:2;23911:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24010:2;23977:11;:25;23989:12;23977:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24077:15;24027:11;:25;24039:12;24027:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;24110:20;24133:12;24110:35;;24160:11;24189:8;24174:12;:23;24160:37;;24214:111;24266:14;;;;;;24262:2;24241:40;;24258:1;24241:40;;;;;;;;;;;;24320:3;24305:12;:18;24214:111;;24357:12;24341:13;:28;;;;23827:554;;24391:60;24420:1;24424:2;24428:12;24442:8;24391:20;:60::i;:::-;23340:1119;23286:1173;;:::o;31768:159::-;;;;;:::o;32586:158::-;;;;;:::o;21278:1749::-;21401:20;21424:13;;21401:36;;21466:1;21452:16;;:2;:16;;;21448:48;;;21477:19;;;;;;;;;;;;;;21448:48;21523:1;21511:8;:13;21507:44;;;21533:18;;;;;;;;;;;;;;21507:44;21564:61;21594:1;21598:2;21602:12;21616:8;21564:21;:61::i;:::-;21937:8;21902:12;:16;21915:2;21902:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22001:8;21961:12;:16;21974:2;21961:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22060:2;22027:11;:25;22039:12;22027:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;22127:15;22077:11;:25;22089:12;22077:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;22160:20;22183:12;22160:35;;22210:11;22239:8;22224:12;:23;22210:37;;22268:15;:2;:13;;;:15::i;:::-;22264:631;;;22304:313;22360:12;22356:2;22335:38;;22352:1;22335:38;;;;;;;;;;;;22401:69;22440:1;22444:2;22448:14;;;;;;22464:5;22401:30;:69::i;:::-;22396:174;;22506:40;;;;;;;;;;;;;;22396:174;22612:3;22597:12;:18;22304:313;;22698:12;22681:13;;:29;22677:43;;22712:8;;;22677:43;22264:631;;;22761:119;22817:14;;;;;;22813:2;22792:40;;22809:1;22792:40;;;;;;;;;;;;22875:3;22860:12;:18;22761:119;;22264:631;22925:12;22909:13;:28;;;;21877:1072;;22959:60;22988:1;22992:2;22996:12;23010:8;22959:20;:60::i;:::-;21390:1637;21278:1749;;;:::o;46697:190::-;46822:4;46875;46846:25;46859:5;46866:4;46846:12;:25::i;:::-;:33;46839:40;;46697:190;;;;;:::o;47564:296::-;47647:7;47667:20;47690:4;47667:27;;47710:9;47705:118;47729:5;:12;47725:1;:16;47705:118;;;47778:33;47788:12;47802:5;47808:1;47802:8;;;;;;;;:::i;:::-;;;;;;;;47778:9;:33::i;:::-;47763:48;;47743:3;;;;;:::i;:::-;;;;47705:118;;;;47840:12;47833:19;;;47564:296;;;;:::o;53771:149::-;53834:7;53865:1;53861;:5;:51;;53892:20;53907:1;53910;53892:14;:20::i;:::-;53861:51;;;53869:20;53884:1;53887;53869:14;:20::i;:::-;53861:51;53854:58;;53771:149;;;;:::o;53928:268::-;53996:13;54103:1;54097:4;54090:15;54132:1;54126:4;54119:15;54173:4;54167;54157:21;54148:30;;53928:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;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;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:568::-;1403:8;1413:6;1463:3;1456:4;1448:6;1444:17;1440:27;1430:122;;1471:79;;:::i;:::-;1430:122;1584:6;1571:20;1561:30;;1614:18;1606:6;1603:30;1600:117;;;1636:79;;:::i;:::-;1600:117;1750:4;1742:6;1738:17;1726:29;;1804:3;1796:4;1788:6;1784:17;1774:8;1770:32;1767:41;1764:128;;;1811:79;;:::i;:::-;1764:128;1330:568;;;;;:::o;1921:370::-;1992:5;2041:3;2034:4;2026:6;2022:17;2018:27;2008:122;;2049:79;;:::i;:::-;2008:122;2166:6;2153:20;2191:94;2281:3;2273:6;2266:4;2258:6;2254:17;2191:94;:::i;:::-;2182:103;;1998:293;1921:370;;;;:::o;2297:133::-;2340:5;2378:6;2365:20;2356:29;;2394:30;2418:5;2394:30;:::i;:::-;2297:133;;;;:::o;2436:139::-;2482:5;2520:6;2507:20;2498:29;;2536:33;2563:5;2536:33;:::i;:::-;2436:139;;;;:::o;2581:137::-;2626:5;2664:6;2651:20;2642:29;;2680:32;2706:5;2680:32;:::i;:::-;2581:137;;;;:::o;2724:141::-;2780:5;2811:6;2805:13;2796:22;;2827:32;2853:5;2827:32;:::i;:::-;2724:141;;;;:::o;2884:338::-;2939:5;2988:3;2981:4;2973:6;2969:17;2965:27;2955:122;;2996:79;;:::i;:::-;2955:122;3113:6;3100:20;3138:78;3212:3;3204:6;3197:4;3189:6;3185:17;3138:78;:::i;:::-;3129:87;;2945:277;2884:338;;;;:::o;3242:553::-;3300:8;3310:6;3360:3;3353:4;3345:6;3341:17;3337:27;3327:122;;3368:79;;:::i;:::-;3327:122;3481:6;3468:20;3458:30;;3511:18;3503:6;3500:30;3497:117;;;3533:79;;:::i;:::-;3497:117;3647:4;3639:6;3635:17;3623:29;;3701:3;3693:4;3685:6;3681:17;3671:8;3667:32;3664:41;3661:128;;;3708:79;;:::i;:::-;3661:128;3242:553;;;;;:::o;3801:139::-;3847:5;3885:6;3872:20;3863:29;;3901:33;3928:5;3901:33;:::i;:::-;3801:139;;;;:::o;3946:329::-;4005:6;4054:2;4042:9;4033:7;4029:23;4025:32;4022:119;;;4060:79;;:::i;:::-;4022:119;4180:1;4205:53;4250:7;4241:6;4230:9;4226:22;4205:53;:::i;:::-;4195:63;;4151:117;3946:329;;;;:::o;4281:474::-;4349:6;4357;4406:2;4394:9;4385:7;4381:23;4377:32;4374:119;;;4412:79;;:::i;:::-;4374:119;4532:1;4557:53;4602:7;4593:6;4582:9;4578:22;4557:53;:::i;:::-;4547:63;;4503:117;4659:2;4685:53;4730:7;4721:6;4710:9;4706:22;4685:53;:::i;:::-;4675:63;;4630:118;4281:474;;;;;:::o;4761:619::-;4838:6;4846;4854;4903:2;4891:9;4882:7;4878:23;4874:32;4871:119;;;4909:79;;:::i;:::-;4871:119;5029:1;5054:53;5099:7;5090:6;5079:9;5075:22;5054:53;:::i;:::-;5044:63;;5000:117;5156:2;5182:53;5227:7;5218:6;5207:9;5203:22;5182:53;:::i;:::-;5172:63;;5127:118;5284:2;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5255:118;4761:619;;;;;:::o;5386:943::-;5481:6;5489;5497;5505;5554:3;5542:9;5533:7;5529:23;5525:33;5522:120;;;5561:79;;:::i;:::-;5522:120;5681:1;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5652:117;5808:2;5834:53;5879:7;5870:6;5859:9;5855:22;5834:53;:::i;:::-;5824:63;;5779:118;5936:2;5962:53;6007:7;5998:6;5987:9;5983:22;5962:53;:::i;:::-;5952:63;;5907:118;6092:2;6081:9;6077:18;6064:32;6123:18;6115:6;6112:30;6109:117;;;6145:79;;:::i;:::-;6109:117;6250:62;6304:7;6295:6;6284:9;6280:22;6250:62;:::i;:::-;6240:72;;6035:287;5386:943;;;;;;;:::o;6335:468::-;6400:6;6408;6457:2;6445:9;6436:7;6432:23;6428:32;6425:119;;;6463:79;;:::i;:::-;6425:119;6583:1;6608:53;6653:7;6644:6;6633:9;6629:22;6608:53;:::i;:::-;6598:63;;6554:117;6710:2;6736:50;6778:7;6769:6;6758:9;6754:22;6736:50;:::i;:::-;6726:60;;6681:115;6335:468;;;;;:::o;6809:474::-;6877:6;6885;6934:2;6922:9;6913:7;6909:23;6905:32;6902:119;;;6940:79;;:::i;:::-;6902:119;7060:1;7085:53;7130:7;7121:6;7110:9;7106:22;7085:53;:::i;:::-;7075:63;;7031:117;7187:2;7213:53;7258:7;7249:6;7238:9;7234:22;7213:53;:::i;:::-;7203:63;;7158:118;6809:474;;;;;:::o;7289:559::-;7375:6;7383;7432:2;7420:9;7411:7;7407:23;7403:32;7400:119;;;7438:79;;:::i;:::-;7400:119;7586:1;7575:9;7571:17;7558:31;7616:18;7608:6;7605:30;7602:117;;;7638:79;;:::i;:::-;7602:117;7751:80;7823:7;7814:6;7803:9;7799:22;7751:80;:::i;:::-;7733:98;;;;7529:312;7289:559;;;;;:::o;7854:329::-;7913:6;7962:2;7950:9;7941:7;7937:23;7933:32;7930:119;;;7968:79;;:::i;:::-;7930:119;8088:1;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8059:117;7854:329;;;;:::o;8189:327::-;8247:6;8296:2;8284:9;8275:7;8271:23;8267:32;8264:119;;;8302:79;;:::i;:::-;8264:119;8422:1;8447:52;8491:7;8482:6;8471:9;8467:22;8447:52;:::i;:::-;8437:62;;8393:116;8189:327;;;;:::o;8522:349::-;8591:6;8640:2;8628:9;8619:7;8615:23;8611:32;8608:119;;;8646:79;;:::i;:::-;8608:119;8766:1;8791:63;8846:7;8837:6;8826:9;8822:22;8791:63;:::i;:::-;8781:73;;8737:127;8522:349;;;;:::o;8877:529::-;8948:6;8956;9005:2;8993:9;8984:7;8980:23;8976:32;8973:119;;;9011:79;;:::i;:::-;8973:119;9159:1;9148:9;9144:17;9131:31;9189:18;9181:6;9178:30;9175:117;;;9211:79;;:::i;:::-;9175:117;9324:65;9381:7;9372:6;9361:9;9357:22;9324:65;:::i;:::-;9306:83;;;;9102:297;8877:529;;;;;:::o;9412:329::-;9471:6;9520:2;9508:9;9499:7;9495:23;9491:32;9488:119;;;9526:79;;:::i;:::-;9488:119;9646:1;9671:53;9716:7;9707:6;9696:9;9692:22;9671:53;:::i;:::-;9661:63;;9617:117;9412:329;;;;:::o;9747:684::-;9840:6;9848;9897:2;9885:9;9876:7;9872:23;9868:32;9865:119;;;9903:79;;:::i;:::-;9865:119;10023:1;10048:53;10093:7;10084:6;10073:9;10069:22;10048:53;:::i;:::-;10038:63;;9994:117;10178:2;10167:9;10163:18;10150:32;10209:18;10201:6;10198:30;10195:117;;;10231:79;;:::i;:::-;10195:117;10336:78;10406:7;10397:6;10386:9;10382:22;10336:78;:::i;:::-;10326:88;;10121:303;9747:684;;;;;:::o;10437:118::-;10524:24;10542:5;10524:24;:::i;:::-;10519:3;10512:37;10437:118;;:::o;10561:157::-;10666:45;10686:24;10704:5;10686:24;:::i;:::-;10666:45;:::i;:::-;10661:3;10654:58;10561:157;;:::o;10724:109::-;10805:21;10820:5;10805:21;:::i;:::-;10800:3;10793:34;10724:109;;:::o;10839:118::-;10926:24;10944:5;10926:24;:::i;:::-;10921:3;10914:37;10839:118;;:::o;10963:360::-;11049:3;11077:38;11109:5;11077:38;:::i;:::-;11131:70;11194:6;11189:3;11131:70;:::i;:::-;11124:77;;11210:52;11255:6;11250:3;11243:4;11236:5;11232:16;11210:52;:::i;:::-;11287:29;11309:6;11287:29;:::i;:::-;11282:3;11278:39;11271:46;;11053:270;10963:360;;;;:::o;11329:364::-;11417:3;11445:39;11478:5;11445:39;:::i;:::-;11500:71;11564:6;11559:3;11500:71;:::i;:::-;11493:78;;11580:52;11625:6;11620:3;11613:4;11606:5;11602:16;11580:52;:::i;:::-;11657:29;11679:6;11657:29;:::i;:::-;11652:3;11648:39;11641:46;;11421:272;11329:364;;;;:::o;11699:377::-;11805:3;11833:39;11866:5;11833:39;:::i;:::-;11888:89;11970:6;11965:3;11888:89;:::i;:::-;11881:96;;11986:52;12031:6;12026:3;12019:4;12012:5;12008:16;11986:52;:::i;:::-;12063:6;12058:3;12054:16;12047:23;;11809:267;11699:377;;;;:::o;12082:366::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12454:366;;;:::o;12826:::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12826:366;;;:::o;13198:::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13198:366;;;:::o;13570:::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14314:366;;;:::o;14686:::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:118::-;15145:24;15163:5;15145:24;:::i;:::-;15140:3;15133:37;15058:118;;:::o;15182:256::-;15294:3;15309:75;15380:3;15371:6;15309:75;:::i;:::-;15409:2;15404:3;15400:12;15393:19;;15429:3;15422:10;;15182:256;;;;:::o;15444:435::-;15624:3;15646:95;15737:3;15728:6;15646:95;:::i;:::-;15639:102;;15758:95;15849:3;15840:6;15758:95;:::i;:::-;15751:102;;15870:3;15863:10;;15444:435;;;;;:::o;15885:222::-;15978:4;16016:2;16005:9;16001:18;15993:26;;16029:71;16097:1;16086:9;16082:17;16073:6;16029:71;:::i;:::-;15885:222;;;;:::o;16113:640::-;16308:4;16346:3;16335:9;16331:19;16323:27;;16360:71;16428:1;16417:9;16413:17;16404:6;16360:71;:::i;:::-;16441:72;16509:2;16498:9;16494:18;16485:6;16441:72;:::i;:::-;16523;16591:2;16580:9;16576:18;16567:6;16523:72;:::i;:::-;16642:9;16636:4;16632:20;16627:2;16616:9;16612:18;16605:48;16670:76;16741:4;16732:6;16670:76;:::i;:::-;16662:84;;16113:640;;;;;;;:::o;16759:210::-;16846:4;16884:2;16873:9;16869:18;16861:26;;16897:65;16959:1;16948:9;16944:17;16935:6;16897:65;:::i;:::-;16759:210;;;;:::o;16975:222::-;17068:4;17106:2;17095:9;17091:18;17083:26;;17119:71;17187:1;17176:9;17172:17;17163:6;17119:71;:::i;:::-;16975:222;;;;:::o;17203:313::-;17316:4;17354:2;17343:9;17339:18;17331:26;;17403:9;17397:4;17393:20;17389:1;17378:9;17374:17;17367:47;17431:78;17504:4;17495:6;17431:78;:::i;:::-;17423:86;;17203:313;;;;:::o;17522:419::-;17688:4;17726:2;17715:9;17711:18;17703:26;;17775:9;17769:4;17765:20;17761:1;17750:9;17746:17;17739:47;17803:131;17929:4;17803:131;:::i;:::-;17795:139;;17522:419;;;:::o;17947:::-;18113:4;18151:2;18140:9;18136:18;18128:26;;18200:9;18194:4;18190:20;18186:1;18175:9;18171:17;18164:47;18228:131;18354:4;18228:131;:::i;:::-;18220:139;;17947:419;;;:::o;18372:::-;18538:4;18576:2;18565:9;18561:18;18553:26;;18625:9;18619:4;18615:20;18611:1;18600:9;18596:17;18589:47;18653:131;18779:4;18653:131;:::i;:::-;18645:139;;18372:419;;;:::o;18797:::-;18963:4;19001:2;18990:9;18986:18;18978:26;;19050:9;19044:4;19040:20;19036:1;19025:9;19021:17;19014:47;19078:131;19204:4;19078:131;:::i;:::-;19070:139;;18797:419;;;:::o;19222:::-;19388:4;19426:2;19415:9;19411:18;19403:26;;19475:9;19469:4;19465:20;19461:1;19450:9;19446:17;19439:47;19503:131;19629:4;19503:131;:::i;:::-;19495:139;;19222:419;;;:::o;19647:::-;19813:4;19851:2;19840:9;19836:18;19828:26;;19900:9;19894:4;19890:20;19886:1;19875:9;19871:17;19864:47;19928:131;20054:4;19928:131;:::i;:::-;19920:139;;19647:419;;;:::o;20072:::-;20238:4;20276:2;20265:9;20261:18;20253:26;;20325:9;20319:4;20315:20;20311:1;20300:9;20296:17;20289:47;20353:131;20479:4;20353:131;:::i;:::-;20345:139;;20072:419;;;:::o;20497:::-;20663:4;20701:2;20690:9;20686:18;20678:26;;20750:9;20744:4;20740:20;20736:1;20725:9;20721:17;20714:47;20778:131;20904:4;20778:131;:::i;:::-;20770:139;;20497:419;;;:::o;20922:222::-;21015:4;21053:2;21042:9;21038:18;21030:26;;21066:71;21134:1;21123:9;21119:17;21110:6;21066:71;:::i;:::-;20922:222;;;;:::o;21150:129::-;21184:6;21211:20;;:::i;:::-;21201:30;;21240:33;21268:4;21260:6;21240:33;:::i;:::-;21150:129;;;:::o;21285:75::-;21318:6;21351:2;21345:9;21335:19;;21285:75;:::o;21366:311::-;21443:4;21533:18;21525:6;21522:30;21519:56;;;21555:18;;:::i;:::-;21519:56;21605:4;21597:6;21593:17;21585:25;;21665:4;21659;21655:15;21647:23;;21366:311;;;:::o;21683:307::-;21744:4;21834:18;21826:6;21823:30;21820:56;;;21856:18;;:::i;:::-;21820:56;21894:29;21916:6;21894:29;:::i;:::-;21886:37;;21978:4;21972;21968:15;21960:23;;21683:307;;;:::o;21996:98::-;22047:6;22081:5;22075:12;22065:22;;21996:98;;;:::o;22100:99::-;22152:6;22186:5;22180:12;22170:22;;22100:99;;;:::o;22205:168::-;22288:11;22322:6;22317:3;22310:19;22362:4;22357:3;22353:14;22338:29;;22205:168;;;;:::o;22379:169::-;22463:11;22497:6;22492:3;22485:19;22537:4;22532:3;22528:14;22513:29;;22379:169;;;;:::o;22554:148::-;22656:11;22693:3;22678:18;;22554:148;;;;:::o;22708:305::-;22748:3;22767:20;22785:1;22767:20;:::i;:::-;22762:25;;22801:20;22819:1;22801:20;:::i;:::-;22796:25;;22955:1;22887:66;22883:74;22880:1;22877:81;22874:107;;;22961:18;;:::i;:::-;22874:107;23005:1;23002;22998:9;22991:16;;22708:305;;;;:::o;23019:185::-;23059:1;23076:20;23094:1;23076:20;:::i;:::-;23071:25;;23110:20;23128:1;23110:20;:::i;:::-;23105:25;;23149:1;23139:35;;23154:18;;:::i;:::-;23139:35;23196:1;23193;23189:9;23184:14;;23019:185;;;;:::o;23210:348::-;23250:7;23273:20;23291:1;23273:20;:::i;:::-;23268:25;;23307:20;23325:1;23307:20;:::i;:::-;23302:25;;23495:1;23427:66;23423:74;23420:1;23417:81;23412:1;23405:9;23398:17;23394:105;23391:131;;;23502:18;;:::i;:::-;23391:131;23550:1;23547;23543:9;23532:20;;23210:348;;;;:::o;23564:191::-;23604:4;23624:20;23642:1;23624:20;:::i;:::-;23619:25;;23658:20;23676:1;23658:20;:::i;:::-;23653:25;;23697:1;23694;23691:8;23688:34;;;23702:18;;:::i;:::-;23688:34;23747:1;23744;23740:9;23732:17;;23564:191;;;;:::o;23761:96::-;23798:7;23827:24;23845:5;23827:24;:::i;:::-;23816:35;;23761:96;;;:::o;23863:90::-;23897:7;23940:5;23933:13;23926:21;23915:32;;23863:90;;;:::o;23959:77::-;23996:7;24025:5;24014:16;;23959:77;;;:::o;24042:149::-;24078:7;24118:66;24111:5;24107:78;24096:89;;24042:149;;;:::o;24197:126::-;24234:7;24274:42;24267:5;24263:54;24252:65;;24197:126;;;:::o;24329:77::-;24366:7;24395:5;24384:16;;24329:77;;;:::o;24412:154::-;24496:6;24491:3;24486;24473:30;24558:1;24549:6;24544:3;24540:16;24533:27;24412:154;;;:::o;24572:307::-;24640:1;24650:113;24664:6;24661:1;24658:13;24650:113;;;24749:1;24744:3;24740:11;24734:18;24730:1;24725:3;24721:11;24714:39;24686:2;24683:1;24679:10;24674:15;;24650:113;;;24781:6;24778:1;24775:13;24772:101;;;24861:1;24852:6;24847:3;24843:16;24836:27;24772:101;24621:258;24572:307;;;:::o;24885:320::-;24929:6;24966:1;24960:4;24956:12;24946:22;;25013:1;25007:4;25003:12;25034:18;25024:81;;25090:4;25082:6;25078:17;25068:27;;25024:81;25152:2;25144:6;25141:14;25121:18;25118:38;25115:84;;;25171:18;;:::i;:::-;25115:84;24936:269;24885:320;;;:::o;25211:281::-;25294:27;25316:4;25294:27;:::i;:::-;25286:6;25282:40;25424:6;25412:10;25409:22;25388:18;25376:10;25373:34;25370:62;25367:88;;;25435:18;;:::i;:::-;25367:88;25475:10;25471:2;25464:22;25254:238;25211:281;;:::o;25498:233::-;25537:3;25560:24;25578:5;25560:24;:::i;:::-;25551:33;;25606:66;25599:5;25596:77;25593:103;;;25676:18;;:::i;:::-;25593:103;25723:1;25716:5;25712:13;25705:20;;25498:233;;;:::o;25737:100::-;25776:7;25805:26;25825:5;25805:26;:::i;:::-;25794:37;;25737:100;;;:::o;25843:94::-;25882:7;25911:20;25925:5;25911:20;:::i;:::-;25900:31;;25843:94;;;:::o;25943:176::-;25975:1;25992:20;26010:1;25992:20;:::i;:::-;25987:25;;26026:20;26044:1;26026:20;:::i;:::-;26021:25;;26065:1;26055:35;;26070:18;;:::i;:::-;26055:35;26111:1;26108;26104:9;26099:14;;25943:176;;;;:::o;26125:180::-;26173:77;26170:1;26163:88;26270:4;26267:1;26260:15;26294:4;26291:1;26284:15;26311:180;26359:77;26356:1;26349:88;26456:4;26453:1;26446:15;26480:4;26477:1;26470:15;26497:180;26545:77;26542:1;26535:88;26642:4;26639:1;26632:15;26666:4;26663:1;26656:15;26683:180;26731:77;26728:1;26721:88;26828:4;26825:1;26818:15;26852:4;26849:1;26842:15;26869:180;26917:77;26914:1;26907:88;27014:4;27011:1;27004:15;27038:4;27035:1;27028:15;27055:117;27164:1;27161;27154:12;27178:117;27287:1;27284;27277:12;27301:117;27410:1;27407;27400:12;27424:117;27533:1;27530;27523:12;27547:117;27656:1;27653;27646:12;27670:117;27779:1;27776;27769:12;27793:102;27834:6;27885:2;27881:7;27876:2;27869:5;27865:14;27861:28;27851:38;;27793:102;;;:::o;27901:94::-;27934:8;27982:5;27978:2;27974:14;27953:35;;27901:94;;;:::o;28001:225::-;28141:34;28137:1;28129:6;28125:14;28118:58;28210:8;28205:2;28197:6;28193:15;28186:33;28001:225;:::o;28232:223::-;28372:34;28368:1;28360:6;28356:14;28349:58;28441:6;28436:2;28428:6;28424:15;28417:31;28232:223;:::o;28461:172::-;28601:24;28597:1;28589:6;28585:14;28578:48;28461:172;:::o;28639:182::-;28779:34;28775:1;28767:6;28763:14;28756:58;28639:182;:::o;28827:224::-;28967:34;28963:1;28955:6;28951:14;28944:58;29036:7;29031:2;29023:6;29019:15;29012:32;28827:224;:::o;29057:220::-;29197:34;29193:1;29185:6;29181:14;29174:58;29266:3;29261:2;29253:6;29249:15;29242:28;29057:220;:::o;29283:221::-;29423:34;29419:1;29411:6;29407:14;29400:58;29492:4;29487:2;29479:6;29475:15;29468:29;29283:221;:::o;29510:171::-;29650:23;29646:1;29638:6;29634:14;29627:47;29510:171;:::o;29687:122::-;29760:24;29778:5;29760:24;:::i;:::-;29753:5;29750:35;29740:63;;29799:1;29796;29789:12;29740:63;29687:122;:::o;29815:116::-;29885:21;29900:5;29885:21;:::i;:::-;29878:5;29875:32;29865:60;;29921:1;29918;29911:12;29865:60;29815:116;:::o;29937:122::-;30010:24;30028:5;30010:24;:::i;:::-;30003:5;30000:35;29990:63;;30049:1;30046;30039:12;29990:63;29937:122;:::o;30065:120::-;30137:23;30154:5;30137:23;:::i;:::-;30130:5;30127:34;30117:62;;30175:1;30172;30165:12;30117:62;30065:120;:::o;30191:122::-;30264:24;30282:5;30264:24;:::i;:::-;30257:5;30254:35;30244:63;;30303:1;30300;30293:12;30244:63;30191:122;:::o

Swarm Source

ipfs://c9a669dfdcd1833b2e2d8170ff3f4757023a5ddaacd5b27e55f9d45362f270ce
Loading...
Loading
Loading...
Loading
[ 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.