ETH Price: $2,190.63 (+2.97%)

Token

CryptoGreeks (CG)
 

Overview

Max Total Supply

332 CG

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dnwhnft.eth
Balance
1 CG
0x10c45c8b122916cb0c4b01f3df54e34b46b0bc9b
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:
CryptoGreeks

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-24
*/

// SPDX-License-Identifier: MIT

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


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



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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}



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



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


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}




pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}



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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}



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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

contract CryptoGreeks is ERC721, ERC721Enumerable, Ownable {

    using SafeMath for uint256;

    uint256 public constant maxSupply = 5999;
    uint256 private _price = 0.04 ether;
    uint256 private maxPerTranscationPreSale = 24;
    uint256 private maxPerTranscation = 12;
    uint256 private _reserved = 100;
    uint256 private preSaleMax = 1000;

    string public CG_PROVENANCE = "";
    uint256 public startingIndex;

    bool private _saleStarted;
    bool private _preSaleStarted;

    string public baseURI;

    mapping(address => bool) public PresaleList;

    /**
     * address for internal transcations ( owner )
     */

    address t1 = 0x58Aff647CAe229553d716d80Bcebeee8Bf587EaD;
    address t2 = 0x19b6645b3Cba8261329393196129A4D9746E7C48;
    address t3 = 0x1E88a26d4E21E17f6C2bc3d25F3248B8133b2578;

    constructor() ERC721("CryptoGreeks", "CG") {
        _saleStarted = false;
        _preSaleStarted = false;
    }

    modifier whenSaleStarted() {
        require(_saleStarted);
        _;
    }

    modifier whenPreSaleStarted() {
        require(_preSaleStarted);
        _;
    }

    modifier onlyPresaleListed() {
        require(
            PresaleList[msg.sender],
            "CryptoGreeks: You're not on the whitelist."
        );
        _;
    }

    function setBaseURI(string memory _URI) external onlyOwner {
        baseURI = _URI;
    }

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

    /*
        NOT TO BE USED; but just in case
    */
    function setPrice(uint256 _newPrice) external onlyOwner {
        _price = _newPrice;
    }

    /*
       Get current price
    */
    function getPrice() public view returns (uint256) {
        return _price;
    }

    function getReservedLeft() public view returns (uint256) {
        return _reserved;
    }

    /**
    Add addresses to preSaleList
     */
    function addAddressesToPresaleList(address[] memory addrs) public onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            PresaleList[addrs[i]] = true;
        }
    }

    /* called when flipping presale state */
    function flipPreSaleStarted() external onlyOwner {
        _preSaleStarted = !_preSaleStarted;

        if (_preSaleStarted && startingIndex == 0) {
            setStartingIndex();
        }
    }
    
    function flipSaleStarted() external onlyOwner {
        _saleStarted = !_saleStarted;
    }
    
     /**
     * @dev Mint to msg.sender. Only PresaleListed users can participate
     * @param _numberTokens Quantity to purchase
     */
    function presale(uint8 _numberTokens) external payable onlyPresaleListed {
       
        uint256 supply = totalSupply();
        require(_preSaleStarted);
        require(_numberTokens <= maxPerTranscationPreSale, 
            "You cannot mint more than 24 Tokens at once!; Try minting less than 24 in a single transcation");
        require( 
            supply.add( _numberTokens )  <= preSaleMax, 
            "Enough Tokens are not left; Try a reduced amount");
        require(
            _numberTokens*_price <= msg.value,
             "Amount sent is less");

        for (uint256 i; i < _numberTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint256 _numberTokens) external payable whenSaleStarted {
        uint256 supply = totalSupply();
        require(
            _numberTokens <= maxPerTranscation, 
            "You cannot mint more than 24 Tokens at once!; Try minting less than 24 in a single transcation");
        require(
            supply.add( _numberTokens )  <= maxSupply,
            "Enough Tokens are not left; Try a reduced amount");
        require(_numberTokens*_price <= msg.value,
         "Amount sent is less" );

        for (uint256 i = 0; i < _numberTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    /* will be set later */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        CG_PROVENANCE = provenanceHash;
    }

    function claimReserved(address[] memory addrs) external onlyOwner {
        uint256 len = addrs.length;
        require( len <= _reserved, "That would exceed the max reserved.");

        uint256 _tokenId = totalSupply();
        for (uint256 i = 0 ; i < len; i++) {
            _safeMint(addrs[i], _tokenId + i);
        }

        _reserved = _reserved.sub( len ) ;
    }

    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");

        // BlockHash only works for the most 256 recent blocks.
        uint256 _block_shift = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        _block_shift =  1 + (_block_shift % 255);

        // This shouldn't happen, but just in case the blockchain gets a reboot?
        if (block.number < _block_shift) {
            _block_shift = 1;
        }

        uint256 _block_ref = block.number - _block_shift;
        startingIndex = uint(blockhash(_block_ref)) % maxSupply;

        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        uint256 _split1 = _balance.mul(45).div(100);
        uint256 _split2 = _balance.mul(45).div(100);
        uint256 _split3 = _balance.mul(10).div(100);
        
        require(payable(t1).send(_split1));
        require(payable(t2).send(_split2));
        require(payable(t3).send(_split3));
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"CG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStarted","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_numberTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_numberTokens","type":"uint8"}],"name":"presale","outputs":[],"stateMutability":"payable","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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600b556018600c55600c600d556064600e556103e8600f5560405180602001604052806000815250601090805190602001906200004b92919062000323565b507358aff647cae229553d716d80bcebeee8bf587ead601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507319b6645b3cba8261329393196129a4d9746e7c48601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731e88a26d4e21e17f6c2bc3d25f3248b8133b2578601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015857600080fd5b506040518060400160405280600c81526020017f43727970746f477265656b7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f43470000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001dd92919062000323565b508060019080519060200190620001f692919062000323565b505050620002196200020d6200025560201b60201c565b6200025d60201b60201c565b6000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff02191690831515021790555062000438565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033190620003d3565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b60006002820490506001821680620003ec57607f821691505b6020821081141562000403576200040262000409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614c0c80620004486000396000f3fe60806040526004361061021a5760003560e01c806377fb63f111610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461078d578063daa023aa146107b8578063e985e9c5146107e3578063e986655014610820578063f2fde38b146108375761021a565b8063a0712d68146106b7578063a22cb465146106d3578063b88d4fde146106fc578063c87b56dd14610725578063cb774d47146107625761021a565b80638fef8ecc116100f25780638fef8ecc146105f857806391b7f5ed1461060f57806395d89b411461063857806398d5fdca146106635780639c791e991461068e5761021a565b806377fb63f114610550578063809e993b14610579578063899d7b38146105b65780638da5cb5b146105cd5761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104785780636c0360eb146104b55780636d9f8ef1146104e057806370a08231146104fc578063715018a6146105395761021a565b80633ccfd60b146103d257806342842e0e146103e95780634f6ccce71461041257806355f804b31461044f5761021a565b806310969523116101ed57806310969523146102ed57806318160ddd1461031657806323b872dd1461034157806325914b711461036a5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613685565b610860565b6040516102539190613c68565b60405180910390f35b34801561026857600080fd5b50610271610872565b60405161027e9190613c83565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613728565b610904565b6040516102bb9190613c01565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906135fc565b610989565b005b3480156102f957600080fd5b50610314600480360381019061030f91906136df565b610aa1565b005b34801561032257600080fd5b5061032b610b37565b6040516103389190613fa5565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906134e6565b610b44565b005b34801561037657600080fd5b5061037f610ba4565b60405161038c9190613c83565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906135fc565b610c32565b6040516103c99190613fa5565b60405180910390f35b3480156103de57600080fd5b506103e7610cd7565b005b3480156103f557600080fd5b50610410600480360381019061040b91906134e6565b610eff565b005b34801561041e57600080fd5b5061043960048036038101906104349190613728565b610f1f565b6040516104469190613fa5565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906136df565b610f90565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613728565b611026565b6040516104ac9190613c01565b60405180910390f35b3480156104c157600080fd5b506104ca6110d8565b6040516104d79190613c83565b60405180910390f35b6104fa60048036038101906104f59190613755565b611166565b005b34801561050857600080fd5b50610523600480360381019061051e9190613479565b611347565b6040516105309190613fa5565b60405180910390f35b34801561054557600080fd5b5061054e6113ff565b005b34801561055c57600080fd5b506105776004803603810190610572919061363c565b611487565b005b34801561058557600080fd5b506105a0600480360381019061059b9190613479565b6115c8565b6040516105ad9190613c68565b60405180910390f35b3480156105c257600080fd5b506105cb6115e8565b005b3480156105d957600080fd5b506105e2611690565b6040516105ef9190613c01565b60405180910390f35b34801561060457600080fd5b5061060d6116ba565b005b34801561061b57600080fd5b5061063660048036038101906106319190613728565b61178e565b005b34801561064457600080fd5b5061064d611814565b60405161065a9190613c83565b60405180910390f35b34801561066f57600080fd5b506106786118a6565b6040516106859190613fa5565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061363c565b6118b0565b005b6106d160048036038101906106cc9190613728565b6119c1565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906135bc565b611b0a565b005b34801561070857600080fd5b50610723600480360381019061071e9190613539565b611c8b565b005b34801561073157600080fd5b5061074c60048036038101906107479190613728565b611ced565b6040516107599190613c83565b60405180910390f35b34801561076e57600080fd5b50610777611d94565b6040516107849190613fa5565b60405180910390f35b34801561079957600080fd5b506107a2611d9a565b6040516107af9190613fa5565b60405180910390f35b3480156107c457600080fd5b506107cd611da0565b6040516107da9190613fa5565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906134a6565b611daa565b6040516108179190613c68565b60405180910390f35b34801561082c57600080fd5b50610835611e3e565b005b34801561084357600080fd5b5061085e60048036038101906108599190613479565b611f28565b005b600061086b82612020565b9050919050565b6060600080546108819061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad9061428e565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f8261209a565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613e45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099482611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613ec5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24612106565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d612106565b611daa565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613dc5565b60405180910390fd5b610a9c838361210e565b505050565b610aa9612106565b73ffffffffffffffffffffffffffffffffffffffff16610ac7611690565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613e65565b60405180910390fd5b8060109080519060200190610b339291906131da565b5050565b6000600880549050905090565b610b55610b4f612106565b826121c7565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613f25565b60405180910390fd5b610b9f8383836122a5565b505050565b60108054610bb19061428e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd9061428e565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b505050505081565b6000610c3d83611347565b8210610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613ca5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cdf612106565b73ffffffffffffffffffffffffffffffffffffffff16610cfd611690565b73ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613e65565b60405180910390fd5b60004790506000610d816064610d73602d8561250190919063ffffffff16565b61251790919063ffffffff16565b90506000610dac6064610d9e602d8661250190919063ffffffff16565b61251790919063ffffffff16565b90506000610dd76064610dc9600a8761250190919063ffffffff16565b61251790919063ffffffff16565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610e3957600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610e9957600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ef957600080fd5b50505050565b610f1a83838360405180602001604052806000815250611c8b565b505050565b6000610f29610b37565b8210610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613f45565b60405180910390fd5b60088281548110610f7e57610f7d614431565b5b90600052602060002001549050919050565b610f98612106565b73ffffffffffffffffffffffffffffffffffffffff16610fb6611690565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390613e65565b60405180910390fd5b80601390805190602001906110229291906131da565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613e05565b60405180910390fd5b80915050919050565b601380546110e59061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546111119061428e565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613d25565b60405180910390fd5b60006111fc610b37565b9050601260019054906101000a900460ff1661121757600080fd5b600c548260ff16111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613f85565b60405180910390fd5b600f546112788360ff168361252d90919063ffffffff16565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613ee5565b60405180910390fd5b34600b548360ff166112cb919061413d565b111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613f65565b60405180910390fd5b60005b8260ff168110156113425761132f33828461132a91906140b6565b612543565b808061133a906142f1565b91505061130f565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613de5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611407612106565b73ffffffffffffffffffffffffffffffffffffffff16611425611690565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290613e65565b60405180910390fd5b6114856000612561565b565b61148f612106565b73ffffffffffffffffffffffffffffffffffffffff166114ad611690565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613e65565b60405180910390fd5b600081519050600e5481111561154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590613f05565b60405180910390fd5b6000611558610b37565b905060005b828110156115a75761159484828151811061157b5761157a614431565b5b6020026020010151828461158f91906140b6565b612543565b808061159f906142f1565b91505061155d565b506115bd82600e5461262790919063ffffffff16565b600e81905550505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6115f0612106565b73ffffffffffffffffffffffffffffffffffffffff1661160e611690565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613e65565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116c2612106565b73ffffffffffffffffffffffffffffffffffffffff166116e0611690565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613e65565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550601260019054906101000a900460ff16801561177e57506000601154145b1561178c5761178b611e3e565b5b565b611796612106565b73ffffffffffffffffffffffffffffffffffffffff166117b4611690565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613e65565b60405180910390fd5b80600b8190555050565b6060600180546118239061428e565b80601f016020809104026020016040519081016040528092919081815260200182805461184f9061428e565b801561189c5780601f106118715761010080835404028352916020019161189c565b820191906000526020600020905b81548152906001019060200180831161187f57829003601f168201915b5050505050905090565b6000600b54905090565b6118b8612106565b73ffffffffffffffffffffffffffffffffffffffff166118d6611690565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613e65565b60405180910390fd5b60005b81518110156119bd5760016014600084848151811061195157611950614431565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119b5906142f1565b91505061192f565b5050565b601260009054906101000a900460ff166119da57600080fd5b60006119e4610b37565b9050600d54821115611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613f85565b60405180910390fd5b61176f611a41838361252d90919063ffffffff16565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613ee5565b60405180910390fd5b34600b5483611a91919061413d565b1115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613f65565b60405180910390fd5b60005b82811015611b0557611af2338284611aed91906140b6565b612543565b8080611afd906142f1565b915050611ad5565b505050565b611b12612106565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613d65565b60405180910390fd5b8060056000611b8d612106565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3a612106565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7f9190613c68565b60405180910390a35050565b611c9c611c96612106565b836121c7565b611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613f25565b60405180910390fd5b611ce78484848461263d565b50505050565b6060611cf88261209a565b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613ea5565b60405180910390fd5b6000611d41612699565b90506000815111611d615760405180602001604052806000815250611d8c565b80611d6b8461272b565b604051602001611d7c929190613bb1565b6040516020818303038152906040525b915050919050565b60115481565b61176f81565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060115414611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613da5565b60405180910390fd5b60004442604051602001611e98929190613bd5565b6040516020818303038152906040528051906020012060001c905060ff81611ec09190614344565b6001611ecc91906140b6565b905080431015611edb57600190505b60008143611ee99190614197565b905061176f814060001c611efd9190614344565b60118190555060006011541415611f24576001601154611f1d91906140b6565b6011819055505b5050565b611f30612106565b73ffffffffffffffffffffffffffffffffffffffff16611f4e611690565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613ce5565b60405180910390fd5b61201d81612561565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209357506120928261288c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218183611026565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d28261209a565b612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890613d85565b60405180910390fd5b600061221c83611026565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228b57508373ffffffffffffffffffffffffffffffffffffffff1661227384610904565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229c575061229b8185611daa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c582611026565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613e85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613d45565b60405180910390fd5b61239683838361296e565b6123a160008261210e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f19190614197565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244891906140b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361250f919061413d565b905092915050565b60008183612525919061410c565b905092915050565b6000818361253b91906140b6565b905092915050565b61255d82826040518060200160405280600081525061297e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836126359190614197565b905092915050565b6126488484846122a5565b612654848484846129d9565b612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90613cc5565b60405180910390fd5b50505050565b6060601380546126a89061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546126d49061428e565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e906142f1565b915050600a8261279e919061410c565b915061277b565b60008167ffffffffffffffff8111156127c1576127c0614460565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c9190614197565b9150600a8561281b9190614344565b603061282791906140b6565b60f81b81838151811061283d5761283c614431565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612879919061410c565b94506127f7565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612967575061296682612b70565b5b9050919050565b612979838383612bda565b505050565b6129888383612cee565b61299560008484846129d9565b6129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613cc5565b60405180910390fd5b505050565b60006129fa8473ffffffffffffffffffffffffffffffffffffffff16612ebc565b15612b63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a23612106565b8786866040518563ffffffff1660e01b8152600401612a459493929190613c1c565b602060405180830381600087803b158015612a5f57600080fd5b505af1925050508015612a9057506040513d601f19601f82011682018060405250810190612a8d91906136b2565b60015b612b13573d8060008114612ac0576040519150601f19603f3d011682016040523d82523d6000602084013e612ac5565b606091505b50600081511415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290613cc5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b68565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612be5838383612ecf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c2857612c2381612ed4565b612c67565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c6657612c658382612f1d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612caa57612ca58161308a565b612ce9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ce857612ce7828261315b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590613e25565b60405180910390fd5b612d678161209a565b15612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90613d05565b60405180910390fd5b612db36000838361296e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0391906140b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f2a84611347565b612f349190614197565b9050600060076000848152602001908152602001600020549050818114613019576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061309e9190614197565b90506000600960008481526020019081526020016000205490506000600883815481106130ce576130cd614431565b5b9060005260206000200154905080600883815481106130f0576130ef614431565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061313f5761313e614402565b5b6001900381819060005260206000200160009055905550505050565b600061316683611347565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546131e69061428e565b90600052602060002090601f016020900481019282613208576000855561324f565b82601f1061322157805160ff191683800117855561324f565b8280016001018555821561324f579182015b8281111561324e578251825591602001919060010190613233565b5b50905061325c9190613260565b5090565b5b80821115613279576000816000905550600101613261565b5090565b600061329061328b84613fe5565b613fc0565b905080838252602082019050828560208602820111156132b3576132b2614494565b5b60005b858110156132e357816132c98882613371565b8452602084019350602083019250506001810190506132b6565b5050509392505050565b60006133006132fb84614011565b613fc0565b90508281526020810184848401111561331c5761331b614499565b5b61332784828561424c565b509392505050565b600061334261333d84614042565b613fc0565b90508281526020810184848401111561335e5761335d614499565b5b61336984828561424c565b509392505050565b60008135905061338081614b63565b92915050565b600082601f83011261339b5761339a61448f565b5b81356133ab84826020860161327d565b91505092915050565b6000813590506133c381614b7a565b92915050565b6000813590506133d881614b91565b92915050565b6000815190506133ed81614b91565b92915050565b600082601f8301126134085761340761448f565b5b81356134188482602086016132ed565b91505092915050565b600082601f8301126134365761343561448f565b5b813561344684826020860161332f565b91505092915050565b60008135905061345e81614ba8565b92915050565b60008135905061347381614bbf565b92915050565b60006020828403121561348f5761348e6144a3565b5b600061349d84828501613371565b91505092915050565b600080604083850312156134bd576134bc6144a3565b5b60006134cb85828601613371565b92505060206134dc85828601613371565b9150509250929050565b6000806000606084860312156134ff576134fe6144a3565b5b600061350d86828701613371565b935050602061351e86828701613371565b925050604061352f8682870161344f565b9150509250925092565b60008060008060808587031215613553576135526144a3565b5b600061356187828801613371565b945050602061357287828801613371565b93505060406135838782880161344f565b925050606085013567ffffffffffffffff8111156135a4576135a361449e565b5b6135b0878288016133f3565b91505092959194509250565b600080604083850312156135d3576135d26144a3565b5b60006135e185828601613371565b92505060206135f2858286016133b4565b9150509250929050565b60008060408385031215613613576136126144a3565b5b600061362185828601613371565b92505060206136328582860161344f565b9150509250929050565b600060208284031215613652576136516144a3565b5b600082013567ffffffffffffffff8111156136705761366f61449e565b5b61367c84828501613386565b91505092915050565b60006020828403121561369b5761369a6144a3565b5b60006136a9848285016133c9565b91505092915050565b6000602082840312156136c8576136c76144a3565b5b60006136d6848285016133de565b91505092915050565b6000602082840312156136f5576136f46144a3565b5b600082013567ffffffffffffffff8111156137135761371261449e565b5b61371f84828501613421565b91505092915050565b60006020828403121561373e5761373d6144a3565b5b600061374c8482850161344f565b91505092915050565b60006020828403121561376b5761376a6144a3565b5b600061377984828501613464565b91505092915050565b61378b816141cb565b82525050565b61379a816141dd565b82525050565b60006137ab82614073565b6137b58185614089565b93506137c581856020860161425b565b6137ce816144a8565b840191505092915050565b60006137e48261407e565b6137ee818561409a565b93506137fe81856020860161425b565b613807816144a8565b840191505092915050565b600061381d8261407e565b61382781856140ab565b935061383781856020860161425b565b80840191505092915050565b6000613850602b8361409a565b915061385b826144b9565b604082019050919050565b600061387360328361409a565b915061387e82614508565b604082019050919050565b600061389660268361409a565b91506138a182614557565b604082019050919050565b60006138b9601c8361409a565b91506138c4826145a6565b602082019050919050565b60006138dc602a8361409a565b91506138e7826145cf565b604082019050919050565b60006138ff60248361409a565b915061390a8261461e565b604082019050919050565b600061392260198361409a565b915061392d8261466d565b602082019050919050565b6000613945602c8361409a565b915061395082614696565b604082019050919050565b6000613968601d8361409a565b9150613973826146e5565b602082019050919050565b600061398b60388361409a565b91506139968261470e565b604082019050919050565b60006139ae602a8361409a565b91506139b98261475d565b604082019050919050565b60006139d160298361409a565b91506139dc826147ac565b604082019050919050565b60006139f460208361409a565b91506139ff826147fb565b602082019050919050565b6000613a17602c8361409a565b9150613a2282614824565b604082019050919050565b6000613a3a60208361409a565b9150613a4582614873565b602082019050919050565b6000613a5d60298361409a565b9150613a688261489c565b604082019050919050565b6000613a80602f8361409a565b9150613a8b826148eb565b604082019050919050565b6000613aa360218361409a565b9150613aae8261493a565b604082019050919050565b6000613ac660308361409a565b9150613ad182614989565b604082019050919050565b6000613ae960238361409a565b9150613af4826149d8565b604082019050919050565b6000613b0c60318361409a565b9150613b1782614a27565b604082019050919050565b6000613b2f602c8361409a565b9150613b3a82614a76565b604082019050919050565b6000613b5260138361409a565b9150613b5d82614ac5565b602082019050919050565b6000613b75605e8361409a565b9150613b8082614aee565b606082019050919050565b613b9481614235565b82525050565b613bab613ba682614235565b61433a565b82525050565b6000613bbd8285613812565b9150613bc98284613812565b91508190509392505050565b6000613be18285613b9a565b602082019150613bf18284613b9a565b6020820191508190509392505050565b6000602082019050613c166000830184613782565b92915050565b6000608082019050613c316000830187613782565b613c3e6020830186613782565b613c4b6040830185613b8b565b8181036060830152613c5d81846137a0565b905095945050505050565b6000602082019050613c7d6000830184613791565b92915050565b60006020820190508181036000830152613c9d81846137d9565b905092915050565b60006020820190508181036000830152613cbe81613843565b9050919050565b60006020820190508181036000830152613cde81613866565b9050919050565b60006020820190508181036000830152613cfe81613889565b9050919050565b60006020820190508181036000830152613d1e816138ac565b9050919050565b60006020820190508181036000830152613d3e816138cf565b9050919050565b60006020820190508181036000830152613d5e816138f2565b9050919050565b60006020820190508181036000830152613d7e81613915565b9050919050565b60006020820190508181036000830152613d9e81613938565b9050919050565b60006020820190508181036000830152613dbe8161395b565b9050919050565b60006020820190508181036000830152613dde8161397e565b9050919050565b60006020820190508181036000830152613dfe816139a1565b9050919050565b60006020820190508181036000830152613e1e816139c4565b9050919050565b60006020820190508181036000830152613e3e816139e7565b9050919050565b60006020820190508181036000830152613e5e81613a0a565b9050919050565b60006020820190508181036000830152613e7e81613a2d565b9050919050565b60006020820190508181036000830152613e9e81613a50565b9050919050565b60006020820190508181036000830152613ebe81613a73565b9050919050565b60006020820190508181036000830152613ede81613a96565b9050919050565b60006020820190508181036000830152613efe81613ab9565b9050919050565b60006020820190508181036000830152613f1e81613adc565b9050919050565b60006020820190508181036000830152613f3e81613aff565b9050919050565b60006020820190508181036000830152613f5e81613b22565b9050919050565b60006020820190508181036000830152613f7e81613b45565b9050919050565b60006020820190508181036000830152613f9e81613b68565b9050919050565b6000602082019050613fba6000830184613b8b565b92915050565b6000613fca613fdb565b9050613fd682826142c0565b919050565b6000604051905090565b600067ffffffffffffffff82111561400057613fff614460565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561402c5761402b614460565b5b614035826144a8565b9050602081019050919050565b600067ffffffffffffffff82111561405d5761405c614460565b5b614066826144a8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140c182614235565b91506140cc83614235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561410157614100614375565b5b828201905092915050565b600061411782614235565b915061412283614235565b925082614132576141316143a4565b5b828204905092915050565b600061414882614235565b915061415383614235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561418c5761418b614375565b5b828202905092915050565b60006141a282614235565b91506141ad83614235565b9250828210156141c0576141bf614375565b5b828203905092915050565b60006141d682614215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561427957808201518184015260208101905061425e565b83811115614288576000848401525b50505050565b600060028204905060018216806142a657607f821691505b602082108114156142ba576142b96143d3565b5b50919050565b6142c9826144a8565b810181811067ffffffffffffffff821117156142e8576142e7614460565b5b80604052505050565b60006142fc82614235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432f5761432e614375565b5b600182019050919050565b6000819050919050565b600061434f82614235565b915061435a83614235565b92508261436a576143696143a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43727970746f477265656b733a20596f75277265206e6f74206f6e207468652060008201527f77686974656c6973742e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f456e6f75676820546f6b656e7320617265206e6f74206c6566743b205472792060008201527f61207265647563656420616d6f756e7400000000000000000000000000000000602082015250565b7f5468617420776f756c642065786365656420746865206d61782072657365727660008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416d6f756e742073656e74206973206c65737300000000000000000000000000600082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e20323420546f6b60008201527f656e73206174206f6e6365213b20547279206d696e74696e67206c657373207460208201527f68616e20323420696e20612073696e676c65207472616e73636174696f6e0000604082015250565b614b6c816141cb565b8114614b7757600080fd5b50565b614b83816141dd565b8114614b8e57600080fd5b50565b614b9a816141e9565b8114614ba557600080fd5b50565b614bb181614235565b8114614bbc57600080fd5b50565b614bc88161423f565b8114614bd357600080fd5b5056fea2646970667358221220cf04cab54ced3ffbd083595df114ad6ce68fd6db81813a03261781c221e0221764736f6c63430008060033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806377fb63f111610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461078d578063daa023aa146107b8578063e985e9c5146107e3578063e986655014610820578063f2fde38b146108375761021a565b8063a0712d68146106b7578063a22cb465146106d3578063b88d4fde146106fc578063c87b56dd14610725578063cb774d47146107625761021a565b80638fef8ecc116100f25780638fef8ecc146105f857806391b7f5ed1461060f57806395d89b411461063857806398d5fdca146106635780639c791e991461068e5761021a565b806377fb63f114610550578063809e993b14610579578063899d7b38146105b65780638da5cb5b146105cd5761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104785780636c0360eb146104b55780636d9f8ef1146104e057806370a08231146104fc578063715018a6146105395761021a565b80633ccfd60b146103d257806342842e0e146103e95780634f6ccce71461041257806355f804b31461044f5761021a565b806310969523116101ed57806310969523146102ed57806318160ddd1461031657806323b872dd1461034157806325914b711461036a5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613685565b610860565b6040516102539190613c68565b60405180910390f35b34801561026857600080fd5b50610271610872565b60405161027e9190613c83565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613728565b610904565b6040516102bb9190613c01565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906135fc565b610989565b005b3480156102f957600080fd5b50610314600480360381019061030f91906136df565b610aa1565b005b34801561032257600080fd5b5061032b610b37565b6040516103389190613fa5565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906134e6565b610b44565b005b34801561037657600080fd5b5061037f610ba4565b60405161038c9190613c83565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906135fc565b610c32565b6040516103c99190613fa5565b60405180910390f35b3480156103de57600080fd5b506103e7610cd7565b005b3480156103f557600080fd5b50610410600480360381019061040b91906134e6565b610eff565b005b34801561041e57600080fd5b5061043960048036038101906104349190613728565b610f1f565b6040516104469190613fa5565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906136df565b610f90565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613728565b611026565b6040516104ac9190613c01565b60405180910390f35b3480156104c157600080fd5b506104ca6110d8565b6040516104d79190613c83565b60405180910390f35b6104fa60048036038101906104f59190613755565b611166565b005b34801561050857600080fd5b50610523600480360381019061051e9190613479565b611347565b6040516105309190613fa5565b60405180910390f35b34801561054557600080fd5b5061054e6113ff565b005b34801561055c57600080fd5b506105776004803603810190610572919061363c565b611487565b005b34801561058557600080fd5b506105a0600480360381019061059b9190613479565b6115c8565b6040516105ad9190613c68565b60405180910390f35b3480156105c257600080fd5b506105cb6115e8565b005b3480156105d957600080fd5b506105e2611690565b6040516105ef9190613c01565b60405180910390f35b34801561060457600080fd5b5061060d6116ba565b005b34801561061b57600080fd5b5061063660048036038101906106319190613728565b61178e565b005b34801561064457600080fd5b5061064d611814565b60405161065a9190613c83565b60405180910390f35b34801561066f57600080fd5b506106786118a6565b6040516106859190613fa5565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061363c565b6118b0565b005b6106d160048036038101906106cc9190613728565b6119c1565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906135bc565b611b0a565b005b34801561070857600080fd5b50610723600480360381019061071e9190613539565b611c8b565b005b34801561073157600080fd5b5061074c60048036038101906107479190613728565b611ced565b6040516107599190613c83565b60405180910390f35b34801561076e57600080fd5b50610777611d94565b6040516107849190613fa5565b60405180910390f35b34801561079957600080fd5b506107a2611d9a565b6040516107af9190613fa5565b60405180910390f35b3480156107c457600080fd5b506107cd611da0565b6040516107da9190613fa5565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906134a6565b611daa565b6040516108179190613c68565b60405180910390f35b34801561082c57600080fd5b50610835611e3e565b005b34801561084357600080fd5b5061085e60048036038101906108599190613479565b611f28565b005b600061086b82612020565b9050919050565b6060600080546108819061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad9061428e565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f8261209a565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613e45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099482611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613ec5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24612106565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d612106565b611daa565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613dc5565b60405180910390fd5b610a9c838361210e565b505050565b610aa9612106565b73ffffffffffffffffffffffffffffffffffffffff16610ac7611690565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613e65565b60405180910390fd5b8060109080519060200190610b339291906131da565b5050565b6000600880549050905090565b610b55610b4f612106565b826121c7565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613f25565b60405180910390fd5b610b9f8383836122a5565b505050565b60108054610bb19061428e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd9061428e565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b505050505081565b6000610c3d83611347565b8210610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613ca5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cdf612106565b73ffffffffffffffffffffffffffffffffffffffff16610cfd611690565b73ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613e65565b60405180910390fd5b60004790506000610d816064610d73602d8561250190919063ffffffff16565b61251790919063ffffffff16565b90506000610dac6064610d9e602d8661250190919063ffffffff16565b61251790919063ffffffff16565b90506000610dd76064610dc9600a8761250190919063ffffffff16565b61251790919063ffffffff16565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610e3957600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610e9957600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ef957600080fd5b50505050565b610f1a83838360405180602001604052806000815250611c8b565b505050565b6000610f29610b37565b8210610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613f45565b60405180910390fd5b60088281548110610f7e57610f7d614431565b5b90600052602060002001549050919050565b610f98612106565b73ffffffffffffffffffffffffffffffffffffffff16610fb6611690565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390613e65565b60405180910390fd5b80601390805190602001906110229291906131da565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613e05565b60405180910390fd5b80915050919050565b601380546110e59061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546111119061428e565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613d25565b60405180910390fd5b60006111fc610b37565b9050601260019054906101000a900460ff1661121757600080fd5b600c548260ff16111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613f85565b60405180910390fd5b600f546112788360ff168361252d90919063ffffffff16565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613ee5565b60405180910390fd5b34600b548360ff166112cb919061413d565b111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613f65565b60405180910390fd5b60005b8260ff168110156113425761132f33828461132a91906140b6565b612543565b808061133a906142f1565b91505061130f565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613de5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611407612106565b73ffffffffffffffffffffffffffffffffffffffff16611425611690565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290613e65565b60405180910390fd5b6114856000612561565b565b61148f612106565b73ffffffffffffffffffffffffffffffffffffffff166114ad611690565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613e65565b60405180910390fd5b600081519050600e5481111561154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590613f05565b60405180910390fd5b6000611558610b37565b905060005b828110156115a75761159484828151811061157b5761157a614431565b5b6020026020010151828461158f91906140b6565b612543565b808061159f906142f1565b91505061155d565b506115bd82600e5461262790919063ffffffff16565b600e81905550505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6115f0612106565b73ffffffffffffffffffffffffffffffffffffffff1661160e611690565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613e65565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116c2612106565b73ffffffffffffffffffffffffffffffffffffffff166116e0611690565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613e65565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550601260019054906101000a900460ff16801561177e57506000601154145b1561178c5761178b611e3e565b5b565b611796612106565b73ffffffffffffffffffffffffffffffffffffffff166117b4611690565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613e65565b60405180910390fd5b80600b8190555050565b6060600180546118239061428e565b80601f016020809104026020016040519081016040528092919081815260200182805461184f9061428e565b801561189c5780601f106118715761010080835404028352916020019161189c565b820191906000526020600020905b81548152906001019060200180831161187f57829003601f168201915b5050505050905090565b6000600b54905090565b6118b8612106565b73ffffffffffffffffffffffffffffffffffffffff166118d6611690565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613e65565b60405180910390fd5b60005b81518110156119bd5760016014600084848151811061195157611950614431565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119b5906142f1565b91505061192f565b5050565b601260009054906101000a900460ff166119da57600080fd5b60006119e4610b37565b9050600d54821115611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613f85565b60405180910390fd5b61176f611a41838361252d90919063ffffffff16565b1115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613ee5565b60405180910390fd5b34600b5483611a91919061413d565b1115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613f65565b60405180910390fd5b60005b82811015611b0557611af2338284611aed91906140b6565b612543565b8080611afd906142f1565b915050611ad5565b505050565b611b12612106565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613d65565b60405180910390fd5b8060056000611b8d612106565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3a612106565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7f9190613c68565b60405180910390a35050565b611c9c611c96612106565b836121c7565b611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613f25565b60405180910390fd5b611ce78484848461263d565b50505050565b6060611cf88261209a565b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613ea5565b60405180910390fd5b6000611d41612699565b90506000815111611d615760405180602001604052806000815250611d8c565b80611d6b8461272b565b604051602001611d7c929190613bb1565b6040516020818303038152906040525b915050919050565b60115481565b61176f81565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060115414611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613da5565b60405180910390fd5b60004442604051602001611e98929190613bd5565b6040516020818303038152906040528051906020012060001c905060ff81611ec09190614344565b6001611ecc91906140b6565b905080431015611edb57600190505b60008143611ee99190614197565b905061176f814060001c611efd9190614344565b60118190555060006011541415611f24576001601154611f1d91906140b6565b6011819055505b5050565b611f30612106565b73ffffffffffffffffffffffffffffffffffffffff16611f4e611690565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613ce5565b60405180910390fd5b61201d81612561565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209357506120928261288c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218183611026565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d28261209a565b612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890613d85565b60405180910390fd5b600061221c83611026565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228b57508373ffffffffffffffffffffffffffffffffffffffff1661227384610904565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229c575061229b8185611daa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c582611026565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613e85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613d45565b60405180910390fd5b61239683838361296e565b6123a160008261210e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f19190614197565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244891906140b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361250f919061413d565b905092915050565b60008183612525919061410c565b905092915050565b6000818361253b91906140b6565b905092915050565b61255d82826040518060200160405280600081525061297e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836126359190614197565b905092915050565b6126488484846122a5565b612654848484846129d9565b612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90613cc5565b60405180910390fd5b50505050565b6060601380546126a89061428e565b80601f01602080910402602001604051908101604052809291908181526020018280546126d49061428e565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e906142f1565b915050600a8261279e919061410c565b915061277b565b60008167ffffffffffffffff8111156127c1576127c0614460565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c9190614197565b9150600a8561281b9190614344565b603061282791906140b6565b60f81b81838151811061283d5761283c614431565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612879919061410c565b94506127f7565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612967575061296682612b70565b5b9050919050565b612979838383612bda565b505050565b6129888383612cee565b61299560008484846129d9565b6129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613cc5565b60405180910390fd5b505050565b60006129fa8473ffffffffffffffffffffffffffffffffffffffff16612ebc565b15612b63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a23612106565b8786866040518563ffffffff1660e01b8152600401612a459493929190613c1c565b602060405180830381600087803b158015612a5f57600080fd5b505af1925050508015612a9057506040513d601f19601f82011682018060405250810190612a8d91906136b2565b60015b612b13573d8060008114612ac0576040519150601f19603f3d011682016040523d82523d6000602084013e612ac5565b606091505b50600081511415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290613cc5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b68565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612be5838383612ecf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c2857612c2381612ed4565b612c67565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c6657612c658382612f1d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612caa57612ca58161308a565b612ce9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ce857612ce7828261315b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590613e25565b60405180910390fd5b612d678161209a565b15612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90613d05565b60405180910390fd5b612db36000838361296e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0391906140b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f2a84611347565b612f349190614197565b9050600060076000848152602001908152602001600020549050818114613019576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061309e9190614197565b90506000600960008481526020019081526020016000205490506000600883815481106130ce576130cd614431565b5b9060005260206000200154905080600883815481106130f0576130ef614431565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061313f5761313e614402565b5b6001900381819060005260206000200160009055905550505050565b600061316683611347565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546131e69061428e565b90600052602060002090601f016020900481019282613208576000855561324f565b82601f1061322157805160ff191683800117855561324f565b8280016001018555821561324f579182015b8281111561324e578251825591602001919060010190613233565b5b50905061325c9190613260565b5090565b5b80821115613279576000816000905550600101613261565b5090565b600061329061328b84613fe5565b613fc0565b905080838252602082019050828560208602820111156132b3576132b2614494565b5b60005b858110156132e357816132c98882613371565b8452602084019350602083019250506001810190506132b6565b5050509392505050565b60006133006132fb84614011565b613fc0565b90508281526020810184848401111561331c5761331b614499565b5b61332784828561424c565b509392505050565b600061334261333d84614042565b613fc0565b90508281526020810184848401111561335e5761335d614499565b5b61336984828561424c565b509392505050565b60008135905061338081614b63565b92915050565b600082601f83011261339b5761339a61448f565b5b81356133ab84826020860161327d565b91505092915050565b6000813590506133c381614b7a565b92915050565b6000813590506133d881614b91565b92915050565b6000815190506133ed81614b91565b92915050565b600082601f8301126134085761340761448f565b5b81356134188482602086016132ed565b91505092915050565b600082601f8301126134365761343561448f565b5b813561344684826020860161332f565b91505092915050565b60008135905061345e81614ba8565b92915050565b60008135905061347381614bbf565b92915050565b60006020828403121561348f5761348e6144a3565b5b600061349d84828501613371565b91505092915050565b600080604083850312156134bd576134bc6144a3565b5b60006134cb85828601613371565b92505060206134dc85828601613371565b9150509250929050565b6000806000606084860312156134ff576134fe6144a3565b5b600061350d86828701613371565b935050602061351e86828701613371565b925050604061352f8682870161344f565b9150509250925092565b60008060008060808587031215613553576135526144a3565b5b600061356187828801613371565b945050602061357287828801613371565b93505060406135838782880161344f565b925050606085013567ffffffffffffffff8111156135a4576135a361449e565b5b6135b0878288016133f3565b91505092959194509250565b600080604083850312156135d3576135d26144a3565b5b60006135e185828601613371565b92505060206135f2858286016133b4565b9150509250929050565b60008060408385031215613613576136126144a3565b5b600061362185828601613371565b92505060206136328582860161344f565b9150509250929050565b600060208284031215613652576136516144a3565b5b600082013567ffffffffffffffff8111156136705761366f61449e565b5b61367c84828501613386565b91505092915050565b60006020828403121561369b5761369a6144a3565b5b60006136a9848285016133c9565b91505092915050565b6000602082840312156136c8576136c76144a3565b5b60006136d6848285016133de565b91505092915050565b6000602082840312156136f5576136f46144a3565b5b600082013567ffffffffffffffff8111156137135761371261449e565b5b61371f84828501613421565b91505092915050565b60006020828403121561373e5761373d6144a3565b5b600061374c8482850161344f565b91505092915050565b60006020828403121561376b5761376a6144a3565b5b600061377984828501613464565b91505092915050565b61378b816141cb565b82525050565b61379a816141dd565b82525050565b60006137ab82614073565b6137b58185614089565b93506137c581856020860161425b565b6137ce816144a8565b840191505092915050565b60006137e48261407e565b6137ee818561409a565b93506137fe81856020860161425b565b613807816144a8565b840191505092915050565b600061381d8261407e565b61382781856140ab565b935061383781856020860161425b565b80840191505092915050565b6000613850602b8361409a565b915061385b826144b9565b604082019050919050565b600061387360328361409a565b915061387e82614508565b604082019050919050565b600061389660268361409a565b91506138a182614557565b604082019050919050565b60006138b9601c8361409a565b91506138c4826145a6565b602082019050919050565b60006138dc602a8361409a565b91506138e7826145cf565b604082019050919050565b60006138ff60248361409a565b915061390a8261461e565b604082019050919050565b600061392260198361409a565b915061392d8261466d565b602082019050919050565b6000613945602c8361409a565b915061395082614696565b604082019050919050565b6000613968601d8361409a565b9150613973826146e5565b602082019050919050565b600061398b60388361409a565b91506139968261470e565b604082019050919050565b60006139ae602a8361409a565b91506139b98261475d565b604082019050919050565b60006139d160298361409a565b91506139dc826147ac565b604082019050919050565b60006139f460208361409a565b91506139ff826147fb565b602082019050919050565b6000613a17602c8361409a565b9150613a2282614824565b604082019050919050565b6000613a3a60208361409a565b9150613a4582614873565b602082019050919050565b6000613a5d60298361409a565b9150613a688261489c565b604082019050919050565b6000613a80602f8361409a565b9150613a8b826148eb565b604082019050919050565b6000613aa360218361409a565b9150613aae8261493a565b604082019050919050565b6000613ac660308361409a565b9150613ad182614989565b604082019050919050565b6000613ae960238361409a565b9150613af4826149d8565b604082019050919050565b6000613b0c60318361409a565b9150613b1782614a27565b604082019050919050565b6000613b2f602c8361409a565b9150613b3a82614a76565b604082019050919050565b6000613b5260138361409a565b9150613b5d82614ac5565b602082019050919050565b6000613b75605e8361409a565b9150613b8082614aee565b606082019050919050565b613b9481614235565b82525050565b613bab613ba682614235565b61433a565b82525050565b6000613bbd8285613812565b9150613bc98284613812565b91508190509392505050565b6000613be18285613b9a565b602082019150613bf18284613b9a565b6020820191508190509392505050565b6000602082019050613c166000830184613782565b92915050565b6000608082019050613c316000830187613782565b613c3e6020830186613782565b613c4b6040830185613b8b565b8181036060830152613c5d81846137a0565b905095945050505050565b6000602082019050613c7d6000830184613791565b92915050565b60006020820190508181036000830152613c9d81846137d9565b905092915050565b60006020820190508181036000830152613cbe81613843565b9050919050565b60006020820190508181036000830152613cde81613866565b9050919050565b60006020820190508181036000830152613cfe81613889565b9050919050565b60006020820190508181036000830152613d1e816138ac565b9050919050565b60006020820190508181036000830152613d3e816138cf565b9050919050565b60006020820190508181036000830152613d5e816138f2565b9050919050565b60006020820190508181036000830152613d7e81613915565b9050919050565b60006020820190508181036000830152613d9e81613938565b9050919050565b60006020820190508181036000830152613dbe8161395b565b9050919050565b60006020820190508181036000830152613dde8161397e565b9050919050565b60006020820190508181036000830152613dfe816139a1565b9050919050565b60006020820190508181036000830152613e1e816139c4565b9050919050565b60006020820190508181036000830152613e3e816139e7565b9050919050565b60006020820190508181036000830152613e5e81613a0a565b9050919050565b60006020820190508181036000830152613e7e81613a2d565b9050919050565b60006020820190508181036000830152613e9e81613a50565b9050919050565b60006020820190508181036000830152613ebe81613a73565b9050919050565b60006020820190508181036000830152613ede81613a96565b9050919050565b60006020820190508181036000830152613efe81613ab9565b9050919050565b60006020820190508181036000830152613f1e81613adc565b9050919050565b60006020820190508181036000830152613f3e81613aff565b9050919050565b60006020820190508181036000830152613f5e81613b22565b9050919050565b60006020820190508181036000830152613f7e81613b45565b9050919050565b60006020820190508181036000830152613f9e81613b68565b9050919050565b6000602082019050613fba6000830184613b8b565b92915050565b6000613fca613fdb565b9050613fd682826142c0565b919050565b6000604051905090565b600067ffffffffffffffff82111561400057613fff614460565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561402c5761402b614460565b5b614035826144a8565b9050602081019050919050565b600067ffffffffffffffff82111561405d5761405c614460565b5b614066826144a8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140c182614235565b91506140cc83614235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561410157614100614375565b5b828201905092915050565b600061411782614235565b915061412283614235565b925082614132576141316143a4565b5b828204905092915050565b600061414882614235565b915061415383614235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561418c5761418b614375565b5b828202905092915050565b60006141a282614235565b91506141ad83614235565b9250828210156141c0576141bf614375565b5b828203905092915050565b60006141d682614215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561427957808201518184015260208101905061425e565b83811115614288576000848401525b50505050565b600060028204905060018216806142a657607f821691505b602082108114156142ba576142b96143d3565b5b50919050565b6142c9826144a8565b810181811067ffffffffffffffff821117156142e8576142e7614460565b5b80604052505050565b60006142fc82614235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432f5761432e614375565b5b600182019050919050565b6000819050919050565b600061434f82614235565b915061435a83614235565b92508261436a576143696143a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43727970746f477265656b733a20596f75277265206e6f74206f6e207468652060008201527f77686974656c6973742e00000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f456e6f75676820546f6b656e7320617265206e6f74206c6566743b205472792060008201527f61207265647563656420616d6f756e7400000000000000000000000000000000602082015250565b7f5468617420776f756c642065786365656420746865206d61782072657365727660008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416d6f756e742073656e74206973206c65737300000000000000000000000000600082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e20323420546f6b60008201527f656e73206174206f6e6365213b20547279206d696e74696e67206c657373207460208201527f68616e20323420696e20612073696e676c65207472616e73636174696f6e0000604082015250565b614b6c816141cb565b8114614b7757600080fd5b50565b614b83816141dd565b8114614b8e57600080fd5b50565b614b9a816141e9565b8114614ba557600080fd5b50565b614bb181614235565b8114614bbc57600080fd5b50565b614bc88161423f565b8114614bd357600080fd5b5056fea2646970667358221220cf04cab54ced3ffbd083595df114ad6ce68fd6db81813a03261781c221e0221764736f6c63430008060033

