ETH Price: $3,179.24 (+1.42%)
Gas: 14 Gwei

Token

NFTflow Membership Pass (NFTflow)
 

Overview

Max Total Supply

995 NFTflow

Holders

635

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
popop.eth
Balance
1 NFTflow
0x55f8506a645e6f98100182a290e4d5f59871c202
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:
NFTFLOW

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-13
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)


pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Strings.sol

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

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

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

// File: contracts/NFTflow.sol

    pragma solidity ^0.8.4;
    pragma abicoder v2;
    
    contract NFTFLOW is ERC721, Ownable, ERC721Enumerable {
      using SafeMath for uint256;
      using Strings for uint256;
    
      uint256 public tokenPrice = 100000000000000000; // 0.1 ETH 
      uint256 public maxTokenPurchase = 1;
      uint256 public MAX_TOKENS = 1111;
    
      string public baseURI = "https://gateway.pinata.cloud/ipfs/QmZHt7TfNHkgrh1jsvtRVunvtqff5n1SVjFoS7bbiyRciy/";
      bool public saleIsActive = true;
  
      event NFTMinted(uint256 tokenId, address owner);
    
      constructor() ERC721("NFTflow Membership Pass", "NFTflow") {}
    
      function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
      }
    
      function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
      }

      function setPrice(uint256 _price) public onlyOwner {
        tokenPrice = _price;
      }

      function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{ value: address(this).balance }("");
        require(os);
      }
    
      function toggleSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
      }

      function getTokensMinted() external view returns (uint256) {
          return totalSupply();
      }
    
      function mint() external payable {
        require(saleIsActive, "Sale must be active to mint Token");
        require(
          totalSupply().add(1) <= MAX_TOKENS,
          "Purchase would exceed max supply of tokens"
        );
        require(balanceOf(msg.sender) == 0);
        require(msg.value >= tokenPrice);
    
        uint256 id = totalSupply().add(1);
        if (totalSupply() < MAX_TOKENS) {
            _safeMint(msg.sender, id);
            emit NFTMinted(id, msg.sender);
        }
      }

      function mint1() external payable {
        require(saleIsActive, "Sale must be active to mint Token");
        require(
          totalSupply().add(1) <= MAX_TOKENS,
          "Purchase would exceed max supply of tokens"
        );
        require(msg.value >= tokenPrice);
    
        uint256 id = totalSupply().add(1);
        if (totalSupply() < MAX_TOKENS) {
            _safeMint(msg.sender, id);
            emit NFTMinted(id, msg.sender);
        }
      }

      function mint2(uint256 number) external payable {
        require(saleIsActive, "Sale must be active to mint Token");
        require(number > 0, "Can only mint one or more tokens at a time");
        require(
          totalSupply().add(number) <= MAX_TOKENS,
          "Purchase would exceed max supply of tokens"
        );
        require(msg.value >= tokenPrice.mul(number));

        for (uint256 i = 0; i < number; i++) {
          uint256 id = totalSupply().add(1);
          if (totalSupply() < MAX_TOKENS) {
            _safeMint(msg.sender, id);
            emit NFTMinted(id, msg.sender);
          }
        }
      }

      function mint3(address receiver, uint256 numberOfTokens) external onlyOwner {
        require(
          totalSupply().add(1) <= MAX_TOKENS,
          "Purchase would exceed max supply of tokens"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
          uint256 id = totalSupply().add(1);
          if (totalSupply() < MAX_TOKENS) {
            _safeMint(receiver, id);
            emit NFTMinted(id, receiver);
          }
        }
      }

      function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
      {
        require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
        );
    
        string memory currentBaseURI = _baseURI();
    
        return
          bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, "0"))
            : "";
            
      }
    
      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

