ETH Price: $3,304.30 (-3.54%)
Gas: 7 Gwei

Token

MoonTrolls (MTROLL)
 

Overview

Max Total Supply

7,000 MTROLL

Holders

2,757

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MTROLL
0x262b3a8ac18742b096280203bd783059f97dc4fa
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:
MoonTrolls

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-05
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;



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

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

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



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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;



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

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

pragma solidity ^0.8.4;


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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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




// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


pragma solidity >=0.8.6;



interface TrollToken {
    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 MoonTrolls is ERC721A, Ownable {

    uint public price = 0.005 ether;
    uint public maxSupply = 7000;
    uint public maxTx = 3;

    mapping(address => uint256) public _preSaleCounter;

    bytes32 public merkleRoot;

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

    string internal baseTokenURI = '';
    
    TrollToken public trollToken;



    constructor() ERC721A("MoonTrolls", "MTROLL") {}

    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 {
        trollToken = TrollToken(_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);
        trollToken.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 {
        trollToken.updateReward(msg.sender, address(0));
        trollToken.getReward(msg.sender);
    }

    function spendTokens(uint256 _amount) external {
        trollToken.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)) {
            trollToken.updateReward(from, to);
        }
    }
}

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":"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":"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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"trollToken","outputs":[{"internalType":"contract TrollToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600955611b58600a556003600b556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200007792919062000235565b503480156200008557600080fd5b506040518060400160405280600a81526020017f4d6f6f6e54726f6c6c73000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d54524f4c4c000000000000000000000000000000000000000000000000000081525081600290805190602001906200010a92919062000235565b5080600390805190602001906200012392919062000235565b50620001346200016260201b60201c565b60008190555050506200015c620001506200016760201b60201c565b6200016f60201b60201c565b6200034a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613da6806200035a6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d3dd5fe01161006f578063d3dd5fe014610772578063d5abeb0114610789578063d96a094a146107b4578063e985e9c5146107d0578063f2fde38b1461080d5761021a565b8063a22cb4651461068f578063b88d4fde146106b8578063bc337182146106e1578063c3b97ad21461070a578063c87b56dd146107355761021a565b80638da5cb5b116100f25780638da5cb5b146105bc5780638e39f515146105e757806391b7f5ed1461061057806395d89b4114610639578063a035b1fe146106645761021a565b8063715018a6146105355780637437681e1461054c5780637cb647591461057757806381814492146105a05761021a565b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e1461045257806348c54b9d1461047b5780636352211e146104925780636f8b44b0146104cf57806370a08231146104f85761021a565b80632eb4a7ab146103d057806330176e13146103fb57806334393743146104245780633ccfd60b1461043b5761021a565b806309bd4c31116101ed57806309bd4c31146102ed578063144fa6d71461031657806318160ddd1461033f57806323b872dd1461036a57806327b1425a146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613052565b610836565b6040516102539190613497565b60405180910390f35b34801561026857600080fd5b50610271610918565b60405161027e91906134e8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906130f9565b6109aa565b6040516102bb91906133de565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612fe5565b610a26565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612fe5565b610b2b565b005b34801561032257600080fd5b5061033d60048036038101906103389190612e62565b610b41565b005b34801561034b57600080fd5b50610354610b8d565b604051610361919061360a565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612ecf565b610ba4565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612e62565b610bb4565b6040516103c7919061360a565b60405180910390f35b3480156103dc57600080fd5b506103e5610bcc565b6040516103f291906134b2565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d91906130ac565b610bd2565b005b34801561043057600080fd5b50610439610bf0565b005b34801561044757600080fd5b50610450610c24565b005b34801561045e57600080fd5b5061047960048036038101906104749190612ecf565b610c7c565b005b34801561048757600080fd5b50610490610c9c565b005b34801561049e57600080fd5b506104b960048036038101906104b491906130f9565b610dbb565b6040516104c691906133de565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906130f9565b610dd1565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612e62565b610de3565b60405161052c919061360a565b60405180910390f35b34801561054157600080fd5b5061054a610eb3565b005b34801561055857600080fd5b50610561610ec7565b60405161056e919061360a565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613025565b610ecd565b005b6105ba60048036038101906105b59190613126565b610edf565b005b3480156105c857600080fd5b506105d16110a0565b6040516105de91906133de565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906130f9565b6110ca565b005b34801561061c57600080fd5b50610637600480360381019061063291906130f9565b61115c565b005b34801561064557600080fd5b5061064e61116e565b60405161065b91906134e8565b60405180910390f35b34801561067057600080fd5b50610679611200565b604051610686919061360a565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612fa5565b611206565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612f22565b61137e565b005b3480156106ed57600080fd5b50610708600480360381019061070391906130f9565b6113f6565b005b34801561071657600080fd5b5061071f611408565b60405161072c91906134cd565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906130f9565b61142e565b60405161076991906134e8565b60405180910390f35b34801561077e57600080fd5b506107876114cd565b005b34801561079557600080fd5b5061079e611501565b6040516107ab919061360a565b60405180910390f35b6107ce60048036038101906107c991906130f9565b611507565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612e8f565b61167f565b6040516108049190613497565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612e62565b611713565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610911575061091082611797565b5b9050919050565b606060028054610927906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138f5565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b582611801565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab861184f565b73ffffffffffffffffffffffffffffffffffffffff1614610b1b57610ae481610adf61184f565b61167f565b610b1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b26838383611857565b505050565b610b33611909565b610b3d8282611987565b5050565b610b49611909565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b976119ec565b6001546000540303905090565b610baf8383836119f1565b505050565b600c6020528060005260406000206000915090505481565b600d5481565b610bda611909565b8181600f9190610beb929190612b9a565b505050565b610bf8611909565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610c2c611909565b610c3461184f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b50565b610c978383836040518060200160405280600081525061137e565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610cfa9291906133f9565b600060405180830381600087803b158015610d1457600080fd5b505af1158015610d28573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610d8791906133de565b600060405180830381600087803b158015610da157600080fd5b505af1158015610db5573d6000803e3d6000fd5b50505050565b6000610dc682611ea7565b600001519050919050565b610dd9611909565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ebb611909565b610ec56000612132565b565b600b5481565b610ed5611909565b80600d8190555050565b600e60019054906101000a900460ff16610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061356a565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f7c91906136ea565b1115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906135ea565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100891906136ea565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611054816121f8565b611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061358a565b60405180910390fd5b61109c82612239565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b815260040161112792919061346e565b600060405180830381600087803b15801561114157600080fd5b505af1158015611155573d6000803e3d6000fd5b5050505050565b611164611909565b8060098190555050565b60606003805461117d906138f5565b80601f01602080910402602001604051908101604052809291908181526020018280546111a9906138f5565b80156111f65780601f106111cb576101008083540402835291602001916111f6565b820191906000526020600020905b8154815290600101906020018083116111d957829003601f168201915b5050505050905090565b60095481565b61120e61184f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611273576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061128061184f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132d61184f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113729190613497565b60405180910390a35050565b6113898484846119f1565b6113a88373ffffffffffffffffffffffffffffffffffffffff166123b7565b156113f0576113b9848484846123da565b6113ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113fe611909565b80600b8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061143982611801565b61146f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061147961253a565b905060008151141561149a57604051806020016040528060008152506114c5565b806114a4846125cc565b6040516020016114b59291906133ba565b6040516020818303038152906040525b915050919050565b6114d5611909565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600a5481565b600e60009054906101000a900460ff16611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d9061356a565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a491906136ea565b11156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc906135ea565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163091906136ea565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061167c81612239565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171b611909565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117829061350a565b60405180910390fd5b61179481612132565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161180c6119ec565b1115801561181b575060005482105b8015611848575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61191161184f565b73ffffffffffffffffffffffffffffffffffffffff1661192f6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906135aa565b60405180910390fd5b565b600a54611992610b8d565b8261199d91906136ea565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906135ca565b60405180910390fd5b6119e8828261272d565b5050565b600090565b60006119fc82611ea7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a8861184f565b73ffffffffffffffffffffffffffffffffffffffff161480611ab75750611ab685611ab161184f565b61167f565b5b80611afc5750611ac561184f565b73ffffffffffffffffffffffffffffffffffffffff16611ae4846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ba98585856001612a09565b611bb560008487611857565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e35576000548214611e3457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea08585856001612adf565b5050505050565b611eaf612c20565b600082905080611ebd6119ec565b116120fb576000548110156120fa576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120f857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fdc57809250505061212d565b5b6001156120f757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f257809250505061212d565b611fdd565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000803360405160200161220c919061339f565b60405160208183030381529060405280519060200120905061223183600d5483612ae5565b915050919050565b600b54811115801561224b5750600081115b61228a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122819061352a565b60405180910390fd5b60008061229d61229861184f565b610de3565b146122a95760006122ac565b60015b60ff16905080826122bd91906137cb565b6009546122ca9190613771565b34101561230c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123039061354a565b60405180910390fd5b61231d61231761184f565b83611987565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c0161236361184f565b846040518363ffffffff1660e01b815260040161238192919061346e565b600060405180830381600087803b15801561239b57600080fd5b505af11580156123af573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240061184f565b8786866040518563ffffffff1660e01b81526004016124229493929190613422565b602060405180830381600087803b15801561243c57600080fd5b505af192505050801561246d57506040513d601f19601f8201168201806040525081019061246a919061307f565b60015b6124e7573d806000811461249d576040519150601f19603f3d011682016040523d82523d6000602084013e6124a2565b606091505b506000815114156124df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612549906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612575906138f5565b80156125c25780601f10612597576101008083540402835291602001916125c2565b820191906000526020600020905b8154815290600101906020018083116125a557829003601f168201915b5050505050905090565b60606000821415612614576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612728565b600082905060005b6000821461264657808061262f90613958565b915050600a8261263f9190613740565b915061261c565b60008167ffffffffffffffff81111561266257612661613ab2565b5b6040519080825280601f01601f1916602001820160405280156126945781602001600182028036833780820191505090505b5090505b60008514612721576001826126ad91906137cb565b9150600a856126bc91906139c5565b60306126c891906136ea565b60f81b8183815181106126de576126dd613a83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561271a9190613740565b9450612698565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156127d5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e26000848385612a09565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298557816000819055505050612a046000848385612adf565b505050565b612a1584848484612afc565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612ad957601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401612aa69291906133f9565b600060405180830381600087803b158015612ac057600080fd5b505af1158015612ad4573d6000803e3d6000fd5b505050505b50505050565b50505050565b600082612af28584612b02565b1490509392505050565b50505050565b60008082905060005b8451811015612b4d57612b3882868381518110612b2b57612b2a613a83565b5b6020026020010151612b58565b91508080612b4590613958565b915050612b0b565b508091505092915050565b6000818310612b7057612b6b8284612b83565b612b7b565b612b7a8383612b83565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ba6906138f5565b90600052602060002090601f016020900481019282612bc85760008555612c0f565b82601f10612be157803560ff1916838001178555612c0f565b82800160010185558215612c0f579182015b82811115612c0e578235825591602001919060010190612bf3565b5b509050612c1c9190612c63565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c7c576000816000905550600101612c64565b5090565b6000612c93612c8e8461364a565b613625565b90508083825260208201905082856020860282011115612cb657612cb5613aeb565b5b60005b85811015612ce65781612ccc8882612d8a565b845260208401935060208301925050600181019050612cb9565b5050509392505050565b6000612d03612cfe84613676565b613625565b905082815260208101848484011115612d1f57612d1e613af0565b5b612d2a8482856138b3565b509392505050565b600081359050612d4181613cfd565b92915050565b600082601f830112612d5c57612d5b613ae6565b5b8135612d6c848260208601612c80565b91505092915050565b600081359050612d8481613d14565b92915050565b600081359050612d9981613d2b565b92915050565b600081359050612dae81613d42565b92915050565b600081519050612dc381613d42565b92915050565b600082601f830112612dde57612ddd613ae6565b5b8135612dee848260208601612cf0565b91505092915050565b60008083601f840112612e0d57612e0c613ae6565b5b8235905067ffffffffffffffff811115612e2a57612e29613ae1565b5b602083019150836001820283011115612e4657612e45613aeb565b5b9250929050565b600081359050612e5c81613d59565b92915050565b600060208284031215612e7857612e77613afa565b5b6000612e8684828501612d32565b91505092915050565b60008060408385031215612ea657612ea5613afa565b5b6000612eb485828601612d32565b9250506020612ec585828601612d32565b9150509250929050565b600080600060608486031215612ee857612ee7613afa565b5b6000612ef686828701612d32565b9350506020612f0786828701612d32565b9250506040612f1886828701612e4d565b9150509250925092565b60008060008060808587031215612f3c57612f3b613afa565b5b6000612f4a87828801612d32565b9450506020612f5b87828801612d32565b9350506040612f6c87828801612e4d565b925050606085013567ffffffffffffffff811115612f8d57612f8c613af5565b5b612f9987828801612dc9565b91505092959194509250565b60008060408385031215612fbc57612fbb613afa565b5b6000612fca85828601612d32565b9250506020612fdb85828601612d75565b9150509250929050565b60008060408385031215612ffc57612ffb613afa565b5b600061300a85828601612d32565b925050602061301b85828601612e4d565b9150509250929050565b60006020828403121561303b5761303a613afa565b5b600061304984828501612d8a565b91505092915050565b60006020828403121561306857613067613afa565b5b600061307684828501612d9f565b91505092915050565b60006020828403121561309557613094613afa565b5b60006130a384828501612db4565b91505092915050565b600080602083850312156130c3576130c2613afa565b5b600083013567ffffffffffffffff8111156130e1576130e0613af5565b5b6130ed85828601612df7565b92509250509250929050565b60006020828403121561310f5761310e613afa565b5b600061311d84828501612e4d565b91505092915050565b6000806040838503121561313d5761313c613afa565b5b600061314b85828601612e4d565b925050602083013567ffffffffffffffff81111561316c5761316b613af5565b5b61317885828601612d47565b9150509250929050565b61318b816137ff565b82525050565b6131a261319d826137ff565b6139a1565b82525050565b6131b181613811565b82525050565b6131c08161381d565b82525050565b60006131d1826136a7565b6131db81856136bd565b93506131eb8185602086016138c2565b6131f481613aff565b840191505092915050565b6132088161387d565b82525050565b6000613219826136b2565b61322381856136ce565b93506132338185602086016138c2565b61323c81613aff565b840191505092915050565b6000613252826136b2565b61325c81856136df565b935061326c8185602086016138c2565b80840191505092915050565b60006132856026836136ce565b915061329082613b1d565b604082019050919050565b60006132a86024836136ce565b91506132b382613b6c565b604082019050919050565b60006132cb6016836136ce565b91506132d682613bbb565b602082019050919050565b60006132ee600c836136ce565b91506132f982613be4565b602082019050919050565b60006133116018836136ce565b915061331c82613c0d565b602082019050919050565b60006133346020836136ce565b915061333f82613c36565b602082019050919050565b60006133576021836136ce565b915061336282613c5f565b604082019050919050565b600061337a6022836136ce565b915061338582613cae565b604082019050919050565b61339981613873565b82525050565b60006133ab8284613191565b60148201915081905092915050565b60006133c68285613247565b91506133d28284613247565b91508190509392505050565b60006020820190506133f36000830184613182565b92915050565b600060408201905061340e6000830185613182565b61341b6020830184613182565b9392505050565b60006080820190506134376000830187613182565b6134446020830186613182565b6134516040830185613390565b818103606083015261346381846131c6565b905095945050505050565b60006040820190506134836000830185613182565b6134906020830184613390565b9392505050565b60006020820190506134ac60008301846131a8565b92915050565b60006020820190506134c760008301846131b7565b92915050565b60006020820190506134e260008301846131ff565b92915050565b60006020820190508181036000830152613502818461320e565b905092915050565b6000602082019050818103600083015261352381613278565b9050919050565b600060208201905081810360008301526135438161329b565b9050919050565b60006020820190508181036000830152613563816132be565b9050919050565b60006020820190508181036000830152613583816132e1565b9050919050565b600060208201905081810360008301526135a381613304565b9050919050565b600060208201905081810360008301526135c381613327565b9050919050565b600060208201905081810360008301526135e38161334a565b9050919050565b600060208201905081810360008301526136038161336d565b9050919050565b600060208201905061361f6000830184613390565b92915050565b600061362f613640565b905061363b8282613927565b919050565b6000604051905090565b600067ffffffffffffffff82111561366557613664613ab2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561369157613690613ab2565b5b61369a82613aff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f582613873565b915061370083613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613735576137346139f6565b5b828201905092915050565b600061374b82613873565b915061375683613873565b92508261376657613765613a25565b5b828204905092915050565b600061377c82613873565b915061378783613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c0576137bf6139f6565b5b828202905092915050565b60006137d682613873565b91506137e183613873565b9250828210156137f4576137f36139f6565b5b828203905092915050565b600061380a82613853565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006138888261388f565b9050919050565b600061389a826138a1565b9050919050565b60006138ac82613853565b9050919050565b82818337600083830152505050565b60005b838110156138e05780820151818401526020810190506138c5565b838111156138ef576000848401525b50505050565b6000600282049050600182168061390d57607f821691505b6020821081141561392157613920613a54565b5b50919050565b61393082613aff565b810181811067ffffffffffffffff8211171561394f5761394e613ab2565b5b80604052505050565b600061396382613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613996576139956139f6565b5b600182019050919050565b60006139ac826139b3565b9050919050565b60006139be82613b10565b9050919050565b60006139d082613873565b91506139db83613873565b9250826139eb576139ea613a25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b613d06816137ff565b8114613d1157600080fd5b50565b613d1d81613811565b8114613d2857600080fd5b50565b613d348161381d565b8114613d3f57600080fd5b50565b613d4b81613827565b8114613d5657600080fd5b50565b613d6281613873565b8114613d6d57600080fd5b5056fea2646970667358221220e419d0a097ee52249e8a1bd2feed3b2bd84f5d04677fcffdeffbc00e0e17ce3064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d3dd5fe01161006f578063d3dd5fe014610772578063d5abeb0114610789578063d96a094a146107b4578063e985e9c5146107d0578063f2fde38b1461080d5761021a565b8063a22cb4651461068f578063b88d4fde146106b8578063bc337182146106e1578063c3b97ad21461070a578063c87b56dd146107355761021a565b80638da5cb5b116100f25780638da5cb5b146105bc5780638e39f515146105e757806391b7f5ed1461061057806395d89b4114610639578063a035b1fe146106645761021a565b8063715018a6146105355780637437681e1461054c5780637cb647591461057757806381814492146105a05761021a565b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e1461045257806348c54b9d1461047b5780636352211e146104925780636f8b44b0146104cf57806370a08231146104f85761021a565b80632eb4a7ab146103d057806330176e13146103fb57806334393743146104245780633ccfd60b1461043b5761021a565b806309bd4c31116101ed57806309bd4c31146102ed578063144fa6d71461031657806318160ddd1461033f57806323b872dd1461036a57806327b1425a146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613052565b610836565b6040516102539190613497565b60405180910390f35b34801561026857600080fd5b50610271610918565b60405161027e91906134e8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906130f9565b6109aa565b6040516102bb91906133de565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612fe5565b610a26565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612fe5565b610b2b565b005b34801561032257600080fd5b5061033d60048036038101906103389190612e62565b610b41565b005b34801561034b57600080fd5b50610354610b8d565b604051610361919061360a565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612ecf565b610ba4565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612e62565b610bb4565b6040516103c7919061360a565b60405180910390f35b3480156103dc57600080fd5b506103e5610bcc565b6040516103f291906134b2565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d91906130ac565b610bd2565b005b34801561043057600080fd5b50610439610bf0565b005b34801561044757600080fd5b50610450610c24565b005b34801561045e57600080fd5b5061047960048036038101906104749190612ecf565b610c7c565b005b34801561048757600080fd5b50610490610c9c565b005b34801561049e57600080fd5b506104b960048036038101906104b491906130f9565b610dbb565b6040516104c691906133de565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906130f9565b610dd1565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612e62565b610de3565b60405161052c919061360a565b60405180910390f35b34801561054157600080fd5b5061054a610eb3565b005b34801561055857600080fd5b50610561610ec7565b60405161056e919061360a565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613025565b610ecd565b005b6105ba60048036038101906105b59190613126565b610edf565b005b3480156105c857600080fd5b506105d16110a0565b6040516105de91906133de565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906130f9565b6110ca565b005b34801561061c57600080fd5b50610637600480360381019061063291906130f9565b61115c565b005b34801561064557600080fd5b5061064e61116e565b60405161065b91906134e8565b60405180910390f35b34801561067057600080fd5b50610679611200565b604051610686919061360a565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612fa5565b611206565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612f22565b61137e565b005b3480156106ed57600080fd5b50610708600480360381019061070391906130f9565b6113f6565b005b34801561071657600080fd5b5061071f611408565b60405161072c91906134cd565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906130f9565b61142e565b60405161076991906134e8565b60405180910390f35b34801561077e57600080fd5b506107876114cd565b005b34801561079557600080fd5b5061079e611501565b6040516107ab919061360a565b60405180910390f35b6107ce60048036038101906107c991906130f9565b611507565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612e8f565b61167f565b6040516108049190613497565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612e62565b611713565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610911575061091082611797565b5b9050919050565b606060028054610927906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138f5565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b582611801565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab861184f565b73ffffffffffffffffffffffffffffffffffffffff1614610b1b57610ae481610adf61184f565b61167f565b610b1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b26838383611857565b505050565b610b33611909565b610b3d8282611987565b5050565b610b49611909565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b976119ec565b6001546000540303905090565b610baf8383836119f1565b505050565b600c6020528060005260406000206000915090505481565b600d5481565b610bda611909565b8181600f9190610beb929190612b9a565b505050565b610bf8611909565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610c2c611909565b610c3461184f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b50565b610c978383836040518060200160405280600081525061137e565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610cfa9291906133f9565b600060405180830381600087803b158015610d1457600080fd5b505af1158015610d28573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610d8791906133de565b600060405180830381600087803b158015610da157600080fd5b505af1158015610db5573d6000803e3d6000fd5b50505050565b6000610dc682611ea7565b600001519050919050565b610dd9611909565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ebb611909565b610ec56000612132565b565b600b5481565b610ed5611909565b80600d8190555050565b600e60019054906101000a900460ff16610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061356a565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f7c91906136ea565b1115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906135ea565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100891906136ea565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611054816121f8565b611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061358a565b60405180910390fd5b61109c82612239565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b815260040161112792919061346e565b600060405180830381600087803b15801561114157600080fd5b505af1158015611155573d6000803e3d6000fd5b5050505050565b611164611909565b8060098190555050565b60606003805461117d906138f5565b80601f01602080910402602001604051908101604052809291908181526020018280546111a9906138f5565b80156111f65780601f106111cb576101008083540402835291602001916111f6565b820191906000526020600020905b8154815290600101906020018083116111d957829003601f168201915b5050505050905090565b60095481565b61120e61184f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611273576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061128061184f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132d61184f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113729190613497565b60405180910390a35050565b6113898484846119f1565b6113a88373ffffffffffffffffffffffffffffffffffffffff166123b7565b156113f0576113b9848484846123da565b6113ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113fe611909565b80600b8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061143982611801565b61146f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061147961253a565b905060008151141561149a57604051806020016040528060008152506114c5565b806114a4846125cc565b6040516020016114b59291906133ba565b6040516020818303038152906040525b915050919050565b6114d5611909565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600a5481565b600e60009054906101000a900460ff16611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d9061356a565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a491906136ea565b11156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc906135ea565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163091906136ea565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061167c81612239565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171b611909565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117829061350a565b60405180910390fd5b61179481612132565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161180c6119ec565b1115801561181b575060005482105b8015611848575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61191161184f565b73ffffffffffffffffffffffffffffffffffffffff1661192f6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906135aa565b60405180910390fd5b565b600a54611992610b8d565b8261199d91906136ea565b11156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906135ca565b60405180910390fd5b6119e8828261272d565b5050565b600090565b60006119fc82611ea7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a8861184f565b73ffffffffffffffffffffffffffffffffffffffff161480611ab75750611ab685611ab161184f565b61167f565b5b80611afc5750611ac561184f565b73ffffffffffffffffffffffffffffffffffffffff16611ae4846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ba98585856001612a09565b611bb560008487611857565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e35576000548214611e3457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea08585856001612adf565b5050505050565b611eaf612c20565b600082905080611ebd6119ec565b116120fb576000548110156120fa576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120f857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fdc57809250505061212d565b5b6001156120f757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f257809250505061212d565b611fdd565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000803360405160200161220c919061339f565b60405160208183030381529060405280519060200120905061223183600d5483612ae5565b915050919050565b600b54811115801561224b5750600081115b61228a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122819061352a565b60405180910390fd5b60008061229d61229861184f565b610de3565b146122a95760006122ac565b60015b60ff16905080826122bd91906137cb565b6009546122ca9190613771565b34101561230c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123039061354a565b60405180910390fd5b61231d61231761184f565b83611987565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c0161236361184f565b846040518363ffffffff1660e01b815260040161238192919061346e565b600060405180830381600087803b15801561239b57600080fd5b505af11580156123af573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240061184f565b8786866040518563ffffffff1660e01b81526004016124229493929190613422565b602060405180830381600087803b15801561243c57600080fd5b505af192505050801561246d57506040513d601f19601f8201168201806040525081019061246a919061307f565b60015b6124e7573d806000811461249d576040519150601f19603f3d011682016040523d82523d6000602084013e6124a2565b606091505b506000815114156124df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612549906138f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612575906138f5565b80156125c25780601f10612597576101008083540402835291602001916125c2565b820191906000526020600020905b8154815290600101906020018083116125a557829003601f168201915b5050505050905090565b60606000821415612614576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612728565b600082905060005b6000821461264657808061262f90613958565b915050600a8261263f9190613740565b915061261c565b60008167ffffffffffffffff81111561266257612661613ab2565b5b6040519080825280601f01601f1916602001820160405280156126945781602001600182028036833780820191505090505b5090505b60008514612721576001826126ad91906137cb565b9150600a856126bc91906139c5565b60306126c891906136ea565b60f81b8183815181106126de576126dd613a83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561271a9190613740565b9450612698565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156127d5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e26000848385612a09565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298557816000819055505050612a046000848385612adf565b505050565b612a1584848484612afc565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612ad957601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401612aa69291906133f9565b600060405180830381600087803b158015612ac057600080fd5b505af1158015612ad4573d6000803e3d6000fd5b505050505b50505050565b50505050565b600082612af28584612b02565b1490509392505050565b50505050565b60008082905060005b8451811015612b4d57612b3882868381518110612b2b57612b2a613a83565b5b6020026020010151612b58565b91508080612b4590613958565b915050612b0b565b508091505092915050565b6000818310612b7057612b6b8284612b83565b612b7b565b612b7a8383612b83565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ba6906138f5565b90600052602060002090601f016020900481019282612bc85760008555612c0f565b82601f10612be157803560ff1916838001178555612c0f565b82800160010185558215612c0f579182015b82811115612c0e578235825591602001919060010190612bf3565b5b509050612c1c9190612c63565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c7c576000816000905550600101612c64565b5090565b6000612c93612c8e8461364a565b613625565b90508083825260208201905082856020860282011115612cb657612cb5613aeb565b5b60005b85811015612ce65781612ccc8882612d8a565b845260208401935060208301925050600181019050612cb9565b5050509392505050565b6000612d03612cfe84613676565b613625565b905082815260208101848484011115612d1f57612d1e613af0565b5b612d2a8482856138b3565b509392505050565b600081359050612d4181613cfd565b92915050565b600082601f830112612d5c57612d5b613ae6565b5b8135612d6c848260208601612c80565b91505092915050565b600081359050612d8481613d14565b92915050565b600081359050612d9981613d2b565b92915050565b600081359050612dae81613d42565b92915050565b600081519050612dc381613d42565b92915050565b600082601f830112612dde57612ddd613ae6565b5b8135612dee848260208601612cf0565b91505092915050565b60008083601f840112612e0d57612e0c613ae6565b5b8235905067ffffffffffffffff811115612e2a57612e29613ae1565b5b602083019150836001820283011115612e4657612e45613aeb565b5b9250929050565b600081359050612e5c81613d59565b92915050565b600060208284031215612e7857612e77613afa565b5b6000612e8684828501612d32565b91505092915050565b60008060408385031215612ea657612ea5613afa565b5b6000612eb485828601612d32565b9250506020612ec585828601612d32565b9150509250929050565b600080600060608486031215612ee857612ee7613afa565b5b6000612ef686828701612d32565b9350506020612f0786828701612d32565b9250506040612f1886828701612e4d565b9150509250925092565b60008060008060808587031215612f3c57612f3b613afa565b5b6000612f4a87828801612d32565b9450506020612f5b87828801612d32565b9350506040612f6c87828801612e4d565b925050606085013567ffffffffffffffff811115612f8d57612f8c613af5565b5b612f9987828801612dc9565b91505092959194509250565b60008060408385031215612fbc57612fbb613afa565b5b6000612fca85828601612d32565b9250506020612fdb85828601612d75565b9150509250929050565b60008060408385031215612ffc57612ffb613afa565b5b600061300a85828601612d32565b925050602061301b85828601612e4d565b9150509250929050565b60006020828403121561303b5761303a613afa565b5b600061304984828501612d8a565b91505092915050565b60006020828403121561306857613067613afa565b5b600061307684828501612d9f565b91505092915050565b60006020828403121561309557613094613afa565b5b60006130a384828501612db4565b91505092915050565b600080602083850312156130c3576130c2613afa565b5b600083013567ffffffffffffffff8111156130e1576130e0613af5565b5b6130ed85828601612df7565b92509250509250929050565b60006020828403121561310f5761310e613afa565b5b600061311d84828501612e4d565b91505092915050565b6000806040838503121561313d5761313c613afa565b5b600061314b85828601612e4d565b925050602083013567ffffffffffffffff81111561316c5761316b613af5565b5b61317885828601612d47565b9150509250929050565b61318b816137ff565b82525050565b6131a261319d826137ff565b6139a1565b82525050565b6131b181613811565b82525050565b6131c08161381d565b82525050565b60006131d1826136a7565b6131db81856136bd565b93506131eb8185602086016138c2565b6131f481613aff565b840191505092915050565b6132088161387d565b82525050565b6000613219826136b2565b61322381856136ce565b93506132338185602086016138c2565b61323c81613aff565b840191505092915050565b6000613252826136b2565b61325c81856136df565b935061326c8185602086016138c2565b80840191505092915050565b60006132856026836136ce565b915061329082613b1d565b604082019050919050565b60006132a86024836136ce565b91506132b382613b6c565b604082019050919050565b60006132cb6016836136ce565b91506132d682613bbb565b602082019050919050565b60006132ee600c836136ce565b91506132f982613be4565b602082019050919050565b60006133116018836136ce565b915061331c82613c0d565b602082019050919050565b60006133346020836136ce565b915061333f82613c36565b602082019050919050565b60006133576021836136ce565b915061336282613c5f565b604082019050919050565b600061337a6022836136ce565b915061338582613cae565b604082019050919050565b61339981613873565b82525050565b60006133ab8284613191565b60148201915081905092915050565b60006133c68285613247565b91506133d28284613247565b91508190509392505050565b60006020820190506133f36000830184613182565b92915050565b600060408201905061340e6000830185613182565b61341b6020830184613182565b9392505050565b60006080820190506134376000830187613182565b6134446020830186613182565b6134516040830185613390565b818103606083015261346381846131c6565b905095945050505050565b60006040820190506134836000830185613182565b6134906020830184613390565b9392505050565b60006020820190506134ac60008301846131a8565b92915050565b60006020820190506134c760008301846131b7565b92915050565b60006020820190506134e260008301846131ff565b92915050565b60006020820190508181036000830152613502818461320e565b905092915050565b6000602082019050818103600083015261352381613278565b9050919050565b600060208201905081810360008301526135438161329b565b9050919050565b60006020820190508181036000830152613563816132be565b9050919050565b60006020820190508181036000830152613583816132e1565b9050919050565b600060208201905081810360008301526135a381613304565b9050919050565b600060208201905081810360008301526135c381613327565b9050919050565b600060208201905081810360008301526135e38161334a565b9050919050565b600060208201905081810360008301526136038161336d565b9050919050565b600060208201905061361f6000830184613390565b92915050565b600061362f613640565b905061363b8282613927565b919050565b6000604051905090565b600067ffffffffffffffff82111561366557613664613ab2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561369157613690613ab2565b5b61369a82613aff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f582613873565b915061370083613873565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613735576137346139f6565b5b828201905092915050565b600061374b82613873565b915061375683613873565b92508261376657613765613a25565b5b828204905092915050565b600061377c82613873565b915061378783613873565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c0576137bf6139f6565b5b828202905092915050565b60006137d682613873565b91506137e183613873565b9250828210156137f4576137f36139f6565b5b828203905092915050565b600061380a82613853565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006138888261388f565b9050919050565b600061389a826138a1565b9050919050565b60006138ac82613853565b9050919050565b82818337600083830152505050565b60005b838110156138e05780820151818401526020810190506138c5565b838111156138ef576000848401525b50505050565b6000600282049050600182168061390d57607f821691505b6020821081141561392157613920613a54565b5b50919050565b61393082613aff565b810181811067ffffffffffffffff8211171561394f5761394e613ab2565b5b80604052505050565b600061396382613873565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613996576139956139f6565b5b600182019050919050565b60006139ac826139b3565b9050919050565b60006139be82613b10565b9050919050565b60006139d082613873565b91506139db83613873565b9250826139eb576139ea613a25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b613d06816137ff565b8114613d1157600080fd5b50565b613d1d81613811565b8114613d2857600080fd5b50565b613d348161381d565b8114613d3f57600080fd5b50565b613d4b81613827565b8114613d5657600080fd5b50565b613d6281613873565b8114613d6d57600080fd5b5056fea2646970667358221220e419d0a097ee52249e8a1bd2feed3b2bd84f5d04677fcffdeffbc00e0e17ce3064736f6c63430008070033

Deployed Bytecode Sourcemap

57166:3778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18556:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18118:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58565:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58240:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13177:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57318:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57377:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57919:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57719:89;;;;;;;;;;;;;:::i;:::-;;60021:111;;;;;;;;;;;;;:::i;:::-;;19662:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60351:141;;;;;;;;;;;;;:::i;:::-;;16860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58135:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14306:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56033:103;;;;;;;;;;;;;:::i;:::-;;57288:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58031:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58664:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60500:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57820:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57215:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18832:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19918:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58361:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57534:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57631:80;;;;;;;;;;;;;:::i;:::-;;57253:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59116:349;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19190:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13937:305;14039:4;14091:25;14076:40;;;:11;:40;;;;:105;;;;14148:33;14133:48;;;:11;:48;;;;14076:105;:158;;;;14198:36;14222:11;14198:23;:36::i;:::-;14076:158;14056:178;;13937:305;;;:::o;17052:100::-;17106:13;17139:5;17132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17052:100;:::o;18556:204::-;18624:7;18649:16;18657:7;18649;:16::i;:::-;18644:64;;18674:34;;;;;;;;;;;;;;18644:64;18728:15;:24;18744:7;18728:24;;;;;;;;;;;;;;;;;;;;;18721:31;;18556:204;;;:::o;18118:372::-;18191:13;18207:24;18223:7;18207:15;:24::i;:::-;18191:40;;18252:5;18246:11;;:2;:11;;;18242:48;;;18266:24;;;;;;;;;;;;;;18242:48;18323:5;18307:21;;:12;:10;:12::i;:::-;:21;;;18303:139;;18334:37;18351:5;18358:12;:10;:12::i;:::-;18334:16;:37::i;:::-;18330:112;;18395:35;;;;;;;;;;;;;;18330:112;18303:139;18454:28;18463:2;18467:7;18476:5;18454:8;:28::i;:::-;18180:310;18118:372;;:::o;58565:91::-;55271:13;:11;:13::i;:::-;58632:16:::1;58640:2;58644:3;58632:7;:16::i;:::-;58565:91:::0;;:::o;58240:109::-;55271:13;:11;:13::i;:::-;58331:9:::1;58307:10;;:34;;;;;;;;;;;;;;;;;;58240:109:::0;:::o;13177:312::-;13230:7;13455:15;:13;:15::i;:::-;13440:12;;13424:13;;:28;:46;13417:53;;13177:312;:::o;19421:170::-;19555:28;19565:4;19571:2;19575:7;19555:9;:28::i;:::-;19421:170;;;:::o;57318:50::-;;;;;;;;;;;;;;;;;:::o;57377:25::-;;;;:::o;57919:104::-;55271:13;:11;:13::i;:::-;58011:4:::1;;57996:12;:19;;;;;;;:::i;:::-;;57919:104:::0;;:::o;57719:89::-;55271:13;:11;:13::i;:::-;57789:11:::1;;;;;;;;;;;57788:12;57774:11;;:26;;;;;;;;;;;;;;;;;;57719:89::o:0;60021:111::-;55271:13;:11;:13::i;:::-;60079:12:::1;:10;:12::i;:::-;60071:30;;:53;60102:21;60071:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60021:111::o:0;19662:185::-;19800:39;19817:4;19823:2;19827:7;19800:39;;;;;;;;;;;;:16;:39::i;:::-;19662:185;;;:::o;60351:141::-;60394:10;;;;;;;;;;;:23;;;60418:10;60438:1;60394:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60452:10;;;;;;;;;;;:20;;;60473:10;60452:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60351:141::o;16860:125::-;16924:7;16951:21;16964:7;16951:12;:21::i;:::-;:26;;;16944:33;;16860:125;;;:::o;58135:97::-;55271:13;:11;:13::i;:::-;58215:9:::1;58203;:21;;;;58135:97:::0;:::o;14306:206::-;14370:7;14411:1;14394:19;;:5;:19;;;14390:60;;;14422:28;;;;;;;;;;;;;;14390:60;14476:12;:19;14489:5;14476:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;14468:36;;14461:43;;14306:206;;;:::o;56033:103::-;55271:13;:11;:13::i;:::-;56098:30:::1;56125:1;56098:18;:30::i;:::-;56033:103::o:0;57288:21::-;;;;:::o;58031:92::-;55271:13;:11;:13::i;:::-;58111:4:::1;58098:10;:17;;;;58031:92:::0;:::o;58664:440::-;58750:11;;;;;;;;;;;58742:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58848:5;;58841:3;58811:15;:27;58827:10;58811:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58789:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59012:3;58969:15;:27;58985:10;58969:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58926:15;:27;58942:10;58926:27;;;;;;;;;;;;;;;:89;;;;59034:13;59041:5;59034:6;:13::i;:::-;59026:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;59087:9;59092:3;59087:4;:9::i;:::-;58664:440;;:::o;55385:87::-;55431:7;55458:6;;;;;;;;;;;55451:13;;55385:87;:::o;60500:103::-;60558:10;;;;;;;;;;;:16;;;60575:10;60587:7;60558:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60500:103;:::o;57820:87::-;55271:13;:11;:13::i;:::-;57891:8:::1;57883:5;:16;;;;57820:87:::0;:::o;17221:104::-;17277:13;17310:7;17303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17221:104;:::o;57215:31::-;;;;:::o;18832:287::-;18943:12;:10;:12::i;:::-;18931:24;;:8;:24;;;18927:54;;;18964:17;;;;;;;;;;;;;;18927:54;19039:8;18994:18;:32;19013:12;:10;:12::i;:::-;18994:32;;;;;;;;;;;;;;;:42;19027:8;18994:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;19092:8;19063:48;;19078:12;:10;:12::i;:::-;19063:48;;;19102:8;19063:48;;;;;;:::i;:::-;;;;;;;;18832:287;;:::o;19918:370::-;20085:28;20095:4;20101:2;20105:7;20085:9;:28::i;:::-;20128:15;:2;:13;;;:15::i;:::-;20124:157;;;20149:56;20180:4;20186:2;20190:7;20199:5;20149:30;:56::i;:::-;20145:136;;20229:40;;;;;;;;;;;;;;20145:136;20124:157;19918:370;;;;:::o;58361:83::-;55271:13;:11;:13::i;:::-;58430:6:::1;58422:5;:14;;;;58361:83:::0;:::o;57534:28::-;;;;;;;;;;;;;:::o;17396:318::-;17469:13;17500:16;17508:7;17500;:16::i;:::-;17495:59;;17525:29;;;;;;;;;;;;;;17495:59;17567:21;17591:10;:8;:10::i;:::-;17567:34;;17644:1;17625:7;17619:21;:26;;:87;;;;;;;;;;;;;;;;;17672:7;17681:18;:7;:16;:18::i;:::-;17655:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17619:87;17612:94;;;17396:318;;;:::o;57631:80::-;55271:13;:11;:13::i;:::-;57695:8:::1;;;;;;;;;;;57694:9;57683:8;;:20;;;;;;;;;;;;;;;;;;57631:80::o:0;57253:28::-;;;;:::o;59116:349::-;59175:8;;;;;;;;;;;59167:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;59270:5;;59263:3;59233:15;:27;59249:10;59233:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59211:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59434:3;59391:15;:27;59407:10;59391:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59348:15;:27;59364:10;59348:27;;;;;;;;;;;;;;;:89;;;;59448:9;59453:3;59448:4;:9::i;:::-;59116:349;:::o;19190:164::-;19287:4;19311:18;:25;19330:5;19311:25;;;;;;;;;;;;;;;:35;19337:8;19311:35;;;;;;;;;;;;;;;;;;;;;;;;;19304:42;;19190:164;;;;:::o;56291:201::-;55271:13;:11;:13::i;:::-;56400:1:::1;56380:22;;:8;:22;;;;56372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:28;56475:8;56456:18;:28::i;:::-;56291:201:::0;:::o;10978:157::-;11063:4;11102:25;11087:40;;;:11;:40;;;;11080:47;;10978:157;;;:::o;20543:174::-;20600:4;20643:7;20624:15;:13;:15::i;:::-;:26;;:53;;;;;20664:13;;20654:7;:23;20624:53;:85;;;;;20682:11;:20;20694:7;20682:20;;;;;;;;;;;:27;;;;;;;;;;;;20681:28;20624:85;20617:92;;20543:174;;;:::o;9966:98::-;10019:7;10046:10;10039:17;;9966:98;:::o;29765:196::-;29907:2;29880:15;:24;29896:7;29880:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29945:7;29941:2;29925:28;;29934:5;29925:28;;;;;;;;;;;;29765:196;;;:::o;55550:132::-;55625:12;:10;:12::i;:::-;55614:23;;:7;:5;:7::i;:::-;:23;;;55606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55550:132::o;59839:170::-;59929:9;;59912:13;:11;:13::i;:::-;59906:3;:19;;;;:::i;:::-;:32;;59898:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;59987:14;59993:2;59997:3;59987:5;:14::i;:::-;59839:170;;:::o;12951:92::-;13007:7;12951:92;:::o;24713:2130::-;24828:35;24866:21;24879:7;24866:12;:21::i;:::-;24828:59;;24926:4;24904:26;;:13;:18;;;:26;;;24900:67;;24939:28;;;;;;;;;;;;;;24900:67;24980:22;25022:4;25006:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;25043:36;25060:4;25066:12;:10;:12::i;:::-;25043:16;:36::i;:::-;25006:73;:126;;;;25120:12;:10;:12::i;:::-;25096:36;;:20;25108:7;25096:11;:20::i;:::-;:36;;;25006:126;24980:153;;25151:17;25146:66;;25177:35;;;;;;;;;;;;;;25146:66;25241:1;25227:16;;:2;:16;;;25223:52;;;25252:23;;;;;;;;;;;;;;25223:52;25288:43;25310:4;25316:2;25320:7;25329:1;25288:21;:43::i;:::-;25396:35;25413:1;25417:7;25426:4;25396:8;:35::i;:::-;25757:1;25727:12;:18;25740:4;25727:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;25773:12;:16;25786:2;25773:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25819:31;25853:11;:20;25865:7;25853:20;;;;;;;;;;;25819:54;;25904:2;25888:8;:13;;;:18;;;;;;;;;;;;;;;;;;25954:15;25921:8;:23;;;:49;;;;;;;;;;;;;;;;;;26222:19;26254:1;26244:7;:11;26222:33;;26270:31;26304:11;:24;26316:11;26304:24;;;;;;;;;;;26270:58;;26372:1;26347:27;;:8;:13;;;;;;;;;;;;:27;;;26343:384;;;26557:13;;26542:11;:28;26538:174;;26611:4;26595:8;:13;;;:20;;;;;;;;;;;;;;;;;;26664:13;:28;;;26638:8;:23;;;:54;;;;;;;;;;;;;;;;;;26538:174;26343:384;25702:1036;;;26774:7;26770:2;26755:27;;26764:4;26755:27;;;;;;;;;;;;26793:42;26814:4;26820:2;26824:7;26833:1;26793:20;:42::i;:::-;24817:2026;;24713:2130;;;:::o;15687:1111::-;15749:21;;:::i;:::-;15783:12;15798:7;15783:22;;15866:4;15847:15;:13;:15::i;:::-;:23;15843:888;;15883:13;;15876:4;:20;15872:859;;;15917:31;15951:11;:17;15963:4;15951:17;;;;;;;;;;;15917:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15992:9;:16;;;15987:729;;16063:1;16037:28;;:9;:14;;;:28;;;16033:101;;16101:9;16094:16;;;;;;16033:101;16436:261;16443:4;16436:261;;;16476:6;;;;;;;;16521:11;:17;16533:4;16521:17;;;;;;;;;;;16509:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16595:1;16569:28;;:9;:14;;;:28;;;16565:109;;16637:9;16630:16;;;;;;16565:109;16436:261;;;15987:729;15898:833;15872:859;15843:888;16759:31;;;;;;;;;;;;;;15687:1111;;;;:::o;56652:191::-;56726:16;56745:6;;;;;;;;;;;56726:25;;56771:8;56762:6;;:17;;;;;;;;;;;;;;;;;;56826:8;56795:40;;56816:8;56795:40;;;;;;;;;;;;56715:128;56652:191;:::o;60140:203::-;60203:4;60220:12;60262:10;60245:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60235:39;;;;;;60220:54;;60292:43;60311:5;60318:10;;60330:4;60292:18;:43::i;:::-;60285:50;;;60140:203;;;:::o;59473:358::-;59532:5;;59525:3;:12;;:23;;;;;59547:1;59541:3;:7;59525:23;59517:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59600:9;59639:1;59612:23;59622:12;:10;:12::i;:::-;59612:9;:23::i;:::-;:28;:36;;59647:1;59612:36;;;59643:1;59612:36;59600:48;;;;59695:4;59689:3;:10;;;;:::i;:::-;59680:5;;:20;;;;:::i;:::-;59667:9;:33;;59659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59738:26;59746:12;:10;:12::i;:::-;59760:3;59738:7;:26::i;:::-;59775:10;;;;;;;;;;;:29;;;59805:12;:10;:12::i;:::-;59819:3;59775:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59506:325;59473:358;:::o;37354:326::-;37414:4;37671:1;37649:7;:19;;;:23;37642:30;;37354:326;;;:::o;30453:667::-;30616:4;30653:2;30637:36;;;30674:12;:10;:12::i;:::-;30688:4;30694:7;30703:5;30637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30633:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:1;30871:6;:13;:18;30867:235;;;30917:40;;;;;;;;;;;;;;30867:235;31060:6;31054:13;31045:6;31041:2;31037:15;31030:38;30633:480;30766:45;;;30756:55;;;:6;:55;;;;30749:62;;;30453:667;;;;;;:::o;58452:105::-;58504:13;58537:12;58530:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58452:105;:::o;34112:723::-;34168:13;34398:1;34389:5;:10;34385:53;;;34416:10;;;;;;;;;;;;;;;;;;;;;34385:53;34448:12;34463:5;34448:20;;34479:14;34504:78;34519:1;34511:4;:9;34504:78;;34537:8;;;;;:::i;:::-;;;;34568:2;34560:10;;;;;:::i;:::-;;;34504:78;;;34592:19;34624:6;34614:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:39;;34642:154;34658:1;34649:5;:10;34642:154;;34686:1;34676:11;;;;;:::i;:::-;;;34753:2;34745:5;:10;;;;:::i;:::-;34732:2;:24;;;;:::i;:::-;34719:39;;34702:6;34709;34702:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;34782:2;34773:11;;;;;:::i;:::-;;;34642:154;;;34820:6;34806:21;;;;;34112:723;;;;:::o;23286:1173::-;23351:20;23374:13;;23351:36;;23416:1;23402:16;;:2;:16;;;23398:48;;;23427:19;;;;;;;;;;;;;;23398:48;23473:1;23461:8;:13;23457:44;;;23483:18;;;;;;;;;;;;;;23457:44;23514:61;23544:1;23548:2;23552:12;23566:8;23514:21;:61::i;:::-;23887:8;23852:12;:16;23865:2;23852:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23951:8;23911:12;:16;23924:2;23911:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24010:2;23977:11;:25;23989:12;23977:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24077:15;24027:11;:25;24039:12;24027:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;24110:20;24133:12;24110:35;;24160:11;24189:8;24174:12;:23;24160:37;;24214:111;24266:14;;;;;;24262:2;24241:40;;24258:1;24241:40;;;;;;;;;;;;24320:3;24305:12;:18;24214:111;;24357:12;24341:13;:28;;;;23827:554;;24391:60;24420:1;24424:2;24428:12;24442:8;24391:20;:60::i;:::-;23340:1119;23286:1173;;:::o;60611:330::-;60783:56;60811:4;60817:2;60821:7;60830:8;60783:27;:56::i;:::-;60870:1;60854:18;;:4;:18;;;60850:84;;60889:10;;;;;;;;;;;:23;;;60913:4;60919:2;60889:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60850:84;60611:330;;;;:::o;32586:158::-;;;;;:::o;46697:190::-;46822:4;46875;46846:25;46859:5;46866:4;46846:12;:25::i;:::-;:33;46839:40;;46697:190;;;;;:::o;31768:159::-;;;;;:::o;47564:296::-;47647:7;47667:20;47690:4;47667:27;;47710:9;47705:118;47729:5;:12;47725:1;:16;47705:118;;;47778:33;47788:12;47802:5;47808:1;47802:8;;;;;;;;:::i;:::-;;;;;;;;47778:9;:33::i;:::-;47763:48;;47743:3;;;;;:::i;:::-;;;;47705:118;;;;47840:12;47833:19;;;47564:296;;;;:::o;53771:149::-;53834:7;53865:1;53861;:5;:51;;53892:20;53907:1;53910;53892:14;:20::i;:::-;53861:51;;;53869:20;53884:1;53887;53869:14;:20::i;:::-;53861:51;53854:58;;53771:149;;;;:::o;53928:268::-;53996:13;54103:1;54097:4;54090:15;54132:1;54126:4;54119:15;54173:4;54167;54157:21;54148:30;;53928:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330: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:169::-;10279:56;10329:5;10279:56;:::i;:::-;10274:3;10267:69;10173:169;;:::o;10348:364::-;10436:3;10464:39;10497:5;10464:39;:::i;:::-;10519:71;10583:6;10578:3;10519:71;:::i;:::-;10512:78;;10599:52;10644:6;10639:3;10632:4;10625:5;10621:16;10599:52;:::i;:::-;10676:29;10698:6;10676:29;:::i;:::-;10671:3;10667:39;10660:46;;10440:272;10348:364;;;;:::o;10718:377::-;10824:3;10852:39;10885:5;10852:39;:::i;:::-;10907:89;10989:6;10984:3;10907:89;:::i;:::-;10900:96;;11005:52;11050:6;11045:3;11038:4;11031:5;11027:16;11005:52;:::i;:::-;11082:6;11077:3;11073:16;11066:23;;10828:267;10718:377;;;;:::o;11101:366::-;11243:3;11264:67;11328:2;11323:3;11264:67;:::i;:::-;11257:74;;11340:93;11429:3;11340:93;:::i;:::-;11458:2;11453:3;11449:12;11442:19;;11101:366;;;:::o;11473:::-;11615:3;11636:67;11700:2;11695:3;11636:67;:::i;:::-;11629:74;;11712:93;11801:3;11712:93;:::i;:::-;11830:2;11825:3;11821:12;11814:19;;11473:366;;;:::o;11845:::-;11987:3;12008:67;12072:2;12067:3;12008:67;:::i;:::-;12001:74;;12084:93;12173:3;12084:93;:::i;:::-;12202:2;12197:3;12193:12;12186:19;;11845:366;;;:::o;12217:::-;12359:3;12380:67;12444:2;12439:3;12380:67;:::i;:::-;12373:74;;12456:93;12545:3;12456:93;:::i;:::-;12574:2;12569:3;12565:12;12558:19;;12217:366;;;:::o;12589:::-;12731:3;12752:67;12816:2;12811:3;12752:67;:::i;:::-;12745:74;;12828:93;12917:3;12828:93;:::i;:::-;12946:2;12941:3;12937:12;12930:19;;12589:366;;;:::o;12961:::-;13103:3;13124:67;13188:2;13183:3;13124:67;:::i;:::-;13117:74;;13200:93;13289:3;13200:93;:::i;:::-;13318:2;13313:3;13309:12;13302:19;;12961:366;;;:::o;13333:::-;13475:3;13496:67;13560:2;13555:3;13496:67;:::i;:::-;13489:74;;13572:93;13661:3;13572:93;:::i;:::-;13690:2;13685:3;13681:12;13674:19;;13333:366;;;:::o;13705:::-;13847:3;13868:67;13932:2;13927:3;13868:67;:::i;:::-;13861:74;;13944:93;14033:3;13944:93;:::i;:::-;14062:2;14057:3;14053:12;14046:19;;13705:366;;;:::o;14077:118::-;14164:24;14182:5;14164:24;:::i;:::-;14159:3;14152:37;14077:118;;:::o;14201:256::-;14313:3;14328:75;14399:3;14390:6;14328:75;:::i;:::-;14428:2;14423:3;14419:12;14412:19;;14448:3;14441:10;;14201:256;;;;:::o;14463:435::-;14643:3;14665:95;14756:3;14747:6;14665:95;:::i;:::-;14658:102;;14777:95;14868:3;14859:6;14777:95;:::i;:::-;14770:102;;14889:3;14882:10;;14463:435;;;;;:::o;14904:222::-;14997:4;15035:2;15024:9;15020:18;15012:26;;15048:71;15116:1;15105:9;15101:17;15092:6;15048:71;:::i;:::-;14904:222;;;;:::o;15132:332::-;15253:4;15291:2;15280:9;15276:18;15268:26;;15304:71;15372:1;15361:9;15357:17;15348:6;15304:71;:::i;:::-;15385:72;15453:2;15442:9;15438:18;15429:6;15385:72;:::i;:::-;15132:332;;;;;:::o;15470:640::-;15665:4;15703:3;15692:9;15688:19;15680:27;;15717:71;15785:1;15774:9;15770:17;15761:6;15717:71;:::i;:::-;15798:72;15866:2;15855:9;15851:18;15842:6;15798:72;:::i;:::-;15880;15948:2;15937:9;15933:18;15924:6;15880:72;:::i;:::-;15999:9;15993:4;15989:20;15984:2;15973:9;15969:18;15962:48;16027:76;16098:4;16089:6;16027:76;:::i;:::-;16019:84;;15470:640;;;;;;;:::o;16116:332::-;16237:4;16275:2;16264:9;16260:18;16252:26;;16288:71;16356:1;16345:9;16341:17;16332:6;16288:71;:::i;:::-;16369:72;16437:2;16426:9;16422:18;16413:6;16369:72;:::i;:::-;16116:332;;;;;:::o;16454:210::-;16541:4;16579:2;16568:9;16564:18;16556:26;;16592:65;16654:1;16643:9;16639:17;16630:6;16592:65;:::i;:::-;16454:210;;;;:::o;16670:222::-;16763:4;16801:2;16790:9;16786:18;16778:26;;16814:71;16882:1;16871:9;16867:17;16858:6;16814:71;:::i;:::-;16670:222;;;;:::o;16898:260::-;17010:4;17048:2;17037:9;17033:18;17025:26;;17061:90;17148:1;17137:9;17133:17;17124:6;17061:90;:::i;:::-;16898:260;;;;:::o;17164:313::-;17277:4;17315:2;17304:9;17300:18;17292:26;;17364:9;17358:4;17354:20;17350:1;17339:9;17335:17;17328:47;17392:78;17465:4;17456:6;17392:78;:::i;:::-;17384:86;;17164:313;;;;:::o;17483:419::-;17649:4;17687:2;17676:9;17672:18;17664:26;;17736:9;17730:4;17726:20;17722:1;17711:9;17707:17;17700:47;17764:131;17890:4;17764:131;:::i;:::-;17756:139;;17483:419;;;:::o;17908:::-;18074:4;18112:2;18101:9;18097:18;18089:26;;18161:9;18155:4;18151:20;18147:1;18136:9;18132:17;18125:47;18189:131;18315:4;18189:131;:::i;:::-;18181:139;;17908:419;;;:::o;18333:::-;18499:4;18537:2;18526:9;18522:18;18514:26;;18586:9;18580:4;18576:20;18572:1;18561:9;18557:17;18550:47;18614:131;18740:4;18614:131;:::i;:::-;18606:139;;18333:419;;;:::o;18758:::-;18924:4;18962:2;18951:9;18947:18;18939:26;;19011:9;19005:4;19001:20;18997:1;18986:9;18982:17;18975:47;19039:131;19165:4;19039:131;:::i;:::-;19031:139;;18758:419;;;:::o;19183:::-;19349:4;19387:2;19376:9;19372:18;19364:26;;19436:9;19430:4;19426:20;19422:1;19411:9;19407:17;19400:47;19464:131;19590:4;19464:131;:::i;:::-;19456:139;;19183:419;;;:::o;19608:::-;19774:4;19812:2;19801:9;19797:18;19789:26;;19861:9;19855:4;19851:20;19847:1;19836:9;19832:17;19825:47;19889:131;20015:4;19889:131;:::i;:::-;19881:139;;19608:419;;;:::o;20033:::-;20199:4;20237:2;20226:9;20222:18;20214:26;;20286:9;20280:4;20276:20;20272:1;20261:9;20257:17;20250:47;20314:131;20440:4;20314:131;:::i;:::-;20306:139;;20033:419;;;:::o;20458:::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:222::-;20976:4;21014:2;21003:9;20999:18;20991:26;;21027:71;21095:1;21084:9;21080:17;21071:6;21027:71;:::i;:::-;20883:222;;;;:::o;21111:129::-;21145:6;21172:20;;:::i;:::-;21162:30;;21201:33;21229:4;21221:6;21201:33;:::i;:::-;21111:129;;;:::o;21246:75::-;21279:6;21312:2;21306:9;21296:19;;21246:75;:::o;21327:311::-;21404:4;21494:18;21486:6;21483:30;21480:56;;;21516:18;;:::i;:::-;21480:56;21566:4;21558:6;21554:17;21546:25;;21626:4;21620;21616:15;21608:23;;21327:311;;;:::o;21644:307::-;21705:4;21795:18;21787:6;21784:30;21781:56;;;21817:18;;:::i;:::-;21781:56;21855:29;21877:6;21855:29;:::i;:::-;21847:37;;21939:4;21933;21929:15;21921:23;;21644:307;;;:::o;21957:98::-;22008:6;22042:5;22036:12;22026:22;;21957:98;;;:::o;22061:99::-;22113:6;22147:5;22141:12;22131:22;;22061:99;;;:::o;22166:168::-;22249:11;22283:6;22278:3;22271:19;22323:4;22318:3;22314:14;22299:29;;22166:168;;;;:::o;22340:169::-;22424:11;22458:6;22453:3;22446:19;22498:4;22493:3;22489:14;22474:29;;22340:169;;;;:::o;22515:148::-;22617:11;22654:3;22639:18;;22515:148;;;;:::o;22669:305::-;22709:3;22728:20;22746:1;22728:20;:::i;:::-;22723:25;;22762:20;22780:1;22762:20;:::i;:::-;22757:25;;22916:1;22848:66;22844:74;22841:1;22838:81;22835:107;;;22922:18;;:::i;:::-;22835:107;22966:1;22963;22959:9;22952:16;;22669:305;;;;:::o;22980:185::-;23020:1;23037:20;23055:1;23037:20;:::i;:::-;23032:25;;23071:20;23089:1;23071:20;:::i;:::-;23066:25;;23110:1;23100:35;;23115:18;;:::i;:::-;23100:35;23157:1;23154;23150:9;23145:14;;22980:185;;;;:::o;23171:348::-;23211:7;23234:20;23252:1;23234:20;:::i;:::-;23229:25;;23268:20;23286:1;23268:20;:::i;:::-;23263:25;;23456:1;23388:66;23384:74;23381:1;23378:81;23373:1;23366:9;23359:17;23355:105;23352:131;;;23463:18;;:::i;:::-;23352:131;23511:1;23508;23504:9;23493:20;;23171:348;;;;:::o;23525:191::-;23565:4;23585:20;23603:1;23585:20;:::i;:::-;23580:25;;23619:20;23637:1;23619:20;:::i;:::-;23614:25;;23658:1;23655;23652:8;23649:34;;;23663:18;;:::i;:::-;23649:34;23708:1;23705;23701:9;23693:17;;23525:191;;;;:::o;23722:96::-;23759:7;23788:24;23806:5;23788:24;:::i;:::-;23777:35;;23722:96;;;:::o;23824:90::-;23858:7;23901:5;23894:13;23887:21;23876:32;;23824:90;;;:::o;23920:77::-;23957:7;23986:5;23975:16;;23920:77;;;:::o;24003:149::-;24039:7;24079:66;24072:5;24068:78;24057:89;;24003:149;;;:::o;24158:126::-;24195:7;24235:42;24228:5;24224:54;24213:65;;24158:126;;;:::o;24290:77::-;24327:7;24356:5;24345:16;;24290:77;;;:::o;24373:145::-;24442:9;24475:37;24506:5;24475:37;:::i;:::-;24462:50;;24373:145;;;:::o;24524:126::-;24574:9;24607:37;24638:5;24607:37;:::i;:::-;24594:50;;24524:126;;;:::o;24656:113::-;24706:9;24739:24;24757:5;24739:24;:::i;:::-;24726:37;;24656:113;;;:::o;24775:154::-;24859:6;24854:3;24849;24836:30;24921:1;24912:6;24907:3;24903:16;24896:27;24775:154;;;:::o;24935:307::-;25003:1;25013:113;25027:6;25024:1;25021:13;25013:113;;;25112:1;25107:3;25103:11;25097:18;25093:1;25088:3;25084:11;25077:39;25049:2;25046:1;25042:10;25037:15;;25013:113;;;25144:6;25141:1;25138:13;25135:101;;;25224:1;25215:6;25210:3;25206:16;25199:27;25135:101;24984:258;24935:307;;;:::o;25248:320::-;25292:6;25329:1;25323:4;25319:12;25309:22;;25376:1;25370:4;25366:12;25397:18;25387:81;;25453:4;25445:6;25441:17;25431:27;;25387:81;25515:2;25507:6;25504:14;25484:18;25481:38;25478:84;;;25534:18;;:::i;:::-;25478:84;25299:269;25248:320;;;:::o;25574:281::-;25657:27;25679:4;25657:27;:::i;:::-;25649:6;25645:40;25787:6;25775:10;25772:22;25751:18;25739:10;25736:34;25733:62;25730:88;;;25798:18;;:::i;:::-;25730:88;25838:10;25834:2;25827:22;25617:238;25574:281;;:::o;25861:233::-;25900:3;25923:24;25941:5;25923:24;:::i;:::-;25914:33;;25969:66;25962:5;25959:77;25956:103;;;26039:18;;:::i;:::-;25956:103;26086:1;26079:5;26075:13;26068:20;;25861:233;;;:::o;26100:100::-;26139:7;26168:26;26188:5;26168:26;:::i;:::-;26157:37;;26100:100;;;:::o;26206:94::-;26245:7;26274:20;26288:5;26274:20;:::i;:::-;26263:31;;26206:94;;;:::o;26306:176::-;26338:1;26355:20;26373:1;26355:20;:::i;:::-;26350:25;;26389:20;26407:1;26389:20;:::i;:::-;26384:25;;26428:1;26418:35;;26433:18;;:::i;:::-;26418:35;26474:1;26471;26467:9;26462:14;;26306:176;;;;:::o;26488:180::-;26536:77;26533:1;26526:88;26633:4;26630:1;26623:15;26657:4;26654:1;26647:15;26674:180;26722:77;26719:1;26712:88;26819:4;26816:1;26809:15;26843:4;26840:1;26833:15;26860:180;26908:77;26905:1;26898:88;27005:4;27002:1;26995:15;27029:4;27026:1;27019:15;27046:180;27094:77;27091:1;27084:88;27191:4;27188:1;27181:15;27215:4;27212:1;27205:15;27232:180;27280:77;27277:1;27270:88;27377:4;27374:1;27367:15;27401:4;27398:1;27391:15;27418:117;27527:1;27524;27517:12;27541:117;27650:1;27647;27640:12;27664:117;27773:1;27770;27763:12;27787:117;27896:1;27893;27886:12;27910:117;28019:1;28016;28009:12;28033:117;28142:1;28139;28132:12;28156:102;28197:6;28248:2;28244:7;28239:2;28232:5;28228:14;28224:28;28214:38;;28156:102;;;:::o;28264:94::-;28297:8;28345:5;28341:2;28337:14;28316:35;;28264:94;;;:::o;28364:225::-;28504:34;28500:1;28492:6;28488:14;28481:58;28573:8;28568:2;28560:6;28556:15;28549:33;28364:225;:::o;28595:223::-;28735:34;28731:1;28723:6;28719:14;28712:58;28804:6;28799:2;28791:6;28787:15;28780:31;28595:223;:::o;28824:172::-;28964:24;28960:1;28952:6;28948:14;28941:48;28824:172;:::o;29002:162::-;29142:14;29138:1;29130:6;29126:14;29119:38;29002:162;:::o;29170:174::-;29310:26;29306:1;29298:6;29294:14;29287:50;29170:174;:::o;29350:182::-;29490:34;29486:1;29478:6;29474:14;29467:58;29350:182;:::o;29538:220::-;29678:34;29674:1;29666:6;29662:14;29655:58;29747:3;29742:2;29734:6;29730:15;29723:28;29538:220;:::o;29764:221::-;29904:34;29900:1;29892:6;29888:14;29881:58;29973:4;29968:2;29960:6;29956:15;29949:29;29764:221;:::o;29991:122::-;30064:24;30082:5;30064:24;:::i;:::-;30057:5;30054:35;30044:63;;30103:1;30100;30093:12;30044:63;29991:122;:::o;30119:116::-;30189:21;30204:5;30189:21;:::i;:::-;30182:5;30179:32;30169:60;;30225:1;30222;30215:12;30169:60;30119:116;:::o;30241:122::-;30314:24;30332:5;30314:24;:::i;:::-;30307:5;30304:35;30294:63;;30353:1;30350;30343:12;30294:63;30241:122;:::o;30369:120::-;30441:23;30458:5;30441:23;:::i;:::-;30434:5;30431:34;30421:62;;30479:1;30476;30469:12;30421:62;30369:120;:::o;30495:122::-;30568:24;30586:5;30568:24;:::i;:::-;30561:5;30558:35;30548:63;;30607:1;30604;30597:12;30548:63;30495:122;:::o

Swarm Source

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