Deployed Bytecode Sourcemap

49039:6226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55050:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12543:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12066:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53133:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23651:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13433:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49408:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23319:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54427:403;;;;;;;;;;;;;:::i;:::-;;13843:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23841:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50382:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10678:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49553:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51748:698;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10408:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48381:94;;;;;;;;;;;;;:::i;:::-;;53264:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49583:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51500:93;;;;;;;;;;;;;:::i;:::-;;47730:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51286:202;;;;;;;;;;;;;:::i;:::-;;50655:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11153:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50798:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51040:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52454:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12836:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14099:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11328:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49447:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49142:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50888:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13202:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53655:764;;;;;;;;;;;;;:::i;:::-;;48630:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55050:212;55189:4;55218:36;55242:11;55218:23;:36::i;:::-;55211:43;;55050:212;;;:::o;10984:100::-;11038:13;11071:5;11064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10984:100;:::o;12543:221::-;12619:7;12647:16;12655:7;12647;:16::i;:::-;12639:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12732:15;:24;12748:7;12732:24;;;;;;;;;;;;;;;;;;;;;12725:31;;12543:221;;;:::o;12066:411::-;12147:13;12163:23;12178:7;12163:14;:23::i;:::-;12147:39;;12211:5;12205:11;;:2;:11;;;;12197:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;12305:5;12289:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;12314:37;12331:5;12338:12;:10;:12::i;:::-;12314:16;:37::i;:::-;12289:62;12267:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;12448:21;12457:2;12461:7;12448:8;:21::i;:::-;12136:341;12066:411;;:::o;53133:123::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53234:14:::1;53218:13;:30;;;;;;;;;;;;:::i;:::-;;53133:123:::0;:::o;23651:113::-;23712:7;23739:10;:17;;;;23732:24;;23651:113;:::o;13433:339::-;13628:41;13647:12;:10;:12::i;:::-;13661:7;13628:18;:41::i;:::-;13620:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;13736:28;13746:4;13752:2;13756:7;13736:9;:28::i;:::-;13433:339;;;:::o;49408:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23319:256::-;23416:7;23452:23;23469:5;23452:16;:23::i;:::-;23444:5;:31;23436:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;23541:12;:19;23554:5;23541:19;;;;;;;;;;;;;;;:26;23561:5;23541:26;;;;;;;;;;;;23534:33;;23319:256;;;;:::o;54427:403::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54475:16:::1;54494:21;54475:40;;54526:15;54544:25;54565:3;54544:16;54557:2;54544:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;54526:43;;54580:15;54598:25;54619:3;54598:16;54611:2;54598:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;54580:43;;54634:15;54652:25;54673:3;54652:16;54665:2;54652:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;54634:43;;54714:2;;;;;;;;;;;54706:16;;:25;54723:7;54706:25;;;;;;;;;;;;;;;;;;;;;;;54698:34;;;::::0;::::1;;54759:2;;;;;;;;;;;54751:16;;:25;54768:7;54751:25;;;;;;;;;;;;;;;;;;;;;;;54743:34;;;::::0;::::1;;54804:2;;;;;;;;;;;54796:16;;:25;54813:7;54796:25;;;;;;;;;;;;;;;;;;;;;;;54788:34;;;::::0;::::1;;54464:366;;;;54427:403::o:0;13843:185::-;13981:39;13998:4;14004:2;14008:7;13981:39;;;;;;;;;;;;:16;:39::i;:::-;13843:185;;;:::o;23841:233::-;23916:7;23952:30;:28;:30::i;:::-;23944:5;:38;23936:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;24049:10;24060:5;24049:17;;;;;;;;:::i;:::-;;;;;;;;;;24042:24;;23841:233;;;:::o;50382:92::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50462:4:::1;50452:7;:14;;;;;;;;;;;;:::i;:::-;;50382:92:::0;:::o;10678:239::-;10750:7;10770:13;10786:7;:16;10794:7;10786:16;;;;;;;;;;;;;;;;;;;;;10770:32;;10838:1;10821:19;;:5;:19;;;;10813:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:5;10897:12;;;10678:239;;;:::o;49553:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51748:698::-;50261:11;:23;50273:10;50261:23;;;;;;;;;;;;;;;;;;;;;;;;;50239:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;51841:14:::1;51858:13;:11;:13::i;:::-;51841:30;;51890:15;;;;;;;;;;;51882:24;;;::::0;::::1;;51942;;51925:13;:41;;;;51917:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;52145:10;;52113:27;52125:13;52113:27;;:6;:10;;:27;;;;:::i;:::-;:42;;52090:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;52279:9;52269:6;;52255:13;:20;;;;;;:::i;:::-;:33;;52233:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;52344:9;52339:100;52359:13;52355:17;;:1;:17;52339:100;;;52394:33;52404:10;52425:1;52416:6;:10;;;;:::i;:::-;52394:9;:33::i;:::-;52374:3;;;;;:::i;:::-;;;;52339:100;;;;51821:625;51748:698:::0;:::o;10408:208::-;10480:7;10525:1;10508:19;;:5;:19;;;;10500:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10592:9;:16;10602:5;10592:16;;;;;;;;;;;;;;;;10585:23;;10408:208;;;:::o;48381:94::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48446:21:::1;48464:1;48446:9;:21::i;:::-;48381:94::o:0;53264:383::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53341:11:::1;53355:5;:12;53341:26;;53394:9;;53387:3;:16;;53378:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53456:16;53475:13;:11;:13::i;:::-;53456:32;;53504:9;53499:95;53524:3;53520:1;:7;53499:95;;;53549:33;53559:5;53565:1;53559:8;;;;;;;;:::i;:::-;;;;;;;;53580:1;53569:8;:12;;;;:::i;:::-;53549:9;:33::i;:::-;53529:3;;;;;:::i;:::-;;;;53499:95;;;;53618:20;53633:3;53618:9;;:13;;:20;;;;:::i;:::-;53606:9;:32;;;;53330:317;;53264:383:::0;:::o;49583:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;51500:93::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51573:12:::1;;;;;;;;;;;51572:13;51557:12;;:28;;;;;;;;;;;;;;;;;;51500:93::o:0;47730:87::-;47776:7;47803:6;;;;;;;;;;;47796:13;;47730:87;:::o;51286:202::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51365:15:::1;;;;;;;;;;;51364:16;51346:15;;:34;;;;;;;;;;;;;;;;;;51397:15;;;;;;;;;;;:37;;;;;51433:1;51416:13;;:18;51397:37;51393:88;;;51451:18;:16;:18::i;:::-;51393:88;51286:202::o:0;50655:93::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50731:9:::1;50722:6;:18;;;;50655:93:::0;:::o;11153:104::-;11209:13;11242:7;11235:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11153:104;:::o;50798:82::-;50839:7;50866:6;;50859:13;;50798:82;:::o;51040:192::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51132:9:::1;51127:98;51151:5;:12;51147:1;:16;51127:98;;;51209:4;51185:11;:21;51197:5;51203:1;51197:8;;;;;;;;:::i;:::-;;;;;;;;51185:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;51165:3;;;;;:::i;:::-;;;;51127:98;;;;51040:192:::0;:::o;52454:642::-;50065:12;;;;;;;;;;;50057:21;;;;;;52535:14:::1;52552:13;:11;:13::i;:::-;52535:30;;52615:17;;52598:13;:34;;52576:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;49178:4;52778:27;52790:13;52778:6;:10;;:27;;;;:::i;:::-;:41;;52756:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;52928:9;52918:6;;52904:13;:20;;;;:::i;:::-;:33;;52896:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52990:9;52985:104;53009:13;53005:1;:17;52985:104;;;53044:33;53054:10;53075:1;53066:6;:10;;;;:::i;:::-;53044:9;:33::i;:::-;53024:3;;;;;:::i;:::-;;;;52985:104;;;;52524:572;52454:642:::0;:::o;12836:295::-;12951:12;:10;:12::i;:::-;12939:24;;:8;:24;;;;12931:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;13051:8;13006:18;:32;13025:12;:10;:12::i;:::-;13006:32;;;;;;;;;;;;;;;:42;13039:8;13006:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;13104:8;13075:48;;13090:12;:10;:12::i;:::-;13075:48;;;13114:8;13075:48;;;;;;:::i;:::-;;;;;;;;12836:295;;:::o;14099:328::-;14274:41;14293:12;:10;:12::i;:::-;14307:7;14274:18;:41::i;:::-;14266:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;14380:39;14394:4;14400:2;14404:7;14413:5;14380:13;:39::i;:::-;14099:328;;;;:::o;11328:334::-;11401:13;11435:16;11443:7;11435;:16::i;:::-;11427:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;11516:21;11540:10;:8;:10::i;:::-;11516:34;;11592:1;11574:7;11568:21;:25;:86;;;;;;;;;;;;;;;;;11620:7;11629:18;:7;:16;:18::i;:::-;11603:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11568:86;11561:93;;;11328:334;;;:::o;49447:28::-;;;;:::o;49142:40::-;49178:4;49142:40;:::o;50888:92::-;50936:7;50963:9;;50956:16;;50888:92;:::o;13202:164::-;13299:4;13323:18;:25;13342:5;13323:25;;;;;;;;;;;;;;;:35;13349:8;13323:35;;;;;;;;;;;;;;;;;;;;;;;;;13316:42;;13202:164;;;;:::o;53655:764::-;53726:1;53709:13;;:18;53701:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53839:20;53894:16;53912:15;53877:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53867:62;;;;;;53862:68;;53839:91;;53977:3;53962:12;:18;;;;:::i;:::-;53957:1;:24;;;;:::i;:::-;53941:40;;54095:12;54080;:27;54076:76;;;54139:1;54124:16;;54076:76;54164:18;54200:12;54185;:27;;;;:::i;:::-;54164:48;;49178:4;54254:10;54244:21;54239:27;;:39;;;;:::i;:::-;54223:13;:55;;;;54349:1;54332:13;;:18;54328:84;;;54399:1;54383:13;;:17;;;;:::i;:::-;54367:13;:33;;;;54328:84;53690:729;;53655:764::o;48630:192::-;47961:12;:10;:12::i;:::-;47950:23;;:7;:5;:7::i;:::-;:23;;;47942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48739:1:::1;48719:22;;:8;:22;;;;48711:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48795:19;48805:8;48795:9;:19::i;:::-;48630:192:::0;:::o;23011:224::-;23113:4;23152:35;23137:50;;;:11;:50;;;;:90;;;;23191:36;23215:11;23191:23;:36::i;:::-;23137:90;23130:97;;23011:224;;;:::o;15937:127::-;16002:4;16054:1;16026:30;;:7;:16;16034:7;16026:16;;;;;;;;;;;;;;;;;;;;;:30;;;;16019:37;;15937:127;;;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;19919:174::-;20021:2;19994:15;:24;20010:7;19994:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20077:7;20073:2;20039:46;;20048:23;20063:7;20048:14;:23::i;:::-;20039:46;;;;;;;;;;;;19919:174;;:::o;16231:348::-;16324:4;16349:16;16357:7;16349;:16::i;:::-;16341:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16425:13;16441:23;16456:7;16441:14;:23::i;:::-;16425:39;;16494:5;16483:16;;:7;:16;;;:51;;;;16527:7;16503:31;;:20;16515:7;16503:11;:20::i;:::-;:31;;;16483:51;:87;;;;16538:32;16555:5;16562:7;16538:16;:32::i;:::-;16483:87;16475:96;;;16231:348;;;;:::o;19223:578::-;19382:4;19355:31;;:23;19370:7;19355:14;:23::i;:::-;:31;;;19347:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19465:1;19451:16;;:2;:16;;;;19443:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19521:39;19542:4;19548:2;19552:7;19521:20;:39::i;:::-;19625:29;19642:1;19646:7;19625:8;:29::i;:::-;19686:1;19667:9;:15;19677:4;19667:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;19715:1;19698:9;:13;19708:2;19698:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;19746:2;19727:7;:16;19735:7;19727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;19785:7;19781:2;19766:27;;19775:4;19766:27;;;;;;;;;;;;19223:578;;;:::o;42469:98::-;42527:7;42558:1;42554;:5;;;;:::i;:::-;42547:12;;42469:98;;;;:::o;42868:::-;42926:7;42957:1;42953;:5;;;;:::i;:::-;42946:12;;42868:98;;;;:::o;41731:::-;41789:7;41820:1;41816;:5;;;;:::i;:::-;41809:12;;41731:98;;;;:::o;16921:110::-;16997:26;17007:2;17011:7;16997:26;;;;;;;;;;;;:9;:26::i;:::-;16921:110;;:::o;48830:173::-;48886:16;48905:6;;;;;;;;;;;48886:25;;48931:8;48922:6;;:17;;;;;;;;;;;;;;;;;;48986:8;48955:40;;48976:8;48955:40;;;;;;;;;;;;48875:128;48830:173;:::o;42112:98::-;42170:7;42201:1;42197;:5;;;;:::i;:::-;42190:12;;42112:98;;;;:::o;15309:315::-;15466:28;15476:4;15482:2;15486:7;15466:9;:28::i;:::-;15513:48;15536:4;15542:2;15546:7;15555:5;15513:22;:48::i;:::-;15505:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15309:315;;;;:::o;50482:107::-;50541:13;50574:7;50567:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50482:107;:::o;29418:723::-;29474:13;29704:1;29695:5;:10;29691:53;;;29722:10;;;;;;;;;;;;;;;;;;;;;29691:53;29754:12;29769:5;29754:20;;29785:14;29810:78;29825:1;29817:4;:9;29810:78;;29843:8;;;;;:::i;:::-;;;;29874:2;29866:10;;;;;:::i;:::-;;;29810:78;;;29898:19;29930:6;29920:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29898:39;;29948:154;29964:1;29955:5;:10;29948:154;;29992:1;29982:11;;;;;:::i;:::-;;;30059:2;30051:5;:10;;;;:::i;:::-;30038:2;:24;;;;:::i;:::-;30025:39;;30008:6;30015;30008:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;30088:2;30079:11;;;;;:::i;:::-;;;29948:154;;;30126:6;30112:21;;;;;29418:723;;;;:::o;10039:305::-;10141:4;10193:25;10178:40;;;:11;:40;;;;:105;;;;10250:33;10235:48;;;:11;:48;;;;10178:105;:158;;;;10300:36;10324:11;10300:23;:36::i;:::-;10178:158;10158:178;;10039:305;;;:::o;54838:204::-;54989:45;55016:4;55022:2;55026:7;54989:26;:45::i;:::-;54838:204;;;:::o;17258:321::-;17388:18;17394:2;17398:7;17388:5;:18::i;:::-;17439:54;17470:1;17474:2;17478:7;17487:5;17439:22;:54::i;:::-;17417:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;17258:321;;;:::o;20658:803::-;20813:4;20834:15;:2;:13;;;:15::i;:::-;20830:624;;;20886:2;20870:36;;;20907:12;:10;:12::i;:::-;20921:4;20927:7;20936:5;20870:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20866:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21133:1;21116:6;:13;:18;21112:272;;;21159:60;;;;;;;;;;:::i;:::-;;;;;;;;21112:272;21334:6;21328:13;21319:6;21315:2;21311:15;21304:38;20866:533;21003:45;;;20993:55;;;:6;:55;;;;20986:62;;;;;20830:624;21438:4;21431:11;;20658:803;;;;;;;:::o;8619:157::-;8704:4;8743:25;8728:40;;;:11;:40;;;;8721:47;;8619:157;;;:::o;24687:589::-;24831:45;24858:4;24864:2;24868:7;24831:26;:45::i;:::-;24909:1;24893:18;;:4;:18;;;24889:187;;;24928:40;24960:7;24928:31;:40::i;:::-;24889:187;;;24998:2;24990:10;;:4;:10;;;24986:90;;25017:47;25050:4;25056:7;25017:32;:47::i;:::-;24986:90;24889:187;25104:1;25090:16;;:2;:16;;;25086:183;;;25123:45;25160:7;25123:36;:45::i;:::-;25086:183;;;25196:4;25190:10;;:2;:10;;;25186:83;;25217:40;25245:2;25249:7;25217:27;:40::i;:::-;25186:83;25086:183;24687:589;;;:::o;17915:382::-;18009:1;17995:16;;:2;:16;;;;17987:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;18068:16;18076:7;18068;:16::i;:::-;18067:17;18059:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;18130:45;18159:1;18163:2;18167:7;18130:20;:45::i;:::-;18205:1;18188:9;:13;18198:2;18188:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;18236:2;18217:7;:16;18225:7;18217:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;18281:7;18277:2;18256:33;;18273:1;18256:33;;;;;;;;;;;;17915:382;;:::o;31885:387::-;31945:4;32153:12;32220:7;32208:20;32200:28;;32263:1;32256:4;:8;32249:15;;;31885:387;;;:::o;22033:126::-;;;;:::o;25999:164::-;26103:10;:17;;;;26076:15;:24;26092:7;26076:24;;;;;;;;;;;:44;;;;26131:10;26147:7;26131:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25999:164;:::o;26790:988::-;27056:22;27106:1;27081:22;27098:4;27081:16;:22::i;:::-;:26;;;;:::i;:::-;27056:51;;27118:18;27139:17;:26;27157:7;27139:26;;;;;;;;;;;;27118:47;;27286:14;27272:10;:28;27268:328;;27317:19;27339:12;:18;27352:4;27339:18;;;;;;;;;;;;;;;:34;27358:14;27339:34;;;;;;;;;;;;27317:56;;27423:11;27390:12;:18;27403:4;27390:18;;;;;;;;;;;;;;;:30;27409:10;27390:30;;;;;;;;;;;:44;;;;27540:10;27507:17;:30;27525:11;27507:30;;;;;;;;;;;:43;;;;27302:294;27268:328;27692:17;:26;27710:7;27692:26;;;;;;;;;;;27685:33;;;27736:12;:18;27749:4;27736:18;;;;;;;;;;;;;;;:34;27755:14;27736:34;;;;;;;;;;;27729:41;;;26871:907;;26790:988;;:::o;28073:1079::-;28326:22;28371:1;28351:10;:17;;;;:21;;;;:::i;:::-;28326:46;;28383:18;28404:15;:24;28420:7;28404:24;;;;;;;;;;;;28383:45;;28755:19;28777:10;28788:14;28777:26;;;;;;;;:::i;:::-;;;;;;;;;;28755:48;;28841:11;28816:10;28827;28816:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;28952:10;28921:15;:28;28937:11;28921:28;;;;;;;;;;;:41;;;;29093:15;:24;29109:7;29093:24;;;;;;;;;;;29086:31;;;29128:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28144:1008;;;28073:1079;:::o;25577:221::-;25662:14;25679:20;25696:2;25679:16;:20::i;:::-;25662:37;;25737:7;25710:12;:16;25723:2;25710:16;;;;;;;;;;;;;;;:24;25727:6;25710:24;;;;;;;;;;;:34;;;;25784:6;25755:17;:26;25773:7;25755:26;;;;;;;;;;;:35;;;;25651:147;25577:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:2;;;404:79;;:::i;:::-;350:2;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;;;;;;;:::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:2;;;1025:79;;:::i;:::-;994:2;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:2;;;1443:79;;:::i;:::-;1412:2;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1638:87;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:2;;1876:79;;:::i;:::-;1835:2;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2173:84;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2314:86;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2468:79;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:2;;2678:79;;:::i;:::-;2637:2;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:2;;3037:79;;:::i;:::-;2996:2;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3322:87;;;;:::o;3415:135::-;3459:5;3497:6;3484:20;3475:29;;3513:31;3538:5;3513:31;:::i;:::-;3465:85;;;;:::o;3556:329::-;3615:6;3664:2;3652:9;3643:7;3639:23;3635:32;3632:2;;;3670:79;;:::i;:::-;3632:2;3790:1;3815:53;3860:7;3851:6;3840:9;3836:22;3815:53;:::i;:::-;3805:63;;3761:117;3622:263;;;;:::o;3891:474::-;3959:6;3967;4016:2;4004:9;3995:7;3991:23;3987:32;3984:2;;;4022:79;;:::i;:::-;3984:2;4142:1;4167:53;4212:7;4203:6;4192:9;4188:22;4167:53;:::i;:::-;4157:63;;4113:117;4269:2;4295:53;4340:7;4331:6;4320:9;4316:22;4295:53;:::i;:::-;4285:63;;4240:118;3974:391;;;;;:::o;4371:619::-;4448:6;4456;4464;4513:2;4501:9;4492:7;4488:23;4484:32;4481:2;;;4519:79;;:::i;:::-;4481:2;4639:1;4664:53;4709:7;4700:6;4689:9;4685:22;4664:53;:::i;:::-;4654:63;;4610:117;4766:2;4792:53;4837:7;4828:6;4817:9;4813:22;4792:53;:::i;:::-;4782:63;;4737:118;4894:2;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4865:118;4471:519;;;;;:::o;4996:943::-;5091:6;5099;5107;5115;5164:3;5152:9;5143:7;5139:23;5135:33;5132:2;;;5171:79;;:::i;:::-;5132:2;5291:1;5316:53;5361:7;5352:6;5341:9;5337:22;5316:53;:::i;:::-;5306:63;;5262:117;5418:2;5444:53;5489:7;5480:6;5469:9;5465:22;5444:53;:::i;:::-;5434:63;;5389:118;5546:2;5572:53;5617:7;5608:6;5597:9;5593:22;5572:53;:::i;:::-;5562:63;;5517:118;5702:2;5691:9;5687:18;5674:32;5733:18;5725:6;5722:30;5719:2;;;5755:79;;:::i;:::-;5719:2;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5645:287;5122:817;;;;;;;:::o;5945:468::-;6010:6;6018;6067:2;6055:9;6046:7;6042:23;6038:32;6035:2;;;6073:79;;:::i;:::-;6035:2;6193:1;6218:53;6263:7;6254:6;6243:9;6239:22;6218:53;:::i;:::-;6208:63;;6164:117;6320:2;6346:50;6388:7;6379:6;6368:9;6364:22;6346:50;:::i;:::-;6336:60;;6291:115;6025:388;;;;;:::o;6419:474::-;6487:6;6495;6544:2;6532:9;6523:7;6519:23;6515:32;6512:2;;;6550:79;;:::i;:::-;6512:2;6670:1;6695:53;6740:7;6731:6;6720:9;6716:22;6695:53;:::i;:::-;6685:63;;6641:117;6797:2;6823:53;6868:7;6859:6;6848:9;6844:22;6823:53;:::i;:::-;6813:63;;6768:118;6502:391;;;;;:::o;6899:539::-;6983:6;7032:2;7020:9;7011:7;7007:23;7003:32;7000:2;;;7038:79;;:::i;:::-;7000:2;7186:1;7175:9;7171:17;7158:31;7216:18;7208:6;7205:30;7202:2;;;7238:79;;:::i;:::-;7202:2;7343:78;7413:7;7404:6;7393:9;7389:22;7343:78;:::i;:::-;7333:88;;7129:302;6990:448;;;;:::o;7444:327::-;7502:6;7551:2;7539:9;7530:7;7526:23;7522:32;7519:2;;;7557:79;;:::i;:::-;7519:2;7677:1;7702:52;7746:7;7737:6;7726:9;7722:22;7702:52;:::i;:::-;7692:62;;7648:116;7509:262;;;;:::o;7777:349::-;7846:6;7895:2;7883:9;7874:7;7870:23;7866:32;7863:2;;;7901:79;;:::i;:::-;7863:2;8021:1;8046:63;8101:7;8092:6;8081:9;8077:22;8046:63;:::i;:::-;8036:73;;7992:127;7853:273;;;;:::o;8132:509::-;8201:6;8250:2;8238:9;8229:7;8225:23;8221:32;8218:2;;;8256:79;;:::i;:::-;8218:2;8404:1;8393:9;8389:17;8376:31;8434:18;8426:6;8423:30;8420:2;;;8456:79;;:::i;:::-;8420:2;8561:63;8616:7;8607:6;8596:9;8592:22;8561:63;:::i;:::-;8551:73;;8347:287;8208:433;;;;:::o;8647:329::-;8706:6;8755:2;8743:9;8734:7;8730:23;8726:32;8723:2;;;8761:79;;:::i;:::-;8723:2;8881:1;8906:53;8951:7;8942:6;8931:9;8927:22;8906:53;:::i;:::-;8896:63;;8852:117;8713:263;;;;:::o;8982:325::-;9039:6;9088:2;9076:9;9067:7;9063:23;9059:32;9056:2;;;9094:79;;:::i;:::-;9056:2;9214:1;9239:51;9282:7;9273:6;9262:9;9258:22;9239:51;:::i;:::-;9229:61;;9185:115;9046:261;;;;:::o;9313:118::-;9400:24;9418:5;9400:24;:::i;:::-;9395:3;9388:37;9378:53;;:::o;9437:109::-;9518:21;9533:5;9518:21;:::i;:::-;9513:3;9506:34;9496:50;;:::o;9552:360::-;9638:3;9666:38;9698:5;9666:38;:::i;:::-;9720:70;9783:6;9778:3;9720:70;:::i;:::-;9713:77;;9799:52;9844:6;9839:3;9832:4;9825:5;9821:16;9799:52;:::i;:::-;9876:29;9898:6;9876:29;:::i;:::-;9871:3;9867:39;9860:46;;9642:270;;;;;:::o;9918:364::-;10006:3;10034:39;10067:5;10034:39;:::i;:::-;10089:71;10153:6;10148:3;10089:71;:::i;:::-;10082:78;;10169:52;10214:6;10209:3;10202:4;10195:5;10191:16;10169:52;:::i;:::-;10246:29;10268:6;10246:29;:::i;:::-;10241:3;10237:39;10230:46;;10010:272;;;;;:::o;10288:377::-;10394:3;10422:39;10455:5;10422:39;:::i;:::-;10477:89;10559:6;10554:3;10477:89;:::i;:::-;10470:96;;10575:52;10620:6;10615:3;10608:4;10601:5;10597:16;10575:52;:::i;:::-;10652:6;10647:3;10643:16;10636:23;;10398:267;;;;;:::o;10671:366::-;10813:3;10834:67;10898:2;10893:3;10834:67;:::i;:::-;10827:74;;10910:93;10999:3;10910:93;:::i;:::-;11028:2;11023:3;11019:12;11012:19;;10817:220;;;:::o;11043:366::-;11185:3;11206:67;11270:2;11265:3;11206:67;:::i;:::-;11199:74;;11282:93;11371:3;11282:93;:::i;:::-;11400:2;11395:3;11391:12;11384:19;;11189:220;;;:::o;11415:366::-;11557:3;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11654:93;11743:3;11654:93;:::i;:::-;11772:2;11767:3;11763:12;11756:19;;11561:220;;;:::o;11787:366::-;11929:3;11950:67;12014:2;12009:3;11950:67;:::i;:::-;11943:74;;12026:93;12115:3;12026:93;:::i;:::-;12144:2;12139:3;12135:12;12128:19;;11933:220;;;:::o;12159:366::-;12301:3;12322:67;12386:2;12381:3;12322:67;:::i;:::-;12315:74;;12398:93;12487:3;12398:93;:::i;:::-;12516:2;12511:3;12507:12;12500:19;;12305:220;;;:::o;12531:366::-;12673:3;12694:67;12758:2;12753:3;12694:67;:::i;:::-;12687:74;;12770:93;12859:3;12770:93;:::i;:::-;12888:2;12883:3;12879:12;12872:19;;12677:220;;;:::o;12903:366::-;13045:3;13066:67;13130:2;13125:3;13066:67;:::i;:::-;13059:74;;13142:93;13231:3;13142:93;:::i;:::-;13260:2;13255:3;13251:12;13244:19;;13049:220;;;:::o;13275:366::-;13417:3;13438:67;13502:2;13497:3;13438:67;:::i;:::-;13431:74;;13514:93;13603:3;13514:93;:::i;:::-;13632:2;13627:3;13623:12;13616:19;;13421:220;;;:::o;13647:366::-;13789:3;13810:67;13874:2;13869:3;13810:67;:::i;:::-;13803:74;;13886:93;13975:3;13886:93;:::i;:::-;14004:2;13999:3;13995:12;13988:19;;13793:220;;;:::o;14019:366::-;14161:3;14182:67;14246:2;14241:3;14182:67;:::i;:::-;14175:74;;14258:93;14347:3;14258:93;:::i;:::-;14376:2;14371:3;14367:12;14360:19;;14165:220;;;:::o;14391:366::-;14533:3;14554:67;14618:2;14613:3;14554:67;:::i;:::-;14547:74;;14630:93;14719:3;14630:93;:::i;:::-;14748:2;14743:3;14739:12;14732:19;;14537:220;;;:::o;14763:366::-;14905:3;14926:67;14990:2;14985:3;14926:67;:::i;:::-;14919:74;;15002:93;15091:3;15002:93;:::i;:::-;15120:2;15115:3;15111:12;15104:19;;14909:220;;;:::o;15135:366::-;15277:3;15298:67;15362:2;15357:3;15298:67;:::i;:::-;15291:74;;15374:93;15463:3;15374:93;:::i;:::-;15492:2;15487:3;15483:12;15476:19;;15281:220;;;:::o;15507:366::-;15649:3;15670:67;15734:2;15729:3;15670:67;:::i;:::-;15663:74;;15746:93;15835:3;15746:93;:::i;:::-;15864:2;15859:3;15855:12;15848:19;;15653:220;;;:::o;15879:366::-;16021:3;16042:67;16106:2;16101:3;16042:67;:::i;:::-;16035:74;;16118:93;16207:3;16118:93;:::i;:::-;16236:2;16231:3;16227:12;16220:19;;16025:220;;;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16397:220;;;:::o;16623:366::-;16765:3;16786:67;16850:2;16845:3;16786:67;:::i;:::-;16779:74;;16862:93;16951:3;16862:93;:::i;:::-;16980:2;16975:3;16971:12;16964:19;;16769:220;;;:::o;16995:366::-;17137:3;17158:67;17222:2;17217:3;17158:67;:::i;:::-;17151:74;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;17141:220;;;:::o;17367:366::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17513:220;;;:::o;17739:366::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17885:220;;;:::o;18111:366::-;18253:3;18274:67;18338:2;18333:3;18274:67;:::i;:::-;18267:74;;18350:93;18439:3;18350:93;:::i;:::-;18468:2;18463:3;18459:12;18452:19;;18257:220;;;:::o;18483:366::-;18625:3;18646:67;18710:2;18705:3;18646:67;:::i;:::-;18639:74;;18722:93;18811:3;18722:93;:::i;:::-;18840:2;18835:3;18831:12;18824:19;;18629:220;;;:::o;18855:366::-;18997:3;19018:67;19082:2;19077:3;19018:67;:::i;:::-;19011:74;;19094:93;19183:3;19094:93;:::i;:::-;19212:2;19207:3;19203:12;19196:19;;19001:220;;;:::o;19227:366::-;19369:3;19390:67;19454:2;19449:3;19390:67;:::i;:::-;19383:74;;19466:93;19555:3;19466:93;:::i;:::-;19584:2;19579:3;19575:12;19568:19;;19373:220;;;:::o;19599:118::-;19686:24;19704:5;19686:24;:::i;:::-;19681:3;19674:37;19664:53;;:::o;19723:157::-;19828:45;19848:24;19866:5;19848:24;:::i;:::-;19828:45;:::i;:::-;19823:3;19816:58;19806:74;;:::o;19886:435::-;20066:3;20088:95;20179:3;20170:6;20088:95;:::i;:::-;20081:102;;20200:95;20291:3;20282:6;20200:95;:::i;:::-;20193:102;;20312:3;20305:10;;20070:251;;;;;:::o;20327:397::-;20467:3;20482:75;20553:3;20544:6;20482:75;:::i;:::-;20582:2;20577:3;20573:12;20566:19;;20595:75;20666:3;20657:6;20595:75;:::i;:::-;20695:2;20690:3;20686:12;20679:19;;20715:3;20708:10;;20471:253;;;;;:::o;20730:222::-;20823:4;20861:2;20850:9;20846:18;20838:26;;20874:71;20942:1;20931:9;20927:17;20918:6;20874:71;:::i;:::-;20828:124;;;;:::o;20958:640::-;21153:4;21191:3;21180:9;21176:19;21168:27;;21205:71;21273:1;21262:9;21258:17;21249:6;21205:71;:::i;:::-;21286:72;21354:2;21343:9;21339:18;21330:6;21286:72;:::i;:::-;21368;21436:2;21425:9;21421:18;21412:6;21368:72;:::i;:::-;21487:9;21481:4;21477:20;21472:2;21461:9;21457:18;21450:48;21515:76;21586:4;21577:6;21515:76;:::i;:::-;21507:84;;21158:440;;;;;;;:::o;21604:210::-;21691:4;21729:2;21718:9;21714:18;21706:26;;21742:65;21804:1;21793:9;21789:17;21780:6;21742:65;:::i;:::-;21696:118;;;;:::o;21820:313::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:78;22121:4;22112:6;22048:78;:::i;:::-;22040:86;;21938:195;;;;:::o;22139:419::-;22305:4;22343:2;22332:9;22328:18;22320:26;;22392:9;22386:4;22382:20;22378:1;22367:9;22363:17;22356:47;22420:131;22546:4;22420:131;:::i;:::-;22412:139;;22310:248;;;:::o;22564:419::-;22730:4;22768:2;22757:9;22753:18;22745:26;;22817:9;22811:4;22807:20;22803:1;22792:9;22788:17;22781:47;22845:131;22971:4;22845:131;:::i;:::-;22837:139;;22735:248;;;:::o;22989:419::-;23155:4;23193:2;23182:9;23178:18;23170:26;;23242:9;23236:4;23232:20;23228:1;23217:9;23213:17;23206:47;23270:131;23396:4;23270:131;:::i;:::-;23262:139;;23160:248;;;:::o;23414:419::-;23580:4;23618:2;23607:9;23603:18;23595:26;;23667:9;23661:4;23657:20;23653:1;23642:9;23638:17;23631:47;23695:131;23821:4;23695:131;:::i;:::-;23687:139;;23585:248;;;:::o;23839:419::-;24005:4;24043:2;24032:9;24028:18;24020:26;;24092:9;24086:4;24082:20;24078:1;24067:9;24063:17;24056:47;24120:131;24246:4;24120:131;:::i;:::-;24112:139;;24010:248;;;:::o;24264:419::-;24430:4;24468:2;24457:9;24453:18;24445:26;;24517:9;24511:4;24507:20;24503:1;24492:9;24488:17;24481:47;24545:131;24671:4;24545:131;:::i;:::-;24537:139;;24435:248;;;:::o;24689:419::-;24855:4;24893:2;24882:9;24878:18;24870:26;;24942:9;24936:4;24932:20;24928:1;24917:9;24913:17;24906:47;24970:131;25096:4;24970:131;:::i;:::-;24962:139;;24860:248;;;:::o;25114:419::-;25280:4;25318:2;25307:9;25303:18;25295:26;;25367:9;25361:4;25357:20;25353:1;25342:9;25338:17;25331:47;25395:131;25521:4;25395:131;:::i;:::-;25387:139;;25285:248;;;:::o;25539:419::-;25705:4;25743:2;25732:9;25728:18;25720:26;;25792:9;25786:4;25782:20;25778:1;25767:9;25763:17;25756:47;25820:131;25946:4;25820:131;:::i;:::-;25812:139;;25710:248;;;:::o;25964:419::-;26130:4;26168:2;26157:9;26153:18;26145:26;;26217:9;26211:4;26207:20;26203:1;26192:9;26188:17;26181:47;26245:131;26371:4;26245:131;:::i;:::-;26237:139;;26135:248;;;:::o;26389:419::-;26555:4;26593:2;26582:9;26578:18;26570:26;;26642:9;26636:4;26632:20;26628:1;26617:9;26613:17;26606:47;26670:131;26796:4;26670:131;:::i;:::-;26662:139;;26560:248;;;:::o;26814:419::-;26980:4;27018:2;27007:9;27003:18;26995:26;;27067:9;27061:4;27057:20;27053:1;27042:9;27038:17;27031:47;27095:131;27221:4;27095:131;:::i;:::-;27087:139;;26985:248;;;:::o;27239:419::-;27405:4;27443:2;27432:9;27428:18;27420:26;;27492:9;27486:4;27482:20;27478:1;27467:9;27463:17;27456:47;27520:131;27646:4;27520:131;:::i;:::-;27512:139;;27410:248;;;:::o;27664:419::-;27830:4;27868:2;27857:9;27853:18;27845:26;;27917:9;27911:4;27907:20;27903:1;27892:9;27888:17;27881:47;27945:131;28071:4;27945:131;:::i;:::-;27937:139;;27835:248;;;:::o;28089:419::-;28255:4;28293:2;28282:9;28278:18;28270:26;;28342:9;28336:4;28332:20;28328:1;28317:9;28313:17;28306:47;28370:131;28496:4;28370:131;:::i;:::-;28362:139;;28260:248;;;:::o;28514:419::-;28680:4;28718:2;28707:9;28703:18;28695:26;;28767:9;28761:4;28757:20;28753:1;28742:9;28738:17;28731:47;28795:131;28921:4;28795:131;:::i;:::-;28787:139;;28685:248;;;:::o;28939:419::-;29105:4;29143:2;29132:9;29128:18;29120:26;;29192:9;29186:4;29182:20;29178:1;29167:9;29163:17;29156:47;29220:131;29346:4;29220:131;:::i;:::-;29212:139;;29110:248;;;:::o;29364:419::-;29530:4;29568:2;29557:9;29553:18;29545:26;;29617:9;29611:4;29607:20;29603:1;29592:9;29588:17;29581:47;29645:131;29771:4;29645:131;:::i;:::-;29637:139;;29535:248;;;:::o;29789:419::-;29955:4;29993:2;29982:9;29978:18;29970:26;;30042:9;30036:4;30032:20;30028:1;30017:9;30013:17;30006:47;30070:131;30196:4;30070:131;:::i;:::-;30062:139;;29960:248;;;:::o;30214:419::-;30380:4;30418:2;30407:9;30403:18;30395:26;;30467:9;30461:4;30457:20;30453:1;30442:9;30438:17;30431:47;30495:131;30621:4;30495:131;:::i;:::-;30487:139;;30385:248;;;:::o;30639:419::-;30805:4;30843:2;30832:9;30828:18;30820:26;;30892:9;30886:4;30882:20;30878:1;30867:9;30863:17;30856:47;30920:131;31046:4;30920:131;:::i;:::-;30912:139;;30810:248;;;:::o;31064:419::-;31230:4;31268:2;31257:9;31253:18;31245:26;;31317:9;31311:4;31307:20;31303:1;31292:9;31288:17;31281:47;31345:131;31471:4;31345:131;:::i;:::-;31337:139;;31235:248;;;:::o;31489:419::-;31655:4;31693:2;31682:9;31678:18;31670:26;;31742:9;31736:4;31732:20;31728:1;31717:9;31713:17;31706:47;31770:131;31896:4;31770:131;:::i;:::-;31762:139;;31660:248;;;:::o;31914:419::-;32080:4;32118:2;32107:9;32103:18;32095:26;;32167:9;32161:4;32157:20;32153:1;32142:9;32138:17;32131:47;32195:131;32321:4;32195:131;:::i;:::-;32187:139;;32085:248;;;:::o;32339:222::-;32432:4;32470:2;32459:9;32455:18;32447:26;;32483:71;32551:1;32540:9;32536:17;32527:6;32483:71;:::i;:::-;32437:124;;;;:::o;32567:129::-;32601:6;32628:20;;:::i;:::-;32618:30;;32657:33;32685:4;32677:6;32657:33;:::i;:::-;32608:88;;;:::o;32702:75::-;32735:6;32768:2;32762:9;32752:19;;32742:35;:::o;32783:311::-;32860:4;32950:18;32942:6;32939:30;32936:2;;;32972:18;;:::i;:::-;32936:2;33022:4;33014:6;33010:17;33002:25;;33082:4;33076;33072:15;33064:23;;32865:229;;;:::o;33100:307::-;33161:4;33251:18;33243:6;33240:30;33237:2;;;33273:18;;:::i;:::-;33237:2;33311:29;33333:6;33311:29;:::i;:::-;33303:37;;33395:4;33389;33385:15;33377:23;;33166:241;;;:::o;33413:308::-;33475:4;33565:18;33557:6;33554:30;33551:2;;;33587:18;;:::i;:::-;33551:2;33625:29;33647:6;33625:29;:::i;:::-;33617:37;;33709:4;33703;33699:15;33691:23;;33480:241;;;:::o;33727:98::-;33778:6;33812:5;33806:12;33796:22;;33785:40;;;:::o;33831:99::-;33883:6;33917:5;33911:12;33901:22;;33890:40;;;:::o;33936:168::-;34019:11;34053:6;34048:3;34041:19;34093:4;34088:3;34084:14;34069:29;;34031:73;;;;:::o;34110:169::-;34194:11;34228:6;34223:3;34216:19;34268:4;34263:3;34259:14;34244:29;;34206:73;;;;:::o;34285:148::-;34387:11;34424:3;34409:18;;34399:34;;;;:::o;34439:305::-;34479:3;34498:20;34516:1;34498:20;:::i;:::-;34493:25;;34532:20;34550:1;34532:20;:::i;:::-;34527:25;;34686:1;34618:66;34614:74;34611:1;34608:81;34605:2;;;34692:18;;:::i;:::-;34605:2;34736:1;34733;34729:9;34722:16;;34483:261;;;;:::o;34750:185::-;34790:1;34807:20;34825:1;34807:20;:::i;:::-;34802:25;;34841:20;34859:1;34841:20;:::i;:::-;34836:25;;34880:1;34870:2;;34885:18;;:::i;:::-;34870:2;34927:1;34924;34920:9;34915:14;;34792:143;;;;:::o;34941:348::-;34981:7;35004:20;35022:1;35004:20;:::i;:::-;34999:25;;35038:20;35056:1;35038:20;:::i;:::-;35033:25;;35226:1;35158:66;35154:74;35151:1;35148:81;35143:1;35136:9;35129:17;35125:105;35122:2;;;35233:18;;:::i;:::-;35122:2;35281:1;35278;35274:9;35263:20;;34989:300;;;;:::o;35295:191::-;35335:4;35355:20;35373:1;35355:20;:::i;:::-;35350:25;;35389:20;35407:1;35389:20;:::i;:::-;35384:25;;35428:1;35425;35422:8;35419:2;;;35433:18;;:::i;:::-;35419:2;35478:1;35475;35471:9;35463:17;;35340:146;;;;:::o;35492:96::-;35529:7;35558:24;35576:5;35558:24;:::i;:::-;35547:35;;35537:51;;;:::o;35594:90::-;35628:7;35671:5;35664:13;35657:21;35646:32;;35636:48;;;:::o;35690:149::-;35726:7;35766:66;35759:5;35755:78;35744:89;;35734:105;;;:::o;35845:126::-;35882:7;35922:42;35915:5;35911:54;35900:65;;35890:81;;;:::o;35977:77::-;36014:7;36043:5;36032:16;;36022:32;;;:::o;36060:86::-;36095:7;36135:4;36128:5;36124:16;36113:27;;36103:43;;;:::o;36152:154::-;36236:6;36231:3;36226;36213:30;36298:1;36289:6;36284:3;36280:16;36273:27;36203:103;;;:::o;36312:307::-;36380:1;36390:113;36404:6;36401:1;36398:13;36390:113;;;36489:1;36484:3;36480:11;36474:18;36470:1;36465:3;36461:11;36454:39;36426:2;36423:1;36419:10;36414:15;;36390:113;;;36521:6;36518:1;36515:13;36512:2;;;36601:1;36592:6;36587:3;36583:16;36576:27;36512:2;36361:258;;;;:::o;36625:320::-;36669:6;36706:1;36700:4;36696:12;36686:22;;36753:1;36747:4;36743:12;36774:18;36764:2;;36830:4;36822:6;36818:17;36808:27;;36764:2;36892;36884:6;36881:14;36861:18;36858:38;36855:2;;;36911:18;;:::i;:::-;36855:2;36676:269;;;;:::o;36951:281::-;37034:27;37056:4;37034:27;:::i;:::-;37026:6;37022:40;37164:6;37152:10;37149:22;37128:18;37116:10;37113:34;37110:62;37107:2;;;37175:18;;:::i;:::-;37107:2;37215:10;37211:2;37204:22;36994:238;;;:::o;37238:233::-;37277:3;37300:24;37318:5;37300:24;:::i;:::-;37291:33;;37346:66;37339:5;37336:77;37333:2;;;37416:18;;:::i;:::-;37333:2;37463:1;37456:5;37452:13;37445:20;;37281:190;;;:::o;37477:79::-;37516:7;37545:5;37534:16;;37524:32;;;:::o;37562:176::-;37594:1;37611:20;37629:1;37611:20;:::i;:::-;37606:25;;37645:20;37663:1;37645:20;:::i;:::-;37640:25;;37684:1;37674:2;;37689:18;;:::i;:::-;37674:2;37730:1;37727;37723:9;37718:14;;37596:142;;;;:::o;37744:180::-;37792:77;37789:1;37782:88;37889:4;37886:1;37879:15;37913:4;37910:1;37903:15;37930:180;37978:77;37975:1;37968:88;38075:4;38072:1;38065:15;38099:4;38096:1;38089:15;38116:180;38164:77;38161:1;38154:88;38261:4;38258:1;38251:15;38285:4;38282:1;38275:15;38302:180;38350:77;38347:1;38340:88;38447:4;38444:1;38437:15;38471:4;38468:1;38461:15;38488:180;38536:77;38533:1;38526:88;38633:4;38630:1;38623:15;38657:4;38654:1;38647:15;38674:180;38722:77;38719:1;38712:88;38819:4;38816:1;38809:15;38843:4;38840:1;38833:15;38860:117;38969:1;38966;38959:12;38983:117;39092:1;39089;39082:12;39106:117;39215:1;39212;39205:12;39229:117;39338:1;39335;39328:12;39352:117;39461:1;39458;39451:12;39475:102;39516:6;39567:2;39563:7;39558:2;39551:5;39547:14;39543:28;39533:38;;39523:54;;;:::o;39583:230::-;39723:34;39719:1;39711:6;39707:14;39700:58;39792:13;39787:2;39779:6;39775:15;39768:38;39689:124;:::o;39819:237::-;39959:34;39955:1;39947:6;39943:14;39936:58;40028:20;40023:2;40015:6;40011:15;40004:45;39925:131;:::o;40062:225::-;40202:34;40198:1;40190:6;40186:14;40179:58;40271:8;40266:2;40258:6;40254:15;40247:33;40168:119;:::o;40293:178::-;40433:30;40429:1;40421:6;40417:14;40410:54;40399:72;:::o;40477:229::-;40617:34;40613:1;40605:6;40601:14;40594:58;40686:12;40681:2;40673:6;40669:15;40662:37;40583:123;:::o;40712:223::-;40852:34;40848:1;40840:6;40836:14;40829:58;40921:6;40916:2;40908:6;40904:15;40897:31;40818:117;:::o;40941:175::-;41081:27;41077:1;41069:6;41065:14;41058:51;41047:69;:::o;41122:231::-;41262:34;41258:1;41250:6;41246:14;41239:58;41331:14;41326:2;41318:6;41314:15;41307:39;41228:125;:::o;41359:179::-;41499:31;41495:1;41487:6;41483:14;41476:55;41465:73;:::o;41544:243::-;41684:34;41680:1;41672:6;41668:14;41661:58;41753:26;41748:2;41740:6;41736:15;41729:51;41650:137;:::o;41793:229::-;41933:34;41929:1;41921:6;41917:14;41910:58;42002:12;41997:2;41989:6;41985:15;41978:37;41899:123;:::o;42028:228::-;42168:34;42164:1;42156:6;42152:14;42145:58;42237:11;42232:2;42224:6;42220:15;42213:36;42134:122;:::o;42262:182::-;42402:34;42398:1;42390:6;42386:14;42379:58;42368:76;:::o;42450:231::-;42590:34;42586:1;42578:6;42574:14;42567:58;42659:14;42654:2;42646:6;42642:15;42635:39;42556:125;:::o;42687:182::-;42827:34;42823:1;42815:6;42811:14;42804:58;42793:76;:::o;42875:228::-;43015:34;43011:1;43003:6;42999:14;42992:58;43084:11;43079:2;43071:6;43067:15;43060:36;42981:122;:::o;43109:234::-;43249:34;43245:1;43237:6;43233:14;43226:58;43318:17;43313:2;43305:6;43301:15;43294:42;43215:128;:::o;43349:220::-;43489:34;43485:1;43477:6;43473:14;43466:58;43558:3;43553:2;43545:6;43541:15;43534:28;43455:114;:::o;43575:235::-;43715:34;43711:1;43703:6;43699:14;43692:58;43784:18;43779:2;43771:6;43767:15;43760:43;43681:129;:::o;43816:222::-;43956:34;43952:1;43944:6;43940:14;43933:58;44025:5;44020:2;44012:6;44008:15;44001:30;43922:116;:::o;44044:236::-;44184:34;44180:1;44172:6;44168:14;44161:58;44253:19;44248:2;44240:6;44236:15;44229:44;44150:130;:::o;44286:231::-;44426:34;44422:1;44414:6;44410:14;44403:58;44495:14;44490:2;44482:6;44478:15;44471:39;44392:125;:::o;44523:169::-;44663:21;44659:1;44651:6;44647:14;44640:45;44629:63;:::o;44698:318::-;44838:34;44834:1;44826:6;44822:14;44815:58;44907:34;44902:2;44894:6;44890:15;44883:59;44976:32;44971:2;44963:6;44959:15;44952:57;44804:212;:::o;45022:122::-;45095:24;45113:5;45095:24;:::i;:::-;45088:5;45085:35;45075:2;;45134:1;45131;45124:12;45075:2;45065:79;:::o;45150:116::-;45220:21;45235:5;45220:21;:::i;:::-;45213:5;45210:32;45200:2;;45256:1;45253;45246:12;45200:2;45190:76;:::o;45272:120::-;45344:23;45361:5;45344:23;:::i;:::-;45337:5;45334:34;45324:2;;45382:1;45379;45372:12;45324:2;45314:78;:::o;45398:122::-;45471:24;45489:5;45471:24;:::i;:::-;45464:5;45461:35;45451:2;;45510:1;45507;45500:12;45451:2;45441:79;:::o;45526:118::-;45597:22;45613:5;45597:22;:::i;:::-;45590:5;45587:33;45577:2;;45634:1;45631;45624:12;45577:2;45567:77;:::o

Swarm Source

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