[{"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NFTMinted","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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensMinted","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":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mint2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tokenPrice","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":"payable","type":"function"}]

608060405267016345785d8a0000600b556001600c55610457600d55604051806080016040528060518152602001620045a360519139600e90805190602001906200004c9291906200020a565b506001600f60006101000a81548160ff0219169083151502179055503480156200007557600080fd5b506040518060400160405280601781526020017f4e4654666c6f77204d656d6265727368697020506173730000000000000000008152506040518060400160405280600781526020017f4e4654666c6f77000000000000000000000000000000000000000000000000008152508160009080519060200190620000fa9291906200020a565b508060019080519060200190620001139291906200020a565b505050620001366200012a6200013c60201b60201c565b6200014460201b60201c565b6200031f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021890620002ba565b90600052602060002090601f0160209004810192826200023c576000855562000288565b82601f106200025757805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002875782518255916020019190600101906200026a565b5b5090506200029791906200029b565b5090565b5b80821115620002b65760008160009055506001016200029c565b5090565b60006002820490506001821680620002d357607f821691505b60208210811415620002ea57620002e9620002f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614274806200032f6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063daaeec861161006f578063daaeec861461068f578063e985e9c5146106a6578063eb8d2444146106e3578063f2fde38b1461070e578063f47c84c514610737576101ee565b8063a22cb465146105d5578063b88d4fde146105fe578063c87b56dd14610627578063d69f6bae14610664576101ee565b806385d64c08116100dc57806385d64c081461052d5780638da5cb5b1461055657806391b7f5ed1461058157806395d89b41146105aa576101ee565b80636c0360eb1461048357806370a08231146104ae578063715018a6146104eb5780637ff9b59614610502576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103b75780634f6ccce7146103e057806355f804b31461041d5780636352211e14610446576101ee565b806323b872dd1461032b5780632f745c59146103545780633aa18088146103915780633ccfd60b146103ad576101ee565b8063095ea7b3116101c1578063095ea7b3146102a257806309aa3dcf146102cb5780631249c58b146102f657806318160ddd14610300576101ee565b806301ffc9a7146101f3578063044b4b5d1461023057806306fdde031461023a578063081812fc14610265575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f24565b610762565b6040516102279190613487565b60405180910390f35b610238610774565b005b34801561024657600080fd5b5061024f6108a8565b60405161025c91906134a2565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612fc7565b61093a565b6040516102999190613420565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612ee4565b6109bf565b005b3480156102d757600080fd5b506102e0610ad7565b6040516102ed9190613764565b60405180910390f35b6102fe610add565b005b34801561030c57600080fd5b50610315610c26565b6040516103229190613764565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612dce565b610c33565b005b34801561036057600080fd5b5061037b60048036038101906103769190612ee4565b610c93565b6040516103889190613764565b60405180910390f35b6103ab60048036038101906103a69190612fc7565b610d38565b005b6103b5610ee0565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612dce565b610fdc565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612fc7565b610ffc565b6040516104149190613764565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612f7e565b61106d565b005b34801561045257600080fd5b5061046d60048036038101906104689190612fc7565b611103565b60405161047a9190613420565b60405180910390f35b34801561048f57600080fd5b506104986111b5565b6040516104a591906134a2565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612d61565b611243565b6040516104e29190613764565b60405180910390f35b3480156104f757600080fd5b506105006112fb565b005b34801561050e57600080fd5b50610517611383565b6040516105249190613764565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ee4565b611389565b005b34801561056257600080fd5b5061056b6114fc565b6040516105789190613420565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612fc7565b611526565b005b3480156105b657600080fd5b506105bf6115ac565b6040516105cc91906134a2565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612ea4565b61163e565b005b34801561060a57600080fd5b5061062560048036038101906106209190612e21565b611654565b005b34801561063357600080fd5b5061064e60048036038101906106499190612fc7565b6116b6565b60405161065b91906134a2565b60405180910390f35b34801561067057600080fd5b50610679611753565b6040516106869190613764565b60405180910390f35b34801561069b57600080fd5b506106a4611762565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190612d8e565b61180a565b6040516106da9190613487565b60405180910390f35b3480156106ef57600080fd5b506106f861189e565b6040516107059190613487565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612d61565b6118b1565b005b34801561074357600080fd5b5061074c6119a9565b6040516107599190613764565b60405180910390f35b600061076d826119af565b9050919050565b600f60009054906101000a900460ff166107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba90613584565b60405180910390fd5b600d546107e160016107d3610c26565b611a2990919063ffffffff16565b1115610822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081990613664565b60405180910390fd5b600b5434101561083157600080fd5b600061084e6001610840610c26565b611a2990919063ffffffff16565b9050600d5461085b610c26565b10156108a55761086b3382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c3813360405161089c92919061377f565b60405180910390a15b50565b6060600080546108b790613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390613a17565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b600061094582611a5d565b610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906136a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ca82611103565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290613704565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5a611ac9565b73ffffffffffffffffffffffffffffffffffffffff161480610a895750610a8881610a83611ac9565b61180a565b5b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613604565b60405180910390fd5b610ad28383611ad1565b505050565b600c5481565b600f60009054906101000a900460ff16610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613584565b60405180910390fd5b600d54610b4a6001610b3c610c26565b611a2990919063ffffffff16565b1115610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613664565b60405180910390fd5b6000610b9633611243565b14610ba057600080fd5b600b54341015610baf57600080fd5b6000610bcc6001610bbe610c26565b611a2990919063ffffffff16565b9050600d54610bd9610c26565b1015610c2357610be93382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c38133604051610c1a92919061377f565b60405180910390a15b50565b6000600980549050905090565b610c44610c3e611ac9565b82611b8a565b610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613724565b60405180910390fd5b610c8e838383611c68565b505050565b6000610c9e83611243565b8210610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906134e4565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900460ff16610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90613584565b60405180910390fd5b60008111610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc1906134c4565b60405180910390fd5b600d54610de782610dd9610c26565b611a2990919063ffffffff16565b1115610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613664565b60405180910390fd5b610e3d81600b54611ecf90919063ffffffff16565b341015610e4957600080fd5b60005b81811015610edc576000610e716001610e63610c26565b611a2990919063ffffffff16565b9050600d54610e7e610c26565b1015610ec857610e8e3382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c38133604051610ebf92919061377f565b60405180910390a15b508080610ed490613a7a565b915050610e4c565b5050565b610ee8611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610f066114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906136c4565b60405180910390fd5b6000610f666114fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f899061340b565b60006040518083038185875af1925050503d8060008114610fc6576040519150601f19603f3d011682016040523d82523d6000602084013e610fcb565b606091505b5050905080610fd957600080fd5b50565b610ff783838360405180602001604052806000815250611654565b505050565b6000611006610c26565b8210611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90613744565b60405180910390fd5b6009828154811061105b5761105a613b50565b5b90600052602060002001549050919050565b611075611ac9565b73ffffffffffffffffffffffffffffffffffffffff166110936114fc565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906136c4565b60405180910390fd5b80600e90805190602001906110ff929190612b75565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613644565b60405180910390fd5b80915050919050565b600e80546111c290613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546111ee90613a17565b801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613624565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611303611ac9565b73ffffffffffffffffffffffffffffffffffffffff166113216114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906136c4565b60405180910390fd5b6113816000611ee5565b565b600b5481565b611391611ac9565b73ffffffffffffffffffffffffffffffffffffffff166113af6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc906136c4565b60405180910390fd5b600d546114236001611415610c26565b611a2990919063ffffffff16565b1115611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613664565b60405180910390fd5b60005b818110156114f757600061148c600161147e610c26565b611a2990919063ffffffff16565b9050600d54611499610c26565b10156114e3576114a98482611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c381856040516114da92919061377f565b60405180910390a15b5080806114ef90613a7a565b915050611467565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61152e611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661154c6114fc565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906136c4565b60405180910390fd5b80600b8190555050565b6060600180546115bb90613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546115e790613a17565b80156116345780601f1061160957610100808354040283529160200191611634565b820191906000526020600020905b81548152906001019060200180831161161757829003601f168201915b5050505050905090565b611650611649611ac9565b8383611fab565b5050565b61166561165f611ac9565b83611b8a565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613724565b60405180910390fd5b6116b084848484612118565b50505050565b60606116c182611a5d565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906136e4565b60405180910390fd5b600061170a612174565b9050600081511161172a576040518060200160405280600081525061174b565b8060405160200161173b91906133e9565b6040516020818303038152906040525b915050919050565b600061175d610c26565b905090565b61176a611ac9565b73ffffffffffffffffffffffffffffffffffffffff166117886114fc565b73ffffffffffffffffffffffffffffffffffffffff16146117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906136c4565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b6118b9611ac9565b73ffffffffffffffffffffffffffffffffffffffff166118d76114fc565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906136c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613524565b60405180910390fd5b6119a681611ee5565b50565b600d5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a225750611a2182612206565b5b9050919050565b60008183611a37919061387d565b905092915050565b611a598282604051806020016040528060008152506122e8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4483611103565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9582611a5d565b611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb906135e4565b60405180910390fd5b6000611bdf83611103565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4e57508373ffffffffffffffffffffffffffffffffffffffff16611c368461093a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c5f5750611c5e818561180a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c8882611103565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906135a4565b60405180910390fd5b611d59838383612343565b611d64600082611ad1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611db4919061392d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0b919061387d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eca838383612353565b505050565b60008183611edd91906138d3565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906135c4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161210b9190613487565b60405180910390a3505050565b612123848484611c68565b61212f84848484612358565b61216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613504565b60405180910390fd5b50505050565b6060600e805461218390613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546121af90613a17565b80156121fc5780601f106121d1576101008083540402835291602001916121fc565b820191906000526020600020905b8154815290600101906020018083116121df57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122e157506122e0826124ef565b5b9050919050565b6122f28383612559565b6122ff6000848484612358565b61233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590613504565b60405180910390fd5b505050565b61234e838383612733565b505050565b505050565b60006123798473ffffffffffffffffffffffffffffffffffffffff16612847565b156124e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a2611ac9565b8786866040518563ffffffff1660e01b81526004016123c4949392919061343b565b602060405180830381600087803b1580156123de57600080fd5b505af192505050801561240f57506040513d601f19601f8201168201806040525081019061240c9190612f51565b60015b612492573d806000811461243f576040519150601f19603f3d011682016040523d82523d6000602084013e612444565b606091505b5060008151141561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190613504565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e7565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613684565b60405180910390fd5b6125d281611a5d565b15612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990613564565b60405180910390fd5b61261e60008383612343565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266e919061387d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272f60008383612353565b5050565b61273e83838361286a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127815761277c8161286f565b6127c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127bf576127be83826128b8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612803576127fe81612a25565b612842565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612841576128408282612af6565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128c584611243565b6128cf919061392d565b90506000600860008481526020019081526020016000205490508181146129b4576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612a39919061392d565b90506000600a6000848152602001908152602001600020549050600060098381548110612a6957612a68613b50565b5b906000526020600020015490508060098381548110612a8b57612a8a613b50565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612ada57612ad9613b21565b5b6001900381819060005260206000200160009055905550505050565b6000612b0183611243565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054612b8190613a17565b90600052602060002090601f016020900481019282612ba35760008555612bea565b82601f10612bbc57805160ff1916838001178555612bea565b82800160010185558215612bea579182015b82811115612be9578251825591602001919060010190612bce565b5b509050612bf79190612bfb565b5090565b5b80821115612c14576000816000905550600101612bfc565b5090565b6000612c2b612c26846137cd565b6137a8565b905082815260208101848484011115612c4757612c46613bb3565b5b612c528482856139d5565b509392505050565b6000612c6d612c68846137fe565b6137a8565b905082815260208101848484011115612c8957612c88613bb3565b5b612c948482856139d5565b509392505050565b600081359050612cab816141e2565b92915050565b600081359050612cc0816141f9565b92915050565b600081359050612cd581614210565b92915050565b600081519050612cea81614210565b92915050565b600082601f830112612d0557612d04613bae565b5b8135612d15848260208601612c18565b91505092915050565b600082601f830112612d3357612d32613bae565b5b8135612d43848260208601612c5a565b91505092915050565b600081359050612d5b81614227565b92915050565b600060208284031215612d7757612d76613bbd565b5b6000612d8584828501612c9c565b91505092915050565b60008060408385031215612da557612da4613bbd565b5b6000612db385828601612c9c565b9250506020612dc485828601612c9c565b9150509250929050565b600080600060608486031215612de757612de6613bbd565b5b6000612df586828701612c9c565b9350506020612e0686828701612c9c565b9250506040612e1786828701612d4c565b9150509250925092565b60008060008060808587031215612e3b57612e3a613bbd565b5b6000612e4987828801612c9c565b9450506020612e5a87828801612c9c565b9350506040612e6b87828801612d4c565b925050606085013567ffffffffffffffff811115612e8c57612e8b613bb8565b5b612e9887828801612cf0565b91505092959194509250565b60008060408385031215612ebb57612eba613bbd565b5b6000612ec985828601612c9c565b9250506020612eda85828601612cb1565b9150509250929050565b60008060408385031215612efb57612efa613bbd565b5b6000612f0985828601612c9c565b9250506020612f1a85828601612d4c565b9150509250929050565b600060208284031215612f3a57612f39613bbd565b5b6000612f4884828501612cc6565b91505092915050565b600060208284031215612f6757612f66613bbd565b5b6000612f7584828501612cdb565b91505092915050565b600060208284031215612f9457612f93613bbd565b5b600082013567ffffffffffffffff811115612fb257612fb1613bb8565b5b612fbe84828501612d1e565b91505092915050565b600060208284031215612fdd57612fdc613bbd565b5b6000612feb84828501612d4c565b91505092915050565b612ffd81613961565b82525050565b61300c81613973565b82525050565b600061301d8261382f565b6130278185613845565b93506130378185602086016139e4565b61304081613bc2565b840191505092915050565b60006130568261383a565b6130608185613861565b93506130708185602086016139e4565b61307981613bc2565b840191505092915050565b600061308f8261383a565b6130998185613872565b93506130a98185602086016139e4565b80840191505092915050565b60006130c2602a83613861565b91506130cd82613bd3565b604082019050919050565b60006130e5600183613872565b91506130f082613c22565b600182019050919050565b6000613108602b83613861565b915061311382613c4b565b604082019050919050565b600061312b603283613861565b915061313682613c9a565b604082019050919050565b600061314e602683613861565b915061315982613ce9565b604082019050919050565b6000613171602583613861565b915061317c82613d38565b604082019050919050565b6000613194601c83613861565b915061319f82613d87565b602082019050919050565b60006131b7602183613861565b91506131c282613db0565b604082019050919050565b60006131da602483613861565b91506131e582613dff565b604082019050919050565b60006131fd601983613861565b915061320882613e4e565b602082019050919050565b6000613220602c83613861565b915061322b82613e77565b604082019050919050565b6000613243603883613861565b915061324e82613ec6565b604082019050919050565b6000613266602a83613861565b915061327182613f15565b604082019050919050565b6000613289602983613861565b915061329482613f64565b604082019050919050565b60006132ac602a83613861565b91506132b782613fb3565b604082019050919050565b60006132cf602083613861565b91506132da82614002565b602082019050919050565b60006132f2602c83613861565b91506132fd8261402b565b604082019050919050565b6000613315602083613861565b91506133208261407a565b602082019050919050565b6000613338602f83613861565b9150613343826140a3565b604082019050919050565b600061335b602183613861565b9150613366826140f2565b604082019050919050565b600061337e600083613856565b915061338982614141565b600082019050919050565b60006133a1603183613861565b91506133ac82614144565b604082019050919050565b60006133c4602c83613861565b91506133cf82614193565b604082019050919050565b6133e3816139cb565b82525050565b60006133f58284613084565b9150613400826130d8565b915081905092915050565b600061341682613371565b9150819050919050565b60006020820190506134356000830184612ff4565b92915050565b60006080820190506134506000830187612ff4565b61345d6020830186612ff4565b61346a60408301856133da565b818103606083015261347c8184613012565b905095945050505050565b600060208201905061349c6000830184613003565b92915050565b600060208201905081810360008301526134bc818461304b565b905092915050565b600060208201905081810360008301526134dd816130b5565b9050919050565b600060208201905081810360008301526134fd816130fb565b9050919050565b6000602082019050818103600083015261351d8161311e565b9050919050565b6000602082019050818103600083015261353d81613141565b9050919050565b6000602082019050818103600083015261355d81613164565b9050919050565b6000602082019050818103600083015261357d81613187565b9050919050565b6000602082019050818103600083015261359d816131aa565b9050919050565b600060208201905081810360008301526135bd816131cd565b9050919050565b600060208201905081810360008301526135dd816131f0565b9050919050565b600060208201905081810360008301526135fd81613213565b9050919050565b6000602082019050818103600083015261361d81613236565b9050919050565b6000602082019050818103600083015261363d81613259565b9050919050565b6000602082019050818103600083015261365d8161327c565b9050919050565b6000602082019050818103600083015261367d8161329f565b9050919050565b6000602082019050818103600083015261369d816132c2565b9050919050565b600060208201905081810360008301526136bd816132e5565b9050919050565b600060208201905081810360008301526136dd81613308565b9050919050565b600060208201905081810360008301526136fd8161332b565b9050919050565b6000602082019050818103600083015261371d8161334e565b9050919050565b6000602082019050818103600083015261373d81613394565b9050919050565b6000602082019050818103600083015261375d816133b7565b9050919050565b600060208201905061377960008301846133da565b92915050565b600060408201905061379460008301856133da565b6137a16020830184612ff4565b9392505050565b60006137b26137c3565b90506137be8282613a49565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e8576137e7613b7f565b5b6137f182613bc2565b9050602081019050919050565b600067ffffffffffffffff82111561381957613818613b7f565b5b61382282613bc2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613888826139cb565b9150613893836139cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138c8576138c7613ac3565b5b828201905092915050565b60006138de826139cb565b91506138e9836139cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392257613921613ac3565b5b828202905092915050565b6000613938826139cb565b9150613943836139cb565b92508282101561395657613955613ac3565b5b828203905092915050565b600061396c826139ab565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a025780820151818401526020810190506139e7565b83811115613a11576000848401525b50505050565b60006002820490506001821680613a2f57607f821691505b60208210811415613a4357613a42613af2565b5b50919050565b613a5282613bc2565b810181811067ffffffffffffffff82111715613a7157613a70613b7f565b5b80604052505050565b6000613a85826139cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab857613ab7613ac3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74206f6e65206f72206d6f726520746f6b656e7360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6141eb81613961565b81146141f657600080fd5b50565b61420281613973565b811461420d57600080fd5b50565b6142198161397f565b811461422457600080fd5b50565b614230816139cb565b811461423b57600080fd5b5056fea2646970667358221220be1c6a6d762db583d880b8927f3236085872bd7ff3a9a9b06d0e41bbe1e381c264736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a48743754664e486b677268316a7376745256756e7674716666356e3153566a466f533762626979526369792f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063daaeec861161006f578063daaeec861461068f578063e985e9c5146106a6578063eb8d2444146106e3578063f2fde38b1461070e578063f47c84c514610737576101ee565b8063a22cb465146105d5578063b88d4fde146105fe578063c87b56dd14610627578063d69f6bae14610664576101ee565b806385d64c08116100dc57806385d64c081461052d5780638da5cb5b1461055657806391b7f5ed1461058157806395d89b41146105aa576101ee565b80636c0360eb1461048357806370a08231146104ae578063715018a6146104eb5780637ff9b59614610502576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103b75780634f6ccce7146103e057806355f804b31461041d5780636352211e14610446576101ee565b806323b872dd1461032b5780632f745c59146103545780633aa18088146103915780633ccfd60b146103ad576101ee565b8063095ea7b3116101c1578063095ea7b3146102a257806309aa3dcf146102cb5780631249c58b146102f657806318160ddd14610300576101ee565b806301ffc9a7146101f3578063044b4b5d1461023057806306fdde031461023a578063081812fc14610265575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f24565b610762565b6040516102279190613487565b60405180910390f35b610238610774565b005b34801561024657600080fd5b5061024f6108a8565b60405161025c91906134a2565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612fc7565b61093a565b6040516102999190613420565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612ee4565b6109bf565b005b3480156102d757600080fd5b506102e0610ad7565b6040516102ed9190613764565b60405180910390f35b6102fe610add565b005b34801561030c57600080fd5b50610315610c26565b6040516103229190613764565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612dce565b610c33565b005b34801561036057600080fd5b5061037b60048036038101906103769190612ee4565b610c93565b6040516103889190613764565b60405180910390f35b6103ab60048036038101906103a69190612fc7565b610d38565b005b6103b5610ee0565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612dce565b610fdc565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612fc7565b610ffc565b6040516104149190613764565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612f7e565b61106d565b005b34801561045257600080fd5b5061046d60048036038101906104689190612fc7565b611103565b60405161047a9190613420565b60405180910390f35b34801561048f57600080fd5b506104986111b5565b6040516104a591906134a2565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612d61565b611243565b6040516104e29190613764565b60405180910390f35b3480156104f757600080fd5b506105006112fb565b005b34801561050e57600080fd5b50610517611383565b6040516105249190613764565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ee4565b611389565b005b34801561056257600080fd5b5061056b6114fc565b6040516105789190613420565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612fc7565b611526565b005b3480156105b657600080fd5b506105bf6115ac565b6040516105cc91906134a2565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612ea4565b61163e565b005b34801561060a57600080fd5b5061062560048036038101906106209190612e21565b611654565b005b34801561063357600080fd5b5061064e60048036038101906106499190612fc7565b6116b6565b60405161065b91906134a2565b60405180910390f35b34801561067057600080fd5b50610679611753565b6040516106869190613764565b60405180910390f35b34801561069b57600080fd5b506106a4611762565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190612d8e565b61180a565b6040516106da9190613487565b60405180910390f35b3480156106ef57600080fd5b506106f861189e565b6040516107059190613487565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612d61565b6118b1565b005b34801561074357600080fd5b5061074c6119a9565b6040516107599190613764565b60405180910390f35b600061076d826119af565b9050919050565b600f60009054906101000a900460ff166107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba90613584565b60405180910390fd5b600d546107e160016107d3610c26565b611a2990919063ffffffff16565b1115610822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081990613664565b60405180910390fd5b600b5434101561083157600080fd5b600061084e6001610840610c26565b611a2990919063ffffffff16565b9050600d5461085b610c26565b10156108a55761086b3382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c3813360405161089c92919061377f565b60405180910390a15b50565b6060600080546108b790613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390613a17565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b600061094582611a5d565b610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906136a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ca82611103565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290613704565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5a611ac9565b73ffffffffffffffffffffffffffffffffffffffff161480610a895750610a8881610a83611ac9565b61180a565b5b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613604565b60405180910390fd5b610ad28383611ad1565b505050565b600c5481565b600f60009054906101000a900460ff16610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613584565b60405180910390fd5b600d54610b4a6001610b3c610c26565b611a2990919063ffffffff16565b1115610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613664565b60405180910390fd5b6000610b9633611243565b14610ba057600080fd5b600b54341015610baf57600080fd5b6000610bcc6001610bbe610c26565b611a2990919063ffffffff16565b9050600d54610bd9610c26565b1015610c2357610be93382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c38133604051610c1a92919061377f565b60405180910390a15b50565b6000600980549050905090565b610c44610c3e611ac9565b82611b8a565b610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613724565b60405180910390fd5b610c8e838383611c68565b505050565b6000610c9e83611243565b8210610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906134e4565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900460ff16610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90613584565b60405180910390fd5b60008111610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc1906134c4565b60405180910390fd5b600d54610de782610dd9610c26565b611a2990919063ffffffff16565b1115610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613664565b60405180910390fd5b610e3d81600b54611ecf90919063ffffffff16565b341015610e4957600080fd5b60005b81811015610edc576000610e716001610e63610c26565b611a2990919063ffffffff16565b9050600d54610e7e610c26565b1015610ec857610e8e3382611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c38133604051610ebf92919061377f565b60405180910390a15b508080610ed490613a7a565b915050610e4c565b5050565b610ee8611ac9565b73ffffffffffffffffffffffffffffffffffffffff16610f066114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906136c4565b60405180910390fd5b6000610f666114fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f899061340b565b60006040518083038185875af1925050503d8060008114610fc6576040519150601f19603f3d011682016040523d82523d6000602084013e610fcb565b606091505b5050905080610fd957600080fd5b50565b610ff783838360405180602001604052806000815250611654565b505050565b6000611006610c26565b8210611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90613744565b60405180910390fd5b6009828154811061105b5761105a613b50565b5b90600052602060002001549050919050565b611075611ac9565b73ffffffffffffffffffffffffffffffffffffffff166110936114fc565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906136c4565b60405180910390fd5b80600e90805190602001906110ff929190612b75565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613644565b60405180910390fd5b80915050919050565b600e80546111c290613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546111ee90613a17565b801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613624565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611303611ac9565b73ffffffffffffffffffffffffffffffffffffffff166113216114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906136c4565b60405180910390fd5b6113816000611ee5565b565b600b5481565b611391611ac9565b73ffffffffffffffffffffffffffffffffffffffff166113af6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc906136c4565b60405180910390fd5b600d546114236001611415610c26565b611a2990919063ffffffff16565b1115611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613664565b60405180910390fd5b60005b818110156114f757600061148c600161147e610c26565b611a2990919063ffffffff16565b9050600d54611499610c26565b10156114e3576114a98482611a3f565b7f0176f203df400d7bd5f1b1c9ef36c16709bf3b5d9fd35f000a6bae32393f66c381856040516114da92919061377f565b60405180910390a15b5080806114ef90613a7a565b915050611467565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61152e611ac9565b73ffffffffffffffffffffffffffffffffffffffff1661154c6114fc565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906136c4565b60405180910390fd5b80600b8190555050565b6060600180546115bb90613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546115e790613a17565b80156116345780601f1061160957610100808354040283529160200191611634565b820191906000526020600020905b81548152906001019060200180831161161757829003601f168201915b5050505050905090565b611650611649611ac9565b8383611fab565b5050565b61166561165f611ac9565b83611b8a565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613724565b60405180910390fd5b6116b084848484612118565b50505050565b60606116c182611a5d565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906136e4565b60405180910390fd5b600061170a612174565b9050600081511161172a576040518060200160405280600081525061174b565b8060405160200161173b91906133e9565b6040516020818303038152906040525b915050919050565b600061175d610c26565b905090565b61176a611ac9565b73ffffffffffffffffffffffffffffffffffffffff166117886114fc565b73ffffffffffffffffffffffffffffffffffffffff16146117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906136c4565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b6118b9611ac9565b73ffffffffffffffffffffffffffffffffffffffff166118d76114fc565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906136c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613524565b60405180910390fd5b6119a681611ee5565b50565b600d5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a225750611a2182612206565b5b9050919050565b60008183611a37919061387d565b905092915050565b611a598282604051806020016040528060008152506122e8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4483611103565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9582611a5d565b611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb906135e4565b60405180910390fd5b6000611bdf83611103565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4e57508373ffffffffffffffffffffffffffffffffffffffff16611c368461093a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c5f5750611c5e818561180a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c8882611103565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906135a4565b60405180910390fd5b611d59838383612343565b611d64600082611ad1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611db4919061392d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0b919061387d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eca838383612353565b505050565b60008183611edd91906138d3565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906135c4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161210b9190613487565b60405180910390a3505050565b612123848484611c68565b61212f84848484612358565b61216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613504565b60405180910390fd5b50505050565b6060600e805461218390613a17565b80601f01602080910402602001604051908101604052809291908181526020018280546121af90613a17565b80156121fc5780601f106121d1576101008083540402835291602001916121fc565b820191906000526020600020905b8154815290600101906020018083116121df57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122e157506122e0826124ef565b5b9050919050565b6122f28383612559565b6122ff6000848484612358565b61233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590613504565b60405180910390fd5b505050565b61234e838383612733565b505050565b505050565b60006123798473ffffffffffffffffffffffffffffffffffffffff16612847565b156124e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a2611ac9565b8786866040518563ffffffff1660e01b81526004016123c4949392919061343b565b602060405180830381600087803b1580156123de57600080fd5b505af192505050801561240f57506040513d601f19601f8201168201806040525081019061240c9190612f51565b60015b612492573d806000811461243f576040519150601f19603f3d011682016040523d82523d6000602084013e612444565b606091505b5060008151141561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190613504565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e7565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613684565b60405180910390fd5b6125d281611a5d565b15612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990613564565b60405180910390fd5b61261e60008383612343565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266e919061387d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272f60008383612353565b5050565b61273e83838361286a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127815761277c8161286f565b6127c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127bf576127be83826128b8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612803576127fe81612a25565b612842565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612841576128408282612af6565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128c584611243565b6128cf919061392d565b90506000600860008481526020019081526020016000205490508181146129b4576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612a39919061392d565b90506000600a6000848152602001908152602001600020549050600060098381548110612a6957612a68613b50565b5b906000526020600020015490508060098381548110612a8b57612a8a613b50565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612ada57612ad9613b21565b5b6001900381819060005260206000200160009055905550505050565b6000612b0183611243565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054612b8190613a17565b90600052602060002090601f016020900481019282612ba35760008555612bea565b82601f10612bbc57805160ff1916838001178555612bea565b82800160010185558215612bea579182015b82811115612be9578251825591602001919060010190612bce565b5b509050612bf79190612bfb565b5090565b5b80821115612c14576000816000905550600101612bfc565b5090565b6000612c2b612c26846137cd565b6137a8565b905082815260208101848484011115612c4757612c46613bb3565b5b612c528482856139d5565b509392505050565b6000612c6d612c68846137fe565b6137a8565b905082815260208101848484011115612c8957612c88613bb3565b5b612c948482856139d5565b509392505050565b600081359050612cab816141e2565b92915050565b600081359050612cc0816141f9565b92915050565b600081359050612cd581614210565b92915050565b600081519050612cea81614210565b92915050565b600082601f830112612d0557612d04613bae565b5b8135612d15848260208601612c18565b91505092915050565b600082601f830112612d3357612d32613bae565b5b8135612d43848260208601612c5a565b91505092915050565b600081359050612d5b81614227565b92915050565b600060208284031215612d7757612d76613bbd565b5b6000612d8584828501612c9c565b91505092915050565b60008060408385031215612da557612da4613bbd565b5b6000612db385828601612c9c565b9250506020612dc485828601612c9c565b9150509250929050565b600080600060608486031215612de757612de6613bbd565b5b6000612df586828701612c9c565b9350506020612e0686828701612c9c565b9250506040612e1786828701612d4c565b9150509250925092565b60008060008060808587031215612e3b57612e3a613bbd565b5b6000612e4987828801612c9c565b9450506020612e5a87828801612c9c565b9350506040612e6b87828801612d4c565b925050606085013567ffffffffffffffff811115612e8c57612e8b613bb8565b5b612e9887828801612cf0565b91505092959194509250565b60008060408385031215612ebb57612eba613bbd565b5b6000612ec985828601612c9c565b9250506020612eda85828601612cb1565b9150509250929050565b60008060408385031215612efb57612efa613bbd565b5b6000612f0985828601612c9c565b9250506020612f1a85828601612d4c565b9150509250929050565b600060208284031215612f3a57612f39613bbd565b5b6000612f4884828501612cc6565b91505092915050565b600060208284031215612f6757612f66613bbd565b5b6000612f7584828501612cdb565b91505092915050565b600060208284031215612f9457612f93613bbd565b5b600082013567ffffffffffffffff811115612fb257612fb1613bb8565b5b612fbe84828501612d1e565b91505092915050565b600060208284031215612fdd57612fdc613bbd565b5b6000612feb84828501612d4c565b91505092915050565b612ffd81613961565b82525050565b61300c81613973565b82525050565b600061301d8261382f565b6130278185613845565b93506130378185602086016139e4565b61304081613bc2565b840191505092915050565b60006130568261383a565b6130608185613861565b93506130708185602086016139e4565b61307981613bc2565b840191505092915050565b600061308f8261383a565b6130998185613872565b93506130a98185602086016139e4565b80840191505092915050565b60006130c2602a83613861565b91506130cd82613bd3565b604082019050919050565b60006130e5600183613872565b91506130f082613c22565b600182019050919050565b6000613108602b83613861565b915061311382613c4b565b604082019050919050565b600061312b603283613861565b915061313682613c9a565b604082019050919050565b600061314e602683613861565b915061315982613ce9565b604082019050919050565b6000613171602583613861565b915061317c82613d38565b604082019050919050565b6000613194601c83613861565b915061319f82613d87565b602082019050919050565b60006131b7602183613861565b91506131c282613db0565b604082019050919050565b60006131da602483613861565b91506131e582613dff565b604082019050919050565b60006131fd601983613861565b915061320882613e4e565b602082019050919050565b6000613220602c83613861565b915061322b82613e77565b604082019050919050565b6000613243603883613861565b915061324e82613ec6565b604082019050919050565b6000613266602a83613861565b915061327182613f15565b604082019050919050565b6000613289602983613861565b915061329482613f64565b604082019050919050565b60006132ac602a83613861565b91506132b782613fb3565b604082019050919050565b60006132cf602083613861565b91506132da82614002565b602082019050919050565b60006132f2602c83613861565b91506132fd8261402b565b604082019050919050565b6000613315602083613861565b91506133208261407a565b602082019050919050565b6000613338602f83613861565b9150613343826140a3565b604082019050919050565b600061335b602183613861565b9150613366826140f2565b604082019050919050565b600061337e600083613856565b915061338982614141565b600082019050919050565b60006133a1603183613861565b91506133ac82614144565b604082019050919050565b60006133c4602c83613861565b91506133cf82614193565b604082019050919050565b6133e3816139cb565b82525050565b60006133f58284613084565b9150613400826130d8565b915081905092915050565b600061341682613371565b9150819050919050565b60006020820190506134356000830184612ff4565b92915050565b60006080820190506134506000830187612ff4565b61345d6020830186612ff4565b61346a60408301856133da565b818103606083015261347c8184613012565b905095945050505050565b600060208201905061349c6000830184613003565b92915050565b600060208201905081810360008301526134bc818461304b565b905092915050565b600060208201905081810360008301526134dd816130b5565b9050919050565b600060208201905081810360008301526134fd816130fb565b9050919050565b6000602082019050818103600083015261351d8161311e565b9050919050565b6000602082019050818103600083015261353d81613141565b9050919050565b6000602082019050818103600083015261355d81613164565b9050919050565b6000602082019050818103600083015261357d81613187565b9050919050565b6000602082019050818103600083015261359d816131aa565b9050919050565b600060208201905081810360008301526135bd816131cd565b9050919050565b600060208201905081810360008301526135dd816131f0565b9050919050565b600060208201905081810360008301526135fd81613213565b9050919050565b6000602082019050818103600083015261361d81613236565b9050919050565b6000602082019050818103600083015261363d81613259565b9050919050565b6000602082019050818103600083015261365d8161327c565b9050919050565b6000602082019050818103600083015261367d8161329f565b9050919050565b6000602082019050818103600083015261369d816132c2565b9050919050565b600060208201905081810360008301526136bd816132e5565b9050919050565b600060208201905081810360008301526136dd81613308565b9050919050565b600060208201905081810360008301526136fd8161332b565b9050919050565b6000602082019050818103600083015261371d8161334e565b9050919050565b6000602082019050818103600083015261373d81613394565b9050919050565b6000602082019050818103600083015261375d816133b7565b9050919050565b600060208201905061377960008301846133da565b92915050565b600060408201905061379460008301856133da565b6137a16020830184612ff4565b9392505050565b60006137b26137c3565b90506137be8282613a49565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e8576137e7613b7f565b5b6137f182613bc2565b9050602081019050919050565b600067ffffffffffffffff82111561381957613818613b7f565b5b61382282613bc2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613888826139cb565b9150613893836139cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138c8576138c7613ac3565b5b828201905092915050565b60006138de826139cb565b91506138e9836139cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392257613921613ac3565b5b828202905092915050565b6000613938826139cb565b9150613943836139cb565b92508282101561395657613955613ac3565b5b828203905092915050565b600061396c826139ab565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a025780820151818401526020810190506139e7565b83811115613a11576000848401525b50505050565b60006002820490506001821680613a2f57607f821691505b60208210811415613a4357613a42613af2565b5b50919050565b613a5282613bc2565b810181811067ffffffffffffffff82111715613a7157613a70613b7f565b5b80604052505050565b6000613a85826139cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab857613ab7613ac3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74206f6e65206f72206d6f726520746f6b656e7360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6141eb81613961565b81146141f657600080fd5b50565b61420281613973565b811461420d57600080fd5b50565b6142198161397f565b811461422457600080fd5b50565b614230816139cb565b811461423b57600080fd5b5056fea2646970667358221220be1c6a6d762db583d880b8927f3236085872bd7ff3a9a9b06d0e41bbe1e381c264736f6c63430008070033

Deployed Bytecode Sourcemap

52568:4444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56789:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54429:478;;;:::i;:::-;;22519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52773:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53896:523;;;:::i;:::-;;46962:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46630:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54917:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53502:159;;;:::i;:::-;;25238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47152:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53285:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52864:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36397:103;;;;;;;;;;;;;:::i;:::-;;52706:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55573:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35746:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53401:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56054:488;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53780:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53675:95;;;;;;;;;;;;;:::i;:::-;;24597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52980:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36655:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52817:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56789:216;56928:4;56959:36;56983:11;56959:23;:36::i;:::-;56952:43;;56789:216;;;:::o;54429:478::-;54482:12;;;;;;;;;;;54474:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54587:10;;54563:20;54581:1;54563:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:34;;54543:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;54697:10;;54684:9;:23;;54676:32;;;;;;54725:10;54738:20;54756:1;54738:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;54725:33;;54789:10;;54773:13;:11;:13::i;:::-;:26;54769:129;;;54816:25;54826:10;54838:2;54816:9;:25::i;:::-;54861;54871:2;54875:10;54861:25;;;;;;;:::i;:::-;;;;;;;;54769:129;54463:444;54429:478::o;22519:100::-;22573:13;22606:5;22599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22519:100;:::o;24078:221::-;24154:7;24182:16;24190:7;24182;:16::i;:::-;24174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24267:15;:24;24283:7;24267:24;;;;;;;;;;;;;;;;;;;;;24260:31;;24078:221;;;:::o;23601:411::-;23682:13;23698:23;23713:7;23698:14;:23::i;:::-;23682:39;;23746:5;23740:11;;:2;:11;;;;23732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23840:5;23824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23849:37;23866:5;23873:12;:10;:12::i;:::-;23849:16;:37::i;:::-;23824:62;23802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23983:21;23992:2;23996:7;23983:8;:21::i;:::-;23671:341;23601:411;;:::o;52773:35::-;;;;:::o;53896:523::-;53948:12;;;;;;;;;;;53940:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54053:10;;54029:20;54047:1;54029:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:34;;54009:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;54175:1;54150:21;54160:10;54150:9;:21::i;:::-;:26;54142:35;;;;;;54209:10;;54196:9;:23;;54188:32;;;;;;54237:10;54250:20;54268:1;54250:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;54237:33;;54301:10;;54285:13;:11;:13::i;:::-;:26;54281:129;;;54328:25;54338:10;54350:2;54328:9;:25::i;:::-;54373;54383:2;54387:10;54373:25;;;;;;;:::i;:::-;;;;;;;;54281:129;53929:490;53896:523::o;46962:113::-;47023:7;47050:10;:17;;;;47043:24;;46962:113;:::o;24828:339::-;25023:41;25042:12;:10;:12::i;:::-;25056:7;25023:18;:41::i;:::-;25015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25131:28;25141:4;25147:2;25151:7;25131:9;:28::i;:::-;24828:339;;;:::o;46630:256::-;46727:7;46763:23;46780:5;46763:16;:23::i;:::-;46755:5;:31;46747:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;46852:12;:19;46865:5;46852:19;;;;;;;;;;;;;;;:26;46872:5;46852:26;;;;;;;;;;;;46845:33;;46630:256;;;;:::o;54917:646::-;54984:12;;;;;;;;;;;54976:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55062:1;55053:6;:10;55045:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55170:10;;55141:25;55159:6;55141:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:39;;55121:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;55280:22;55295:6;55280:10;;:14;;:22;;;;:::i;:::-;55267:9;:35;;55259:44;;;;;;55321:9;55316:238;55340:6;55336:1;:10;55316:238;;;55366:10;55379:20;55397:1;55379:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;55366:33;;55432:10;;55416:13;:11;:13::i;:::-;:26;55412:131;;;55459:25;55469:10;55481:2;55459:9;:25::i;:::-;55504;55514:2;55518:10;55504:25;;;;;;;:::i;:::-;;;;;;;;55412:131;55353:201;55348:3;;;;;:::i;:::-;;;;55316:238;;;;54917:646;:::o;53502:159::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53559:7:::1;53580;:5;:7::i;:::-;53572:21;;53602;53572:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53558:71;;;53648:2;53640:11;;;::::0;::::1;;53547:114;53502:159::o:0;25238:185::-;25376:39;25393:4;25399:2;25403:7;25376:39;;;;;;;;;;;;:16;:39::i;:::-;25238:185;;;:::o;47152:233::-;47227:7;47263:30;:28;:30::i;:::-;47255:5;:38;47247:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;47360:10;47371:5;47360:17;;;;;;;;:::i;:::-;;;;;;;;;;47353:24;;47152:233;;;:::o;53285:106::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53370:11:::1;53360:7;:21;;;;;;;;;;;;:::i;:::-;;53285:106:::0;:::o;22213:239::-;22285:7;22305:13;22321:7;:16;22329:7;22321:16;;;;;;;;;;;;;;;;;;;;;22305:32;;22373:1;22356:19;;:5;:19;;;;22348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22439:5;22432:12;;;22213:239;;;:::o;52864:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21943:208::-;22015:7;22060:1;22043:19;;:5;:19;;;;22035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22127:9;:16;22137:5;22127:16;;;;;;;;;;;;;;;;22120:23;;21943:208;;;:::o;36397:103::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36462:30:::1;36489:1;36462:18;:30::i;:::-;36397:103::o:0;52706:46::-;;;;:::o;55573:471::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55704:10:::1;;55680:20;55698:1;55680:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:34;;55660:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;55798:9;55793:242;55817:14;55813:1;:18;55793:242;;;55851:10;55864:20;55882:1;55864:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;55851:33;;55917:10;;55901:13;:11;:13::i;:::-;:26;55897:127;;;55944:23;55954:8;55964:2;55944:9;:23::i;:::-;55987;55997:2;56001:8;55987:23;;;;;;;:::i;:::-;;;;;;;;55897:127;55838:197;55833:3;;;;;:::i;:::-;;;;55793:242;;;;55573:471:::0;;:::o;35746:87::-;35792:7;35819:6;;;;;;;;;;;35812:13;;35746:87;:::o;53401:91::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53476:6:::1;53463:10;:19;;;;53401:91:::0;:::o;22688:104::-;22744:13;22777:7;22770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22688:104;:::o;24371:155::-;24466:52;24485:12;:10;:12::i;:::-;24499:8;24509;24466:18;:52::i;:::-;24371:155;;:::o;25494:328::-;25669:41;25688:12;:10;:12::i;:::-;25702:7;25669:18;:41::i;:::-;25661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25775:39;25789:4;25795:2;25799:7;25808:5;25775:13;:39::i;:::-;25494:328;;;;:::o;56054:488::-;56172:13;56225:16;56233:7;56225;:16::i;:::-;56205:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;56331:28;56362:10;:8;:10::i;:::-;56331:41;;56438:1;56413:14;56407:28;:32;:111;;;;;;;;;;;;;;;;;56479:14;56462:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;56407:111;56389:129;;;56054:488;;;:::o;53780:102::-;53830:7;53859:13;:11;:13::i;:::-;53852:20;;53780:102;:::o;53675:95::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53748:12:::1;;;;;;;;;;;53747:13;53732:12;;:28;;;;;;;;;;;;;;;;;;53675:95::o:0;24597:164::-;24694:4;24718:18;:25;24737:5;24718:25;;;;;;;;;;;;;;;:35;24744:8;24718:35;;;;;;;;;;;;;;;;;;;;;;;;;24711:42;;24597:164;;;;:::o;52980:31::-;;;;;;;;;;;;;:::o;36655:201::-;35977:12;:10;:12::i;:::-;35966:23;;:7;:5;:7::i;:::-;:23;;;35958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36764:1:::1;36744:22;;:8;:22;;;;36736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36820:28;36839:8;36820:18;:28::i;:::-;36655:201:::0;:::o;52817:32::-;;;;:::o;46322:224::-;46424:4;46463:35;46448:50;;;:11;:50;;;;:90;;;;46502:36;46526:11;46502:23;:36::i;:::-;46448:90;46441:97;;46322:224;;;:::o;40074:98::-;40132:7;40163:1;40159;:5;;;;:::i;:::-;40152:12;;40074:98;;;;:::o;28316:110::-;28392:26;28402:2;28406:7;28392:26;;;;;;;;;;;;:9;:26::i;:::-;28316:110;;:::o;27332:127::-;27397:4;27449:1;27421:30;;:7;:16;27429:7;27421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27414:37;;27332:127;;;:::o;16822:98::-;16875:7;16902:10;16895:17;;16822:98;:::o;31478:174::-;31580:2;31553:15;:24;31569:7;31553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31636:7;31632:2;31598:46;;31607:23;31622:7;31607:14;:23::i;:::-;31598:46;;;;;;;;;;;;31478:174;;:::o;27626:348::-;27719:4;27744:16;27752:7;27744;:16::i;:::-;27736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27820:13;27836:23;27851:7;27836:14;:23::i;:::-;27820:39;;27889:5;27878:16;;:7;:16;;;:51;;;;27922:7;27898:31;;:20;27910:7;27898:11;:20::i;:::-;:31;;;27878:51;:87;;;;27933:32;27950:5;27957:7;27933:16;:32::i;:::-;27878:87;27870:96;;;27626:348;;;;:::o;30735:625::-;30894:4;30867:31;;:23;30882:7;30867:14;:23::i;:::-;:31;;;30859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30973:1;30959:16;;:2;:16;;;;30951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31029:39;31050:4;31056:2;31060:7;31029:20;:39::i;:::-;31133:29;31150:1;31154:7;31133:8;:29::i;:::-;31194:1;31175:9;:15;31185:4;31175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31223:1;31206:9;:13;31216:2;31206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31254:2;31235:7;:16;31243:7;31235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31293:7;31289:2;31274:27;;31283:4;31274:27;;;;;;;;;;;;31314:38;31334:4;31340:2;31344:7;31314:19;:38::i;:::-;30735:625;;;:::o;40812:98::-;40870:7;40901:1;40897;:5;;;;:::i;:::-;40890:12;;40812:98;;;;:::o;37016:191::-;37090:16;37109:6;;;;;;;;;;;37090:25;;37135:8;37126:6;;:17;;;;;;;;;;;;;;;;;;37190:8;37159:40;;37180:8;37159:40;;;;;;;;;;;;37079:128;37016:191;:::o;31794:315::-;31949:8;31940:17;;:5;:17;;;;31932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32036:8;31998:18;:25;32017:5;31998:25;;;;;;;;;;;;;;;:35;32024:8;31998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32082:8;32060:41;;32075:5;32060:41;;;32092:8;32060:41;;;;;;:::i;:::-;;;;;;;;31794:315;;;:::o;26704:::-;26861:28;26871:4;26877:2;26881:7;26861:9;:28::i;:::-;26908:48;26931:4;26937:2;26941:7;26950:5;26908:22;:48::i;:::-;26900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26704:315;;;;:::o;53161:110::-;53221:13;53254:7;53247:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53161:110;:::o;21574:305::-;21676:4;21728:25;21713:40;;;:11;:40;;;;:105;;;;21785:33;21770:48;;;:11;:48;;;;21713:105;:158;;;;21835:36;21859:11;21835:23;:36::i;:::-;21713:158;21693:178;;21574:305;;;:::o;28653:321::-;28783:18;28789:2;28793:7;28783:5;:18::i;:::-;28834:54;28865:1;28869:2;28873:7;28882:5;28834:22;:54::i;:::-;28812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28653:321;;;:::o;56556:219::-;56720:45;56747:4;56753:2;56757:7;56720:26;:45::i;:::-;56556:219;;;:::o;34556:125::-;;;;:::o;32674:799::-;32829:4;32850:15;:2;:13;;;:15::i;:::-;32846:620;;;32902:2;32886:36;;;32923:12;:10;:12::i;:::-;32937:4;32943:7;32952:5;32886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33145:1;33128:6;:13;:18;33124:272;;;33171:60;;;;;;;;;;:::i;:::-;;;;;;;;33124:272;33346:6;33340:13;33331:6;33327:2;33323:15;33316:38;32882:529;33019:41;;;33009:51;;;:6;:51;;;;33002:58;;;;;32846:620;33450:4;33443:11;;32674:799;;;;;;;:::o;20019:157::-;20104:4;20143:25;20128:40;;;:11;:40;;;;20121:47;;20019:157;;;:::o;29310:439::-;29404:1;29390:16;;:2;:16;;;;29382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29463:16;29471:7;29463;:16::i;:::-;29462:17;29454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29525:45;29554:1;29558:2;29562:7;29525:20;:45::i;:::-;29600:1;29583:9;:13;29593:2;29583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29631:2;29612:7;:16;29620:7;29612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29676:7;29672:2;29651:33;;29668:1;29651:33;;;;;;;;;;;;29697:44;29725:1;29729:2;29733:7;29697:19;:44::i;:::-;29310:439;;:::o;47998:589::-;48142:45;48169:4;48175:2;48179:7;48142:26;:45::i;:::-;48220:1;48204:18;;:4;:18;;;48200:187;;;48239:40;48271:7;48239:31;:40::i;:::-;48200:187;;;48309:2;48301:10;;:4;:10;;;48297:90;;48328:47;48361:4;48367:7;48328:32;:47::i;:::-;48297:90;48200:187;48415:1;48401:16;;:2;:16;;;48397:183;;;48434:45;48471:7;48434:36;:45::i;:::-;48397:183;;;48507:4;48501:10;;:2;:10;;;48497:83;;48528:40;48556:2;48560:7;48528:27;:40::i;:::-;48497:83;48397:183;47998:589;;;:::o;8875:326::-;8935:4;9192:1;9170:7;:19;;;:23;9163:30;;8875:326;;;:::o;34045:126::-;;;;:::o;49310:164::-;49414:10;:17;;;;49387:15;:24;49403:7;49387:24;;;;;;;;;;;:44;;;;49442:10;49458:7;49442:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49310:164;:::o;50101:988::-;50367:22;50417:1;50392:22;50409:4;50392:16;:22::i;:::-;:26;;;;:::i;:::-;50367:51;;50429:18;50450:17;:26;50468:7;50450:26;;;;;;;;;;;;50429:47;;50597:14;50583:10;:28;50579:328;;50628:19;50650:12;:18;50663:4;50650:18;;;;;;;;;;;;;;;:34;50669:14;50650:34;;;;;;;;;;;;50628:56;;50734:11;50701:12;:18;50714:4;50701:18;;;;;;;;;;;;;;;:30;50720:10;50701:30;;;;;;;;;;;:44;;;;50851:10;50818:17;:30;50836:11;50818:30;;;;;;;;;;;:43;;;;50613:294;50579:328;51003:17;:26;51021:7;51003:26;;;;;;;;;;;50996:33;;;51047:12;:18;51060:4;51047:18;;;;;;;;;;;;;;;:34;51066:14;51047:34;;;;;;;;;;;51040:41;;;50182:907;;50101:988;;:::o;51384:1079::-;51637:22;51682:1;51662:10;:17;;;;:21;;;;:::i;:::-;51637:46;;51694:18;51715:15;:24;51731:7;51715:24;;;;;;;;;;;;51694:45;;52066:19;52088:10;52099:14;52088:26;;;;;;;;:::i;:::-;;;;;;;;;;52066:48;;52152:11;52127:10;52138;52127:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;52263:10;52232:15;:28;52248:11;52232:28;;;;;;;;;;;:41;;;;52404:15;:24;52420:7;52404:24;;;;;;;;;;;52397:31;;;52439:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51455:1008;;;51384:1079;:::o;48888:221::-;48973:14;48990:20;49007:2;48990:16;:20::i;:::-;48973:37;;49048:7;49021:12;:16;49034:2;49021:16;;;;;;;;;;;;;;;:24;49038:6;49021:24;;;;;;;;;;;:34;;;;49095:6;49066:17;:26;49084:7;49066:26;;;;;;;;;;;:35;;;;48962:147;48888:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:400::-;9048:3;9069:84;9151:1;9146:3;9069:84;:::i;:::-;9062:91;;9162:93;9251:3;9162:93;:::i;:::-;9280:1;9275:3;9271:11;9264:18;;8888:400;;;:::o;9294:366::-;9436:3;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9533:93;9622:3;9533:93;:::i;:::-;9651:2;9646:3;9642:12;9635:19;;9294:366;;;:::o;9666:::-;9808:3;9829:67;9893:2;9888:3;9829:67;:::i;:::-;9822:74;;9905:93;9994:3;9905:93;:::i;:::-;10023:2;10018:3;10014:12;10007:19;;9666:366;;;:::o;10038:::-;10180:3;10201:67;10265:2;10260:3;10201:67;:::i;:::-;10194:74;;10277:93;10366:3;10277:93;:::i;:::-;10395:2;10390:3;10386:12;10379:19;;10038:366;;;:::o;10410:::-;10552:3;10573:67;10637:2;10632:3;10573:67;:::i;:::-;10566:74;;10649:93;10738:3;10649:93;:::i;:::-;10767:2;10762:3;10758:12;10751:19;;10410:366;;;:::o;10782:::-;10924:3;10945:67;11009:2;11004:3;10945:67;:::i;:::-;10938:74;;11021:93;11110:3;11021:93;:::i;:::-;11139:2;11134:3;11130:12;11123:19;;10782:366;;;:::o;11154:::-;11296:3;11317:67;11381:2;11376:3;11317:67;:::i;:::-;11310:74;;11393:93;11482:3;11393:93;:::i;:::-;11511:2;11506:3;11502:12;11495:19;;11154:366;;;:::o;11526:::-;11668:3;11689:67;11753:2;11748:3;11689:67;:::i;:::-;11682:74;;11765:93;11854:3;11765:93;:::i;:::-;11883:2;11878:3;11874:12;11867:19;;11526:366;;;:::o;11898:::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:398::-;16149:3;16170:83;16251:1;16246:3;16170:83;:::i;:::-;16163:90;;16262:93;16351:3;16262:93;:::i;:::-;16380:1;16375:3;16371:11;16364:18;;15990:398;;;:::o;16394:366::-;16536:3;16557:67;16621:2;16616:3;16557:67;:::i;:::-;16550:74;;16633:93;16722:3;16633:93;:::i;:::-;16751:2;16746:3;16742:12;16735:19;;16394:366;;;:::o;16766:::-;16908:3;16929:67;16993:2;16988:3;16929:67;:::i;:::-;16922:74;;17005:93;17094:3;17005:93;:::i;:::-;17123:2;17118:3;17114:12;17107:19;;16766:366;;;:::o;17138:118::-;17225:24;17243:5;17225:24;:::i;:::-;17220:3;17213:37;17138:118;;:::o;17262:541::-;17495:3;17517:95;17608:3;17599:6;17517:95;:::i;:::-;17510:102;;17629:148;17773:3;17629:148;:::i;:::-;17622:155;;17794:3;17787:10;;17262:541;;;;:::o;17809:379::-;17993:3;18015:147;18158:3;18015:147;:::i;:::-;18008:154;;18179:3;18172:10;;17809:379;;;:::o;18194:222::-;18287:4;18325:2;18314:9;18310:18;18302:26;;18338:71;18406:1;18395:9;18391:17;18382:6;18338:71;:::i;:::-;18194:222;;;;:::o;18422:640::-;18617:4;18655:3;18644:9;18640:19;18632:27;;18669:71;18737:1;18726:9;18722:17;18713:6;18669:71;:::i;:::-;18750:72;18818:2;18807:9;18803:18;18794:6;18750:72;:::i;:::-;18832;18900:2;18889:9;18885:18;18876:6;18832:72;:::i;:::-;18951:9;18945:4;18941:20;18936:2;18925:9;18921:18;18914:48;18979:76;19050:4;19041:6;18979:76;:::i;:::-;18971:84;;18422:640;;;;;;;:::o;19068:210::-;19155:4;19193:2;19182:9;19178:18;19170:26;;19206:65;19268:1;19257:9;19253:17;19244:6;19206:65;:::i;:::-;19068:210;;;;:::o;19284:313::-;19397:4;19435:2;19424:9;19420:18;19412:26;;19484:9;19478:4;19474:20;19470:1;19459:9;19455:17;19448:47;19512:78;19585:4;19576:6;19512:78;:::i;:::-;19504:86;;19284:313;;;;:::o;19603:419::-;19769:4;19807:2;19796:9;19792:18;19784:26;;19856:9;19850:4;19846:20;19842:1;19831:9;19827:17;19820:47;19884:131;20010:4;19884:131;:::i;:::-;19876:139;;19603:419;;;:::o;20028:::-;20194:4;20232:2;20221:9;20217:18;20209:26;;20281:9;20275:4;20271:20;20267:1;20256:9;20252:17;20245:47;20309:131;20435:4;20309:131;:::i;:::-;20301:139;;20028:419;;;:::o;20453:::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o;20878:::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:131;21285:4;21159:131;:::i;:::-;21151:139;;20878:419;;;:::o;21303:::-;21469:4;21507:2;21496:9;21492:18;21484:26;;21556:9;21550:4;21546:20;21542:1;21531:9;21527:17;21520:47;21584:131;21710:4;21584:131;:::i;:::-;21576:139;;21303:419;;;:::o;21728:::-;21894:4;21932:2;21921:9;21917:18;21909:26;;21981:9;21975:4;21971:20;21967:1;21956:9;21952:17;21945:47;22009:131;22135:4;22009:131;:::i;:::-;22001:139;;21728:419;;;:::o;22153:::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:::-;23169:4;23207:2;23196:9;23192:18;23184:26;;23256:9;23250:4;23246:20;23242:1;23231:9;23227:17;23220:47;23284:131;23410:4;23284:131;:::i;:::-;23276:139;;23003:419;;;:::o;23428:::-;23594:4;23632:2;23621:9;23617:18;23609:26;;23681:9;23675:4;23671:20;23667:1;23656:9;23652:17;23645:47;23709:131;23835:4;23709:131;:::i;:::-;23701:139;;23428:419;;;:::o;23853:::-;24019:4;24057:2;24046:9;24042:18;24034:26;;24106:9;24100:4;24096:20;24092:1;24081:9;24077:17;24070:47;24134:131;24260:4;24134:131;:::i;:::-;24126:139;;23853:419;;;:::o;24278:::-;24444:4;24482:2;24471:9;24467:18;24459:26;;24531:9;24525:4;24521:20;24517:1;24506:9;24502:17;24495:47;24559:131;24685:4;24559:131;:::i;:::-;24551:139;;24278:419;;;:::o;24703:::-;24869:4;24907:2;24896:9;24892:18;24884:26;;24956:9;24950:4;24946:20;24942:1;24931:9;24927:17;24920:47;24984:131;25110:4;24984:131;:::i;:::-;24976:139;;24703:419;;;:::o;25128:::-;25294:4;25332:2;25321:9;25317:18;25309:26;;25381:9;25375:4;25371:20;25367:1;25356:9;25352:17;25345:47;25409:131;25535:4;25409:131;:::i;:::-;25401:139;;25128:419;;;:::o;25553:::-;25719:4;25757:2;25746:9;25742:18;25734:26;;25806:9;25800:4;25796:20;25792:1;25781:9;25777:17;25770:47;25834:131;25960:4;25834:131;:::i;:::-;25826:139;;25553:419;;;:::o;25978:::-;26144:4;26182:2;26171:9;26167:18;26159:26;;26231:9;26225:4;26221:20;26217:1;26206:9;26202:17;26195:47;26259:131;26385:4;26259:131;:::i;:::-;26251:139;;25978:419;;;:::o;26403:::-;26569:4;26607:2;26596:9;26592:18;26584:26;;26656:9;26650:4;26646:20;26642:1;26631:9;26627:17;26620:47;26684:131;26810:4;26684:131;:::i;:::-;26676:139;;26403:419;;;:::o;26828:::-;26994:4;27032:2;27021:9;27017:18;27009:26;;27081:9;27075:4;27071:20;27067:1;27056:9;27052:17;27045:47;27109:131;27235:4;27109:131;:::i;:::-;27101:139;;26828:419;;;:::o;27253:::-;27419:4;27457:2;27446:9;27442:18;27434:26;;27506:9;27500:4;27496:20;27492:1;27481:9;27477:17;27470:47;27534:131;27660:4;27534:131;:::i;:::-;27526:139;;27253:419;;;:::o;27678:::-;27844:4;27882:2;27871:9;27867:18;27859:26;;27931:9;27925:4;27921:20;27917:1;27906:9;27902:17;27895:47;27959:131;28085:4;27959:131;:::i;:::-;27951:139;;27678:419;;;:::o;28103:::-;28269:4;28307:2;28296:9;28292:18;28284:26;;28356:9;28350:4;28346:20;28342:1;28331:9;28327:17;28320:47;28384:131;28510:4;28384:131;:::i;:::-;28376:139;;28103:419;;;:::o;28528:222::-;28621:4;28659:2;28648:9;28644:18;28636:26;;28672:71;28740:1;28729:9;28725:17;28716:6;28672:71;:::i;:::-;28528:222;;;;:::o;28756:332::-;28877:4;28915:2;28904:9;28900:18;28892:26;;28928:71;28996:1;28985:9;28981:17;28972:6;28928:71;:::i;:::-;29009:72;29077:2;29066:9;29062:18;29053:6;29009:72;:::i;:::-;28756:332;;;;;:::o;29094:129::-;29128:6;29155:20;;:::i;:::-;29145:30;;29184:33;29212:4;29204:6;29184:33;:::i;:::-;29094:129;;;:::o;29229:75::-;29262:6;29295:2;29289:9;29279:19;;29229:75;:::o;29310:307::-;29371:4;29461:18;29453:6;29450:30;29447:56;;;29483:18;;:::i;:::-;29447:56;29521:29;29543:6;29521:29;:::i;:::-;29513:37;;29605:4;29599;29595:15;29587:23;;29310:307;;;:::o;29623:308::-;29685:4;29775:18;29767:6;29764:30;29761:56;;;29797:18;;:::i;:::-;29761:56;29835:29;29857:6;29835:29;:::i;:::-;29827:37;;29919:4;29913;29909:15;29901:23;;29623:308;;;:::o;29937:98::-;29988:6;30022:5;30016:12;30006:22;;29937:98;;;:::o;30041:99::-;30093:6;30127:5;30121:12;30111:22;;30041:99;;;:::o;30146:168::-;30229:11;30263:6;30258:3;30251:19;30303:4;30298:3;30294:14;30279:29;;30146:168;;;;:::o;30320:147::-;30421:11;30458:3;30443:18;;30320:147;;;;:::o;30473:169::-;30557:11;30591:6;30586:3;30579:19;30631:4;30626:3;30622:14;30607:29;;30473:169;;;;:::o;30648:148::-;30750:11;30787:3;30772:18;;30648:148;;;;:::o;30802:305::-;30842:3;30861:20;30879:1;30861:20;:::i;:::-;30856:25;;30895:20;30913:1;30895:20;:::i;:::-;30890:25;;31049:1;30981:66;30977:74;30974:1;30971:81;30968:107;;;31055:18;;:::i;:::-;30968:107;31099:1;31096;31092:9;31085:16;;30802:305;;;;:::o;31113:348::-;31153:7;31176:20;31194:1;31176:20;:::i;:::-;31171:25;;31210:20;31228:1;31210:20;:::i;:::-;31205:25;;31398:1;31330:66;31326:74;31323:1;31320:81;31315:1;31308:9;31301:17;31297:105;31294:131;;;31405:18;;:::i;:::-;31294:131;31453:1;31450;31446:9;31435:20;;31113:348;;;;:::o;31467:191::-;31507:4;31527:20;31545:1;31527:20;:::i;:::-;31522:25;;31561:20;31579:1;31561:20;:::i;:::-;31556:25;;31600:1;31597;31594:8;31591:34;;;31605:18;;:::i;:::-;31591:34;31650:1;31647;31643:9;31635:17;;31467:191;;;;:::o;31664:96::-;31701:7;31730:24;31748:5;31730:24;:::i;:::-;31719:35;;31664:96;;;:::o;31766:90::-;31800:7;31843:5;31836:13;31829:21;31818:32;;31766:90;;;:::o;31862:149::-;31898:7;31938:66;31931:5;31927:78;31916:89;;31862:149;;;:::o;32017:126::-;32054:7;32094:42;32087:5;32083:54;32072:65;;32017:126;;;:::o;32149:77::-;32186:7;32215:5;32204:16;;32149:77;;;:::o;32232:154::-;32316:6;32311:3;32306;32293:30;32378:1;32369:6;32364:3;32360:16;32353:27;32232:154;;;:::o;32392:307::-;32460:1;32470:113;32484:6;32481:1;32478:13;32470:113;;;32569:1;32564:3;32560:11;32554:18;32550:1;32545:3;32541:11;32534:39;32506:2;32503:1;32499:10;32494:15;;32470:113;;;32601:6;32598:1;32595:13;32592:101;;;32681:1;32672:6;32667:3;32663:16;32656:27;32592:101;32441:258;32392:307;;;:::o;32705:320::-;32749:6;32786:1;32780:4;32776:12;32766:22;;32833:1;32827:4;32823:12;32854:18;32844:81;;32910:4;32902:6;32898:17;32888:27;;32844:81;32972:2;32964:6;32961:14;32941:18;32938:38;32935:84;;;32991:18;;:::i;:::-;32935:84;32756:269;32705:320;;;:::o;33031:281::-;33114:27;33136:4;33114:27;:::i;:::-;33106:6;33102:40;33244:6;33232:10;33229:22;33208:18;33196:10;33193:34;33190:62;33187:88;;;33255:18;;:::i;:::-;33187:88;33295:10;33291:2;33284:22;33074:238;33031:281;;:::o;33318:233::-;33357:3;33380:24;33398:5;33380:24;:::i;:::-;33371:33;;33426:66;33419:5;33416:77;33413:103;;;33496:18;;:::i;:::-;33413:103;33543:1;33536:5;33532:13;33525:20;;33318:233;;;:::o;33557:180::-;33605:77;33602:1;33595:88;33702:4;33699:1;33692:15;33726:4;33723:1;33716:15;33743:180;33791:77;33788:1;33781:88;33888:4;33885:1;33878:15;33912:4;33909:1;33902:15;33929:180;33977:77;33974:1;33967:88;34074:4;34071:1;34064:15;34098:4;34095:1;34088:15;34115:180;34163:77;34160:1;34153:88;34260:4;34257:1;34250:15;34284:4;34281:1;34274:15;34301:180;34349:77;34346:1;34339:88;34446:4;34443:1;34436:15;34470:4;34467:1;34460:15;34487:117;34596:1;34593;34586:12;34610:117;34719:1;34716;34709:12;34733:117;34842:1;34839;34832:12;34856:117;34965:1;34962;34955:12;34979:102;35020:6;35071:2;35067:7;35062:2;35055:5;35051:14;35047:28;35037:38;;34979:102;;;:::o;35087:229::-;35227:34;35223:1;35215:6;35211:14;35204:58;35296:12;35291:2;35283:6;35279:15;35272:37;35087:229;:::o;35322:151::-;35462:3;35458:1;35450:6;35446:14;35439:27;35322:151;:::o;35479:230::-;35619:34;35615:1;35607:6;35603:14;35596:58;35688:13;35683:2;35675:6;35671:15;35664:38;35479:230;:::o;35715:237::-;35855:34;35851:1;35843:6;35839:14;35832:58;35924:20;35919:2;35911:6;35907:15;35900:45;35715:237;:::o;35958:225::-;36098:34;36094:1;36086:6;36082:14;36075:58;36167:8;36162:2;36154:6;36150:15;36143:33;35958:225;:::o;36189:224::-;36329:34;36325:1;36317:6;36313:14;36306:58;36398:7;36393:2;36385:6;36381:15;36374:32;36189:224;:::o;36419:178::-;36559:30;36555:1;36547:6;36543:14;36536:54;36419:178;:::o;36603:220::-;36743:34;36739:1;36731:6;36727:14;36720:58;36812:3;36807:2;36799:6;36795:15;36788:28;36603:220;:::o;36829:223::-;36969:34;36965:1;36957:6;36953:14;36946:58;37038:6;37033:2;37025:6;37021:15;37014:31;36829:223;:::o;37058:175::-;37198:27;37194:1;37186:6;37182:14;37175:51;37058:175;:::o;37239:231::-;37379:34;37375:1;37367:6;37363:14;37356:58;37448:14;37443:2;37435:6;37431:15;37424:39;37239:231;:::o;37476:243::-;37616:34;37612:1;37604:6;37600:14;37593:58;37685:26;37680:2;37672:6;37668:15;37661:51;37476:243;:::o;37725:229::-;37865:34;37861:1;37853:6;37849:14;37842:58;37934:12;37929:2;37921:6;37917:15;37910:37;37725:229;:::o;37960:228::-;38100:34;38096:1;38088:6;38084:14;38077:58;38169:11;38164:2;38156:6;38152:15;38145:36;37960:228;:::o;38194:229::-;38334:34;38330:1;38322:6;38318:14;38311:58;38403:12;38398:2;38390:6;38386:15;38379:37;38194:229;:::o;38429:182::-;38569:34;38565:1;38557:6;38553:14;38546:58;38429:182;:::o;38617:231::-;38757:34;38753:1;38745:6;38741:14;38734:58;38826:14;38821:2;38813:6;38809:15;38802:39;38617:231;:::o;38854:182::-;38994:34;38990:1;38982:6;38978:14;38971:58;38854:182;:::o;39042:234::-;39182:34;39178:1;39170:6;39166:14;39159:58;39251:17;39246:2;39238:6;39234:15;39227:42;39042:234;:::o;39282:220::-;39422:34;39418:1;39410:6;39406:14;39399:58;39491:3;39486:2;39478:6;39474:15;39467:28;39282:220;:::o;39508:114::-;;:::o;39628:236::-;39768:34;39764:1;39756:6;39752:14;39745:58;39837:19;39832:2;39824:6;39820:15;39813:44;39628:236;:::o;39870:231::-;40010:34;40006:1;39998:6;39994:14;39987:58;40079:14;40074:2;40066:6;40062:15;40055:39;39870:231;:::o;40107:122::-;40180:24;40198:5;40180:24;:::i;:::-;40173:5;40170:35;40160:63;;40219:1;40216;40209:12;40160:63;40107:122;:::o;40235:116::-;40305:21;40320:5;40305:21;:::i;:::-;40298:5;40295:32;40285:60;;40341:1;40338;40331:12;40285:60;40235:116;:::o;40357:120::-;40429:23;40446:5;40429:23;:::i;:::-;40422:5;40419:34;40409:62;;40467:1;40464;40457:12;40409:62;40357:120;:::o;40483:122::-;40556:24;40574:5;40556:24;:::i;:::-;40549:5;40546:35;40536:63;;40595:1;40592;40585:12;40536:63;40483:122;:::o

Swarm Source

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