ETH Price: $3,315.04 (-3.46%)
Gas: 18 Gwei

Token

Darknezz (DRKNZZ)
 

Overview

Max Total Supply

2,183 DRKNZZ

Holders

1,466

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DRKNZZ
0x5CE948C7d30e6EF56f75Ce7520e46bae12B454fd
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:
Darknezz

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-07-28
*/

// SPDX-License-Identifier: MIT

// Created by: Darknezz Dev Team
// Contract ERC721A From: Chiru Labs

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



interface FearToken {
    function updateRewardOnMint(address _to, uint256 _amount) external;

    function updateReward(address _from, address _to) external;

    function getReward(address _to) external;

    function spend(address _from, uint256 _amount) external;
}

contract Darknezz is ERC721A, Ownable {

    uint public price = 0.0078 ether;
    uint public maxSupply = 6666;
    uint public maxTx = 3;

    mapping(address => uint256) public _preSaleCounter;
    mapping(address => bool) private pactOfSacrifice;

    bytes32 public merkleRoot;

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

    string internal baseTokenURI = '';
    
    FearToken public fearToken;



    constructor() ERC721A("Darknezz", "DRKNZZ") {}

    function toggleMint() 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 setMaxSupply(uint newSupply) external onlyOwner {
        maxSupply = newSupply;
    }

    function setToken(address _contract) external onlyOwner {
        fearToken = FearToken(_contract);
    }
    
    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 buyPre(uint qty, bytes32[] memory proof) external payable {
        require(presaleOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        require(verify(proof), "address not in whitelist");
        _buy(qty);
    }
    
    function buy(uint qty) external payable {
        require(mintOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        _buy(qty);
    }

    function _buy(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        uint free = balanceOf(_msgSender()) == 0 ? 1 : 0;
        require(msg.value >= price * (qty - free), "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
        fearToken.updateRewardOnMint(_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 claimTokens() external {
        fearToken.updateReward(msg.sender, address(0));
        fearToken.getReward(msg.sender);
    }

    function spendTokens(uint256 _amount) external {
        fearToken.spend(msg.sender, _amount);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
        if (from != address(0)) {
            fearToken.updateReward(from, to);
        }
    }

    function addPact(address a) public onlyOwner {
        pactOfSacrifice[a] = true;
    }

    function removePact(address a) public onlyOwner {
        pactOfSacrifice[a] = false;
    }

    modifier onlyPacts() {
        require(pactOfSacrifice[_msgSender()], 'Not a pact of sacrifice');
        _;
    }

    function mintFromPact(address a, uint quantity) public onlyPacts {
        _safeMint(a, quantity);
    }

    function burnFromPact(uint256 tokenId) public onlyPacts {
        require(_exists(tokenId), 'Token does not exist');
        _burn(tokenId);
    }
}

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":"a","type":"address"}],"name":"addPact","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":"uint256","name":"tokenId","type":"uint256"}],"name":"burnFromPact","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buyPre","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fearToken","outputs":[{"internalType":"contract FearToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"a","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFromPact","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"a","type":"address"}],"name":"removePact","outputs":[],"stateMutability":"nonpayable","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":"newSupply","type":"uint256"}],"name":"setMaxSupply","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":"address","name":"_contract","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"spendTokens","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":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661bb60f053f8000600955611a0a600a556003600b556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200007792919062000235565b503480156200008557600080fd5b506040518060400160405280600881526020017f4461726b6e657a7a0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f44524b4e5a5a000000000000000000000000000000000000000000000000000081525081600290805190602001906200010a92919062000235565b5080600390805190602001906200012392919062000235565b50620001346200016260201b60201c565b60008190555050506200015c620001506200016760201b60201c565b6200016f60201b60201c565b6200034a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61497a806200035a6000396000f3fe6080604052600436106102465760003560e01c80637437681e11610139578063b88d4fde116100b6578063d2b57baf1161007a578063d2b57baf14610817578063d3dd5fe014610842578063d5abeb0114610859578063d96a094a14610884578063e985e9c5146108a0578063f2fde38b146108dd57610246565b8063b88d4fde14610736578063bc3371821461075f578063c6dcf04414610788578063c87b56dd146107b1578063ca452560146107ee57610246565b806391b7f5ed116100fd57806391b7f5ed1461066557806395d89b411461068e578063a035b1fe146106b9578063a22cb465146106e4578063acd3a6a41461070d57610246565b80637437681e146105a15780637cb64759146105cc57806381814492146105f55780638da5cb5b146106115780638e39f5151461063c57610246565b80632eb4a7ab116101c757806348c54b9d1161018b57806348c54b9d146104d05780636352211e146104e75780636f8b44b01461052457806370a082311461054d578063715018a61461058a57610246565b80632eb4a7ab1461042557806330176e131461045057806334393743146104795780633ccfd60b1461049057806342842e0e146104a757610246565b806309bd4c311161020e57806309bd4c3114610342578063144fa6d71461036b57806318160ddd1461039457806323b872dd146103bf57806327b1425a146103e857610246565b806301ffc9a71461024b5780630235a3d31461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b4e565b610906565b60405161027f9190613fd9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613bf5565b6109e8565b005b3480156102bd57600080fd5b506102c6610acf565b6040516102d3919061402a565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613bf5565b610b61565b6040516103109190613f20565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613ae1565b610bdd565b005b34801561034e57600080fd5b5061036960048036038101906103649190613ae1565b610ce2565b005b34801561037757600080fd5b50610392600480360381019061038d919061395e565b610cf8565b005b3480156103a057600080fd5b506103a9610d44565b6040516103b6919061418c565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906139cb565b610d5b565b005b3480156103f457600080fd5b5061040f600480360381019061040a919061395e565b610d6b565b60405161041c919061418c565b60405180910390f35b34801561043157600080fd5b5061043a610d83565b6040516104479190613ff4565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613ba8565b610d89565b005b34801561048557600080fd5b5061048e610da7565b005b34801561049c57600080fd5b506104a5610ddb565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906139cb565b610e33565b005b3480156104dc57600080fd5b506104e5610e53565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613bf5565b610f72565b60405161051b9190613f20565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613bf5565b610f88565b005b34801561055957600080fd5b50610574600480360381019061056f919061395e565b610f9a565b604051610581919061418c565b60405180910390f35b34801561059657600080fd5b5061059f61106a565b005b3480156105ad57600080fd5b506105b661107e565b6040516105c3919061418c565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613b21565b611084565b005b61060f600480360381019061060a9190613c22565b611096565b005b34801561061d57600080fd5b50610626611257565b6040516106339190613f20565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613bf5565b611281565b005b34801561067157600080fd5b5061068c60048036038101906106879190613bf5565b611313565b005b34801561069a57600080fd5b506106a3611325565b6040516106b0919061402a565b60405180910390f35b3480156106c557600080fd5b506106ce6113b7565b6040516106db919061418c565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613aa1565b6113bd565b005b34801561071957600080fd5b50610734600480360381019061072f919061395e565b611535565b005b34801561074257600080fd5b5061075d60048036038101906107589190613a1e565b611598565b005b34801561076b57600080fd5b5061078660048036038101906107819190613bf5565b611610565b005b34801561079457600080fd5b506107af60048036038101906107aa919061395e565b611622565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613bf5565b611685565b6040516107e5919061402a565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613ae1565b611724565b005b34801561082357600080fd5b5061082c6117c5565b604051610839919061400f565b60405180910390f35b34801561084e57600080fd5b506108576117eb565b005b34801561086557600080fd5b5061086e61181f565b60405161087b919061418c565b60405180910390f35b61089e60048036038101906108999190613bf5565b611825565b005b3480156108ac57600080fd5b506108c760048036038101906108c2919061398b565b61199d565b6040516108d49190613fd9565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff919061395e565b611a31565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e157506109e082611ab5565b5b9050919050565b600d60006109f4611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a729061410c565b60405180910390fd5b610a8481611b27565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906140ac565b60405180910390fd5b610acc81611b75565b50565b606060028054610ade90614477565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90614477565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000610b6c82611b27565b610ba2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be882610f72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6f611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610cd257610c9b81610c96611b1f565b61199d565b610cd1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cdd838383611b83565b505050565b610cea611c35565b610cf48282611cb3565b5050565b610d00611c35565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d4e611d18565b6001546000540303905090565b610d66838383611d1d565b505050565b600c6020528060005260406000206000915090505481565b600e5481565b610d91611c35565b818160109190610da2929190613696565b505050565b610daf611c35565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610de3611c35565b610deb611b1f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e30573d6000803e3d6000fd5b50565b610e4e83838360405180602001604052806000815250611598565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610eb1929190613f3b565b600060405180830381600087803b158015610ecb57600080fd5b505af1158015610edf573d6000803e3d6000fd5b50505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610f3e9190613f20565b600060405180830381600087803b158015610f5857600080fd5b505af1158015610f6c573d6000803e3d6000fd5b50505050565b6000610f7d826121d3565b600001519050919050565b610f90611c35565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611072611c35565b61107c600061245e565b565b600b5481565b61108c611c35565b80600e8190555050565b600f60019054906101000a900460ff166110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906140cc565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611133919061426c565b1115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061416c565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111bf919061426c565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061120b81612524565b61124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906140ec565b60405180910390fd5b61125382612565565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016112de929190613fb0565b600060405180830381600087803b1580156112f857600080fd5b505af115801561130c573d6000803e3d6000fd5b5050505050565b61131b611c35565b8060098190555050565b60606003805461133490614477565b80601f016020809104026020016040519081016040528092919081815260200182805461136090614477565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b5050505050905090565b60095481565b6113c5611b1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611437611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e4611b1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115299190613fd9565b60405180910390a35050565b61153d611c35565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6115a3848484611d1d565b6115c28373ffffffffffffffffffffffffffffffffffffffff166126e3565b1561160a576115d384848484612706565b611609576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611618611c35565b80600b8190555050565b61162a611c35565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606061169082611b27565b6116c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116d0612866565b90506000815114156116f1576040518060200160405280600081525061171c565b806116fb846128f8565b60405160200161170c929190613efc565b6040516020818303038152906040525b915050919050565b600d6000611730611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061410c565b60405180910390fd5b6117c18282612a59565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f3611c35565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b600f60009054906101000a900460ff16611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906140cc565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c2919061426c565b1115611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa9061416c565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194e919061426c565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199a81612565565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a39611c35565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa09061404c565b60405180910390fd5b611ab28161245e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b32611d18565b11158015611b41575060005482105b8015611b6e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b611b80816000612a77565b50565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611c3d611b1f565b73ffffffffffffffffffffffffffffffffffffffff16611c5b611257565b73ffffffffffffffffffffffffffffffffffffffff1614611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061412c565b60405180910390fd5b565b600a54611cbe610d44565b82611cc9919061426c565b1115611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d019061414c565b60405180910390fd5b611d148282612e67565b5050565b600090565b6000611d28826121d3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611db4611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480611de35750611de285611ddd611b1f565b61199d565b5b80611e285750611df1611b1f565b73ffffffffffffffffffffffffffffffffffffffff16611e1084610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ed58585856001613143565b611ee160008487611b83565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561216157600054821461216057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cc8585856001613219565b5050505050565b6121db61371c565b6000829050806121e9611d18565b1161242757600054811015612426576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161242457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612308578092505050612459565b5b60011561242357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461241e578092505050612459565b612309565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080336040516020016125389190613ee1565b60405160208183030381529060405280519060200120905061255d83600e548361321f565b915050919050565b600b5481111580156125775750600081115b6125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061406c565b60405180910390fd5b6000806125c96125c4611b1f565b610f9a565b146125d55760006125d8565b60015b60ff16905080826125e9919061434d565b6009546125f691906142f3565b341015612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f9061408c565b60405180910390fd5b612649612643611b1f565b83611cb3565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c0161268f611b1f565b846040518363ffffffff1660e01b81526004016126ad929190613fb0565b600060405180830381600087803b1580156126c757600080fd5b505af11580156126db573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272c611b1f565b8786866040518563ffffffff1660e01b815260040161274e9493929190613f64565b602060405180830381600087803b15801561276857600080fd5b505af192505050801561279957506040513d601f19601f820116820180604052508101906127969190613b7b565b60015b612813573d80600081146127c9576040519150601f19603f3d011682016040523d82523d6000602084013e6127ce565b606091505b5060008151141561280b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461287590614477565b80601f01602080910402602001604051908101604052809291908181526020018280546128a190614477565b80156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60606000821415612940576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a54565b600082905060005b6000821461297257808061295b906144da565b915050600a8261296b91906142c2565b9150612948565b60008167ffffffffffffffff81111561298e5761298d614634565b5b6040519080825280601f01601f1916602001820160405280156129c05781602001600182028036833780820191505090505b5090505b60008514612a4d576001826129d9919061434d565b9150600a856129e89190614547565b60306129f4919061426c565b60f81b818381518110612a0a57612a09614605565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4691906142c2565b94506129c4565b8093505050505b919050565b612a73828260405180602001604052806000815250613236565b5050565b6000612a82836121d3565b90506000816000015190508215612b635760008173ffffffffffffffffffffffffffffffffffffffff16612ab4611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480612ae35750612ae282612add611b1f565b61199d565b5b80612b285750612af1611b1f565b73ffffffffffffffffffffffffffffffffffffffff16612b1086610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612b71816000866001613143565b612b7d60008583611b83565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612de1576000548214612de057848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e4f816000866001613219565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ed4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612f0f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f1c6000848385613143565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130bf5781600081905550505061313e6000848385613219565b505050565b61314f848484846135f8565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461321357601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b81526004016131e0929190613f3b565b600060405180830381600087803b1580156131fa57600080fd5b505af115801561320e573d6000803e3d6000fd5b505050505b50505050565b50505050565b60008261322c85846135fe565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156132de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132eb6000858386613143565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506134ac8673ffffffffffffffffffffffffffffffffffffffff166126e3565b15613571575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135216000878480600101955087612706565b613557576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106134b257826000541461356c57600080fd5b6135dc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613572575b8160008190555050506135f26000858386613219565b50505050565b50505050565b60008082905060005b8451811015613649576136348286838151811061362757613626614605565b5b6020026020010151613654565b91508080613641906144da565b915050613607565b508091505092915050565b600081831061366c57613667828461367f565b613677565b613676838361367f565b5b905092915050565b600082600052816020526040600020905092915050565b8280546136a290614477565b90600052602060002090601f0160209004810192826136c4576000855561370b565b82601f106136dd57803560ff191683800117855561370b565b8280016001018555821561370b579182015b8281111561370a5782358255916020019190600101906136ef565b5b509050613718919061375f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613778576000816000905550600101613760565b5090565b600061378f61378a846141cc565b6141a7565b905080838252602082019050828560208602820111156137b2576137b161466d565b5b60005b858110156137e257816137c88882613886565b8452602084019350602083019250506001810190506137b5565b5050509392505050565b60006137ff6137fa846141f8565b6141a7565b90508281526020810184848401111561381b5761381a614672565b5b613826848285614435565b509392505050565b60008135905061383d816148d1565b92915050565b600082601f83011261385857613857614668565b5b813561386884826020860161377c565b91505092915050565b600081359050613880816148e8565b92915050565b600081359050613895816148ff565b92915050565b6000813590506138aa81614916565b92915050565b6000815190506138bf81614916565b92915050565b600082601f8301126138da576138d9614668565b5b81356138ea8482602086016137ec565b91505092915050565b60008083601f84011261390957613908614668565b5b8235905067ffffffffffffffff81111561392657613925614663565b5b6020830191508360018202830111156139425761394161466d565b5b9250929050565b6000813590506139588161492d565b92915050565b6000602082840312156139745761397361467c565b5b60006139828482850161382e565b91505092915050565b600080604083850312156139a2576139a161467c565b5b60006139b08582860161382e565b92505060206139c18582860161382e565b9150509250929050565b6000806000606084860312156139e4576139e361467c565b5b60006139f28682870161382e565b9350506020613a038682870161382e565b9250506040613a1486828701613949565b9150509250925092565b60008060008060808587031215613a3857613a3761467c565b5b6000613a468782880161382e565b9450506020613a578782880161382e565b9350506040613a6887828801613949565b925050606085013567ffffffffffffffff811115613a8957613a88614677565b5b613a95878288016138c5565b91505092959194509250565b60008060408385031215613ab857613ab761467c565b5b6000613ac68582860161382e565b9250506020613ad785828601613871565b9150509250929050565b60008060408385031215613af857613af761467c565b5b6000613b068582860161382e565b9250506020613b1785828601613949565b9150509250929050565b600060208284031215613b3757613b3661467c565b5b6000613b4584828501613886565b91505092915050565b600060208284031215613b6457613b6361467c565b5b6000613b728482850161389b565b91505092915050565b600060208284031215613b9157613b9061467c565b5b6000613b9f848285016138b0565b91505092915050565b60008060208385031215613bbf57613bbe61467c565b5b600083013567ffffffffffffffff811115613bdd57613bdc614677565b5b613be9858286016138f3565b92509250509250929050565b600060208284031215613c0b57613c0a61467c565b5b6000613c1984828501613949565b91505092915050565b60008060408385031215613c3957613c3861467c565b5b6000613c4785828601613949565b925050602083013567ffffffffffffffff811115613c6857613c67614677565b5b613c7485828601613843565b9150509250929050565b613c8781614381565b82525050565b613c9e613c9982614381565b614523565b82525050565b613cad81614393565b82525050565b613cbc8161439f565b82525050565b6000613ccd82614229565b613cd7818561423f565b9350613ce7818560208601614444565b613cf081614681565b840191505092915050565b613d04816143ff565b82525050565b6000613d1582614234565b613d1f8185614250565b9350613d2f818560208601614444565b613d3881614681565b840191505092915050565b6000613d4e82614234565b613d588185614261565b9350613d68818560208601614444565b80840191505092915050565b6000613d81602683614250565b9150613d8c8261469f565b604082019050919050565b6000613da4602483614250565b9150613daf826146ee565b604082019050919050565b6000613dc7601683614250565b9150613dd28261473d565b602082019050919050565b6000613dea601483614250565b9150613df582614766565b602082019050919050565b6000613e0d600c83614250565b9150613e188261478f565b602082019050919050565b6000613e30601883614250565b9150613e3b826147b8565b602082019050919050565b6000613e53601783614250565b9150613e5e826147e1565b602082019050919050565b6000613e76602083614250565b9150613e818261480a565b602082019050919050565b6000613e99602183614250565b9150613ea482614833565b604082019050919050565b6000613ebc602283614250565b9150613ec782614882565b604082019050919050565b613edb816143f5565b82525050565b6000613eed8284613c8d565b60148201915081905092915050565b6000613f088285613d43565b9150613f148284613d43565b91508190509392505050565b6000602082019050613f356000830184613c7e565b92915050565b6000604082019050613f506000830185613c7e565b613f5d6020830184613c7e565b9392505050565b6000608082019050613f796000830187613c7e565b613f866020830186613c7e565b613f936040830185613ed2565b8181036060830152613fa58184613cc2565b905095945050505050565b6000604082019050613fc56000830185613c7e565b613fd26020830184613ed2565b9392505050565b6000602082019050613fee6000830184613ca4565b92915050565b60006020820190506140096000830184613cb3565b92915050565b60006020820190506140246000830184613cfb565b92915050565b600060208201905081810360008301526140448184613d0a565b905092915050565b6000602082019050818103600083015261406581613d74565b9050919050565b6000602082019050818103600083015261408581613d97565b9050919050565b600060208201905081810360008301526140a581613dba565b9050919050565b600060208201905081810360008301526140c581613ddd565b9050919050565b600060208201905081810360008301526140e581613e00565b9050919050565b6000602082019050818103600083015261410581613e23565b9050919050565b6000602082019050818103600083015261412581613e46565b9050919050565b6000602082019050818103600083015261414581613e69565b9050919050565b6000602082019050818103600083015261416581613e8c565b9050919050565b6000602082019050818103600083015261418581613eaf565b9050919050565b60006020820190506141a16000830184613ed2565b92915050565b60006141b16141c2565b90506141bd82826144a9565b919050565b6000604051905090565b600067ffffffffffffffff8211156141e7576141e6614634565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421357614212614634565b5b61421c82614681565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614277826143f5565b9150614282836143f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b7576142b6614578565b5b828201905092915050565b60006142cd826143f5565b91506142d8836143f5565b9250826142e8576142e76145a7565b5b828204905092915050565b60006142fe826143f5565b9150614309836143f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434257614341614578565b5b828202905092915050565b6000614358826143f5565b9150614363836143f5565b92508282101561437657614375614578565b5b828203905092915050565b600061438c826143d5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061440a82614411565b9050919050565b600061441c82614423565b9050919050565b600061442e826143d5565b9050919050565b82818337600083830152505050565b60005b83811015614462578082015181840152602081019050614447565b83811115614471576000848401525b50505050565b6000600282049050600182168061448f57607f821691505b602082108114156144a3576144a26145d6565b5b50919050565b6144b282614681565b810181811067ffffffffffffffff821117156144d1576144d0614634565b5b80604052505050565b60006144e5826143f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561451857614517614578565b5b600182019050919050565b600061452e82614535565b9050919050565b600061454082614692565b9050919050565b6000614552826143f5565b915061455d836143f5565b92508261456d5761456c6145a7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4e6f7420612070616374206f6620736163726966696365000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6148da81614381565b81146148e557600080fd5b50565b6148f181614393565b81146148fc57600080fd5b50565b6149088161439f565b811461491357600080fd5b50565b61491f816143a9565b811461492a57600080fd5b50565b614936816143f5565b811461494157600080fd5b5056fea2646970667358221220e02445008e008faff0bcb8defbf8b4f32813240d7c061634a50c3cb0970a072664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637437681e11610139578063b88d4fde116100b6578063d2b57baf1161007a578063d2b57baf14610817578063d3dd5fe014610842578063d5abeb0114610859578063d96a094a14610884578063e985e9c5146108a0578063f2fde38b146108dd57610246565b8063b88d4fde14610736578063bc3371821461075f578063c6dcf04414610788578063c87b56dd146107b1578063ca452560146107ee57610246565b806391b7f5ed116100fd57806391b7f5ed1461066557806395d89b411461068e578063a035b1fe146106b9578063a22cb465146106e4578063acd3a6a41461070d57610246565b80637437681e146105a15780637cb64759146105cc57806381814492146105f55780638da5cb5b146106115780638e39f5151461063c57610246565b80632eb4a7ab116101c757806348c54b9d1161018b57806348c54b9d146104d05780636352211e146104e75780636f8b44b01461052457806370a082311461054d578063715018a61461058a57610246565b80632eb4a7ab1461042557806330176e131461045057806334393743146104795780633ccfd60b1461049057806342842e0e146104a757610246565b806309bd4c311161020e57806309bd4c3114610342578063144fa6d71461036b57806318160ddd1461039457806323b872dd146103bf57806327b1425a146103e857610246565b806301ffc9a71461024b5780630235a3d31461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b4e565b610906565b60405161027f9190613fd9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613bf5565b6109e8565b005b3480156102bd57600080fd5b506102c6610acf565b6040516102d3919061402a565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613bf5565b610b61565b6040516103109190613f20565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613ae1565b610bdd565b005b34801561034e57600080fd5b5061036960048036038101906103649190613ae1565b610ce2565b005b34801561037757600080fd5b50610392600480360381019061038d919061395e565b610cf8565b005b3480156103a057600080fd5b506103a9610d44565b6040516103b6919061418c565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906139cb565b610d5b565b005b3480156103f457600080fd5b5061040f600480360381019061040a919061395e565b610d6b565b60405161041c919061418c565b60405180910390f35b34801561043157600080fd5b5061043a610d83565b6040516104479190613ff4565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613ba8565b610d89565b005b34801561048557600080fd5b5061048e610da7565b005b34801561049c57600080fd5b506104a5610ddb565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906139cb565b610e33565b005b3480156104dc57600080fd5b506104e5610e53565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613bf5565b610f72565b60405161051b9190613f20565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613bf5565b610f88565b005b34801561055957600080fd5b50610574600480360381019061056f919061395e565b610f9a565b604051610581919061418c565b60405180910390f35b34801561059657600080fd5b5061059f61106a565b005b3480156105ad57600080fd5b506105b661107e565b6040516105c3919061418c565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613b21565b611084565b005b61060f600480360381019061060a9190613c22565b611096565b005b34801561061d57600080fd5b50610626611257565b6040516106339190613f20565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613bf5565b611281565b005b34801561067157600080fd5b5061068c60048036038101906106879190613bf5565b611313565b005b34801561069a57600080fd5b506106a3611325565b6040516106b0919061402a565b60405180910390f35b3480156106c557600080fd5b506106ce6113b7565b6040516106db919061418c565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613aa1565b6113bd565b005b34801561071957600080fd5b50610734600480360381019061072f919061395e565b611535565b005b34801561074257600080fd5b5061075d60048036038101906107589190613a1e565b611598565b005b34801561076b57600080fd5b5061078660048036038101906107819190613bf5565b611610565b005b34801561079457600080fd5b506107af60048036038101906107aa919061395e565b611622565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613bf5565b611685565b6040516107e5919061402a565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613ae1565b611724565b005b34801561082357600080fd5b5061082c6117c5565b604051610839919061400f565b60405180910390f35b34801561084e57600080fd5b506108576117eb565b005b34801561086557600080fd5b5061086e61181f565b60405161087b919061418c565b60405180910390f35b61089e60048036038101906108999190613bf5565b611825565b005b3480156108ac57600080fd5b506108c760048036038101906108c2919061398b565b61199d565b6040516108d49190613fd9565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff919061395e565b611a31565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e157506109e082611ab5565b5b9050919050565b600d60006109f4611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a729061410c565b60405180910390fd5b610a8481611b27565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906140ac565b60405180910390fd5b610acc81611b75565b50565b606060028054610ade90614477565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90614477565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000610b6c82611b27565b610ba2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be882610f72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6f611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610cd257610c9b81610c96611b1f565b61199d565b610cd1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cdd838383611b83565b505050565b610cea611c35565b610cf48282611cb3565b5050565b610d00611c35565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d4e611d18565b6001546000540303905090565b610d66838383611d1d565b505050565b600c6020528060005260406000206000915090505481565b600e5481565b610d91611c35565b818160109190610da2929190613696565b505050565b610daf611c35565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610de3611c35565b610deb611b1f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e30573d6000803e3d6000fd5b50565b610e4e83838360405180602001604052806000815250611598565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610eb1929190613f3b565b600060405180830381600087803b158015610ecb57600080fd5b505af1158015610edf573d6000803e3d6000fd5b50505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610f3e9190613f20565b600060405180830381600087803b158015610f5857600080fd5b505af1158015610f6c573d6000803e3d6000fd5b50505050565b6000610f7d826121d3565b600001519050919050565b610f90611c35565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611072611c35565b61107c600061245e565b565b600b5481565b61108c611c35565b80600e8190555050565b600f60019054906101000a900460ff166110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906140cc565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611133919061426c565b1115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061416c565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111bf919061426c565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061120b81612524565b61124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906140ec565b60405180910390fd5b61125382612565565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016112de929190613fb0565b600060405180830381600087803b1580156112f857600080fd5b505af115801561130c573d6000803e3d6000fd5b5050505050565b61131b611c35565b8060098190555050565b60606003805461133490614477565b80601f016020809104026020016040519081016040528092919081815260200182805461136090614477565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b5050505050905090565b60095481565b6113c5611b1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611437611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e4611b1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115299190613fd9565b60405180910390a35050565b61153d611c35565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6115a3848484611d1d565b6115c28373ffffffffffffffffffffffffffffffffffffffff166126e3565b1561160a576115d384848484612706565b611609576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611618611c35565b80600b8190555050565b61162a611c35565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606061169082611b27565b6116c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116d0612866565b90506000815114156116f1576040518060200160405280600081525061171c565b806116fb846128f8565b60405160200161170c929190613efc565b6040516020818303038152906040525b915050919050565b600d6000611730611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061410c565b60405180910390fd5b6117c18282612a59565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f3611c35565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b600f60009054906101000a900460ff16611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906140cc565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c2919061426c565b1115611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa9061416c565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194e919061426c565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199a81612565565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a39611c35565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa09061404c565b60405180910390fd5b611ab28161245e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b32611d18565b11158015611b41575060005482105b8015611b6e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b611b80816000612a77565b50565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611c3d611b1f565b73ffffffffffffffffffffffffffffffffffffffff16611c5b611257565b73ffffffffffffffffffffffffffffffffffffffff1614611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061412c565b60405180910390fd5b565b600a54611cbe610d44565b82611cc9919061426c565b1115611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d019061414c565b60405180910390fd5b611d148282612e67565b5050565b600090565b6000611d28826121d3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611db4611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480611de35750611de285611ddd611b1f565b61199d565b5b80611e285750611df1611b1f565b73ffffffffffffffffffffffffffffffffffffffff16611e1084610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ed58585856001613143565b611ee160008487611b83565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561216157600054821461216057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cc8585856001613219565b5050505050565b6121db61371c565b6000829050806121e9611d18565b1161242757600054811015612426576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161242457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612308578092505050612459565b5b60011561242357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461241e578092505050612459565b612309565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080336040516020016125389190613ee1565b60405160208183030381529060405280519060200120905061255d83600e548361321f565b915050919050565b600b5481111580156125775750600081115b6125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061406c565b60405180910390fd5b6000806125c96125c4611b1f565b610f9a565b146125d55760006125d8565b60015b60ff16905080826125e9919061434d565b6009546125f691906142f3565b341015612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f9061408c565b60405180910390fd5b612649612643611b1f565b83611cb3565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c0161268f611b1f565b846040518363ffffffff1660e01b81526004016126ad929190613fb0565b600060405180830381600087803b1580156126c757600080fd5b505af11580156126db573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272c611b1f565b8786866040518563ffffffff1660e01b815260040161274e9493929190613f64565b602060405180830381600087803b15801561276857600080fd5b505af192505050801561279957506040513d601f19601f820116820180604052508101906127969190613b7b565b60015b612813573d80600081146127c9576040519150601f19603f3d011682016040523d82523d6000602084013e6127ce565b606091505b5060008151141561280b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461287590614477565b80601f01602080910402602001604051908101604052809291908181526020018280546128a190614477565b80156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60606000821415612940576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a54565b600082905060005b6000821461297257808061295b906144da565b915050600a8261296b91906142c2565b9150612948565b60008167ffffffffffffffff81111561298e5761298d614634565b5b6040519080825280601f01601f1916602001820160405280156129c05781602001600182028036833780820191505090505b5090505b60008514612a4d576001826129d9919061434d565b9150600a856129e89190614547565b60306129f4919061426c565b60f81b818381518110612a0a57612a09614605565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4691906142c2565b94506129c4565b8093505050505b919050565b612a73828260405180602001604052806000815250613236565b5050565b6000612a82836121d3565b90506000816000015190508215612b635760008173ffffffffffffffffffffffffffffffffffffffff16612ab4611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480612ae35750612ae282612add611b1f565b61199d565b5b80612b285750612af1611b1f565b73ffffffffffffffffffffffffffffffffffffffff16612b1086610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612b71816000866001613143565b612b7d60008583611b83565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612de1576000548214612de057848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e4f816000866001613219565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ed4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612f0f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f1c6000848385613143565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130bf5781600081905550505061313e6000848385613219565b505050565b61314f848484846135f8565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461321357601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b81526004016131e0929190613f3b565b600060405180830381600087803b1580156131fa57600080fd5b505af115801561320e573d6000803e3d6000fd5b505050505b50505050565b50505050565b60008261322c85846135fe565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156132de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132eb6000858386613143565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506134ac8673ffffffffffffffffffffffffffffffffffffffff166126e3565b15613571575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135216000878480600101955087612706565b613557576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106134b257826000541461356c57600080fd5b6135dc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613572575b8160008190555050506135f26000858386613219565b50505050565b50505050565b60008082905060005b8451811015613649576136348286838151811061362757613626614605565b5b6020026020010151613654565b91508080613641906144da565b915050613607565b508091505092915050565b600081831061366c57613667828461367f565b613677565b613676838361367f565b5b905092915050565b600082600052816020526040600020905092915050565b8280546136a290614477565b90600052602060002090601f0160209004810192826136c4576000855561370b565b82601f106136dd57803560ff191683800117855561370b565b8280016001018555821561370b579182015b8281111561370a5782358255916020019190600101906136ef565b5b509050613718919061375f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613778576000816000905550600101613760565b5090565b600061378f61378a846141cc565b6141a7565b905080838252602082019050828560208602820111156137b2576137b161466d565b5b60005b858110156137e257816137c88882613886565b8452602084019350602083019250506001810190506137b5565b5050509392505050565b60006137ff6137fa846141f8565b6141a7565b90508281526020810184848401111561381b5761381a614672565b5b613826848285614435565b509392505050565b60008135905061383d816148d1565b92915050565b600082601f83011261385857613857614668565b5b813561386884826020860161377c565b91505092915050565b600081359050613880816148e8565b92915050565b600081359050613895816148ff565b92915050565b6000813590506138aa81614916565b92915050565b6000815190506138bf81614916565b92915050565b600082601f8301126138da576138d9614668565b5b81356138ea8482602086016137ec565b91505092915050565b60008083601f84011261390957613908614668565b5b8235905067ffffffffffffffff81111561392657613925614663565b5b6020830191508360018202830111156139425761394161466d565b5b9250929050565b6000813590506139588161492d565b92915050565b6000602082840312156139745761397361467c565b5b60006139828482850161382e565b91505092915050565b600080604083850312156139a2576139a161467c565b5b60006139b08582860161382e565b92505060206139c18582860161382e565b9150509250929050565b6000806000606084860312156139e4576139e361467c565b5b60006139f28682870161382e565b9350506020613a038682870161382e565b9250506040613a1486828701613949565b9150509250925092565b60008060008060808587031215613a3857613a3761467c565b5b6000613a468782880161382e565b9450506020613a578782880161382e565b9350506040613a6887828801613949565b925050606085013567ffffffffffffffff811115613a8957613a88614677565b5b613a95878288016138c5565b91505092959194509250565b60008060408385031215613ab857613ab761467c565b5b6000613ac68582860161382e565b9250506020613ad785828601613871565b9150509250929050565b60008060408385031215613af857613af761467c565b5b6000613b068582860161382e565b9250506020613b1785828601613949565b9150509250929050565b600060208284031215613b3757613b3661467c565b5b6000613b4584828501613886565b91505092915050565b600060208284031215613b6457613b6361467c565b5b6000613b728482850161389b565b91505092915050565b600060208284031215613b9157613b9061467c565b5b6000613b9f848285016138b0565b91505092915050565b60008060208385031215613bbf57613bbe61467c565b5b600083013567ffffffffffffffff811115613bdd57613bdc614677565b5b613be9858286016138f3565b92509250509250929050565b600060208284031215613c0b57613c0a61467c565b5b6000613c1984828501613949565b91505092915050565b60008060408385031215613c3957613c3861467c565b5b6000613c4785828601613949565b925050602083013567ffffffffffffffff811115613c6857613c67614677565b5b613c7485828601613843565b9150509250929050565b613c8781614381565b82525050565b613c9e613c9982614381565b614523565b82525050565b613cad81614393565b82525050565b613cbc8161439f565b82525050565b6000613ccd82614229565b613cd7818561423f565b9350613ce7818560208601614444565b613cf081614681565b840191505092915050565b613d04816143ff565b82525050565b6000613d1582614234565b613d1f8185614250565b9350613d2f818560208601614444565b613d3881614681565b840191505092915050565b6000613d4e82614234565b613d588185614261565b9350613d68818560208601614444565b80840191505092915050565b6000613d81602683614250565b9150613d8c8261469f565b604082019050919050565b6000613da4602483614250565b9150613daf826146ee565b604082019050919050565b6000613dc7601683614250565b9150613dd28261473d565b602082019050919050565b6000613dea601483614250565b9150613df582614766565b602082019050919050565b6000613e0d600c83614250565b9150613e188261478f565b602082019050919050565b6000613e30601883614250565b9150613e3b826147b8565b602082019050919050565b6000613e53601783614250565b9150613e5e826147e1565b602082019050919050565b6000613e76602083614250565b9150613e818261480a565b602082019050919050565b6000613e99602183614250565b9150613ea482614833565b604082019050919050565b6000613ebc602283614250565b9150613ec782614882565b604082019050919050565b613edb816143f5565b82525050565b6000613eed8284613c8d565b60148201915081905092915050565b6000613f088285613d43565b9150613f148284613d43565b91508190509392505050565b6000602082019050613f356000830184613c7e565b92915050565b6000604082019050613f506000830185613c7e565b613f5d6020830184613c7e565b9392505050565b6000608082019050613f796000830187613c7e565b613f866020830186613c7e565b613f936040830185613ed2565b8181036060830152613fa58184613cc2565b905095945050505050565b6000604082019050613fc56000830185613c7e565b613fd26020830184613ed2565b9392505050565b6000602082019050613fee6000830184613ca4565b92915050565b60006020820190506140096000830184613cb3565b92915050565b60006020820190506140246000830184613cfb565b92915050565b600060208201905081810360008301526140448184613d0a565b905092915050565b6000602082019050818103600083015261406581613d74565b9050919050565b6000602082019050818103600083015261408581613d97565b9050919050565b600060208201905081810360008301526140a581613dba565b9050919050565b600060208201905081810360008301526140c581613ddd565b9050919050565b600060208201905081810360008301526140e581613e00565b9050919050565b6000602082019050818103600083015261410581613e23565b9050919050565b6000602082019050818103600083015261412581613e46565b9050919050565b6000602082019050818103600083015261414581613e69565b9050919050565b6000602082019050818103600083015261416581613e8c565b9050919050565b6000602082019050818103600083015261418581613eaf565b9050919050565b60006020820190506141a16000830184613ed2565b92915050565b60006141b16141c2565b90506141bd82826144a9565b919050565b6000604051905090565b600067ffffffffffffffff8211156141e7576141e6614634565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421357614212614634565b5b61421c82614681565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614277826143f5565b9150614282836143f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b7576142b6614578565b5b828201905092915050565b60006142cd826143f5565b91506142d8836143f5565b9250826142e8576142e76145a7565b5b828204905092915050565b60006142fe826143f5565b9150614309836143f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434257614341614578565b5b828202905092915050565b6000614358826143f5565b9150614363836143f5565b92508282101561437657614375614578565b5b828203905092915050565b600061438c826143d5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061440a82614411565b9050919050565b600061441c82614423565b9050919050565b600061442e826143d5565b9050919050565b82818337600083830152505050565b60005b83811015614462578082015181840152602081019050614447565b83811115614471576000848401525b50505050565b6000600282049050600182168061448f57607f821691505b602082108114156144a3576144a26145d6565b5b50919050565b6144b282614681565b810181811067ffffffffffffffff821117156144d1576144d0614634565b5b80604052505050565b60006144e5826143f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561451857614517614578565b5b600182019050919050565b600061452e82614535565b9050919050565b600061454082614692565b9050919050565b6000614552826143f5565b915061455d836143f5565b92508261456d5761456c6145a7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4e6f7420612070616374206f6620736163726966696365000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6148da81614381565b81146148e557600080fd5b50565b6148f181614393565b81146148fc57600080fd5b50565b6149088161439f565b811461491357600080fd5b50565b61491f816143a9565b811461492a57600080fd5b50565b614936816143f5565b811461494157600080fd5b5056fea2646970667358221220e02445008e008faff0bcb8defbf8b4f32813240d7c061634a50c3cb0970a072664736f6c63430008070033

Deployed Bytecode Sourcemap

57249:4415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14011:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61512:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17126:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18630:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18192:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58696:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58373:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13251:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19495:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57400:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58052:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57852:89;;;;;;;;;;;;;:::i;:::-;;60151:111;;;;;;;;;;;;;:::i;:::-;;19736:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60481:139;;;;;;;;;;;;;:::i;:::-;;16934:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58268:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14380:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56107:103;;;;;;;;;;;;;:::i;:::-;;57370:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58164:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58795:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55459:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60628:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57953:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17295:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57296:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18906:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61172:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19992:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58492:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61075:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17470:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61398:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57671:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57764:80;;;;;;;;;;;;;:::i;:::-;;57335:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59247:349;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19264:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56365:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14011:305;14113:4;14165:25;14150:40;;;:11;:40;;;;:105;;;;14222:33;14207:48;;;:11;:48;;;;14150:105;:158;;;;14272:36;14296:11;14272:23;:36::i;:::-;14150:158;14130:178;;14011:305;;;:::o;61512:149::-;61313:15;:29;61329:12;:10;:12::i;:::-;61313:29;;;;;;;;;;;;;;;;;;;;;;;;;61305:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61587:16:::1;61595:7;61587;:16::i;:::-;61579:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61639:14;61645:7;61639:5;:14::i;:::-;61512:149:::0;:::o;17126:100::-;17180:13;17213:5;17206:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17126:100;:::o;18630:204::-;18698:7;18723:16;18731:7;18723;:16::i;:::-;18718:64;;18748:34;;;;;;;;;;;;;;18718:64;18802:15;:24;18818:7;18802:24;;;;;;;;;;;;;;;;;;;;;18795:31;;18630:204;;;:::o;18192:372::-;18265:13;18281:24;18297:7;18281:15;:24::i;:::-;18265:40;;18326:5;18320:11;;:2;:11;;;18316:48;;;18340:24;;;;;;;;;;;;;;18316:48;18397:5;18381:21;;:12;:10;:12::i;:::-;:21;;;18377:139;;18408:37;18425:5;18432:12;:10;:12::i;:::-;18408:16;:37::i;:::-;18404:112;;18469:35;;;;;;;;;;;;;;18404:112;18377:139;18528:28;18537:2;18541:7;18550:5;18528:8;:28::i;:::-;18254:310;18192:372;;:::o;58696:91::-;55345:13;:11;:13::i;:::-;58763:16:::1;58771:2;58775:3;58763:7;:16::i;:::-;58696:91:::0;;:::o;58373:107::-;55345:13;:11;:13::i;:::-;58462:9:::1;58440;;:32;;;;;;;;;;;;;;;;;;58373:107:::0;:::o;13251:312::-;13304:7;13529:15;:13;:15::i;:::-;13514:12;;13498:13;;:28;:46;13491:53;;13251:312;:::o;19495:170::-;19629:28;19639:4;19645:2;19649:7;19629:9;:28::i;:::-;19495:170;;;:::o;57400:50::-;;;;;;;;;;;;;;;;;:::o;57514:25::-;;;;:::o;58052:104::-;55345:13;:11;:13::i;:::-;58144:4:::1;;58129:12;:19;;;;;;;:::i;:::-;;58052:104:::0;;:::o;57852:89::-;55345:13;:11;:13::i;:::-;57922:11:::1;;;;;;;;;;;57921:12;57907:11;;:26;;;;;;;;;;;;;;;;;;57852:89::o:0;60151:111::-;55345:13;:11;:13::i;:::-;60209:12:::1;:10;:12::i;:::-;60201:30;;:53;60232:21;60201:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60151:111::o:0;19736:185::-;19874:39;19891:4;19897:2;19901:7;19874:39;;;;;;;;;;;;:16;:39::i;:::-;19736:185;;;:::o;60481:139::-;60524:9;;;;;;;;;;;:22;;;60547:10;60567:1;60524:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60581:9;;;;;;;;;;;:19;;;60601:10;60581:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60481:139::o;16934:125::-;16998:7;17025:21;17038:7;17025:12;:21::i;:::-;:26;;;17018:33;;16934:125;;;:::o;58268:97::-;55345:13;:11;:13::i;:::-;58348:9:::1;58336;:21;;;;58268:97:::0;:::o;14380:206::-;14444:7;14485:1;14468:19;;:5;:19;;;14464:60;;;14496:28;;;;;;;;;;;;;;14464:60;14550:12;:19;14563:5;14550:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;14542:36;;14535:43;;14380:206;;;:::o;56107:103::-;55345:13;:11;:13::i;:::-;56172:30:::1;56199:1;56172:18;:30::i;:::-;56107:103::o:0;57370:21::-;;;;:::o;58164:92::-;55345:13;:11;:13::i;:::-;58244:4:::1;58231:10;:17;;;;58164:92:::0;:::o;58795:440::-;58881:11;;;;;;;;;;;58873:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58979:5;;58972:3;58942:15;:27;58958:10;58942:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58920:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59143:3;59100:15;:27;59116:10;59100:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59057:15;:27;59073:10;59057:27;;;;;;;;;;;;;;;:89;;;;59165:13;59172:5;59165:6;:13::i;:::-;59157:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;59218:9;59223:3;59218:4;:9::i;:::-;58795:440;;:::o;55459:87::-;55505:7;55532:6;;;;;;;;;;;55525:13;;55459:87;:::o;60628:102::-;60686:9;;;;;;;;;;;:15;;;60702:10;60714:7;60686:36;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60628:102;:::o;57953:87::-;55345:13;:11;:13::i;:::-;58024:8:::1;58016:5;:16;;;;57953:87:::0;:::o;17295:104::-;17351:13;17384:7;17377:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17295:104;:::o;57296:32::-;;;;:::o;18906:287::-;19017:12;:10;:12::i;:::-;19005:24;;:8;:24;;;19001:54;;;19038:17;;;;;;;;;;;;;;19001:54;19113:8;19068:18;:32;19087:12;:10;:12::i;:::-;19068:32;;;;;;;;;;;;;;;:42;19101:8;19068:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;19166:8;19137:48;;19152:12;:10;:12::i;:::-;19137:48;;;19176:8;19137:48;;;;;;:::i;:::-;;;;;;;;18906:287;;:::o;61172:93::-;55345:13;:11;:13::i;:::-;61252:5:::1;61231:15;:18;61247:1;61231:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;61172:93:::0;:::o;19992:370::-;20159:28;20169:4;20175:2;20179:7;20159:9;:28::i;:::-;20202:15;:2;:13;;;:15::i;:::-;20198:157;;;20223:56;20254:4;20260:2;20264:7;20273:5;20223:30;:56::i;:::-;20219:136;;20303:40;;;;;;;;;;;;;;20219:136;20198:157;19992:370;;;;:::o;58492:83::-;55345:13;:11;:13::i;:::-;58561:6:::1;58553:5;:14;;;;58492:83:::0;:::o;61075:89::-;55345:13;:11;:13::i;:::-;61152:4:::1;61131:15;:18;61147:1;61131:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;61075:89:::0;:::o;17470:318::-;17543:13;17574:16;17582:7;17574;:16::i;:::-;17569:59;;17599:29;;;;;;;;;;;;;;17569:59;17641:21;17665:10;:8;:10::i;:::-;17641:34;;17718:1;17699:7;17693:21;:26;;:87;;;;;;;;;;;;;;;;;17746:7;17755:18;:7;:16;:18::i;:::-;17729:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17693:87;17686:94;;;17470:318;;;:::o;61398:106::-;61313:15;:29;61329:12;:10;:12::i;:::-;61313:29;;;;;;;;;;;;;;;;;;;;;;;;;61305:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61474:22:::1;61484:1;61487:8;61474:9;:22::i;:::-;61398:106:::0;;:::o;57671:26::-;;;;;;;;;;;;;:::o;57764:80::-;55345:13;:11;:13::i;:::-;57828:8:::1;;;;;;;;;;;57827:9;57816:8;;:20;;;;;;;;;;;;;;;;;;57764:80::o:0;57335:28::-;;;;:::o;59247:349::-;59306:8;;;;;;;;;;;59298:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;59401:5;;59394:3;59364:15;:27;59380:10;59364:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59342:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59565:3;59522:15;:27;59538:10;59522:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59479:15;:27;59495:10;59479:27;;;;;;;;;;;;;;;:89;;;;59579:9;59584:3;59579:4;:9::i;:::-;59247:349;:::o;19264:164::-;19361:4;19385:18;:25;19404:5;19385:25;;;;;;;;;;;;;;;:35;19411:8;19385:35;;;;;;;;;;;;;;;;;;;;;;;;;19378:42;;19264:164;;;;:::o;56365:201::-;55345:13;:11;:13::i;:::-;56474:1:::1;56454:22;;:8;:22;;;;56446:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56530:28;56549:8;56530:18;:28::i;:::-;56365:201:::0;:::o;11052:157::-;11137:4;11176:25;11161:40;;;:11;:40;;;;11154:47;;11052:157;;;:::o;10040:98::-;10093:7;10120:10;10113:17;;10040:98;:::o;20617:174::-;20674:4;20717:7;20698:15;:13;:15::i;:::-;:26;;:53;;;;;20738:13;;20728:7;:23;20698:53;:85;;;;;20756:11;:20;20768:7;20756:20;;;;;;;;;;;:27;;;;;;;;;;;;20755:28;20698:85;20691:92;;20617:174;;;:::o;26995:89::-;27055:21;27061:7;27070:5;27055;:21::i;:::-;26995:89;:::o;29839:196::-;29981:2;29954:15;:24;29970:7;29954:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30019:7;30015:2;29999:28;;30008:5;29999:28;;;;;;;;;;;;29839:196;;;:::o;55624:132::-;55699:12;:10;:12::i;:::-;55688:23;;:7;:5;:7::i;:::-;:23;;;55680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55624:132::o;59969:170::-;60059:9;;60042:13;:11;:13::i;:::-;60036:3;:19;;;;:::i;:::-;:32;;60028:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;60117:14;60123:2;60127:3;60117:5;:14::i;:::-;59969:170;;:::o;13025:92::-;13081:7;13025:92;:::o;24787:2130::-;24902:35;24940:21;24953:7;24940:12;:21::i;:::-;24902:59;;25000:4;24978:26;;:13;:18;;;:26;;;24974:67;;25013:28;;;;;;;;;;;;;;24974:67;25054:22;25096:4;25080:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;25117:36;25134:4;25140:12;:10;:12::i;:::-;25117:16;:36::i;:::-;25080:73;:126;;;;25194:12;:10;:12::i;:::-;25170:36;;:20;25182:7;25170:11;:20::i;:::-;:36;;;25080:126;25054:153;;25225:17;25220:66;;25251:35;;;;;;;;;;;;;;25220:66;25315:1;25301:16;;:2;:16;;;25297:52;;;25326:23;;;;;;;;;;;;;;25297:52;25362:43;25384:4;25390:2;25394:7;25403:1;25362:21;:43::i;:::-;25470:35;25487:1;25491:7;25500:4;25470:8;:35::i;:::-;25831:1;25801:12;:18;25814:4;25801:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25875:1;25847:12;:16;25860:2;25847:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25893:31;25927:11;:20;25939:7;25927:20;;;;;;;;;;;25893:54;;25978:2;25962:8;:13;;;:18;;;;;;;;;;;;;;;;;;26028:15;25995:8;:23;;;:49;;;;;;;;;;;;;;;;;;26296:19;26328:1;26318:7;:11;26296:33;;26344:31;26378:11;:24;26390:11;26378:24;;;;;;;;;;;26344:58;;26446:1;26421:27;;:8;:13;;;;;;;;;;;;:27;;;26417:384;;;26631:13;;26616:11;:28;26612:174;;26685:4;26669:8;:13;;;:20;;;;;;;;;;;;;;;;;;26738:13;:28;;;26712:8;:23;;;:54;;;;;;;;;;;;;;;;;;26612:174;26417:384;25776:1036;;;26848:7;26844:2;26829:27;;26838:4;26829:27;;;;;;;;;;;;26867:42;26888:4;26894:2;26898:7;26907:1;26867:20;:42::i;:::-;24891:2026;;24787:2130;;;:::o;15761:1111::-;15823:21;;:::i;:::-;15857:12;15872:7;15857:22;;15940:4;15921:15;:13;:15::i;:::-;:23;15917:888;;15957:13;;15950:4;:20;15946:859;;;15991:31;16025:11;:17;16037:4;16025:17;;;;;;;;;;;15991:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16066:9;:16;;;16061:729;;16137:1;16111:28;;:9;:14;;;:28;;;16107:101;;16175:9;16168:16;;;;;;16107:101;16510:261;16517:4;16510:261;;;16550:6;;;;;;;;16595:11;:17;16607:4;16595:17;;;;;;;;;;;16583:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16669:1;16643:28;;:9;:14;;;:28;;;16639:109;;16711:9;16704:16;;;;;;16639:109;16510:261;;;16061:729;15972:833;15946:859;15917:888;16833:31;;;;;;;;;;;;;;15761:1111;;;;:::o;56726:191::-;56800:16;56819:6;;;;;;;;;;;56800:25;;56845:8;56836:6;;:17;;;;;;;;;;;;;;;;;;56900:8;56869:40;;56890:8;56869:40;;;;;;;;;;;;56789:128;56726:191;:::o;60270:203::-;60333:4;60350:12;60392:10;60375:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60365:39;;;;;;60350:54;;60422:43;60441:5;60448:10;;60460:4;60422:18;:43::i;:::-;60415:50;;;60270:203;;;:::o;59604:357::-;59663:5;;59656:3;:12;;:23;;;;;59678:1;59672:3;:7;59656:23;59648:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59731:9;59770:1;59743:23;59753:12;:10;:12::i;:::-;59743:9;:23::i;:::-;:28;:36;;59778:1;59743:36;;;59774:1;59743:36;59731:48;;;;59826:4;59820:3;:10;;;;:::i;:::-;59811:5;;:20;;;;:::i;:::-;59798:9;:33;;59790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59869:26;59877:12;:10;:12::i;:::-;59891:3;59869:7;:26::i;:::-;59906:9;;;;;;;;;;;:28;;;59935:12;:10;:12::i;:::-;59949:3;59906:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59637:324;59604:357;:::o;37428:326::-;37488:4;37745:1;37723:7;:19;;;:23;37716:30;;37428:326;;;:::o;30527:667::-;30690:4;30727:2;30711:36;;;30748:12;:10;:12::i;:::-;30762:4;30768:7;30777:5;30711:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30707:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30962:1;30945:6;:13;:18;30941:235;;;30991:40;;;;;;;;;;;;;;30941:235;31134:6;31128:13;31119:6;31115:2;31111:15;31104:38;30707:480;30840:45;;;30830:55;;;:6;:55;;;;30823:62;;;30527:667;;;;;;:::o;58583:105::-;58635:13;58668:12;58661:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58583:105;:::o;34186:723::-;34242:13;34472:1;34463:5;:10;34459:53;;;34490:10;;;;;;;;;;;;;;;;;;;;;34459:53;34522:12;34537:5;34522:20;;34553:14;34578:78;34593:1;34585:4;:9;34578:78;;34611:8;;;;;:::i;:::-;;;;34642:2;34634:10;;;;;:::i;:::-;;;34578:78;;;34666:19;34698:6;34688:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:39;;34716:154;34732:1;34723:5;:10;34716:154;;34760:1;34750:11;;;;;:::i;:::-;;;34827:2;34819:5;:10;;;;:::i;:::-;34806:2;:24;;;;:::i;:::-;34793:39;;34776:6;34783;34776:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;34856:2;34847:11;;;;;:::i;:::-;;;34716:154;;;34894:6;34880:21;;;;;34186:723;;;;:::o;20875:104::-;20944:27;20954:2;20958:8;20944:27;;;;;;;;;;;;:9;:27::i;:::-;20875:104;;:::o;27313:2408::-;27393:35;27431:21;27444:7;27431:12;:21::i;:::-;27393:59;;27465:12;27480:13;:18;;;27465:33;;27515:13;27511:290;;;27545:22;27587:4;27571:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;27612:36;27629:4;27635:12;:10;:12::i;:::-;27612:16;:36::i;:::-;27571:77;:134;;;;27693:12;:10;:12::i;:::-;27669:36;;:20;27681:7;27669:11;:20::i;:::-;:36;;;27571:134;27545:161;;27728:17;27723:66;;27754:35;;;;;;;;;;;;;;27723:66;27530:271;27511:290;27813:51;27835:4;27849:1;27853:7;27862:1;27813:21;:51::i;:::-;27929:35;27946:1;27950:7;27959:4;27929:8;:35::i;:::-;28260:31;28294:12;:18;28307:4;28294:18;;;;;;;;;;;;;;;28260:52;;28350:1;28327:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28394:1;28366:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28494:31;28528:11;:20;28540:7;28528:20;;;;;;;;;;;28494:54;;28579:4;28563:8;:13;;;:20;;;;;;;;;;;;;;;;;;28631:15;28598:8;:23;;;:49;;;;;;;;;;;;;;;;;;28680:4;28662:8;:15;;;:22;;;;;;;;;;;;;;;;;;28932:19;28964:1;28954:7;:11;28932:33;;28980:31;29014:11;:24;29026:11;29014:24;;;;;;;;;;;28980:58;;29082:1;29057:27;;:8;:13;;;;;;;;;;;;:27;;;29053:384;;;29267:13;;29252:11;:28;29248:174;;29321:4;29305:8;:13;;;:20;;;;;;;;;;;;;;;;;;29374:13;:28;;;29348:8;:23;;;:54;;;;;;;;;;;;;;;;;;29248:174;29053:384;28235:1213;;;;29492:7;29488:1;29465:35;;29474:4;29465:35;;;;;;;;;;;;29511:50;29532:4;29546:1;29550:7;29559:1;29511:20;:50::i;:::-;29688:12;;:14;;;;;;;;;;;;;27382:2339;;27313:2408;;:::o;23360:1173::-;23425:20;23448:13;;23425:36;;23490:1;23476:16;;:2;:16;;;23472:48;;;23501:19;;;;;;;;;;;;;;23472:48;23547:1;23535:8;:13;23531:44;;;23557:18;;;;;;;;;;;;;;23531:44;23588:61;23618:1;23622:2;23626:12;23640:8;23588:21;:61::i;:::-;23961:8;23926:12;:16;23939:2;23926:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:8;23985:12;:16;23998:2;23985:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24084:2;24051:11;:25;24063:12;24051:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24151:15;24101:11;:25;24113:12;24101:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;24184:20;24207:12;24184:35;;24234:11;24263:8;24248:12;:23;24234:37;;24288:111;24340:14;;;;;;24336:2;24315:40;;24332:1;24315:40;;;;;;;;;;;;24394:3;24379:12;:18;24288:111;;24431:12;24415:13;:28;;;;23901:554;;24465:60;24494:1;24498:2;24502:12;24516:8;24465:20;:60::i;:::-;23414:1119;23360:1173;;:::o;60738:329::-;60910:56;60938:4;60944:2;60948:7;60957:8;60910:27;:56::i;:::-;60997:1;60981:18;;:4;:18;;;60977:83;;61016:9;;;;;;;;;;;:22;;;61039:4;61045:2;61016:32;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60977:83;60738:329;;;;:::o;32660:158::-;;;;;:::o;46771:190::-;46896:4;46949;46920:25;46933:5;46940:4;46920:12;:25::i;:::-;:33;46913:40;;46771:190;;;;;:::o;21352:1749::-;21475:20;21498:13;;21475:36;;21540:1;21526:16;;:2;:16;;;21522:48;;;21551:19;;;;;;;;;;;;;;21522:48;21597:1;21585:8;:13;21581:44;;;21607:18;;;;;;;;;;;;;;21581:44;21638:61;21668:1;21672:2;21676:12;21690:8;21638:21;:61::i;:::-;22011:8;21976:12;:16;21989:2;21976:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22075:8;22035:12;:16;22048:2;22035:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22134:2;22101:11;:25;22113:12;22101:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;22201:15;22151:11;:25;22163:12;22151:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;22234:20;22257:12;22234:35;;22284:11;22313:8;22298:12;:23;22284:37;;22342:15;:2;:13;;;:15::i;:::-;22338:631;;;22378:313;22434:12;22430:2;22409:38;;22426:1;22409:38;;;;;;;;;;;;22475:69;22514:1;22518:2;22522:14;;;;;;22538:5;22475:30;:69::i;:::-;22470:174;;22580:40;;;;;;;;;;;;;;22470:174;22686:3;22671:12;:18;22378:313;;22772:12;22755:13;;:29;22751:43;;22786:8;;;22751:43;22338:631;;;22835:119;22891:14;;;;;;22887:2;22866:40;;22883:1;22866:40;;;;;;;;;;;;22949:3;22934:12;:18;22835:119;;22338:631;22999:12;22983:13;:28;;;;21951:1072;;23033:60;23062:1;23066:2;23070:12;23084:8;23033:20;:60::i;:::-;21464:1637;21352:1749;;;:::o;31842:159::-;;;;;:::o;47638:296::-;47721:7;47741:20;47764:4;47741:27;;47784:9;47779:118;47803:5;:12;47799:1;:16;47779:118;;;47852:33;47862:12;47876:5;47882:1;47876:8;;;;;;;;:::i;:::-;;;;;;;;47852:9;:33::i;:::-;47837:48;;47817:3;;;;;:::i;:::-;;;;47779:118;;;;47914:12;47907:19;;;47638:296;;;;:::o;53845:149::-;53908:7;53939:1;53935;:5;:51;;53966:20;53981:1;53984;53966:14;:20::i;:::-;53935:51;;;53943:20;53958:1;53961;53943:14;:20::i;:::-;53935:51;53928:58;;53845:149;;;;:::o;54002:268::-;54070:13;54177:1;54171:4;54164:15;54206:1;54200:4;54193:15;54247:4;54241;54231:21;54222:30;;54002: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:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:139::-;1891:5;1929:6;1916:20;1907:29;;1945:33;1972:5;1945:33;:::i;:::-;1845:139;;;;:::o;1990:137::-;2035:5;2073:6;2060:20;2051:29;;2089:32;2115:5;2089:32;:::i;:::-;1990:137;;;;:::o;2133:141::-;2189:5;2220:6;2214:13;2205:22;;2236:32;2262:5;2236:32;:::i;:::-;2133:141;;;;:::o;2293:338::-;2348:5;2397:3;2390:4;2382:6;2378:17;2374:27;2364:122;;2405:79;;:::i;:::-;2364:122;2522:6;2509:20;2547:78;2621:3;2613:6;2606:4;2598:6;2594:17;2547:78;:::i;:::-;2538:87;;2354:277;2293:338;;;;:::o;2651:553::-;2709:8;2719:6;2769:3;2762:4;2754:6;2750:17;2746:27;2736:122;;2777:79;;:::i;:::-;2736:122;2890:6;2877:20;2867:30;;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3056:4;3048:6;3044:17;3032:29;;3110:3;3102:4;3094:6;3090:17;3080:8;3076:32;3073:41;3070:128;;;3117:79;;:::i;:::-;3070:128;2651:553;;;;;:::o;3210:139::-;3256:5;3294:6;3281:20;3272:29;;3310:33;3337:5;3310:33;:::i;:::-;3210:139;;;;:::o;3355:329::-;3414:6;3463:2;3451:9;3442:7;3438:23;3434:32;3431:119;;;3469:79;;:::i;:::-;3431:119;3589:1;3614:53;3659:7;3650:6;3639:9;3635:22;3614:53;:::i;:::-;3604:63;;3560:117;3355:329;;;;:::o;3690:474::-;3758:6;3766;3815:2;3803:9;3794:7;3790:23;3786:32;3783:119;;;3821:79;;:::i;:::-;3783:119;3941:1;3966:53;4011:7;4002:6;3991:9;3987:22;3966:53;:::i;:::-;3956:63;;3912:117;4068:2;4094:53;4139:7;4130:6;4119:9;4115:22;4094:53;:::i;:::-;4084:63;;4039:118;3690:474;;;;;:::o;4170:619::-;4247:6;4255;4263;4312:2;4300:9;4291:7;4287:23;4283:32;4280:119;;;4318:79;;:::i;:::-;4280:119;4438:1;4463:53;4508:7;4499:6;4488:9;4484:22;4463:53;:::i;:::-;4453:63;;4409:117;4565:2;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;:::i;:::-;4581:63;;4536:118;4693:2;4719:53;4764:7;4755:6;4744:9;4740:22;4719:53;:::i;:::-;4709:63;;4664:118;4170:619;;;;;:::o;4795:943::-;4890:6;4898;4906;4914;4963:3;4951:9;4942:7;4938:23;4934:33;4931:120;;;4970:79;;:::i;:::-;4931:120;5090:1;5115:53;5160:7;5151:6;5140:9;5136:22;5115:53;:::i;:::-;5105:63;;5061:117;5217:2;5243:53;5288:7;5279:6;5268:9;5264:22;5243:53;:::i;:::-;5233:63;;5188:118;5345:2;5371:53;5416:7;5407:6;5396:9;5392:22;5371:53;:::i;:::-;5361:63;;5316:118;5501:2;5490:9;5486:18;5473:32;5532:18;5524:6;5521:30;5518:117;;;5554:79;;:::i;:::-;5518:117;5659:62;5713:7;5704:6;5693:9;5689:22;5659:62;:::i;:::-;5649:72;;5444:287;4795:943;;;;;;;:::o;5744:468::-;5809:6;5817;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5963:117;6119:2;6145:50;6187:7;6178:6;6167:9;6163:22;6145:50;:::i;:::-;6135:60;;6090:115;5744:468;;;;;:::o;6218:474::-;6286:6;6294;6343:2;6331:9;6322:7;6318:23;6314:32;6311:119;;;6349:79;;:::i;:::-;6311:119;6469:1;6494:53;6539:7;6530:6;6519:9;6515:22;6494:53;:::i;:::-;6484:63;;6440:117;6596:2;6622:53;6667:7;6658:6;6647:9;6643:22;6622:53;:::i;:::-;6612:63;;6567:118;6218:474;;;;;:::o;6698:329::-;6757:6;6806:2;6794:9;6785:7;6781:23;6777:32;6774:119;;;6812:79;;:::i;:::-;6774:119;6932:1;6957:53;7002:7;6993:6;6982:9;6978:22;6957:53;:::i;:::-;6947:63;;6903:117;6698:329;;;;:::o;7033:327::-;7091:6;7140:2;7128:9;7119:7;7115:23;7111:32;7108:119;;;7146:79;;:::i;:::-;7108:119;7266:1;7291:52;7335:7;7326:6;7315:9;7311:22;7291:52;:::i;:::-;7281:62;;7237:116;7033:327;;;;:::o;7366:349::-;7435:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:119;;;7490:79;;:::i;:::-;7452:119;7610:1;7635:63;7690:7;7681:6;7670:9;7666:22;7635:63;:::i;:::-;7625:73;;7581:127;7366:349;;;;:::o;7721:529::-;7792:6;7800;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;8003:1;7992:9;7988:17;7975:31;8033:18;8025:6;8022:30;8019:117;;;8055:79;;:::i;:::-;8019:117;8168:65;8225:7;8216:6;8205:9;8201:22;8168:65;:::i;:::-;8150:83;;;;7946:297;7721:529;;;;;:::o;8256:329::-;8315:6;8364:2;8352:9;8343:7;8339:23;8335:32;8332:119;;;8370:79;;:::i;:::-;8332:119;8490:1;8515:53;8560:7;8551:6;8540:9;8536:22;8515:53;:::i;:::-;8505:63;;8461:117;8256:329;;;;:::o;8591:684::-;8684:6;8692;8741:2;8729:9;8720:7;8716:23;8712:32;8709:119;;;8747:79;;:::i;:::-;8709:119;8867:1;8892:53;8937:7;8928:6;8917:9;8913:22;8892:53;:::i;:::-;8882:63;;8838:117;9022:2;9011:9;9007:18;8994:32;9053:18;9045:6;9042:30;9039:117;;;9075:79;;:::i;:::-;9039:117;9180:78;9250:7;9241:6;9230:9;9226:22;9180:78;:::i;:::-;9170:88;;8965:303;8591:684;;;;;:::o;9281:118::-;9368:24;9386:5;9368:24;:::i;:::-;9363:3;9356:37;9281:118;;:::o;9405:157::-;9510:45;9530:24;9548:5;9530:24;:::i;:::-;9510:45;:::i;:::-;9505:3;9498:58;9405:157;;:::o;9568:109::-;9649:21;9664:5;9649:21;:::i;:::-;9644:3;9637:34;9568:109;;:::o;9683:118::-;9770:24;9788:5;9770:24;:::i;:::-;9765:3;9758:37;9683:118;;:::o;9807:360::-;9893:3;9921:38;9953:5;9921:38;:::i;:::-;9975:70;10038:6;10033:3;9975:70;:::i;:::-;9968:77;;10054:52;10099:6;10094:3;10087:4;10080:5;10076:16;10054:52;:::i;:::-;10131:29;10153:6;10131:29;:::i;:::-;10126:3;10122:39;10115:46;;9897:270;9807:360;;;;:::o;10173:167::-;10278:55;10327:5;10278:55;:::i;:::-;10273:3;10266:68;10173:167;;:::o;10346:364::-;10434:3;10462:39;10495:5;10462:39;:::i;:::-;10517:71;10581:6;10576:3;10517:71;:::i;:::-;10510:78;;10597:52;10642:6;10637:3;10630:4;10623:5;10619:16;10597:52;:::i;:::-;10674:29;10696:6;10674:29;:::i;:::-;10669:3;10665:39;10658:46;;10438:272;10346:364;;;;:::o;10716:377::-;10822:3;10850:39;10883:5;10850:39;:::i;:::-;10905:89;10987:6;10982:3;10905:89;:::i;:::-;10898:96;;11003:52;11048:6;11043:3;11036:4;11029:5;11025:16;11003:52;:::i;:::-;11080:6;11075:3;11071:16;11064:23;;10826:267;10716:377;;;;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:::-;11613:3;11634:67;11698:2;11693:3;11634:67;:::i;:::-;11627:74;;11710:93;11799:3;11710:93;:::i;:::-;11828:2;11823:3;11819:12;11812:19;;11471:366;;;:::o;11843:::-;11985:3;12006:67;12070:2;12065:3;12006:67;:::i;:::-;11999:74;;12082:93;12171:3;12082:93;:::i;:::-;12200:2;12195:3;12191:12;12184:19;;11843:366;;;:::o;12215:::-;12357:3;12378:67;12442:2;12437:3;12378:67;:::i;:::-;12371:74;;12454:93;12543:3;12454:93;:::i;:::-;12572:2;12567:3;12563:12;12556:19;;12215:366;;;:::o;12587:::-;12729:3;12750:67;12814:2;12809:3;12750:67;:::i;:::-;12743:74;;12826:93;12915:3;12826:93;:::i;:::-;12944:2;12939:3;12935:12;12928:19;;12587:366;;;:::o;12959:::-;13101:3;13122:67;13186:2;13181:3;13122:67;:::i;:::-;13115:74;;13198:93;13287:3;13198:93;:::i;:::-;13316:2;13311:3;13307:12;13300:19;;12959:366;;;:::o;13331:::-;13473:3;13494:67;13558:2;13553:3;13494:67;:::i;:::-;13487:74;;13570:93;13659:3;13570:93;:::i;:::-;13688:2;13683:3;13679:12;13672:19;;13331:366;;;:::o;13703:::-;13845:3;13866:67;13930:2;13925:3;13866:67;:::i;:::-;13859:74;;13942:93;14031:3;13942:93;:::i;:::-;14060:2;14055:3;14051:12;14044:19;;13703:366;;;:::o;14075:::-;14217:3;14238:67;14302:2;14297:3;14238:67;:::i;:::-;14231:74;;14314:93;14403:3;14314:93;:::i;:::-;14432:2;14427:3;14423:12;14416:19;;14075:366;;;:::o;14447:::-;14589:3;14610:67;14674:2;14669:3;14610:67;:::i;:::-;14603:74;;14686:93;14775:3;14686:93;:::i;:::-;14804:2;14799:3;14795:12;14788:19;;14447:366;;;:::o;14819:118::-;14906:24;14924:5;14906:24;:::i;:::-;14901:3;14894:37;14819:118;;:::o;14943:256::-;15055:3;15070:75;15141:3;15132:6;15070:75;:::i;:::-;15170:2;15165:3;15161:12;15154:19;;15190:3;15183:10;;14943:256;;;;:::o;15205:435::-;15385:3;15407:95;15498:3;15489:6;15407:95;:::i;:::-;15400:102;;15519:95;15610:3;15601:6;15519:95;:::i;:::-;15512:102;;15631:3;15624:10;;15205:435;;;;;:::o;15646:222::-;15739:4;15777:2;15766:9;15762:18;15754:26;;15790:71;15858:1;15847:9;15843:17;15834:6;15790:71;:::i;:::-;15646:222;;;;:::o;15874:332::-;15995:4;16033:2;16022:9;16018:18;16010:26;;16046:71;16114:1;16103:9;16099:17;16090:6;16046:71;:::i;:::-;16127:72;16195:2;16184:9;16180:18;16171:6;16127:72;:::i;:::-;15874:332;;;;;:::o;16212:640::-;16407:4;16445:3;16434:9;16430:19;16422:27;;16459:71;16527:1;16516:9;16512:17;16503:6;16459:71;:::i;:::-;16540:72;16608:2;16597:9;16593:18;16584:6;16540:72;:::i;:::-;16622;16690:2;16679:9;16675:18;16666:6;16622:72;:::i;:::-;16741:9;16735:4;16731:20;16726:2;16715:9;16711:18;16704:48;16769:76;16840:4;16831:6;16769:76;:::i;:::-;16761:84;;16212:640;;;;;;;:::o;16858:332::-;16979:4;17017:2;17006:9;17002:18;16994:26;;17030:71;17098:1;17087:9;17083:17;17074:6;17030:71;:::i;:::-;17111:72;17179:2;17168:9;17164:18;17155:6;17111:72;:::i;:::-;16858:332;;;;;:::o;17196:210::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17334:65;17396:1;17385:9;17381:17;17372:6;17334:65;:::i;:::-;17196:210;;;;:::o;17412:222::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17556:71;17624:1;17613:9;17609:17;17600:6;17556:71;:::i;:::-;17412:222;;;;:::o;17640:258::-;17751:4;17789:2;17778:9;17774:18;17766:26;;17802:89;17888:1;17877:9;17873:17;17864:6;17802:89;:::i;:::-;17640:258;;;;:::o;17904:313::-;18017:4;18055:2;18044:9;18040:18;18032:26;;18104:9;18098:4;18094:20;18090:1;18079:9;18075:17;18068:47;18132:78;18205:4;18196:6;18132:78;:::i;:::-;18124:86;;17904:313;;;;:::o;18223:419::-;18389:4;18427:2;18416:9;18412:18;18404:26;;18476:9;18470:4;18466:20;18462:1;18451:9;18447:17;18440:47;18504:131;18630:4;18504:131;:::i;:::-;18496:139;;18223:419;;;:::o;18648:::-;18814:4;18852:2;18841:9;18837:18;18829:26;;18901:9;18895:4;18891:20;18887:1;18876:9;18872:17;18865:47;18929:131;19055:4;18929:131;:::i;:::-;18921:139;;18648:419;;;:::o;19073:::-;19239:4;19277:2;19266:9;19262:18;19254:26;;19326:9;19320:4;19316:20;19312:1;19301:9;19297:17;19290:47;19354:131;19480:4;19354:131;:::i;:::-;19346:139;;19073:419;;;:::o;19498:::-;19664:4;19702:2;19691:9;19687:18;19679:26;;19751:9;19745:4;19741:20;19737:1;19726:9;19722:17;19715:47;19779:131;19905:4;19779:131;:::i;:::-;19771:139;;19498:419;;;:::o;19923:::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:::-;20514:4;20552:2;20541:9;20537:18;20529:26;;20601:9;20595:4;20591:20;20587:1;20576:9;20572:17;20565:47;20629:131;20755:4;20629:131;:::i;:::-;20621:139;;20348:419;;;:::o;20773:::-;20939:4;20977:2;20966:9;20962:18;20954:26;;21026:9;21020:4;21016:20;21012:1;21001:9;20997:17;20990:47;21054:131;21180:4;21054:131;:::i;:::-;21046:139;;20773:419;;;:::o;21198:::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:::-;21789:4;21827:2;21816:9;21812:18;21804:26;;21876:9;21870:4;21866:20;21862:1;21851:9;21847:17;21840:47;21904:131;22030:4;21904:131;:::i;:::-;21896:139;;21623:419;;;:::o;22048:::-;22214:4;22252:2;22241:9;22237:18;22229:26;;22301:9;22295:4;22291:20;22287:1;22276:9;22272:17;22265:47;22329:131;22455:4;22329:131;:::i;:::-;22321:139;;22048:419;;;:::o;22473:222::-;22566:4;22604:2;22593:9;22589:18;22581:26;;22617:71;22685:1;22674:9;22670:17;22661:6;22617:71;:::i;:::-;22473:222;;;;:::o;22701:129::-;22735:6;22762:20;;:::i;:::-;22752:30;;22791:33;22819:4;22811:6;22791:33;:::i;:::-;22701:129;;;:::o;22836:75::-;22869:6;22902:2;22896:9;22886:19;;22836:75;:::o;22917:311::-;22994:4;23084:18;23076:6;23073:30;23070:56;;;23106:18;;:::i;:::-;23070:56;23156:4;23148:6;23144:17;23136:25;;23216:4;23210;23206:15;23198:23;;22917:311;;;:::o;23234:307::-;23295:4;23385:18;23377:6;23374:30;23371:56;;;23407:18;;:::i;:::-;23371:56;23445:29;23467:6;23445:29;:::i;:::-;23437:37;;23529:4;23523;23519:15;23511:23;;23234:307;;;:::o;23547:98::-;23598:6;23632:5;23626:12;23616:22;;23547:98;;;:::o;23651:99::-;23703:6;23737:5;23731:12;23721:22;;23651:99;;;:::o;23756:168::-;23839:11;23873:6;23868:3;23861:19;23913:4;23908:3;23904:14;23889:29;;23756:168;;;;:::o;23930:169::-;24014:11;24048:6;24043:3;24036:19;24088:4;24083:3;24079:14;24064:29;;23930:169;;;;:::o;24105:148::-;24207:11;24244:3;24229:18;;24105:148;;;;:::o;24259:305::-;24299:3;24318:20;24336:1;24318:20;:::i;:::-;24313:25;;24352:20;24370:1;24352:20;:::i;:::-;24347:25;;24506:1;24438:66;24434:74;24431:1;24428:81;24425:107;;;24512:18;;:::i;:::-;24425:107;24556:1;24553;24549:9;24542:16;;24259:305;;;;:::o;24570:185::-;24610:1;24627:20;24645:1;24627:20;:::i;:::-;24622:25;;24661:20;24679:1;24661:20;:::i;:::-;24656:25;;24700:1;24690:35;;24705:18;;:::i;:::-;24690:35;24747:1;24744;24740:9;24735:14;;24570:185;;;;:::o;24761:348::-;24801:7;24824:20;24842:1;24824:20;:::i;:::-;24819:25;;24858:20;24876:1;24858:20;:::i;:::-;24853:25;;25046:1;24978:66;24974:74;24971:1;24968:81;24963:1;24956:9;24949:17;24945:105;24942:131;;;25053:18;;:::i;:::-;24942:131;25101:1;25098;25094:9;25083:20;;24761:348;;;;:::o;25115:191::-;25155:4;25175:20;25193:1;25175:20;:::i;:::-;25170:25;;25209:20;25227:1;25209:20;:::i;:::-;25204:25;;25248:1;25245;25242:8;25239:34;;;25253:18;;:::i;:::-;25239:34;25298:1;25295;25291:9;25283:17;;25115:191;;;;:::o;25312:96::-;25349:7;25378:24;25396:5;25378:24;:::i;:::-;25367:35;;25312:96;;;:::o;25414:90::-;25448:7;25491:5;25484:13;25477:21;25466:32;;25414:90;;;:::o;25510:77::-;25547:7;25576:5;25565:16;;25510:77;;;:::o;25593:149::-;25629:7;25669:66;25662:5;25658:78;25647:89;;25593:149;;;:::o;25748:126::-;25785:7;25825:42;25818:5;25814:54;25803:65;;25748:126;;;:::o;25880:77::-;25917:7;25946:5;25935:16;;25880:77;;;:::o;25963:144::-;26031:9;26064:37;26095:5;26064:37;:::i;:::-;26051:50;;25963:144;;;:::o;26113:126::-;26163:9;26196:37;26227:5;26196:37;:::i;:::-;26183:50;;26113:126;;;:::o;26245:113::-;26295:9;26328:24;26346:5;26328:24;:::i;:::-;26315:37;;26245:113;;;:::o;26364:154::-;26448:6;26443:3;26438;26425:30;26510:1;26501:6;26496:3;26492:16;26485:27;26364:154;;;:::o;26524:307::-;26592:1;26602:113;26616:6;26613:1;26610:13;26602:113;;;26701:1;26696:3;26692:11;26686:18;26682:1;26677:3;26673:11;26666:39;26638:2;26635:1;26631:10;26626:15;;26602:113;;;26733:6;26730:1;26727:13;26724:101;;;26813:1;26804:6;26799:3;26795:16;26788:27;26724:101;26573:258;26524:307;;;:::o;26837:320::-;26881:6;26918:1;26912:4;26908:12;26898:22;;26965:1;26959:4;26955:12;26986:18;26976:81;;27042:4;27034:6;27030:17;27020:27;;26976:81;27104:2;27096:6;27093:14;27073:18;27070:38;27067:84;;;27123:18;;:::i;:::-;27067:84;26888:269;26837:320;;;:::o;27163:281::-;27246:27;27268:4;27246:27;:::i;:::-;27238:6;27234:40;27376:6;27364:10;27361:22;27340:18;27328:10;27325:34;27322:62;27319:88;;;27387:18;;:::i;:::-;27319:88;27427:10;27423:2;27416:22;27206:238;27163:281;;:::o;27450:233::-;27489:3;27512:24;27530:5;27512:24;:::i;:::-;27503:33;;27558:66;27551:5;27548:77;27545:103;;;27628:18;;:::i;:::-;27545:103;27675:1;27668:5;27664:13;27657:20;;27450:233;;;:::o;27689:100::-;27728:7;27757:26;27777:5;27757:26;:::i;:::-;27746:37;;27689:100;;;:::o;27795:94::-;27834:7;27863:20;27877:5;27863:20;:::i;:::-;27852:31;;27795:94;;;:::o;27895:176::-;27927:1;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27978:20;27996:1;27978:20;:::i;:::-;27973:25;;28017:1;28007:35;;28022:18;;:::i;:::-;28007:35;28063:1;28060;28056:9;28051:14;;27895:176;;;;:::o;28077:180::-;28125:77;28122:1;28115:88;28222:4;28219:1;28212:15;28246:4;28243:1;28236:15;28263:180;28311:77;28308:1;28301:88;28408:4;28405:1;28398:15;28432:4;28429:1;28422:15;28449:180;28497:77;28494:1;28487:88;28594:4;28591:1;28584:15;28618:4;28615:1;28608:15;28635:180;28683:77;28680:1;28673:88;28780:4;28777:1;28770:15;28804:4;28801:1;28794:15;28821:180;28869:77;28866:1;28859:88;28966:4;28963:1;28956:15;28990:4;28987:1;28980:15;29007:117;29116:1;29113;29106:12;29130:117;29239:1;29236;29229:12;29253:117;29362:1;29359;29352:12;29376:117;29485:1;29482;29475:12;29499:117;29608:1;29605;29598:12;29622:117;29731:1;29728;29721:12;29745:102;29786:6;29837:2;29833:7;29828:2;29821:5;29817:14;29813:28;29803:38;;29745:102;;;:::o;29853:94::-;29886:8;29934:5;29930:2;29926:14;29905:35;;29853:94;;;:::o;29953:225::-;30093:34;30089:1;30081:6;30077:14;30070:58;30162:8;30157:2;30149:6;30145:15;30138:33;29953:225;:::o;30184:223::-;30324:34;30320:1;30312:6;30308:14;30301:58;30393:6;30388:2;30380:6;30376:15;30369:31;30184:223;:::o;30413:172::-;30553:24;30549:1;30541:6;30537:14;30530:48;30413:172;:::o;30591:170::-;30731:22;30727:1;30719:6;30715:14;30708:46;30591:170;:::o;30767:162::-;30907:14;30903:1;30895:6;30891:14;30884:38;30767:162;:::o;30935:174::-;31075:26;31071:1;31063:6;31059:14;31052:50;30935:174;:::o;31115:173::-;31255:25;31251:1;31243:6;31239:14;31232:49;31115:173;:::o;31294:182::-;31434:34;31430:1;31422:6;31418:14;31411:58;31294:182;:::o;31482:220::-;31622:34;31618:1;31610:6;31606:14;31599:58;31691:3;31686:2;31678:6;31674:15;31667:28;31482:220;:::o;31708:221::-;31848:34;31844:1;31836:6;31832:14;31825:58;31917:4;31912:2;31904:6;31900:15;31893:29;31708:221;:::o;31935:122::-;32008:24;32026:5;32008:24;:::i;:::-;32001:5;31998:35;31988:63;;32047:1;32044;32037:12;31988:63;31935:122;:::o;32063:116::-;32133:21;32148:5;32133:21;:::i;:::-;32126:5;32123:32;32113:60;;32169:1;32166;32159:12;32113:60;32063:116;:::o;32185:122::-;32258:24;32276:5;32258:24;:::i;:::-;32251:5;32248:35;32238:63;;32297:1;32294;32287:12;32238:63;32185:122;:::o;32313:120::-;32385:23;32402:5;32385:23;:::i;:::-;32378:5;32375:34;32365:62;;32423:1;32420;32413:12;32365:62;32313:120;:::o;32439:122::-;32512:24;32530:5;32512:24;:::i;:::-;32505:5;32502:35;32492:63;;32551:1;32548;32541:12;32492:63;32439:122;:::o

Swarm Source

ipfs://e02445008e008faff0bcb8defbf8b4f32813240d7c061634a50c3cb0970a0726
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.