ETH Price: $3,073.09 (+2.43%)
Gas: 5 Gwei

Token

Orphan Girl (OG)
 

Overview

Max Total Supply

3,888 OG

Holders

619

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
test.zerion.eth
Balance
1 OG
0x42b9df65b219b3dd36ff330a4dd8f327a6ada990
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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




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




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













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





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







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





/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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





/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}







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

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

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

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

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

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

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

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





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

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

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

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

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

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

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

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

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

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

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

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

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

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





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract NFT is ERC721, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  Counters.Counter private _tokenIds;
  uint256 private _mintCost;
  uint256 private _maxSupply;
  bool private _isPublicMintEnabled;
  
  /**
  * @dev Initializes the contract setting the `tokenName` and `symbol` of the nft, `cost` of each mint call, and maximum `supply` of the nft.
  * Note: `cost` is in wei. 
  */
  constructor(string memory tokenName, string memory symbol, uint256 cost, uint256 supply) ERC721(tokenName, symbol) Ownable() {
    _mintCost = cost;
    _maxSupply = supply;
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Changes contract state to enable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function allowPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = true;
  }

  /**
  * @dev Changes contract state to disable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function denyPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Mint `count` tokens if requirements are satisfied.
  * 
  */
  function mintTokens(uint256 count)
  public
  payable
  nonReentrant{
    require(_isPublicMintEnabled, "Mint disabled");
    require(count > 0 && count <= 100, "You can drop minimum 1, maximum 100 NFTs");
    require(count.add(_tokenIds.current()) < _maxSupply, "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(count),
           "Ether value sent is below the price");
    for(uint i=0; i<count; i++){
        _mint(msg.sender);
     }
  }

  /**
  * @dev Mint a token to each Address of `recipients`.
  * Can only be called by the current owner.
  */
  function mintTokens(address[] calldata recipients)
  public
  payable
  onlyOwner{
    for(uint i=0; i<recipients.length; i++){
        _mint(recipients[i]);
     }
  }

  /**
  * @dev Update the cost to mint a token.
  * Can only be called by the current owner.
  */
  function setCost(uint256 cost) public onlyOwner{
    _mintCost = cost;
  }

  /**
  * @dev Update the max supply.
  * Can only be called by the current owner.
  */
  function setMaxSupply(uint256 max) public onlyOwner{
    _maxSupply = max;
  }

  /**
  * @dev Transfers contract balance to contract owner.
  * Can only be called by the current owner.
  */
  function withdraw() public onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }

  /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to) internal virtual returns (uint256){
    _tokenIds.increment();
    uint256 id = _tokenIds.current();
    _safeMint(to, id);

    return id;
  }

  function getCost() public view returns (uint256){
    return _mintCost;
  }
  function totalSupply() public view returns (uint256){
    return _maxSupply;
  }
  function getCurrentSupply() public view returns (uint256){
    return _tokenIds.current();
  }
  function getMintStatus() public view returns (bool) {
    return _isPublicMintEnabled;
  }
  function _baseURI() override internal pure returns (string memory) {
    return "https://mw9spidhbc.execute-api.us-east-1.amazonaws.com/dev/token/orphan-girl/";
  }
  function contractURI() public pure returns (string memory) {
    return "https://mw9spidhbc.execute-api.us-east-1.amazonaws.com/dev/contract/orphan-girl";
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"denyPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e1c38038062003e1c8339818101604052810190620000379190620002db565b838381600090805190602001906200005192919062000196565b5080600190805190602001906200006a92919062000196565b5050506200008d62000081620000c860201b60201c565b620000d060201b60201c565b60016007819055508160098190555080600a819055506000600b60006101000a81548160ff0219169083151502179055505050505062000533565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a4906200042a565b90600052602060002090601f016020900481019282620001c8576000855562000214565b82601f10620001e357805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000213578251825591602001919060010190620001f6565b5b50905062000223919062000227565b5090565b5b808211156200024257600081600090555060010162000228565b5090565b60006200025d6200025784620003b4565b6200038b565b9050828152602081018484840111156200027c576200027b620004f9565b5b62000289848285620003f4565b509392505050565b600082601f830112620002a957620002a8620004f4565b5b8151620002bb84826020860162000246565b91505092915050565b600081519050620002d58162000519565b92915050565b60008060008060808587031215620002f857620002f762000503565b5b600085015167ffffffffffffffff811115620003195762000318620004fe565b5b620003278782880162000291565b945050602085015167ffffffffffffffff8111156200034b576200034a620004fe565b5b620003598782880162000291565b93505060406200036c87828801620002c4565b92505060606200037f87828801620002c4565b91505092959194509250565b600062000397620003aa565b9050620003a5828262000460565b919050565b6000604051905090565b600067ffffffffffffffff821115620003d257620003d1620004c5565b5b620003dd8262000508565b9050602081019050919050565b6000819050919050565b60005b8381101562000414578082015181840152602081019050620003f7565b8381111562000424576000848401525b50505050565b600060028204905060018216806200044357607f821691505b602082108114156200045a576200045962000496565b5b50919050565b6200046b8262000508565b810181811067ffffffffffffffff821117156200048d576200048c620004c5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200052481620003ea565b81146200053057600080fd5b50565b6138d980620005436000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612626565b61065e565b6040516101f09190612ae7565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612b02565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612680565b6107d2565b6040516102589190612a80565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612599565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190612dc4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612483565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b610326600480360381019061032191906125d9565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612483565b610c11565b005b34801561035d57600080fd5b5061037860048036038101906103739190612680565b610c31565b005b34801561038657600080fd5b5061038f610cb7565b60405161039c9190612dc4565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612680565b610cc8565b6040516103d99190612a80565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612680565b610d7a565b005b34801561041757600080fd5b50610432600480360381019061042d9190612416565b610e00565b60405161043f9190612dc4565b60405180910390f35b34801561045457600080fd5b5061045d610eb8565b005b34801561046b57600080fd5b50610474610f40565b6040516104819190612a80565b60405180910390f35b34801561049657600080fd5b5061049f610f6a565b6040516104ac9190612ae7565b60405180910390f35b3480156104c157600080fd5b506104ca610f81565b6040516104d79190612b02565b60405180910390f35b6104fa60048036038101906104f59190612680565b611013565b005b34801561050857600080fd5b50610511611227565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612559565b6112c0565b005b34801561054857600080fd5b50610563600480360381019061055e91906124d6565b611441565b005b34801561057157600080fd5b5061057a6114a3565b6040516105879190612dc4565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612680565b6114ad565b6040516105c49190612b02565b60405180910390f35b3480156105d957600080fd5b506105e2611554565b6040516105ef9190612b02565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612443565b611574565b60405161062c9190612ae7565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612416565b611608565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610739575061073882611700565b5b9050919050565b60606000805461074f90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613043565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd8261176a565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612cc4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610cc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117d6565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6117d6565b611574565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612be4565b60405180910390fd5b61096a83836117de565b505050565b6000600a54905090565b61098a6109846117d6565b82611897565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612d64565b60405180910390fd5b6109d4838383611975565b505050565b6109e16117d6565b73ffffffffffffffffffffffffffffffffffffffff166109ff610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612ce4565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6117d6565b73ffffffffffffffffffffffffffffffffffffffff16610a98610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612ce4565b60405180910390fd5b610af6610f40565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b610b466117d6565b73ffffffffffffffffffffffffffffffffffffffff16610b64610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612ce4565b60405180910390fd5b60005b82829050811015610c0c57610bf8838383818110610bde57610bdd6131ad565b5b9050602002016020810190610bf39190612416565b611bd1565b508080610c04906130a6565b915050610bbd565b505050565b610c2c83838360405180602001604052806000815250611441565b505050565b610c396117d6565b73ffffffffffffffffffffffffffffffffffffffff16610c57610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612ce4565b60405180910390fd5b8060098190555050565b6000610cc36008611bfe565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612c44565b60405180910390fd5b80915050919050565b610d826117d6565b73ffffffffffffffffffffffffffffffffffffffff16610da0610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90612ce4565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890612c24565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec06117d6565b73ffffffffffffffffffffffffffffffffffffffff16610ede610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90612ce4565b60405180910390fd5b610f3e6000611c0c565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610f9090613043565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc90613043565b80156110095780601f10610fde57610100808354040283529160200191611009565b820191906000526020600020905b815481529060010190602001808311610fec57829003601f168201915b5050505050905090565b60026007541415611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090612da4565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612d84565b60405180910390fd5b6000811180156110c1575060648111155b611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612c04565b60405180910390fd5b600a5461111f6111106008611bfe565b83611cd290919063ffffffff16565b1061115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612c64565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661117e610f40565b73ffffffffffffffffffffffffffffffffffffffff1614806111b457506111b081600954611ce890919063ffffffff16565b3410155b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612c84565b60405180910390fd5b60005b8181101561121b5761120733611bd1565b508080611213906130a6565b9150506111f6565b50600160078190555050565b61122f6117d6565b73ffffffffffffffffffffffffffffffffffffffff1661124d610f40565b73ffffffffffffffffffffffffffffffffffffffff16146112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612ce4565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112c86117d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612ba4565b60405180910390fd5b80600560006113436117d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f06117d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114359190612ae7565b60405180910390a35050565b61145261144c6117d6565b83611897565b611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890612d64565b60405180910390fd5b61149d84848484611cfe565b50505050565b6000600954905090565b60606114b88261176a565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90612d24565b60405180910390fd5b6000611501611d5a565b90506000815111611521576040518060200160405280600081525061154c565b8061152b84611d7a565b60405160200161153c929190612a5c565b6040516020818303038152906040525b915050919050565b60606040518060800160405280604f8152602001613808604f9139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116106117d6565b73ffffffffffffffffffffffffffffffffffffffff1661162e610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90612ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90612b44565b60405180910390fd5b6116fd81611c0c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661185183610cc8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118a28261176a565b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890612bc4565b60405180910390fd5b60006118ec83610cc8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195b57508373ffffffffffffffffffffffffffffffffffffffff16611943846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196c575061196b8185611574565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199582610cc8565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290612d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290612b84565b60405180910390fd5b611a66838383611edb565b611a716000826117de565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac19190612f59565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b189190612e78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611bdd6008611ee0565b6000611be96008611bfe565b9050611bf58382611ef6565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ce09190612e78565b905092915050565b60008183611cf69190612eff565b905092915050565b611d09848484611975565b611d1584848484611f14565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90612b24565b60405180910390fd5b50505050565b60606040518060800160405280604d8152602001613857604d9139905090565b60606000821415611dc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ed6565b600082905060005b60008214611df4578080611ddd906130a6565b915050600a82611ded9190612ece565b9150611dca565b60008167ffffffffffffffff811115611e1057611e0f6131dc565b5b6040519080825280601f01601f191660200182016040528015611e425781602001600182028036833780820191505090505b5090505b60008514611ecf57600182611e5b9190612f59565b9150600a85611e6a91906130ef565b6030611e769190612e78565b60f81b818381518110611e8c57611e8b6131ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec89190612ece565b9450611e46565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f108282604051806020016040528060008152506120ab565b5050565b6000611f358473ffffffffffffffffffffffffffffffffffffffff16612106565b1561209e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5e6117d6565b8786866040518563ffffffff1660e01b8152600401611f809493929190612a9b565b602060405180830381600087803b158015611f9a57600080fd5b505af1925050508015611fcb57506040513d601f19601f82011682018060405250810190611fc89190612653565b60015b61204e573d8060008114611ffb576040519150601f19603f3d011682016040523d82523d6000602084013e612000565b606091505b50600081511415612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90612b24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120a3565b600190505b949350505050565b6120b58383612119565b6120c26000848484611f14565b612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890612b24565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090612ca4565b60405180910390fd5b6121928161176a565b156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990612b64565b60405180910390fd5b6121de60008383611edb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222e9190612e78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006122fa6122f584612e04565b612ddf565b9050828152602081018484840111156123165761231561321a565b5b612321848285613001565b509392505050565b600081359050612338816137ab565b92915050565b60008083601f84011261235457612353613210565b5b8235905067ffffffffffffffff8111156123715761237061320b565b5b60208301915083602082028301111561238d5761238c613215565b5b9250929050565b6000813590506123a3816137c2565b92915050565b6000813590506123b8816137d9565b92915050565b6000815190506123cd816137d9565b92915050565b600082601f8301126123e8576123e7613210565b5b81356123f88482602086016122e7565b91505092915050565b600081359050612410816137f0565b92915050565b60006020828403121561242c5761242b613224565b5b600061243a84828501612329565b91505092915050565b6000806040838503121561245a57612459613224565b5b600061246885828601612329565b925050602061247985828601612329565b9150509250929050565b60008060006060848603121561249c5761249b613224565b5b60006124aa86828701612329565b93505060206124bb86828701612329565b92505060406124cc86828701612401565b9150509250925092565b600080600080608085870312156124f0576124ef613224565b5b60006124fe87828801612329565b945050602061250f87828801612329565b935050604061252087828801612401565b925050606085013567ffffffffffffffff8111156125415761254061321f565b5b61254d878288016123d3565b91505092959194509250565b600080604083850312156125705761256f613224565b5b600061257e85828601612329565b925050602061258f85828601612394565b9150509250929050565b600080604083850312156125b0576125af613224565b5b60006125be85828601612329565b92505060206125cf85828601612401565b9150509250929050565b600080602083850312156125f0576125ef613224565b5b600083013567ffffffffffffffff81111561260e5761260d61321f565b5b61261a8582860161233e565b92509250509250929050565b60006020828403121561263c5761263b613224565b5b600061264a848285016123a9565b91505092915050565b60006020828403121561266957612668613224565b5b6000612677848285016123be565b91505092915050565b60006020828403121561269657612695613224565b5b60006126a484828501612401565b91505092915050565b6126b681612f8d565b82525050565b6126c581612f9f565b82525050565b60006126d682612e35565b6126e08185612e4b565b93506126f0818560208601613010565b6126f981613229565b840191505092915050565b600061270f82612e40565b6127198185612e5c565b9350612729818560208601613010565b61273281613229565b840191505092915050565b600061274882612e40565b6127528185612e6d565b9350612762818560208601613010565b80840191505092915050565b600061277b603283612e5c565b91506127868261323a565b604082019050919050565b600061279e602683612e5c565b91506127a982613289565b604082019050919050565b60006127c1601c83612e5c565b91506127cc826132d8565b602082019050919050565b60006127e4602483612e5c565b91506127ef82613301565b604082019050919050565b6000612807601983612e5c565b915061281282613350565b602082019050919050565b600061282a602c83612e5c565b915061283582613379565b604082019050919050565b600061284d603883612e5c565b9150612858826133c8565b604082019050919050565b6000612870602883612e5c565b915061287b82613417565b604082019050919050565b6000612893602a83612e5c565b915061289e82613466565b604082019050919050565b60006128b6602983612e5c565b91506128c1826134b5565b604082019050919050565b60006128d9601283612e5c565b91506128e482613504565b602082019050919050565b60006128fc602383612e5c565b91506129078261352d565b604082019050919050565b600061291f602083612e5c565b915061292a8261357c565b602082019050919050565b6000612942602c83612e5c565b915061294d826135a5565b604082019050919050565b6000612965602083612e5c565b9150612970826135f4565b602082019050919050565b6000612988602983612e5c565b91506129938261361d565b604082019050919050565b60006129ab602f83612e5c565b91506129b68261366c565b604082019050919050565b60006129ce602183612e5c565b91506129d9826136bb565b604082019050919050565b60006129f1603183612e5c565b91506129fc8261370a565b604082019050919050565b6000612a14600d83612e5c565b9150612a1f82613759565b602082019050919050565b6000612a37601f83612e5c565b9150612a4282613782565b602082019050919050565b612a5681612ff7565b82525050565b6000612a68828561273d565b9150612a74828461273d565b91508190509392505050565b6000602082019050612a9560008301846126ad565b92915050565b6000608082019050612ab060008301876126ad565b612abd60208301866126ad565b612aca6040830185612a4d565b8181036060830152612adc81846126cb565b905095945050505050565b6000602082019050612afc60008301846126bc565b92915050565b60006020820190508181036000830152612b1c8184612704565b905092915050565b60006020820190508181036000830152612b3d8161276e565b9050919050565b60006020820190508181036000830152612b5d81612791565b9050919050565b60006020820190508181036000830152612b7d816127b4565b9050919050565b60006020820190508181036000830152612b9d816127d7565b9050919050565b60006020820190508181036000830152612bbd816127fa565b9050919050565b60006020820190508181036000830152612bdd8161281d565b9050919050565b60006020820190508181036000830152612bfd81612840565b9050919050565b60006020820190508181036000830152612c1d81612863565b9050919050565b60006020820190508181036000830152612c3d81612886565b9050919050565b60006020820190508181036000830152612c5d816128a9565b9050919050565b60006020820190508181036000830152612c7d816128cc565b9050919050565b60006020820190508181036000830152612c9d816128ef565b9050919050565b60006020820190508181036000830152612cbd81612912565b9050919050565b60006020820190508181036000830152612cdd81612935565b9050919050565b60006020820190508181036000830152612cfd81612958565b9050919050565b60006020820190508181036000830152612d1d8161297b565b9050919050565b60006020820190508181036000830152612d3d8161299e565b9050919050565b60006020820190508181036000830152612d5d816129c1565b9050919050565b60006020820190508181036000830152612d7d816129e4565b9050919050565b60006020820190508181036000830152612d9d81612a07565b9050919050565b60006020820190508181036000830152612dbd81612a2a565b9050919050565b6000602082019050612dd96000830184612a4d565b92915050565b6000612de9612dfa565b9050612df58282613075565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1f57612e1e6131dc565b5b612e2882613229565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e8382612ff7565b9150612e8e83612ff7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ec357612ec2613120565b5b828201905092915050565b6000612ed982612ff7565b9150612ee483612ff7565b925082612ef457612ef361314f565b5b828204905092915050565b6000612f0a82612ff7565b9150612f1583612ff7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4e57612f4d613120565b5b828202905092915050565b6000612f6482612ff7565b9150612f6f83612ff7565b925082821015612f8257612f81613120565b5b828203905092915050565b6000612f9882612fd7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561302e578082015181840152602081019050613013565b8381111561303d576000848401525b50505050565b6000600282049050600182168061305b57607f821691505b6020821081141561306f5761306e61317e565b5b50919050565b61307e82613229565b810181811067ffffffffffffffff8211171561309d5761309c6131dc565b5b80604052505050565b60006130b182612ff7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130e4576130e3613120565b5b600182019050919050565b60006130fa82612ff7565b915061310583612ff7565b9250826131155761311461314f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6137b481612f8d565b81146137bf57600080fd5b50565b6137cb81612f9f565b81146137d657600080fd5b50565b6137e281612fab565b81146137ed57600080fd5b50565b6137f981612ff7565b811461380457600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f6f727068616e2d6769726c68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f6f727068616e2d6769726c2fa264697066735822122079fed372623091a57bb3059d94d723085ae36ecb2c6a1db63efc5c73d04aa1b264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000f30000000000000000000000000000000000000000000000000000000000000000b4f727068616e204769726c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f47000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612626565b61065e565b6040516101f09190612ae7565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612b02565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612680565b6107d2565b6040516102589190612a80565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612599565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190612dc4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612483565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b610326600480360381019061032191906125d9565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612483565b610c11565b005b34801561035d57600080fd5b5061037860048036038101906103739190612680565b610c31565b005b34801561038657600080fd5b5061038f610cb7565b60405161039c9190612dc4565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612680565b610cc8565b6040516103d99190612a80565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612680565b610d7a565b005b34801561041757600080fd5b50610432600480360381019061042d9190612416565b610e00565b60405161043f9190612dc4565b60405180910390f35b34801561045457600080fd5b5061045d610eb8565b005b34801561046b57600080fd5b50610474610f40565b6040516104819190612a80565b60405180910390f35b34801561049657600080fd5b5061049f610f6a565b6040516104ac9190612ae7565b60405180910390f35b3480156104c157600080fd5b506104ca610f81565b6040516104d79190612b02565b60405180910390f35b6104fa60048036038101906104f59190612680565b611013565b005b34801561050857600080fd5b50610511611227565b005b34801561051f57600080fd5b5061053a60048036038101906105359190612559565b6112c0565b005b34801561054857600080fd5b50610563600480360381019061055e91906124d6565b611441565b005b34801561057157600080fd5b5061057a6114a3565b6040516105879190612dc4565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612680565b6114ad565b6040516105c49190612b02565b60405180910390f35b3480156105d957600080fd5b506105e2611554565b6040516105ef9190612b02565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612443565b611574565b60405161062c9190612ae7565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612416565b611608565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610739575061073882611700565b5b9050919050565b60606000805461074f90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613043565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd8261176a565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612cc4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610cc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117d6565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6117d6565b611574565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612be4565b60405180910390fd5b61096a83836117de565b505050565b6000600a54905090565b61098a6109846117d6565b82611897565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612d64565b60405180910390fd5b6109d4838383611975565b505050565b6109e16117d6565b73ffffffffffffffffffffffffffffffffffffffff166109ff610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612ce4565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6117d6565b73ffffffffffffffffffffffffffffffffffffffff16610a98610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612ce4565b60405180910390fd5b610af6610f40565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b610b466117d6565b73ffffffffffffffffffffffffffffffffffffffff16610b64610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612ce4565b60405180910390fd5b60005b82829050811015610c0c57610bf8838383818110610bde57610bdd6131ad565b5b9050602002016020810190610bf39190612416565b611bd1565b508080610c04906130a6565b915050610bbd565b505050565b610c2c83838360405180602001604052806000815250611441565b505050565b610c396117d6565b73ffffffffffffffffffffffffffffffffffffffff16610c57610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612ce4565b60405180910390fd5b8060098190555050565b6000610cc36008611bfe565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612c44565b60405180910390fd5b80915050919050565b610d826117d6565b73ffffffffffffffffffffffffffffffffffffffff16610da0610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90612ce4565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890612c24565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec06117d6565b73ffffffffffffffffffffffffffffffffffffffff16610ede610f40565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90612ce4565b60405180910390fd5b610f3e6000611c0c565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610f9090613043565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc90613043565b80156110095780601f10610fde57610100808354040283529160200191611009565b820191906000526020600020905b815481529060010190602001808311610fec57829003601f168201915b5050505050905090565b60026007541415611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090612da4565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612d84565b60405180910390fd5b6000811180156110c1575060648111155b611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612c04565b60405180910390fd5b600a5461111f6111106008611bfe565b83611cd290919063ffffffff16565b1061115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612c64565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661117e610f40565b73ffffffffffffffffffffffffffffffffffffffff1614806111b457506111b081600954611ce890919063ffffffff16565b3410155b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612c84565b60405180910390fd5b60005b8181101561121b5761120733611bd1565b508080611213906130a6565b9150506111f6565b50600160078190555050565b61122f6117d6565b73ffffffffffffffffffffffffffffffffffffffff1661124d610f40565b73ffffffffffffffffffffffffffffffffffffffff16146112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612ce4565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112c86117d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612ba4565b60405180910390fd5b80600560006113436117d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f06117d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114359190612ae7565b60405180910390a35050565b61145261144c6117d6565b83611897565b611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890612d64565b60405180910390fd5b61149d84848484611cfe565b50505050565b6000600954905090565b60606114b88261176a565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90612d24565b60405180910390fd5b6000611501611d5a565b90506000815111611521576040518060200160405280600081525061154c565b8061152b84611d7a565b60405160200161153c929190612a5c565b6040516020818303038152906040525b915050919050565b60606040518060800160405280604f8152602001613808604f9139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116106117d6565b73ffffffffffffffffffffffffffffffffffffffff1661162e610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90612ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90612b44565b60405180910390fd5b6116fd81611c0c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661185183610cc8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118a28261176a565b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890612bc4565b60405180910390fd5b60006118ec83610cc8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195b57508373ffffffffffffffffffffffffffffffffffffffff16611943846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196c575061196b8185611574565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199582610cc8565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290612d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290612b84565b60405180910390fd5b611a66838383611edb565b611a716000826117de565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac19190612f59565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b189190612e78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611bdd6008611ee0565b6000611be96008611bfe565b9050611bf58382611ef6565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ce09190612e78565b905092915050565b60008183611cf69190612eff565b905092915050565b611d09848484611975565b611d1584848484611f14565b611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90612b24565b60405180910390fd5b50505050565b60606040518060800160405280604d8152602001613857604d9139905090565b60606000821415611dc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ed6565b600082905060005b60008214611df4578080611ddd906130a6565b915050600a82611ded9190612ece565b9150611dca565b60008167ffffffffffffffff811115611e1057611e0f6131dc565b5b6040519080825280601f01601f191660200182016040528015611e425781602001600182028036833780820191505090505b5090505b60008514611ecf57600182611e5b9190612f59565b9150600a85611e6a91906130ef565b6030611e769190612e78565b60f81b818381518110611e8c57611e8b6131ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec89190612ece565b9450611e46565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f108282604051806020016040528060008152506120ab565b5050565b6000611f358473ffffffffffffffffffffffffffffffffffffffff16612106565b1561209e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5e6117d6565b8786866040518563ffffffff1660e01b8152600401611f809493929190612a9b565b602060405180830381600087803b158015611f9a57600080fd5b505af1925050508015611fcb57506040513d601f19601f82011682018060405250810190611fc89190612653565b60015b61204e573d8060008114611ffb576040519150601f19603f3d011682016040523d82523d6000602084013e612000565b606091505b50600081511415612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90612b24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120a3565b600190505b949350505050565b6120b58383612119565b6120c26000848484611f14565b612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890612b24565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090612ca4565b60405180910390fd5b6121928161176a565b156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990612b64565b60405180910390fd5b6121de60008383611edb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222e9190612e78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006122fa6122f584612e04565b612ddf565b9050828152602081018484840111156123165761231561321a565b5b612321848285613001565b509392505050565b600081359050612338816137ab565b92915050565b60008083601f84011261235457612353613210565b5b8235905067ffffffffffffffff8111156123715761237061320b565b5b60208301915083602082028301111561238d5761238c613215565b5b9250929050565b6000813590506123a3816137c2565b92915050565b6000813590506123b8816137d9565b92915050565b6000815190506123cd816137d9565b92915050565b600082601f8301126123e8576123e7613210565b5b81356123f88482602086016122e7565b91505092915050565b600081359050612410816137f0565b92915050565b60006020828403121561242c5761242b613224565b5b600061243a84828501612329565b91505092915050565b6000806040838503121561245a57612459613224565b5b600061246885828601612329565b925050602061247985828601612329565b9150509250929050565b60008060006060848603121561249c5761249b613224565b5b60006124aa86828701612329565b93505060206124bb86828701612329565b92505060406124cc86828701612401565b9150509250925092565b600080600080608085870312156124f0576124ef613224565b5b60006124fe87828801612329565b945050602061250f87828801612329565b935050604061252087828801612401565b925050606085013567ffffffffffffffff8111156125415761254061321f565b5b61254d878288016123d3565b91505092959194509250565b600080604083850312156125705761256f613224565b5b600061257e85828601612329565b925050602061258f85828601612394565b9150509250929050565b600080604083850312156125b0576125af613224565b5b60006125be85828601612329565b92505060206125cf85828601612401565b9150509250929050565b600080602083850312156125f0576125ef613224565b5b600083013567ffffffffffffffff81111561260e5761260d61321f565b5b61261a8582860161233e565b92509250509250929050565b60006020828403121561263c5761263b613224565b5b600061264a848285016123a9565b91505092915050565b60006020828403121561266957612668613224565b5b6000612677848285016123be565b91505092915050565b60006020828403121561269657612695613224565b5b60006126a484828501612401565b91505092915050565b6126b681612f8d565b82525050565b6126c581612f9f565b82525050565b60006126d682612e35565b6126e08185612e4b565b93506126f0818560208601613010565b6126f981613229565b840191505092915050565b600061270f82612e40565b6127198185612e5c565b9350612729818560208601613010565b61273281613229565b840191505092915050565b600061274882612e40565b6127528185612e6d565b9350612762818560208601613010565b80840191505092915050565b600061277b603283612e5c565b91506127868261323a565b604082019050919050565b600061279e602683612e5c565b91506127a982613289565b604082019050919050565b60006127c1601c83612e5c565b91506127cc826132d8565b602082019050919050565b60006127e4602483612e5c565b91506127ef82613301565b604082019050919050565b6000612807601983612e5c565b915061281282613350565b602082019050919050565b600061282a602c83612e5c565b915061283582613379565b604082019050919050565b600061284d603883612e5c565b9150612858826133c8565b604082019050919050565b6000612870602883612e5c565b915061287b82613417565b604082019050919050565b6000612893602a83612e5c565b915061289e82613466565b604082019050919050565b60006128b6602983612e5c565b91506128c1826134b5565b604082019050919050565b60006128d9601283612e5c565b91506128e482613504565b602082019050919050565b60006128fc602383612e5c565b91506129078261352d565b604082019050919050565b600061291f602083612e5c565b915061292a8261357c565b602082019050919050565b6000612942602c83612e5c565b915061294d826135a5565b604082019050919050565b6000612965602083612e5c565b9150612970826135f4565b602082019050919050565b6000612988602983612e5c565b91506129938261361d565b604082019050919050565b60006129ab602f83612e5c565b91506129b68261366c565b604082019050919050565b60006129ce602183612e5c565b91506129d9826136bb565b604082019050919050565b60006129f1603183612e5c565b91506129fc8261370a565b604082019050919050565b6000612a14600d83612e5c565b9150612a1f82613759565b602082019050919050565b6000612a37601f83612e5c565b9150612a4282613782565b602082019050919050565b612a5681612ff7565b82525050565b6000612a68828561273d565b9150612a74828461273d565b91508190509392505050565b6000602082019050612a9560008301846126ad565b92915050565b6000608082019050612ab060008301876126ad565b612abd60208301866126ad565b612aca6040830185612a4d565b8181036060830152612adc81846126cb565b905095945050505050565b6000602082019050612afc60008301846126bc565b92915050565b60006020820190508181036000830152612b1c8184612704565b905092915050565b60006020820190508181036000830152612b3d8161276e565b9050919050565b60006020820190508181036000830152612b5d81612791565b9050919050565b60006020820190508181036000830152612b7d816127b4565b9050919050565b60006020820190508181036000830152612b9d816127d7565b9050919050565b60006020820190508181036000830152612bbd816127fa565b9050919050565b60006020820190508181036000830152612bdd8161281d565b9050919050565b60006020820190508181036000830152612bfd81612840565b9050919050565b60006020820190508181036000830152612c1d81612863565b9050919050565b60006020820190508181036000830152612c3d81612886565b9050919050565b60006020820190508181036000830152612c5d816128a9565b9050919050565b60006020820190508181036000830152612c7d816128cc565b9050919050565b60006020820190508181036000830152612c9d816128ef565b9050919050565b60006020820190508181036000830152612cbd81612912565b9050919050565b60006020820190508181036000830152612cdd81612935565b9050919050565b60006020820190508181036000830152612cfd81612958565b9050919050565b60006020820190508181036000830152612d1d8161297b565b9050919050565b60006020820190508181036000830152612d3d8161299e565b9050919050565b60006020820190508181036000830152612d5d816129c1565b9050919050565b60006020820190508181036000830152612d7d816129e4565b9050919050565b60006020820190508181036000830152612d9d81612a07565b9050919050565b60006020820190508181036000830152612dbd81612a2a565b9050919050565b6000602082019050612dd96000830184612a4d565b92915050565b6000612de9612dfa565b9050612df58282613075565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1f57612e1e6131dc565b5b612e2882613229565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e8382612ff7565b9150612e8e83612ff7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ec357612ec2613120565b5b828201905092915050565b6000612ed982612ff7565b9150612ee483612ff7565b925082612ef457612ef361314f565b5b828204905092915050565b6000612f0a82612ff7565b9150612f1583612ff7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4e57612f4d613120565b5b828202905092915050565b6000612f6482612ff7565b9150612f6f83612ff7565b925082821015612f8257612f81613120565b5b828203905092915050565b6000612f9882612fd7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561302e578082015181840152602081019050613013565b8381111561303d576000848401525b50505050565b6000600282049050600182168061305b57607f821691505b6020821081141561306f5761306e61317e565b5b50919050565b61307e82613229565b810181811067ffffffffffffffff8211171561309d5761309c6131dc565b5b80604052505050565b60006130b182612ff7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130e4576130e3613120565b5b600182019050919050565b60006130fa82612ff7565b915061310583612ff7565b9250826131155761311461314f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6137b481612f8d565b81146137bf57600080fd5b50565b6137cb81612f9f565b81146137d657600080fd5b50565b6137e281612fab565b81146137ed57600080fd5b50565b6137f981612ff7565b811461380457600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f6f727068616e2d6769726c68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f6f727068616e2d6769726c2fa264697066735822122079fed372623091a57bb3059d94d723085ae36ecb2c6a1db63efc5c73d04aa1b264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000f30000000000000000000000000000000000000000000000000000000000000000b4f727068616e204769726c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f47000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Orphan Girl
Arg [1] : symbol (string): OG
Arg [2] : cost (uint256): 80000000000000000
Arg [3] : supply (uint256): 3888

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000f30
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4f727068616e204769726c000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4f47000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44846:3610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21732:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47841:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23099:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45898:89;;;;;;;;;;;;;:::i;:::-;;47343:97;;;;;;;;;;;;;:::i;:::-;;46685:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46968:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47927:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47142:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34737:94;;;;;;;;;;;;;:::i;:::-;;34086:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48027:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45661:89;;;;;;;;;;;;;:::i;:::-;;22502:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23765:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47760:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20994:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48293:160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34986:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19705:305;19807:4;19859:25;19844:40;;;:11;:40;;;;:105;;;;19916:33;19901:48;;;:11;:48;;;;19844:105;:158;;;;19966:36;19990:11;19966:23;:36::i;:::-;19844:158;19824:178;;19705:305;;;:::o;20650:100::-;20704:13;20737:5;20730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20650:100;:::o;22209:221::-;22285:7;22313:16;22321:7;22313;:16::i;:::-;22305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22398:15;:24;22414:7;22398:24;;;;;;;;;;;;;;;;;;;;;22391:31;;22209:221;;;:::o;21732:411::-;21813:13;21829:23;21844:7;21829:14;:23::i;:::-;21813:39;;21877:5;21871:11;;:2;:11;;;;21863:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21971:5;21955:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21980:37;21997:5;22004:12;:10;:12::i;:::-;21980:16;:37::i;:::-;21955:62;21933:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:21;22123:2;22127:7;22114:8;:21::i;:::-;21802:341;21732:411;;:::o;47841:82::-;47885:7;47907:10;;47900:17;;47841:82;:::o;23099:339::-;23294:41;23313:12;:10;:12::i;:::-;23327:7;23294:18;:41::i;:::-;23286:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23402:28;23412:4;23418:2;23422:7;23402:9;:28::i;:::-;23099:339;;;:::o;45898:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45976:5:::1;45953:20;;:28;;;;;;;;;;;;;;;;;;45898:89::o:0;47343:97::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47394:7:::1;:5;:7::i;:::-;47386:25;;:48;47412:21;47386:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47343:97::o:0;46685:175::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46780:6:::1;46776:79;46792:10;;:17;;46790:1;:19;46776:79;;;46826:20;46832:10;;46843:1;46832:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46826:5;:20::i;:::-;;46811:3;;;;;:::i;:::-;;;;46776:79;;;;46685:175:::0;;:::o;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;:::-;23509:185;;;:::o;46968:76::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47034:4:::1;47022:9;:16;;;;46968:76:::0;:::o;47927:96::-;47976:7;47998:19;:9;:17;:19::i;:::-;47991:26;;47927:96;:::o;20344:239::-;20416:7;20436:13;20452:7;:16;20460:7;20452:16;;;;;;;;;;;;;;;;;;;;;20436:32;;20504:1;20487:19;;:5;:19;;;;20479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20570:5;20563:12;;;20344:239;;;:::o;47142:80::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47213:3:::1;47200:10;:16;;;;47142:80:::0;:::o;20074:208::-;20146:7;20191:1;20174:19;;:5;:19;;;;20166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:9;:16;20268:5;20258:16;;;;;;;;;;;;;;;;20251:23;;20074:208;;;:::o;34737:94::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:21:::1;34820:1;34802:9;:21::i;:::-;34737:94::o:0;34086:87::-;34132:7;34159:6;;;;;;;;;;;34152:13;;34086:87;:::o;48027:92::-;48073:4;48093:20;;;;;;;;;;;48086:27;;48027:92;:::o;20819:104::-;20875:13;20908:7;20901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20819:104;:::o;46073:491::-;43899:1;44495:7;;:19;;44487:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43899:1;44628:7;:18;;;;46159:20:::1;;;;;;;;;;;46151:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46220:1;46212:5;:9;:25;;;;;46234:3;46225:5;:12;;46212:25;46204:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46330:10;;46297:30;46307:19;:9;:17;:19::i;:::-;46297:5;:9;;:30;;;;:::i;:::-;:43;46289:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46389:10;46378:21;;:7;:5;:7::i;:::-;:21;;;:58;;;;46416:20;46430:5;46416:9;;:13;;:20;;;;:::i;:::-;46403:9;:33;;46378:58;46370:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:6;46495:64;46511:5;46509:1;:7;46495:64;;;46533:17;46539:10;46533:5;:17::i;:::-;;46518:3;;;;;:::i;:::-;;;;46495:64;;;;43855:1:::0;44807:7;:22;;;;46073:491;:::o;45661:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45740:4:::1;45717:20;;:27;;;;;;;;;;;;;;;;;;45661:89::o:0;22502:295::-;22617:12;:10;:12::i;:::-;22605:24;;:8;:24;;;;22597:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22717:8;22672:18;:32;22691:12;:10;:12::i;:::-;22672:32;;;;;;;;;;;;;;;:42;22705:8;22672:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22770:8;22741:48;;22756:12;:10;:12::i;:::-;22741:48;;;22780:8;22741:48;;;;;;:::i;:::-;;;;;;;;22502:295;;:::o;23765:328::-;23940:41;23959:12;:10;:12::i;:::-;23973:7;23940:18;:41::i;:::-;23932:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24046:39;24060:4;24066:2;24070:7;24079:5;24046:13;:39::i;:::-;23765:328;;;;:::o;47760:77::-;47800:7;47822:9;;47815:16;;47760:77;:::o;20994:334::-;21067:13;21101:16;21109:7;21101;:16::i;:::-;21093:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21182:21;21206:10;:8;:10::i;:::-;21182:34;;21258:1;21240:7;21234:21;:25;:86;;;;;;;;;;;;;;;;;21286:7;21295:18;:7;:16;:18::i;:::-;21269:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21234:86;21227:93;;;20994:334;;;:::o;48293:160::-;48337:13;48359:88;;;;;;;;;;;;;;;;;;;48293:160;:::o;22868:164::-;22965:4;22989:18;:25;23008:5;22989:25;;;;;;;;;;;;;;;:35;23015:8;22989:35;;;;;;;;;;;;;;;;;;;;;;;;;22982:42;;22868:164;;;;:::o;34986:192::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35095:1:::1;35075:22;;:8;:22;;;;35067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:19;35161:8;35151:9;:19::i;:::-;34986:192:::0;:::o;18312:157::-;18397:4;18436:25;18421:40;;;:11;:40;;;;18414:47;;18312:157;;;:::o;25603:127::-;25668:4;25720:1;25692:30;;:7;:16;25700:7;25692:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25685:37;;25603:127;;;:::o;1357:98::-;1410:7;1437:10;1430:17;;1357:98;:::o;29585:174::-;29687:2;29660:15;:24;29676:7;29660:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29743:7;29739:2;29705:46;;29714:23;29729:7;29714:14;:23::i;:::-;29705:46;;;;;;;;;;;;29585:174;;:::o;25897:348::-;25990:4;26015:16;26023:7;26015;:16::i;:::-;26007:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:13;26107:23;26122:7;26107:14;:23::i;:::-;26091:39;;26160:5;26149:16;;:7;:16;;;:51;;;;26193:7;26169:31;;:20;26181:7;26169:11;:20::i;:::-;:31;;;26149:51;:87;;;;26204:32;26221:5;26228:7;26204:16;:32::i;:::-;26149:87;26141:96;;;25897:348;;;;:::o;28889:578::-;29048:4;29021:31;;:23;29036:7;29021:14;:23::i;:::-;:31;;;29013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:1;29117:16;;:2;:16;;;;29109:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29187:39;29208:4;29214:2;29218:7;29187:20;:39::i;:::-;29291:29;29308:1;29312:7;29291:8;:29::i;:::-;29352:1;29333:9;:15;29343:4;29333:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29381:1;29364:9;:13;29374:2;29364:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29412:2;29393:7;:16;29401:7;29393:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29451:7;29447:2;29432:27;;29441:4;29432:27;;;;;;;;;;;;28889:578;;;:::o;47578:176::-;47631:7;47646:21;:9;:19;:21::i;:::-;47674:10;47687:19;:9;:17;:19::i;:::-;47674:32;;47713:17;47723:2;47727;47713:9;:17::i;:::-;47746:2;47739:9;;;47578:176;;;:::o;32571:114::-;32636:7;32663;:14;;;32656:21;;32571:114;;;:::o;35186:173::-;35242:16;35261:6;;;;;;;;;;;35242:25;;35287:8;35278:6;;:17;;;;;;;;;;;;;;;;;;35342:8;35311:40;;35332:8;35311:40;;;;;;;;;;;;35231:128;35186:173;:::o;38075:98::-;38133:7;38164:1;38160;:5;;;;:::i;:::-;38153:12;;38075:98;;;;:::o;38813:::-;38871:7;38902:1;38898;:5;;;;:::i;:::-;38891:12;;38813:98;;;;:::o;24975:315::-;25132:28;25142:4;25148:2;25152:7;25132:9;:28::i;:::-;25179:48;25202:4;25208:2;25212:7;25221:5;25179:22;:48::i;:::-;25171:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24975:315;;;;:::o;48123:166::-;48175:13;48197:86;;;;;;;;;;;;;;;;;;;48123:166;:::o;1803:723::-;1859:13;2089:1;2080:5;:10;2076:53;;;2107:10;;;;;;;;;;;;;;;;;;;;;2076:53;2139:12;2154:5;2139:20;;2170:14;2195:78;2210:1;2202:4;:9;2195:78;;2228:8;;;;;:::i;:::-;;;;2259:2;2251:10;;;;;:::i;:::-;;;2195:78;;;2283:19;2315:6;2305:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:39;;2333:154;2349:1;2340:5;:10;2333:154;;2377:1;2367:11;;;;;:::i;:::-;;;2444:2;2436:5;:10;;;;:::i;:::-;2423:2;:24;;;;:::i;:::-;2410:39;;2393:6;2400;2393:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2473:2;2464:11;;;;;:::i;:::-;;;2333:154;;;2511:6;2497:21;;;;;1803:723;;;;:::o;31699:126::-;;;;:::o;32693:127::-;32800:1;32782:7;:14;;;:19;;;;;;;;;;;32693:127;:::o;26587:110::-;26663:26;26673:2;26677:7;26663:26;;;;;;;;;;;;:9;:26::i;:::-;26587:110;;:::o;30324:803::-;30479:4;30500:15;:2;:13;;;:15::i;:::-;30496:624;;;30552:2;30536:36;;;30573:12;:10;:12::i;:::-;30587:4;30593:7;30602:5;30536:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30532:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30799:1;30782:6;:13;:18;30778:272;;;30825:60;;;;;;;;;;:::i;:::-;;;;;;;;30778:272;31000:6;30994:13;30985:6;30981:2;30977:15;30970:38;30532:533;30669:45;;;30659:55;;;:6;:55;;;;30652:62;;;;;30496:624;31104:4;31097:11;;30324:803;;;;;;;:::o;26924:321::-;27054:18;27060:2;27064:7;27054:5;:18::i;:::-;27105:54;27136:1;27140:2;27144:7;27153:5;27105:22;:54::i;:::-;27083:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:321;;;:::o;10484:387::-;10544:4;10752:12;10819:7;10807:20;10799:28;;10862:1;10855:4;:8;10848:15;;;10484:387;;;:::o;27581:382::-;27675:1;27661:16;;:2;:16;;;;27653:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27734:16;27742:7;27734;:16::i;:::-;27733:17;27725:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27796:45;27825:1;27829:2;27833:7;27796:20;:45::i;:::-;27871:1;27854:9;:13;27864:2;27854:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27902:2;27883:7;:16;27891:7;27883:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27947:7;27943:2;27922:33;;27939:1;27922:33;;;;;;;;;;;;27581:382;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1945:139::-;1991:5;2029:6;2016:20;2007:29;;2045:33;2072:5;2045:33;:::i;:::-;1945:139;;;;:::o;2090:329::-;2149:6;2198:2;2186:9;2177:7;2173:23;2169:32;2166:119;;;2204:79;;:::i;:::-;2166:119;2324:1;2349:53;2394:7;2385:6;2374:9;2370:22;2349:53;:::i;:::-;2339:63;;2295:117;2090:329;;;;:::o;2425:474::-;2493:6;2501;2550:2;2538:9;2529:7;2525:23;2521:32;2518:119;;;2556:79;;:::i;:::-;2518:119;2676:1;2701:53;2746:7;2737:6;2726:9;2722:22;2701:53;:::i;:::-;2691:63;;2647:117;2803:2;2829:53;2874:7;2865:6;2854:9;2850:22;2829:53;:::i;:::-;2819:63;;2774:118;2425:474;;;;;:::o;2905:619::-;2982:6;2990;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;3428:2;3454:53;3499:7;3490:6;3479:9;3475:22;3454:53;:::i;:::-;3444:63;;3399:118;2905:619;;;;;:::o;3530:943::-;3625:6;3633;3641;3649;3698:3;3686:9;3677:7;3673:23;3669:33;3666:120;;;3705:79;;:::i;:::-;3666:120;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;4236:2;4225:9;4221:18;4208:32;4267:18;4259:6;4256:30;4253:117;;;4289:79;;:::i;:::-;4253:117;4394:62;4448:7;4439:6;4428:9;4424:22;4394:62;:::i;:::-;4384:72;;4179:287;3530:943;;;;;;;:::o;4479:468::-;4544:6;4552;4601:2;4589:9;4580:7;4576:23;4572:32;4569:119;;;4607:79;;:::i;:::-;4569:119;4727:1;4752:53;4797:7;4788:6;4777:9;4773:22;4752:53;:::i;:::-;4742:63;;4698:117;4854:2;4880:50;4922:7;4913:6;4902:9;4898:22;4880:50;:::i;:::-;4870:60;;4825:115;4479:468;;;;;:::o;4953:474::-;5021:6;5029;5078:2;5066:9;5057:7;5053:23;5049:32;5046:119;;;5084:79;;:::i;:::-;5046:119;5204:1;5229:53;5274:7;5265:6;5254:9;5250:22;5229:53;:::i;:::-;5219:63;;5175:117;5331:2;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5302:118;4953:474;;;;;:::o;5433:559::-;5519:6;5527;5576:2;5564:9;5555:7;5551:23;5547:32;5544:119;;;5582:79;;:::i;:::-;5544:119;5730:1;5719:9;5715:17;5702:31;5760:18;5752:6;5749:30;5746:117;;;5782:79;;:::i;:::-;5746:117;5895:80;5967:7;5958:6;5947:9;5943:22;5895:80;:::i;:::-;5877:98;;;;5673:312;5433:559;;;;;:::o;5998:327::-;6056:6;6105:2;6093:9;6084:7;6080:23;6076:32;6073:119;;;6111:79;;:::i;:::-;6073:119;6231:1;6256:52;6300:7;6291:6;6280:9;6276:22;6256:52;:::i;:::-;6246:62;;6202:116;5998:327;;;;:::o;6331:349::-;6400:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:119;;;6455:79;;:::i;:::-;6417:119;6575:1;6600:63;6655:7;6646:6;6635:9;6631:22;6600:63;:::i;:::-;6590:73;;6546:127;6331:349;;;;:::o;6686:329::-;6745:6;6794:2;6782:9;6773:7;6769:23;6765:32;6762:119;;;6800:79;;:::i;:::-;6762:119;6920:1;6945:53;6990:7;6981:6;6970:9;6966:22;6945:53;:::i;:::-;6935:63;;6891:117;6686:329;;;;:::o;7021:118::-;7108:24;7126:5;7108:24;:::i;:::-;7103:3;7096:37;7021:118;;:::o;7145:109::-;7226:21;7241:5;7226:21;:::i;:::-;7221:3;7214:34;7145:109;;:::o;7260:360::-;7346:3;7374:38;7406:5;7374:38;:::i;:::-;7428:70;7491:6;7486:3;7428:70;:::i;:::-;7421:77;;7507:52;7552:6;7547:3;7540:4;7533:5;7529:16;7507:52;:::i;:::-;7584:29;7606:6;7584:29;:::i;:::-;7579:3;7575:39;7568:46;;7350:270;7260:360;;;;:::o;7626:364::-;7714:3;7742:39;7775:5;7742:39;:::i;:::-;7797:71;7861:6;7856:3;7797:71;:::i;:::-;7790:78;;7877:52;7922:6;7917:3;7910:4;7903:5;7899:16;7877:52;:::i;:::-;7954:29;7976:6;7954:29;:::i;:::-;7949:3;7945:39;7938:46;;7718:272;7626:364;;;;:::o;7996:377::-;8102:3;8130:39;8163:5;8130:39;:::i;:::-;8185:89;8267:6;8262:3;8185:89;:::i;:::-;8178:96;;8283:52;8328:6;8323:3;8316:4;8309:5;8305:16;8283:52;:::i;:::-;8360:6;8355:3;8351:16;8344:23;;8106:267;7996:377;;;;:::o;8379:366::-;8521:3;8542:67;8606:2;8601:3;8542:67;:::i;:::-;8535:74;;8618:93;8707:3;8618:93;:::i;:::-;8736:2;8731:3;8727:12;8720:19;;8379:366;;;:::o;8751:::-;8893:3;8914:67;8978:2;8973:3;8914:67;:::i;:::-;8907:74;;8990:93;9079:3;8990:93;:::i;:::-;9108:2;9103:3;9099:12;9092:19;;8751:366;;;:::o;9123:::-;9265:3;9286:67;9350:2;9345:3;9286:67;:::i;:::-;9279:74;;9362:93;9451:3;9362:93;:::i;:::-;9480:2;9475:3;9471:12;9464:19;;9123:366;;;:::o;9495:::-;9637:3;9658:67;9722:2;9717:3;9658:67;:::i;:::-;9651:74;;9734:93;9823:3;9734:93;:::i;:::-;9852:2;9847:3;9843:12;9836:19;;9495:366;;;:::o;9867:::-;10009:3;10030:67;10094:2;10089:3;10030:67;:::i;:::-;10023:74;;10106:93;10195:3;10106:93;:::i;:::-;10224:2;10219:3;10215:12;10208:19;;9867:366;;;:::o;10239:::-;10381:3;10402:67;10466:2;10461:3;10402:67;:::i;:::-;10395:74;;10478:93;10567:3;10478:93;:::i;:::-;10596:2;10591:3;10587:12;10580:19;;10239:366;;;:::o;10611:::-;10753:3;10774:67;10838:2;10833:3;10774:67;:::i;:::-;10767:74;;10850:93;10939:3;10850:93;:::i;:::-;10968:2;10963:3;10959:12;10952:19;;10611:366;;;:::o;10983:::-;11125:3;11146:67;11210:2;11205:3;11146:67;:::i;:::-;11139:74;;11222:93;11311:3;11222:93;:::i;:::-;11340:2;11335:3;11331:12;11324:19;;10983:366;;;:::o;11355:::-;11497:3;11518:67;11582:2;11577:3;11518:67;:::i;:::-;11511:74;;11594:93;11683:3;11594:93;:::i;:::-;11712:2;11707:3;11703:12;11696:19;;11355:366;;;:::o;11727:::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:::-;15961:3;15982:67;16046:2;16041:3;15982:67;:::i;:::-;15975:74;;16058:93;16147:3;16058:93;:::i;:::-;16176:2;16171:3;16167:12;16160:19;;15819:366;;;:::o;16191:118::-;16278:24;16296:5;16278:24;:::i;:::-;16273:3;16266:37;16191:118;;:::o;16315:435::-;16495:3;16517:95;16608:3;16599:6;16517:95;:::i;:::-;16510:102;;16629:95;16720:3;16711:6;16629:95;:::i;:::-;16622:102;;16741:3;16734:10;;16315:435;;;;;:::o;16756:222::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16900:71;16968:1;16957:9;16953:17;16944:6;16900:71;:::i;:::-;16756:222;;;;:::o;16984:640::-;17179:4;17217:3;17206:9;17202:19;17194:27;;17231:71;17299:1;17288:9;17284:17;17275:6;17231:71;:::i;:::-;17312:72;17380:2;17369:9;17365:18;17356:6;17312:72;:::i;:::-;17394;17462:2;17451:9;17447:18;17438:6;17394:72;:::i;:::-;17513:9;17507:4;17503:20;17498:2;17487:9;17483:18;17476:48;17541:76;17612:4;17603:6;17541:76;:::i;:::-;17533:84;;16984:640;;;;;;;:::o;17630:210::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17768:65;17830:1;17819:9;17815:17;17806:6;17768:65;:::i;:::-;17630:210;;;;:::o;17846:313::-;17959:4;17997:2;17986:9;17982:18;17974:26;;18046:9;18040:4;18036:20;18032:1;18021:9;18017:17;18010:47;18074:78;18147:4;18138:6;18074:78;:::i;:::-;18066:86;;17846:313;;;;:::o;18165:419::-;18331:4;18369:2;18358:9;18354:18;18346:26;;18418:9;18412:4;18408:20;18404:1;18393:9;18389:17;18382:47;18446:131;18572:4;18446:131;:::i;:::-;18438:139;;18165:419;;;:::o;18590:::-;18756:4;18794:2;18783:9;18779:18;18771:26;;18843:9;18837:4;18833:20;18829:1;18818:9;18814:17;18807:47;18871:131;18997:4;18871:131;:::i;:::-;18863:139;;18590:419;;;:::o;19015:::-;19181:4;19219:2;19208:9;19204:18;19196:26;;19268:9;19262:4;19258:20;19254:1;19243:9;19239:17;19232:47;19296:131;19422:4;19296:131;:::i;:::-;19288:139;;19015:419;;;:::o;19440:::-;19606:4;19644:2;19633:9;19629:18;19621:26;;19693:9;19687:4;19683:20;19679:1;19668:9;19664:17;19657:47;19721:131;19847:4;19721:131;:::i;:::-;19713:139;;19440:419;;;:::o;19865:::-;20031:4;20069:2;20058:9;20054:18;20046:26;;20118:9;20112:4;20108:20;20104:1;20093:9;20089:17;20082:47;20146:131;20272:4;20146:131;:::i;:::-;20138:139;;19865:419;;;:::o;20290:::-;20456:4;20494:2;20483:9;20479:18;20471:26;;20543:9;20537:4;20533:20;20529:1;20518:9;20514:17;20507:47;20571:131;20697:4;20571:131;:::i;:::-;20563:139;;20290:419;;;:::o;20715:::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:131;21122:4;20996:131;:::i;:::-;20988:139;;20715:419;;;:::o;21140:::-;21306:4;21344:2;21333:9;21329:18;21321:26;;21393:9;21387:4;21383:20;21379:1;21368:9;21364:17;21357:47;21421:131;21547:4;21421:131;:::i;:::-;21413:139;;21140:419;;;:::o;21565:::-;21731:4;21769:2;21758:9;21754:18;21746:26;;21818:9;21812:4;21808:20;21804:1;21793:9;21789:17;21782:47;21846:131;21972:4;21846:131;:::i;:::-;21838:139;;21565:419;;;:::o;21990:::-;22156:4;22194:2;22183:9;22179:18;22171:26;;22243:9;22237:4;22233:20;22229:1;22218:9;22214:17;22207:47;22271:131;22397:4;22271:131;:::i;:::-;22263:139;;21990:419;;;:::o;22415:::-;22581:4;22619:2;22608:9;22604:18;22596:26;;22668:9;22662:4;22658:20;22654:1;22643:9;22639:17;22632:47;22696:131;22822:4;22696:131;:::i;:::-;22688:139;;22415:419;;;:::o;22840:::-;23006:4;23044:2;23033:9;23029:18;23021:26;;23093:9;23087:4;23083:20;23079:1;23068:9;23064:17;23057:47;23121:131;23247:4;23121:131;:::i;:::-;23113:139;;22840:419;;;:::o;23265:::-;23431:4;23469:2;23458:9;23454:18;23446:26;;23518:9;23512:4;23508:20;23504:1;23493:9;23489:17;23482:47;23546:131;23672:4;23546:131;:::i;:::-;23538:139;;23265:419;;;:::o;23690:::-;23856:4;23894:2;23883:9;23879:18;23871:26;;23943:9;23937:4;23933:20;23929:1;23918:9;23914:17;23907:47;23971:131;24097:4;23971:131;:::i;:::-;23963:139;;23690:419;;;:::o;24115:::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:::-;24706:4;24744:2;24733:9;24729:18;24721:26;;24793:9;24787:4;24783:20;24779:1;24768:9;24764:17;24757:47;24821:131;24947:4;24821:131;:::i;:::-;24813:139;;24540:419;;;:::o;24965:::-;25131:4;25169:2;25158:9;25154:18;25146:26;;25218:9;25212:4;25208:20;25204:1;25193:9;25189:17;25182:47;25246:131;25372:4;25246:131;:::i;:::-;25238:139;;24965:419;;;:::o;25390:::-;25556:4;25594:2;25583:9;25579:18;25571:26;;25643:9;25637:4;25633:20;25629:1;25618:9;25614:17;25607:47;25671:131;25797:4;25671:131;:::i;:::-;25663:139;;25390:419;;;:::o;25815:::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26068:9;26062:4;26058:20;26054:1;26043:9;26039:17;26032:47;26096:131;26222:4;26096:131;:::i;:::-;26088:139;;25815:419;;;:::o;26240:::-;26406:4;26444:2;26433:9;26429:18;26421:26;;26493:9;26487:4;26483:20;26479:1;26468:9;26464:17;26457:47;26521:131;26647:4;26521:131;:::i;:::-;26513:139;;26240:419;;;:::o;26665:::-;26831:4;26869:2;26858:9;26854:18;26846:26;;26918:9;26912:4;26908:20;26904:1;26893:9;26889:17;26882:47;26946:131;27072:4;26946:131;:::i;:::-;26938:139;;26665:419;;;:::o;27090:222::-;27183:4;27221:2;27210:9;27206:18;27198:26;;27234:71;27302:1;27291:9;27287:17;27278:6;27234:71;:::i;:::-;27090:222;;;;:::o;27318:129::-;27352:6;27379:20;;:::i;:::-;27369:30;;27408:33;27436:4;27428:6;27408:33;:::i;:::-;27318:129;;;:::o;27453:75::-;27486:6;27519:2;27513:9;27503:19;;27453:75;:::o;27534:307::-;27595:4;27685:18;27677:6;27674:30;27671:56;;;27707:18;;:::i;:::-;27671:56;27745:29;27767:6;27745:29;:::i;:::-;27737:37;;27829:4;27823;27819:15;27811:23;;27534:307;;;:::o;27847:98::-;27898:6;27932:5;27926:12;27916:22;;27847:98;;;:::o;27951:99::-;28003:6;28037:5;28031:12;28021:22;;27951:99;;;:::o;28056:168::-;28139:11;28173:6;28168:3;28161:19;28213:4;28208:3;28204:14;28189:29;;28056:168;;;;:::o;28230:169::-;28314:11;28348:6;28343:3;28336:19;28388:4;28383:3;28379:14;28364:29;;28230:169;;;;:::o;28405:148::-;28507:11;28544:3;28529:18;;28405:148;;;;:::o;28559:305::-;28599:3;28618:20;28636:1;28618:20;:::i;:::-;28613:25;;28652:20;28670:1;28652:20;:::i;:::-;28647:25;;28806:1;28738:66;28734:74;28731:1;28728:81;28725:107;;;28812:18;;:::i;:::-;28725:107;28856:1;28853;28849:9;28842:16;;28559:305;;;;:::o;28870:185::-;28910:1;28927:20;28945:1;28927:20;:::i;:::-;28922:25;;28961:20;28979:1;28961:20;:::i;:::-;28956:25;;29000:1;28990:35;;29005:18;;:::i;:::-;28990:35;29047:1;29044;29040:9;29035:14;;28870:185;;;;:::o;29061:348::-;29101:7;29124:20;29142:1;29124:20;:::i;:::-;29119:25;;29158:20;29176:1;29158:20;:::i;:::-;29153:25;;29346:1;29278:66;29274:74;29271:1;29268:81;29263:1;29256:9;29249:17;29245:105;29242:131;;;29353:18;;:::i;:::-;29242:131;29401:1;29398;29394:9;29383:20;;29061:348;;;;:::o;29415:191::-;29455:4;29475:20;29493:1;29475:20;:::i;:::-;29470:25;;29509:20;29527:1;29509:20;:::i;:::-;29504:25;;29548:1;29545;29542:8;29539:34;;;29553:18;;:::i;:::-;29539:34;29598:1;29595;29591:9;29583:17;;29415:191;;;;:::o;29612:96::-;29649:7;29678:24;29696:5;29678:24;:::i;:::-;29667:35;;29612:96;;;:::o;29714:90::-;29748:7;29791:5;29784:13;29777:21;29766:32;;29714:90;;;:::o;29810:149::-;29846:7;29886:66;29879:5;29875:78;29864:89;;29810:149;;;:::o;29965:126::-;30002:7;30042:42;30035:5;30031:54;30020:65;;29965:126;;;:::o;30097:77::-;30134:7;30163:5;30152:16;;30097:77;;;:::o;30180:154::-;30264:6;30259:3;30254;30241:30;30326:1;30317:6;30312:3;30308:16;30301:27;30180:154;;;:::o;30340:307::-;30408:1;30418:113;30432:6;30429:1;30426:13;30418:113;;;30517:1;30512:3;30508:11;30502:18;30498:1;30493:3;30489:11;30482:39;30454:2;30451:1;30447:10;30442:15;;30418:113;;;30549:6;30546:1;30543:13;30540:101;;;30629:1;30620:6;30615:3;30611:16;30604:27;30540:101;30389:258;30340:307;;;:::o;30653:320::-;30697:6;30734:1;30728:4;30724:12;30714:22;;30781:1;30775:4;30771:12;30802:18;30792:81;;30858:4;30850:6;30846:17;30836:27;;30792:81;30920:2;30912:6;30909:14;30889:18;30886:38;30883:84;;;30939:18;;:::i;:::-;30883:84;30704:269;30653:320;;;:::o;30979:281::-;31062:27;31084:4;31062:27;:::i;:::-;31054:6;31050:40;31192:6;31180:10;31177:22;31156:18;31144:10;31141:34;31138:62;31135:88;;;31203:18;;:::i;:::-;31135:88;31243:10;31239:2;31232:22;31022:238;30979:281;;:::o;31266:233::-;31305:3;31328:24;31346:5;31328:24;:::i;:::-;31319:33;;31374:66;31367:5;31364:77;31361:103;;;31444:18;;:::i;:::-;31361:103;31491:1;31484:5;31480:13;31473:20;;31266:233;;;:::o;31505:176::-;31537:1;31554:20;31572:1;31554:20;:::i;:::-;31549:25;;31588:20;31606:1;31588:20;:::i;:::-;31583:25;;31627:1;31617:35;;31632:18;;:::i;:::-;31617:35;31673:1;31670;31666:9;31661:14;;31505:176;;;;:::o;31687:180::-;31735:77;31732:1;31725:88;31832:4;31829:1;31822:15;31856:4;31853:1;31846:15;31873:180;31921:77;31918:1;31911:88;32018:4;32015:1;32008:15;32042:4;32039:1;32032:15;32059:180;32107:77;32104:1;32097:88;32204:4;32201:1;32194:15;32228:4;32225:1;32218:15;32245:180;32293:77;32290:1;32283:88;32390:4;32387:1;32380:15;32414:4;32411:1;32404:15;32431:180;32479:77;32476:1;32469:88;32576:4;32573:1;32566:15;32600:4;32597:1;32590:15;32617:117;32726:1;32723;32716:12;32740:117;32849:1;32846;32839:12;32863:117;32972:1;32969;32962:12;32986:117;33095:1;33092;33085:12;33109:117;33218:1;33215;33208:12;33232:117;33341:1;33338;33331:12;33355:102;33396:6;33447:2;33443:7;33438:2;33431:5;33427:14;33423:28;33413:38;;33355:102;;;:::o;33463:237::-;33603:34;33599:1;33591:6;33587:14;33580:58;33672:20;33667:2;33659:6;33655:15;33648:45;33463:237;:::o;33706:225::-;33846:34;33842:1;33834:6;33830:14;33823:58;33915:8;33910:2;33902:6;33898:15;33891:33;33706:225;:::o;33937:178::-;34077:30;34073:1;34065:6;34061:14;34054:54;33937:178;:::o;34121:223::-;34261:34;34257:1;34249:6;34245:14;34238:58;34330:6;34325:2;34317:6;34313:15;34306:31;34121:223;:::o;34350:175::-;34490:27;34486:1;34478:6;34474:14;34467:51;34350:175;:::o;34531:231::-;34671:34;34667:1;34659:6;34655:14;34648:58;34740:14;34735:2;34727:6;34723:15;34716:39;34531:231;:::o;34768:243::-;34908:34;34904:1;34896:6;34892:14;34885:58;34977:26;34972:2;34964:6;34960:15;34953:51;34768:243;:::o;35017:227::-;35157:34;35153:1;35145:6;35141:14;35134:58;35226:10;35221:2;35213:6;35209:15;35202:35;35017:227;:::o;35250:229::-;35390:34;35386:1;35378:6;35374:14;35367:58;35459:12;35454:2;35446:6;35442:15;35435:37;35250:229;:::o;35485:228::-;35625:34;35621:1;35613:6;35609:14;35602:58;35694:11;35689:2;35681:6;35677:15;35670:36;35485:228;:::o;35719:168::-;35859:20;35855:1;35847:6;35843:14;35836:44;35719:168;:::o;35893:222::-;36033:34;36029:1;36021:6;36017:14;36010:58;36102:5;36097:2;36089:6;36085:15;36078:30;35893:222;:::o;36121:182::-;36261:34;36257:1;36249:6;36245:14;36238:58;36121:182;:::o;36309:231::-;36449:34;36445:1;36437:6;36433:14;36426:58;36518:14;36513:2;36505:6;36501:15;36494:39;36309:231;:::o;36546:182::-;36686:34;36682:1;36674:6;36670:14;36663:58;36546:182;:::o;36734:228::-;36874:34;36870:1;36862:6;36858:14;36851:58;36943:11;36938:2;36930:6;36926:15;36919:36;36734:228;:::o;36968:234::-;37108:34;37104:1;37096:6;37092:14;37085:58;37177:17;37172:2;37164:6;37160:15;37153:42;36968:234;:::o;37208:220::-;37348:34;37344:1;37336:6;37332:14;37325:58;37417:3;37412:2;37404:6;37400:15;37393:28;37208:220;:::o;37434:236::-;37574:34;37570:1;37562:6;37558:14;37551:58;37643:19;37638:2;37630:6;37626:15;37619:44;37434:236;:::o;37676:163::-;37816:15;37812:1;37804:6;37800:14;37793:39;37676:163;:::o;37845:181::-;37985:33;37981:1;37973:6;37969:14;37962:57;37845:181;:::o;38032:122::-;38105:24;38123:5;38105:24;:::i;:::-;38098:5;38095:35;38085:63;;38144:1;38141;38134:12;38085:63;38032:122;:::o;38160:116::-;38230:21;38245:5;38230:21;:::i;:::-;38223:5;38220:32;38210:60;;38266:1;38263;38256:12;38210:60;38160:116;:::o;38282:120::-;38354:23;38371:5;38354:23;:::i;:::-;38347:5;38344:34;38334:62;;38392:1;38389;38382:12;38334:62;38282:120;:::o;38408:122::-;38481:24;38499:5;38481:24;:::i;:::-;38474:5;38471:35;38461:63;;38520:1;38517;38510:12;38461:63;38408:122;:::o

Swarm Source

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