ETH Price: $3,095.49 (+0.39%)
Gas: 12 Gwei

Token

Flirty Davey (FD)
 

Overview

Max Total Supply

5,555 FD

Holders

1,858

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
earlyadopternft.eth
Balance
2 FD
0x31b8f26ed95900fcff35878eb61df244049d57ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Make NFTs sexy again.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FlirtyDavey

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-19
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.7;
    
    contract FlirtyDavey is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.003 ether;
 
  

  uint16 public maxSupply = 3333;
  uint8 public maxMintAmountPerTx = 16;
    uint8 public maxFreeMintAmountPerWallet = 1;
                                                             
 
  bool public paused = true;
  bool public reveal =true;

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

  constructor() ERC721A("Flirty Davey", "FD") {
  }


  
 
  function publicMint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }
    


    _safeMint(msg.sender , _mintAmount);

    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function ownerMint(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function  airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 function setFreeMaxLimit(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
  

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function toggleMint() external onlyOwner {
    paused = !paused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620004b5565b50660aa87bee538000600c55610d05600d60006101000a81548161ffff021916908361ffff1602179055506010600d60026101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff021916908360ff1602179055506001600d60046101000a81548160ff0219169083151502179055506001600d60056101000a81548160ff021916908315150217905550348015620000f757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f466c6972747920446176657900000000000000000000000000000000000000008152506040518060400160405280600281526020017f4644000000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000193929190620004b5565b508060039080519060200190620001ac929190620004b5565b50620001bd620003e260201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ba57801562000280576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000246929190620005aa565b600060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b50505050620003b9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200033a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000300929190620005aa565b600060405180830381600087803b1580156200031b57600080fd5b505af115801562000330573d6000803e3d6000fd5b50505050620003b8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003839190620005d7565b600060405180830381600087803b1580156200039e57600080fd5b505af1158015620003b3573d6000803e3d6000fd5b505050505b5b5b5050620003dc620003d0620003e760201b60201c565b620003ef60201b60201c565b62000658565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004c39062000623565b90600052602060002090601f016020900481019282620004e7576000855562000533565b82601f106200050257805160ff191683800117855562000533565b8280016001018555821562000533579182015b828111156200053257825182559160200191906001019062000515565b5b50905062000542919062000546565b5090565b5b808211156200056157600081600090555060010162000547565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005928262000565565b9050919050565b620005a48162000585565b82525050565b6000604082019050620005c1600083018562000599565b620005d0602083018462000599565b9392505050565b6000602082019050620005ee600083018462000599565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063c57607f821691505b602082108103620006525762000651620005f4565b5b50919050565b6147f880620006686000396000f3fe6080604052600436106102195760003560e01c8063715018a611610123578063c87b56dd116100ab578063e94053c71161006f578063e94053c71461075f578063e985e9c51461079c578063eef440af146107d9578063f2fde38b14610804578063f8bf51721461082d57610219565b8063c87b56dd1461068e578063d2444d67146106cb578063d3dd5fe0146106f4578063d5abeb011461070b578063d5f7ec8d1461073657610219565b806394354fd0116100f257806394354fd0146105bb57806395d89b41146105e6578063a22cb46514610611578063a475b5dd1461063a578063b88d4fde1461066557610219565b8063715018a6146105345780637ec4a6591461054b578063858e83b5146105745780638da5cb5b1461059057610219565b806323b872dd116101a657806344a0d68a1161017557806344a0d68a1461043d5780635c975abb14610466578063622e4e78146104915780636352211e146104ba57806370a08231146104f757610219565b806323b872dd146103bd5780633bd64968146103e65780633ccfd60b146103fd57806342842e0e1461041457610219565b8063081812fc116101ed578063081812fc146102d8578063095ea7b3146103155780631067fcc71461033e57806313faede61461036757806318160ddd1461039257610219565b8062a4f1f21461021e57806301ffc9a71461024757806306421c2f1461028457806306fdde03146102ad575b600080fd5b34801561022a57600080fd5b5061024560048036038101906102409190613694565b610858565b005b34801561025357600080fd5b5061026e60048036038101906102699190613719565b6108f6565b60405161027b9190613761565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906137b6565b6109d8565b005b3480156102b957600080fd5b506102c2610a74565b6040516102cf919061387c565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa91906138d4565b610b06565b60405161030c9190613942565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613989565b610b82565b005b34801561034a57600080fd5b5061036560048036038101906103609190613afe565b610c8c565b005b34801561037357600080fd5b5061037c610d22565b6040516103899190613b56565b60405180910390f35b34801561039e57600080fd5b506103a7610d28565b6040516103b49190613b56565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613b71565b610d3f565b005b3480156103f257600080fd5b506103fb610f21565b005b34801561040957600080fd5b50610412610fc9565b005b34801561042057600080fd5b5061043b60048036038101906104369190613b71565b611094565b005b34801561044957600080fd5b50610464600480360381019061045f91906138d4565b611276565b005b34801561047257600080fd5b5061047b6112fc565b6040516104889190613761565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613694565b61130f565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906138d4565b6113a9565b6040516104ee9190613942565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613bc4565b6113bf565b60405161052b9190613b56565b60405180910390f35b34801561054057600080fd5b5061054961148e565b005b34801561055757600080fd5b50610572600480360381019061056d9190613afe565b611516565b005b61058e60048036038101906105899190613694565b6115ac565b005b34801561059c57600080fd5b506105a56118b6565b6040516105b29190613942565b60405180910390f35b3480156105c757600080fd5b506105d06118e0565b6040516105dd9190613c00565b60405180910390f35b3480156105f257600080fd5b506105fb6118f3565b604051610608919061387c565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613c47565b611985565b005b34801561064657600080fd5b5061064f611afc565b60405161065c9190613761565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613d28565b611b0f565b005b34801561069a57600080fd5b506106b560048036038101906106b091906138d4565b611cf4565b6040516106c2919061387c565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613e0b565b611e4c565b005b34801561070057600080fd5b50610709611fb5565b005b34801561071757600080fd5b5061072061205d565b60405161072d9190613e7a565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613e95565b612071565b005b34801561076b57600080fd5b5061078660048036038101906107819190613bc4565b61217e565b6040516107939190613c00565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613ed5565b61219e565b6040516107d09190613761565b60405180910390f35b3480156107e557600080fd5b506107ee612232565b6040516107fb919061387c565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613bc4565b6122c0565b005b34801561083957600080fd5b506108426123b7565b60405161084f9190613c00565b60405180910390f35b6108606123ca565b73ffffffffffffffffffffffffffffffffffffffff1661087e6118b6565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613f61565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d157506109d0826123d2565b5b9050919050565b6109e06123ca565b73ffffffffffffffffffffffffffffffffffffffff166109fe6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613f61565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a8390613fb0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613fb0565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b118261243c565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d826113a9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c136123ca565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c455750610c4381610c3e6123ca565b61219e565b155b15610c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8783838361248a565b505050565b610c946123ca565b73ffffffffffffffffffffffffffffffffffffffff16610cb26118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613f61565b60405180910390fd5b80600b9080519060200190610d1e929190613561565b5050565b600c5481565b6000610d3261253c565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f0f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db157610dac848484612541565b610f1b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dfa929190613fe1565b602060405180830381865afa158015610e17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3b919061401f565b8015610ecd57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e8b929190613fe1565b602060405180830381865afa158015610ea8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecc919061401f565b5b610f0e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f059190613942565b60405180910390fd5b5b610f1a848484612541565b5b50505050565b610f296123ca565b73ffffffffffffffffffffffffffffffffffffffff16610f476118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613f61565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b610fd16123ca565b73ffffffffffffffffffffffffffffffffffffffff16610fef6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613f61565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611090573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611264573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110657611101848484612551565b611270565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161114f929190613fe1565b602060405180830381865afa15801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611190919061401f565b801561122257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e0929190613fe1565b602060405180830381865afa1580156111fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611221919061401f565b5b61126357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125a9190613942565b60405180910390fd5b5b61126f848484612551565b5b50505050565b61127e6123ca565b73ffffffffffffffffffffffffffffffffffffffff1661129c6118b6565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613f61565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b6113176123ca565b73ffffffffffffffffffffffffffffffffffffffff166113356118b6565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613f61565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b60006113b482612571565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611426576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114966123ca565b73ffffffffffffffffffffffffffffffffffffffff166114b46118b6565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613f61565b60405180910390fd5b6115146000612800565b565b61151e6123ca565b73ffffffffffffffffffffffffffffffffffffffff1661153c6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613f61565b60405180910390fd5b80600990805190602001906115a8929190613561565b5050565b60006115b6610d28565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361162d919061407b565b61ffff161115611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906140ff565b60405180910390fd5b600d60029054906101000a900460ff1660ff168184611691919061411f565b60ff1611156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906141a2565b60405180910390fd5b600d60049054906101000a900460ff1615611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c9061420e565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff1610611799578260ff16600c54611752919061422e565b341015611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906142d4565b60405180910390fd5b611839565b600081846117a7919061411f565b9050600d60039054906101000a900460ff1660ff168160ff16111561183757600d60039054906101000a900460ff16816117e191906142f4565b90508060ff16600c546117f4919061422e565b341015611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d906142d4565b60405180910390fd5b5b505b611846338460ff166128c6565b8083611852919061411f565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461190290613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461192e90613fb0565b801561197b5780601f106119505761010080835404028352916020019161197b565b820191906000526020600020905b81548152906001019060200180831161195e57829003601f168201915b5050505050905090565b61198d6123ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119fe6123ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aab6123ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af09190613761565b60405180910390a35050565b600d60059054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ce0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8257611b7d858585856128e4565b611ced565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611bcb929190613fe1565b602060405180830381865afa158015611be8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c919061401f565b8015611c9e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c5c929190613fe1565b602060405180830381865afa158015611c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9d919061401f565b5b611cdf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cd69190613942565b60405180910390fd5b5b611cec858585856128e4565b5b5050505050565b6060611cff8261243c565b611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061439a565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611deb57600b8054611d6690613fb0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9290613fb0565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b50505050509050611e47565b6000611df5612960565b90506000815111611e155760405180602001604052806000815250611e43565b80611e1f846129f2565b600a604051602001611e339392919061448a565b6040516020818303038152906040525b9150505b919050565b611e546123ca565b73ffffffffffffffffffffffffffffffffffffffff16611e726118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613f61565b60405180910390fd5b6000611ed2610d28565b90506000838390508560ff16611ee8919061422e565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611f0f91906144bb565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f47906140ff565b60405180910390fd5b60005b84849050811015611fa557611f92858583818110611f7457611f73614511565b5b9050602002016020810190611f899190613bc4565b8760ff166128c6565b8080611f9d90614540565b915050611f53565b5060009450600091505050505050565b611fbd6123ca565b73ffffffffffffffffffffffffffffffffffffffff16611fdb6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613f61565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b600d60009054906101000a900461ffff1681565b6120796123ca565b73ffffffffffffffffffffffffffffffffffffffff166120976118b6565b73ffffffffffffffffffffffffffffffffffffffff16146120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613f61565b60405180910390fd5b60006120f7610d28565b9050600d60009054906101000a900461ffff1661ffff16838261211a919061407b565b61ffff16111561215f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612156906140ff565b60405180910390fd5b61216d828461ffff166128c6565b600092506000915060009050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461223f90613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461226b90613fb0565b80156122b85780601f1061228d576101008083540402835291602001916122b8565b820191906000526020600020905b81548152906001019060200180831161229b57829003601f168201915b505050505081565b6122c86123ca565b73ffffffffffffffffffffffffffffffffffffffff166122e66118b6565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390613f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906145fa565b60405180910390fd5b6123b481612800565b50565b600d60039054906101000a900460ff1681565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161244761253c565b11158015612456575060005482105b8015612483575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61254c838383612b52565b505050565b61256c83838360405180602001604052806000815250611b0f565b505050565b6125796135e7565b60008290508061258761253c565b11158015612596575060005481105b156127c9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127c757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ab5780925050506127fb565b5b6001156127c657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c15780925050506127fb565b6126ac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e0828260405180602001604052806000815250613006565b5050565b6128ef848484612b52565b61290e8373ffffffffffffffffffffffffffffffffffffffff16613018565b801561292357506129218484848461303b565b155b1561295a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461296f90613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461299b90613fb0565b80156129e85780601f106129bd576101008083540402835291602001916129e8565b820191906000526020600020905b8154815290600101906020018083116129cb57829003601f168201915b5050505050905090565b606060008203612a39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4d565b600082905060005b60008214612a6b578080612a5490614540565b915050600a82612a649190614649565b9150612a41565b60008167ffffffffffffffff811115612a8757612a866139d3565b5b6040519080825280601f01601f191660200182016040528015612ab95781602001600182028036833780820191505090505b5090505b60008514612b4657600182612ad2919061467a565b9150600a85612ae191906146ae565b6030612aed91906144bb565b60f81b818381518110612b0357612b02614511565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3f9190614649565b9450612abd565b8093505050505b919050565b6000612b5d82612571565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612be96123ca565b73ffffffffffffffffffffffffffffffffffffffff161480612c185750612c1785612c126123ca565b61219e565b5b80612c5d5750612c266123ca565b73ffffffffffffffffffffffffffffffffffffffff16612c4584610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cfc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d09858585600161318b565b612d156000848761248a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f94576000548214612f9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fff8585856001613191565b5050505050565b6130138383836001613197565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130616123ca565b8786866040518563ffffffff1660e01b81526004016130839493929190614734565b6020604051808303816000875af19250505080156130bf57506040513d601f19601f820116820180604052508101906130bc9190614795565b60015b613138573d80600081146130ef576040519150601f19603f3d011682016040523d82523d6000602084013e6130f4565b606091505b506000815103613130576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613203576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361323d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61324a600086838761318b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341457506134138773ffffffffffffffffffffffffffffffffffffffff16613018565b5b156134d9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613489600088848060010195508861303b565b6134bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361341a5782600054146134d457600080fd5b613544565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134da575b81600081905550505061355a6000868387613191565b5050505050565b82805461356d90613fb0565b90600052602060002090601f01602090048101928261358f57600085556135d6565b82601f106135a857805160ff19168380011785556135d6565b828001600101855582156135d6579182015b828111156135d55782518255916020019190600101906135ba565b5b5090506135e3919061362a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561364357600081600090555060010161362b565b5090565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b6136718161365b565b811461367c57600080fd5b50565b60008135905061368e81613668565b92915050565b6000602082840312156136aa576136a9613651565b5b60006136b88482850161367f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136f6816136c1565b811461370157600080fd5b50565b600081359050613713816136ed565b92915050565b60006020828403121561372f5761372e613651565b5b600061373d84828501613704565b91505092915050565b60008115159050919050565b61375b81613746565b82525050565b60006020820190506137766000830184613752565b92915050565b600061ffff82169050919050565b6137938161377c565b811461379e57600080fd5b50565b6000813590506137b08161378a565b92915050565b6000602082840312156137cc576137cb613651565b5b60006137da848285016137a1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561381d578082015181840152602081019050613802565b8381111561382c576000848401525b50505050565b6000601f19601f8301169050919050565b600061384e826137e3565b61385881856137ee565b93506138688185602086016137ff565b61387181613832565b840191505092915050565b600060208201905081810360008301526138968184613843565b905092915050565b6000819050919050565b6138b18161389e565b81146138bc57600080fd5b50565b6000813590506138ce816138a8565b92915050565b6000602082840312156138ea576138e9613651565b5b60006138f8848285016138bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061392c82613901565b9050919050565b61393c81613921565b82525050565b60006020820190506139576000830184613933565b92915050565b61396681613921565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f613651565b5b60006139ae85828601613974565b92505060206139bf858286016138bf565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a0b82613832565b810181811067ffffffffffffffff82111715613a2a57613a296139d3565b5b80604052505050565b6000613a3d613647565b9050613a498282613a02565b919050565b600067ffffffffffffffff821115613a6957613a686139d3565b5b613a7282613832565b9050602081019050919050565b82818337600083830152505050565b6000613aa1613a9c84613a4e565b613a33565b905082815260208101848484011115613abd57613abc6139ce565b5b613ac8848285613a7f565b509392505050565b600082601f830112613ae557613ae46139c9565b5b8135613af5848260208601613a8e565b91505092915050565b600060208284031215613b1457613b13613651565b5b600082013567ffffffffffffffff811115613b3257613b31613656565b5b613b3e84828501613ad0565b91505092915050565b613b508161389e565b82525050565b6000602082019050613b6b6000830184613b47565b92915050565b600080600060608486031215613b8a57613b89613651565b5b6000613b9886828701613974565b9350506020613ba986828701613974565b9250506040613bba868287016138bf565b9150509250925092565b600060208284031215613bda57613bd9613651565b5b6000613be884828501613974565b91505092915050565b613bfa8161365b565b82525050565b6000602082019050613c156000830184613bf1565b92915050565b613c2481613746565b8114613c2f57600080fd5b50565b600081359050613c4181613c1b565b92915050565b60008060408385031215613c5e57613c5d613651565b5b6000613c6c85828601613974565b9250506020613c7d85828601613c32565b9150509250929050565b600067ffffffffffffffff821115613ca257613ca16139d3565b5b613cab82613832565b9050602081019050919050565b6000613ccb613cc684613c87565b613a33565b905082815260208101848484011115613ce757613ce66139ce565b5b613cf2848285613a7f565b509392505050565b600082601f830112613d0f57613d0e6139c9565b5b8135613d1f848260208601613cb8565b91505092915050565b60008060008060808587031215613d4257613d41613651565b5b6000613d5087828801613974565b9450506020613d6187828801613974565b9350506040613d72878288016138bf565b925050606085013567ffffffffffffffff811115613d9357613d92613656565b5b613d9f87828801613cfa565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613dcb57613dca6139c9565b5b8235905067ffffffffffffffff811115613de857613de7613dab565b5b602083019150836020820283011115613e0457613e03613db0565b5b9250929050565b600080600060408486031215613e2457613e23613651565b5b6000613e328682870161367f565b935050602084013567ffffffffffffffff811115613e5357613e52613656565b5b613e5f86828701613db5565b92509250509250925092565b613e748161377c565b82525050565b6000602082019050613e8f6000830184613e6b565b92915050565b60008060408385031215613eac57613eab613651565b5b6000613eba858286016137a1565b9250506020613ecb85828601613974565b9150509250929050565b60008060408385031215613eec57613eeb613651565b5b6000613efa85828601613974565b9250506020613f0b85828601613974565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4b6020836137ee565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc857607f821691505b602082108103613fdb57613fda613f81565b5b50919050565b6000604082019050613ff66000830185613933565b6140036020830184613933565b9392505050565b60008151905061401981613c1b565b92915050565b60006020828403121561403557614034613651565b5b60006140438482850161400a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140868261377c565b91506140918361377c565b92508261ffff038211156140a8576140a761404c565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006140e96013836137ee565b91506140f4826140b3565b602082019050919050565b60006020820190508181036000830152614118816140dc565b9050919050565b600061412a8261365b565b91506141358361365b565b92508260ff0382111561414b5761414a61404c565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061418c601c836137ee565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141f86017836137ee565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b60006142398261389e565b91506142448361389e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427d5761427c61404c565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142be6013836137ee565b91506142c982614288565b602082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b60006142ff8261365b565b915061430a8361365b565b92508282101561431d5761431c61404c565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614384602f836137ee565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b600081905092915050565b60006143d0826137e3565b6143da81856143ba565b93506143ea8185602086016137ff565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461441881613fb0565b61442281866143ba565b9450600182166000811461443d576001811461444e57614481565b60ff19831686528186019350614481565b614457856143f6565b60005b838110156144795781548189015260018201915060208101905061445a565b838801955050505b50505092915050565b600061449682866143c5565b91506144a282856143c5565b91506144ae828461440b565b9150819050949350505050565b60006144c68261389e565b91506144d18361389e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145065761450561404c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061454b8261389e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457d5761457c61404c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e46026836137ee565b91506145ef82614588565b604082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146548261389e565b915061465f8361389e565b92508261466f5761466e61461a565b5b828204905092915050565b60006146858261389e565b91506146908361389e565b9250828210156146a3576146a261404c565b5b828203905092915050565b60006146b98261389e565b91506146c48361389e565b9250826146d4576146d361461a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614706826146df565b61471081856146ea565b93506147208185602086016137ff565b61472981613832565b840191505092915050565b60006080820190506147496000830187613933565b6147566020830186613933565b6147636040830185613b47565b818103606083015261477581846146fb565b905095945050505050565b60008151905061478f816136ed565b92915050565b6000602082840312156147ab576147aa613651565b5b60006147b984828501614780565b9150509291505056fea2646970667358221220054fa3ffd3d9864936f7c081c2a7c9c5d0b0f7f06f88d2a155acd93425b4b95d64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102195760003560e01c8063715018a611610123578063c87b56dd116100ab578063e94053c71161006f578063e94053c71461075f578063e985e9c51461079c578063eef440af146107d9578063f2fde38b14610804578063f8bf51721461082d57610219565b8063c87b56dd1461068e578063d2444d67146106cb578063d3dd5fe0146106f4578063d5abeb011461070b578063d5f7ec8d1461073657610219565b806394354fd0116100f257806394354fd0146105bb57806395d89b41146105e6578063a22cb46514610611578063a475b5dd1461063a578063b88d4fde1461066557610219565b8063715018a6146105345780637ec4a6591461054b578063858e83b5146105745780638da5cb5b1461059057610219565b806323b872dd116101a657806344a0d68a1161017557806344a0d68a1461043d5780635c975abb14610466578063622e4e78146104915780636352211e146104ba57806370a08231146104f757610219565b806323b872dd146103bd5780633bd64968146103e65780633ccfd60b146103fd57806342842e0e1461041457610219565b8063081812fc116101ed578063081812fc146102d8578063095ea7b3146103155780631067fcc71461033e57806313faede61461036757806318160ddd1461039257610219565b8062a4f1f21461021e57806301ffc9a71461024757806306421c2f1461028457806306fdde03146102ad575b600080fd5b34801561022a57600080fd5b5061024560048036038101906102409190613694565b610858565b005b34801561025357600080fd5b5061026e60048036038101906102699190613719565b6108f6565b60405161027b9190613761565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906137b6565b6109d8565b005b3480156102b957600080fd5b506102c2610a74565b6040516102cf919061387c565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa91906138d4565b610b06565b60405161030c9190613942565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613989565b610b82565b005b34801561034a57600080fd5b5061036560048036038101906103609190613afe565b610c8c565b005b34801561037357600080fd5b5061037c610d22565b6040516103899190613b56565b60405180910390f35b34801561039e57600080fd5b506103a7610d28565b6040516103b49190613b56565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613b71565b610d3f565b005b3480156103f257600080fd5b506103fb610f21565b005b34801561040957600080fd5b50610412610fc9565b005b34801561042057600080fd5b5061043b60048036038101906104369190613b71565b611094565b005b34801561044957600080fd5b50610464600480360381019061045f91906138d4565b611276565b005b34801561047257600080fd5b5061047b6112fc565b6040516104889190613761565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613694565b61130f565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906138d4565b6113a9565b6040516104ee9190613942565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613bc4565b6113bf565b60405161052b9190613b56565b60405180910390f35b34801561054057600080fd5b5061054961148e565b005b34801561055757600080fd5b50610572600480360381019061056d9190613afe565b611516565b005b61058e60048036038101906105899190613694565b6115ac565b005b34801561059c57600080fd5b506105a56118b6565b6040516105b29190613942565b60405180910390f35b3480156105c757600080fd5b506105d06118e0565b6040516105dd9190613c00565b60405180910390f35b3480156105f257600080fd5b506105fb6118f3565b604051610608919061387c565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613c47565b611985565b005b34801561064657600080fd5b5061064f611afc565b60405161065c9190613761565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613d28565b611b0f565b005b34801561069a57600080fd5b506106b560048036038101906106b091906138d4565b611cf4565b6040516106c2919061387c565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613e0b565b611e4c565b005b34801561070057600080fd5b50610709611fb5565b005b34801561071757600080fd5b5061072061205d565b60405161072d9190613e7a565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613e95565b612071565b005b34801561076b57600080fd5b5061078660048036038101906107819190613bc4565b61217e565b6040516107939190613c00565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613ed5565b61219e565b6040516107d09190613761565b60405180910390f35b3480156107e557600080fd5b506107ee612232565b6040516107fb919061387c565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190613bc4565b6122c0565b005b34801561083957600080fd5b506108426123b7565b60405161084f9190613c00565b60405180910390f35b6108606123ca565b73ffffffffffffffffffffffffffffffffffffffff1661087e6118b6565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613f61565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d157506109d0826123d2565b5b9050919050565b6109e06123ca565b73ffffffffffffffffffffffffffffffffffffffff166109fe6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613f61565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610a8390613fb0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613fb0565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b118261243c565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d826113a9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c136123ca565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c455750610c4381610c3e6123ca565b61219e565b155b15610c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8783838361248a565b505050565b610c946123ca565b73ffffffffffffffffffffffffffffffffffffffff16610cb26118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613f61565b60405180910390fd5b80600b9080519060200190610d1e929190613561565b5050565b600c5481565b6000610d3261253c565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f0f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610db157610dac848484612541565b610f1b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dfa929190613fe1565b602060405180830381865afa158015610e17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3b919061401f565b8015610ecd57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e8b929190613fe1565b602060405180830381865afa158015610ea8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecc919061401f565b5b610f0e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f059190613942565b60405180910390fd5b5b610f1a848484612541565b5b50505050565b610f296123ca565b73ffffffffffffffffffffffffffffffffffffffff16610f476118b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613f61565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b610fd16123ca565b73ffffffffffffffffffffffffffffffffffffffff16610fef6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613f61565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611090573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611264573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110657611101848484612551565b611270565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161114f929190613fe1565b602060405180830381865afa15801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611190919061401f565b801561122257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e0929190613fe1565b602060405180830381865afa1580156111fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611221919061401f565b5b61126357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125a9190613942565b60405180910390fd5b5b61126f848484612551565b5b50505050565b61127e6123ca565b73ffffffffffffffffffffffffffffffffffffffff1661129c6118b6565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613f61565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b6113176123ca565b73ffffffffffffffffffffffffffffffffffffffff166113356118b6565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613f61565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b60006113b482612571565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611426576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114966123ca565b73ffffffffffffffffffffffffffffffffffffffff166114b46118b6565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613f61565b60405180910390fd5b6115146000612800565b565b61151e6123ca565b73ffffffffffffffffffffffffffffffffffffffff1661153c6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613f61565b60405180910390fd5b80600990805190602001906115a8929190613561565b5050565b60006115b6610d28565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361162d919061407b565b61ffff161115611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906140ff565b60405180910390fd5b600d60029054906101000a900460ff1660ff168184611691919061411f565b60ff1611156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906141a2565b60405180910390fd5b600d60049054906101000a900460ff1615611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c9061420e565b60405180910390fd5b600d60039054906101000a900460ff1660ff168160ff1610611799578260ff16600c54611752919061422e565b341015611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906142d4565b60405180910390fd5b611839565b600081846117a7919061411f565b9050600d60039054906101000a900460ff1660ff168160ff16111561183757600d60039054906101000a900460ff16816117e191906142f4565b90508060ff16600c546117f4919061422e565b341015611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d906142d4565b60405180910390fd5b5b505b611846338460ff166128c6565b8083611852919061411f565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461190290613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461192e90613fb0565b801561197b5780601f106119505761010080835404028352916020019161197b565b820191906000526020600020905b81548152906001019060200180831161195e57829003601f168201915b5050505050905090565b61198d6123ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119fe6123ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aab6123ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af09190613761565b60405180910390a35050565b600d60059054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ce0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8257611b7d858585856128e4565b611ced565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611bcb929190613fe1565b602060405180830381865afa158015611be8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c919061401f565b8015611c9e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c5c929190613fe1565b602060405180830381865afa158015611c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9d919061401f565b5b611cdf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cd69190613942565b60405180910390fd5b5b611cec858585856128e4565b5b5050505050565b6060611cff8261243c565b611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061439a565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611deb57600b8054611d6690613fb0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9290613fb0565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b50505050509050611e47565b6000611df5612960565b90506000815111611e155760405180602001604052806000815250611e43565b80611e1f846129f2565b600a604051602001611e339392919061448a565b6040516020818303038152906040525b9150505b919050565b611e546123ca565b73ffffffffffffffffffffffffffffffffffffffff16611e726118b6565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613f61565b60405180910390fd5b6000611ed2610d28565b90506000838390508560ff16611ee8919061422e565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611f0f91906144bb565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f47906140ff565b60405180910390fd5b60005b84849050811015611fa557611f92858583818110611f7457611f73614511565b5b9050602002016020810190611f899190613bc4565b8760ff166128c6565b8080611f9d90614540565b915050611f53565b5060009450600091505050505050565b611fbd6123ca565b73ffffffffffffffffffffffffffffffffffffffff16611fdb6118b6565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613f61565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b600d60009054906101000a900461ffff1681565b6120796123ca565b73ffffffffffffffffffffffffffffffffffffffff166120976118b6565b73ffffffffffffffffffffffffffffffffffffffff16146120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613f61565b60405180910390fd5b60006120f7610d28565b9050600d60009054906101000a900461ffff1661ffff16838261211a919061407b565b61ffff16111561215f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612156906140ff565b60405180910390fd5b61216d828461ffff166128c6565b600092506000915060009050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461223f90613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461226b90613fb0565b80156122b85780601f1061228d576101008083540402835291602001916122b8565b820191906000526020600020905b81548152906001019060200180831161229b57829003601f168201915b505050505081565b6122c86123ca565b73ffffffffffffffffffffffffffffffffffffffff166122e66118b6565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390613f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906145fa565b60405180910390fd5b6123b481612800565b50565b600d60039054906101000a900460ff1681565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161244761253c565b11158015612456575060005482105b8015612483575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61254c838383612b52565b505050565b61256c83838360405180602001604052806000815250611b0f565b505050565b6125796135e7565b60008290508061258761253c565b11158015612596575060005481105b156127c9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127c757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ab5780925050506127fb565b5b6001156127c657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c15780925050506127fb565b6126ac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e0828260405180602001604052806000815250613006565b5050565b6128ef848484612b52565b61290e8373ffffffffffffffffffffffffffffffffffffffff16613018565b801561292357506129218484848461303b565b155b1561295a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461296f90613fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461299b90613fb0565b80156129e85780601f106129bd576101008083540402835291602001916129e8565b820191906000526020600020905b8154815290600101906020018083116129cb57829003601f168201915b5050505050905090565b606060008203612a39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4d565b600082905060005b60008214612a6b578080612a5490614540565b915050600a82612a649190614649565b9150612a41565b60008167ffffffffffffffff811115612a8757612a866139d3565b5b6040519080825280601f01601f191660200182016040528015612ab95781602001600182028036833780820191505090505b5090505b60008514612b4657600182612ad2919061467a565b9150600a85612ae191906146ae565b6030612aed91906144bb565b60f81b818381518110612b0357612b02614511565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3f9190614649565b9450612abd565b8093505050505b919050565b6000612b5d82612571565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612be96123ca565b73ffffffffffffffffffffffffffffffffffffffff161480612c185750612c1785612c126123ca565b61219e565b5b80612c5d5750612c266123ca565b73ffffffffffffffffffffffffffffffffffffffff16612c4584610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cfc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d09858585600161318b565b612d156000848761248a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f94576000548214612f9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fff8585856001613191565b5050505050565b6130138383836001613197565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130616123ca565b8786866040518563ffffffff1660e01b81526004016130839493929190614734565b6020604051808303816000875af19250505080156130bf57506040513d601f19601f820116820180604052508101906130bc9190614795565b60015b613138573d80600081146130ef576040519150601f19603f3d011682016040523d82523d6000602084013e6130f4565b606091505b506000815103613130576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613203576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361323d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61324a600086838761318b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341457506134138773ffffffffffffffffffffffffffffffffffffffff16613018565b5b156134d9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613489600088848060010195508861303b565b6134bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361341a5782600054146134d457600080fd5b613544565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036134da575b81600081905550505061355a6000868387613191565b5050505050565b82805461356d90613fb0565b90600052602060002090601f01602090048101928261358f57600085556135d6565b82601f106135a857805160ff19168380011785556135d6565b828001600101855582156135d6579182015b828111156135d55782518255916020019190600101906135ba565b5b5090506135e3919061362a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561364357600081600090555060010161362b565b5090565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b6136718161365b565b811461367c57600080fd5b50565b60008135905061368e81613668565b92915050565b6000602082840312156136aa576136a9613651565b5b60006136b88482850161367f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136f6816136c1565b811461370157600080fd5b50565b600081359050613713816136ed565b92915050565b60006020828403121561372f5761372e613651565b5b600061373d84828501613704565b91505092915050565b60008115159050919050565b61375b81613746565b82525050565b60006020820190506137766000830184613752565b92915050565b600061ffff82169050919050565b6137938161377c565b811461379e57600080fd5b50565b6000813590506137b08161378a565b92915050565b6000602082840312156137cc576137cb613651565b5b60006137da848285016137a1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561381d578082015181840152602081019050613802565b8381111561382c576000848401525b50505050565b6000601f19601f8301169050919050565b600061384e826137e3565b61385881856137ee565b93506138688185602086016137ff565b61387181613832565b840191505092915050565b600060208201905081810360008301526138968184613843565b905092915050565b6000819050919050565b6138b18161389e565b81146138bc57600080fd5b50565b6000813590506138ce816138a8565b92915050565b6000602082840312156138ea576138e9613651565b5b60006138f8848285016138bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061392c82613901565b9050919050565b61393c81613921565b82525050565b60006020820190506139576000830184613933565b92915050565b61396681613921565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f613651565b5b60006139ae85828601613974565b92505060206139bf858286016138bf565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a0b82613832565b810181811067ffffffffffffffff82111715613a2a57613a296139d3565b5b80604052505050565b6000613a3d613647565b9050613a498282613a02565b919050565b600067ffffffffffffffff821115613a6957613a686139d3565b5b613a7282613832565b9050602081019050919050565b82818337600083830152505050565b6000613aa1613a9c84613a4e565b613a33565b905082815260208101848484011115613abd57613abc6139ce565b5b613ac8848285613a7f565b509392505050565b600082601f830112613ae557613ae46139c9565b5b8135613af5848260208601613a8e565b91505092915050565b600060208284031215613b1457613b13613651565b5b600082013567ffffffffffffffff811115613b3257613b31613656565b5b613b3e84828501613ad0565b91505092915050565b613b508161389e565b82525050565b6000602082019050613b6b6000830184613b47565b92915050565b600080600060608486031215613b8a57613b89613651565b5b6000613b9886828701613974565b9350506020613ba986828701613974565b9250506040613bba868287016138bf565b9150509250925092565b600060208284031215613bda57613bd9613651565b5b6000613be884828501613974565b91505092915050565b613bfa8161365b565b82525050565b6000602082019050613c156000830184613bf1565b92915050565b613c2481613746565b8114613c2f57600080fd5b50565b600081359050613c4181613c1b565b92915050565b60008060408385031215613c5e57613c5d613651565b5b6000613c6c85828601613974565b9250506020613c7d85828601613c32565b9150509250929050565b600067ffffffffffffffff821115613ca257613ca16139d3565b5b613cab82613832565b9050602081019050919050565b6000613ccb613cc684613c87565b613a33565b905082815260208101848484011115613ce757613ce66139ce565b5b613cf2848285613a7f565b509392505050565b600082601f830112613d0f57613d0e6139c9565b5b8135613d1f848260208601613cb8565b91505092915050565b60008060008060808587031215613d4257613d41613651565b5b6000613d5087828801613974565b9450506020613d6187828801613974565b9350506040613d72878288016138bf565b925050606085013567ffffffffffffffff811115613d9357613d92613656565b5b613d9f87828801613cfa565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613dcb57613dca6139c9565b5b8235905067ffffffffffffffff811115613de857613de7613dab565b5b602083019150836020820283011115613e0457613e03613db0565b5b9250929050565b600080600060408486031215613e2457613e23613651565b5b6000613e328682870161367f565b935050602084013567ffffffffffffffff811115613e5357613e52613656565b5b613e5f86828701613db5565b92509250509250925092565b613e748161377c565b82525050565b6000602082019050613e8f6000830184613e6b565b92915050565b60008060408385031215613eac57613eab613651565b5b6000613eba858286016137a1565b9250506020613ecb85828601613974565b9150509250929050565b60008060408385031215613eec57613eeb613651565b5b6000613efa85828601613974565b9250506020613f0b85828601613974565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4b6020836137ee565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fc857607f821691505b602082108103613fdb57613fda613f81565b5b50919050565b6000604082019050613ff66000830185613933565b6140036020830184613933565b9392505050565b60008151905061401981613c1b565b92915050565b60006020828403121561403557614034613651565b5b60006140438482850161400a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140868261377c565b91506140918361377c565b92508261ffff038211156140a8576140a761404c565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006140e96013836137ee565b91506140f4826140b3565b602082019050919050565b60006020820190508181036000830152614118816140dc565b9050919050565b600061412a8261365b565b91506141358361365b565b92508260ff0382111561414b5761414a61404c565b5b828201905092915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061418c601c836137ee565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006141f86017836137ee565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b60006142398261389e565b91506142448361389e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561427d5761427c61404c565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006142be6013836137ee565b91506142c982614288565b602082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b60006142ff8261365b565b915061430a8361365b565b92508282101561431d5761431c61404c565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614384602f836137ee565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b600081905092915050565b60006143d0826137e3565b6143da81856143ba565b93506143ea8185602086016137ff565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461441881613fb0565b61442281866143ba565b9450600182166000811461443d576001811461444e57614481565b60ff19831686528186019350614481565b614457856143f6565b60005b838110156144795781548189015260018201915060208101905061445a565b838801955050505b50505092915050565b600061449682866143c5565b91506144a282856143c5565b91506144ae828461440b565b9150819050949350505050565b60006144c68261389e565b91506144d18361389e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145065761450561404c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061454b8261389e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457d5761457c61404c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e46026836137ee565b91506145ef82614588565b604082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146548261389e565b915061465f8361389e565b92508261466f5761466e61461a565b5b828204905092915050565b60006146858261389e565b91506146908361389e565b9250828210156146a3576146a261404c565b5b828203905092915050565b60006146b98261389e565b91506146c48361389e565b9250826146d4576146d361461a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614706826146df565b61471081856146ea565b93506147208185602086016137ff565b61472981613832565b840191505092915050565b60006080820190506147496000830187613933565b6147566020830186613933565b6147636040830185613b47565b818103606083015261477581846146fb565b905095945050505050565b60008151905061478f816136ed565b92915050565b6000602082840312156147ab576147aa613651565b5b60006147b984828501614780565b9150509291505056fea2646970667358221220054fa3ffd3d9864936f7c081c2a7c9c5d0b0f7f06f88d2a155acd93425b4b95d64736f6c634300080d0033

Deployed Bytecode Sourcemap

48552:4633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51638:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24441:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51023:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29057:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28620:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51887:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48769:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23690:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52604:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52159:70;;;;;;;;;;;;;:::i;:::-;;52347:144;;;;;;;;;;;;;:::i;:::-;;52775:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52078:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49008:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52235:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27362:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24810:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43263:103;;;;;;;;;;;;;:::i;:::-;;51780:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49215:982;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42611:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48851:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27723:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29333:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49038:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52954:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51135:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50539:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51997:75;;;;;;;;;;;;;:::i;:::-;;48816:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50205:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49070:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29691:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48729:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43521:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48894:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51638:124;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51731:6:::1;51702:26;;:35;;;;;;;;;;;;;;;;;;51743:13;;;51638:124:::0;:::o;24441:305::-;24543:4;24595:25;24580:40;;;:11;:40;;;;:105;;;;24652:33;24637:48;;;:11;:48;;;;24580:105;:158;;;;24702:36;24726:11;24702:23;:36::i;:::-;24580:158;24560:178;;24441:305;;;:::o;51023:97::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51104:10:::1;51092:9;;:22;;;;;;;;;;;;;;;;;;51023:97:::0;:::o;27554:100::-;27608:13;27641:5;27634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27554:100;:::o;29057:204::-;29125:7;29150:16;29158:7;29150;:16::i;:::-;29145:64;;29175:34;;;;;;;;;;;;;;29145:64;29229:15;:24;29245:7;29229:24;;;;;;;;;;;;;;;;;;;;;29222:31;;29057:204;;;:::o;28620:371::-;28693:13;28709:24;28725:7;28709:15;:24::i;:::-;28693:40;;28754:5;28748:11;;:2;:11;;;28744:48;;28768:24;;;;;;;;;;;;;;28744:48;28825:5;28809:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28835:37;28852:5;28859:12;:10;:12::i;:::-;28835:16;:37::i;:::-;28834:38;28809:63;28805:138;;;28896:35;;;;;;;;;;;;;;28805:138;28955:28;28964:2;28968:7;28977:5;28955:8;:28::i;:::-;28682:309;28620:371;;:::o;51887:102::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51973:10:::1;51961:9;:22;;;;;;;;;;;;:::i;:::-;;51887:102:::0;:::o;48769:33::-;;;;:::o;23690:303::-;23734:7;23959:15;:13;:15::i;:::-;23944:12;;23928:13;;:28;:46;23921:53;;23690:303;:::o;52604:163::-;52705:4;47573:1;46387:42;47527:43;;;:47;47523:699;;;47814:10;47806:18;;:4;:18;;;47802:85;;52722:37:::1;52741:4;52747:2;52751:7;52722:18;:37::i;:::-;47865:7:::0;;47802:85;46387:42;47947:40;;;47996:4;48003:10;47947:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46387:42;48043:40;;;48092:4;48099;48043:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47947:157;47901:310;;48184:10;48165:30;;;;;;;;;;;:::i;:::-;;;;;;;;47901:310;47523:699;52722:37:::1;52741:4;52747:2;52751:7;52722:18;:37::i;:::-;52604:163:::0;;;;;:::o;52159:70::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52218:6:::1;;;;;;;;;;;52217:7;52208:6;;:16;;;;;;;;;;;;;;;;;;52159:70::o:0;52347:144::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52391:13:::1;52407:21;52391:37;;52444:10;52436:28;;:39;52465:8;52436:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52386:105;52347:144::o:0;52775:171::-;52880:4;47573:1;46387:42;47527:43;;;:47;47523:699;;;47814:10;47806:18;;:4;:18;;;47802:85;;52897:41:::1;52920:4;52926:2;52930:7;52897:22;:41::i;:::-;47865:7:::0;;47802:85;46387:42;47947:40;;;47996:4;48003:10;47947:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46387:42;48043:40;;;48092:4;48099;48043:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47947:157;47901:310;;48184:10;48165:30;;;;;;;;;;;:::i;:::-;;;;;;;;47901:310;47523:699;52897:41:::1;52920:4;52926:2;52930:7;52897:22;:41::i;:::-;52775:171:::0;;;;;:::o;52078:76::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52141:5:::1;52134:4;:12;;;;52078:76:::0;:::o;49008:25::-;;;;;;;;;;;;;:::o;52235:101::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52322:6:::1;52301:18;;:27;;;;;;;;;;;;;;;;;;52235:101:::0;:::o;27362:125::-;27426:7;27453:21;27466:7;27453:12;:21::i;:::-;:26;;;27446:33;;27362:125;;;:::o;24810:206::-;24874:7;24915:1;24898:19;;:5;:19;;;24894:60;;24926:28;;;;;;;;;;;;;;24894:60;24980:12;:19;24993:5;24980:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24972:36;;24965:43;;24810:206;;;:::o;43263:103::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43328:30:::1;43355:1;43328:18;:30::i;:::-;43263:103::o:0;51780:102::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51866:10:::1;51854:9;:22;;;;;;;;;;;;:::i;:::-;;51780:102:::0;:::o;49215:982::-;49280:18;49308:13;:11;:13::i;:::-;49280:42;;49330:9;49342:19;:31;49362:10;49342:31;;;;;;;;;;;;;;;;;;;;;;;;;49330:43;;49417:9;;;;;;;;;;;49388:38;;49402:11;49388:25;;:11;:25;;;;:::i;:::-;:38;;;;49380:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49486:18;;;;;;;;;;;49465:39;;49479:3;49465:11;:17;;;;:::i;:::-;:39;;;;49457:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49555:6;;;;;;;;;;;49554:7;49546:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49614:26;;;;;;;;;;;49607:33;;:3;:33;;;49604:417;;49682:11;49675:18;;:4;;:18;;;;:::i;:::-;49662:9;:31;;49654:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49604:417;;;49748:16;49781:3;49767:11;:17;;;;:::i;:::-;49748:36;;49811:26;;;;;;;;;;;49798:39;;:10;:39;;;49795:199;;;49884:26;;;;;;;;;;;49871:10;:39;;;;:::i;:::-;49858:52;;49949:10;49942:17;;:4;;:17;;;;:::i;:::-;49929:9;:30;;49921:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49795:199;49736:285;49604:417;50037:35;50047:10;50060:11;50037:35;;:9;:35::i;:::-;50129:3;50115:11;:17;;;;:::i;:::-;50081:19;:31;50101:10;50081:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;50147:18;;;50173;;;49272:925;;49215:982;:::o;42611:87::-;42657:7;42684:6;;;;;;;;;;;42677:13;;42611:87;:::o;48851:36::-;;;;;;;;;;;;;:::o;27723:104::-;27779:13;27812:7;27805:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27723:104;:::o;29333:287::-;29444:12;:10;:12::i;:::-;29432:24;;:8;:24;;;29428:54;;29465:17;;;;;;;;;;;;;;29428:54;29540:8;29495:18;:32;29514:12;:10;:12::i;:::-;29495:32;;;;;;;;;;;;;;;:42;29528:8;29495:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29593:8;29564:48;;29579:12;:10;:12::i;:::-;29564:48;;;29603:8;29564:48;;;;;;:::i;:::-;;;;;;;;29333:287;;:::o;49038:24::-;;;;;;;;;;;;;:::o;52954:228::-;53105:4;47573:1;46387:42;47527:43;;;:47;47523:699;;;47814:10;47806:18;;:4;:18;;;47802:85;;53127:47:::1;53150:4;53156:2;53160:7;53169:4;53127:22;:47::i;:::-;47865:7:::0;;47802:85;46387:42;47947:40;;;47996:4;48003:10;47947:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46387:42;48043:40;;;48092:4;48099;48043:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47947:157;47901:310;;48184:10;48165:30;;;;;;;;;;;:::i;:::-;;;;;;;;47901:310;47523:699;53127:47:::1;53150:4;53156:2;53160:7;53169:4;53127:22;:47::i;:::-;52954:228:::0;;;;;;:::o;51135:490::-;51234:13;51275:17;51283:8;51275:7;:17::i;:::-;51259:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51385:5;51375:15;;:6;;;;;;;;;;;:15;;;51370:50;;51407:9;51400:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51370:50;51434:28;51465:10;:8;:10::i;:::-;51434:41;;51520:1;51495:14;51489:28;:32;:130;;;;;;;;;;;;;;;;;51557:14;51573:19;:8;:17;:19::i;:::-;51594:9;51540:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51489:130;51482:137;;;51135:490;;;;:::o;50539:473::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50639:18:::1;50667:13;:11;:13::i;:::-;50639:42;;50689:16;50730:9;;:16;;50710:17;:36;;;;;;:::i;:::-;50689:57;;50790:9;;;;;;;;;;;50761:38;;50775:11;50761;:25;;;;;;:::i;:::-;:38;;50753:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50836:9;50831:116;50855:9;;:16;;50851:1;:20;50831:116;;;50893:42;50903:9;;50913:1;50903:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50917:17;50893:42;;:9;:42::i;:::-;50873:3;;;;;:::i;:::-;;;;50831:116;;;;50956:24;;;50988:18;;;50631:381;;50539:473:::0;;;:::o;51997:75::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52055:6:::1;;;;;;;;;;;52054:7;52045:6;;:16;;;;;;;;;;;;;;;;;;51997:75::o:0;48816:30::-;;;;;;;;;;;;;:::o;50205:328::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50290:18:::1;50318:13;:11;:13::i;:::-;50290:42;;50376:9;;;;;;;;;;;50347:38;;50361:11;50347;:25;;;;:::i;:::-;:38;;;;50339:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50417:34;50427:9;50439:11;50417:34;;:9;:34::i;:::-;50459:18;;;50485:16;;;50509:18;;;50282:251;50205:328:::0;;:::o;49070:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;29691:164::-;29788:4;29812:18;:25;29831:5;29812:25;;;;;;;;;;;;;;;:35;29838:8;29812:35;;;;;;;;;;;;;;;;;;;;;;;;;29805:42;;29691:164;;;;:::o;48729:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43521:201::-;42842:12;:10;:12::i;:::-;42831:23;;:7;:5;:7::i;:::-;:23;;;42823:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43630:1:::1;43610:22;;:8;:22;;::::0;43602:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43686:28;43705:8;43686:18;:28::i;:::-;43521:201:::0;:::o;48894:43::-;;;;;;;;;;;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;14366:157::-;14451:4;14490:25;14475:40;;;:11;:40;;;;14468:47;;14366:157;;;:::o;31043:187::-;31100:4;31143:7;31124:15;:13;:15::i;:::-;:26;;:53;;;;;31164:13;;31154:7;:23;31124:53;:98;;;;;31195:11;:20;31207:7;31195:20;;;;;;;;;;;:27;;;;;;;;;;;;31194:28;31124:98;31117:105;;31043:187;;;:::o;39213:196::-;39355:2;39328:15;:24;39344:7;39328:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39393:7;39389:2;39373:28;;39382:5;39373:28;;;;;;;;;;;;39213:196;;;:::o;23464:92::-;23520:7;23464:92;:::o;29922:170::-;30056:28;30066:4;30072:2;30076:7;30056:9;:28::i;:::-;29922:170;;;:::o;30163:185::-;30301:39;30318:4;30324:2;30328:7;30301:39;;;;;;;;;;;;:16;:39::i;:::-;30163:185;;;:::o;26191:1109::-;26253:21;;:::i;:::-;26287:12;26302:7;26287:22;;26370:4;26351:15;:13;:15::i;:::-;:23;;:47;;;;;26385:13;;26378:4;:20;26351:47;26347:886;;;26419:31;26453:11;:17;26465:4;26453:17;;;;;;;;;;;26419:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26494:9;:16;;;26489:729;;26565:1;26539:28;;:9;:14;;;:28;;;26535:101;;26603:9;26596:16;;;;;;26535:101;26938:261;26945:4;26938:261;;;26978:6;;;;;;;;27023:11;:17;27035:4;27023:17;;;;;;;;;;;27011:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27097:1;27071:28;;:9;:14;;;:28;;;27067:109;;27139:9;27132:16;;;;;;27067:109;26938:261;;;26489:729;26400:833;26347:886;27261:31;;;;;;;;;;;;;;26191:1109;;;;:::o;43882:191::-;43956:16;43975:6;;;;;;;;;;;43956:25;;44001:8;43992:6;;:17;;;;;;;;;;;;;;;;;;44056:8;44025:40;;44046:8;44025:40;;;;;;;;;;;;43945:128;43882:191;:::o;31238:104::-;31307:27;31317:2;31321:8;31307:27;;;;;;;;;;;;:9;:27::i;:::-;31238:104;;:::o;30419:369::-;30586:28;30596:4;30602:2;30606:7;30586:9;:28::i;:::-;30629:15;:2;:13;;;:15::i;:::-;:76;;;;;30649:56;30680:4;30686:2;30690:7;30699:5;30649:30;:56::i;:::-;30648:57;30629:76;30625:156;;;30729:40;;;;;;;;;;;;;;30625:156;30419:369;;;;:::o;52499:97::-;52552:13;52581:9;52574:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52499:97;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;34156:2130::-;34271:35;34309:21;34322:7;34309:12;:21::i;:::-;34271:59;;34369:4;34347:26;;:13;:18;;;:26;;;34343:67;;34382:28;;;;;;;;;;;;;;34343:67;34423:22;34465:4;34449:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34486:36;34503:4;34509:12;:10;:12::i;:::-;34486:16;:36::i;:::-;34449:73;:126;;;;34563:12;:10;:12::i;:::-;34539:36;;:20;34551:7;34539:11;:20::i;:::-;:36;;;34449:126;34423:153;;34594:17;34589:66;;34620:35;;;;;;;;;;;;;;34589:66;34684:1;34670:16;;:2;:16;;;34666:52;;34695:23;;;;;;;;;;;;;;34666:52;34731:43;34753:4;34759:2;34763:7;34772:1;34731:21;:43::i;:::-;34839:35;34856:1;34860:7;34869:4;34839:8;:35::i;:::-;35200:1;35170:12;:18;35183:4;35170:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35244:1;35216:12;:16;35229:2;35216:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35262:31;35296:11;:20;35308:7;35296:20;;;;;;;;;;;35262:54;;35347:2;35331:8;:13;;;:18;;;;;;;;;;;;;;;;;;35397:15;35364:8;:23;;;:49;;;;;;;;;;;;;;;;;;35665:19;35697:1;35687:7;:11;35665:33;;35713:31;35747:11;:24;35759:11;35747:24;;;;;;;;;;;35713:58;;35815:1;35790:27;;:8;:13;;;;;;;;;;;;:27;;;35786:384;;36000:13;;35985:11;:28;35981:174;;36054:4;36038:8;:13;;;:20;;;;;;;;;;;;;;;;;;36107:13;:28;;;36081:8;:23;;;:54;;;;;;;;;;;;;;;;;;35981:174;35786:384;35145:1036;;;36217:7;36213:2;36198:27;;36207:4;36198:27;;;;;;;;;;;;36236:42;36257:4;36263:2;36267:7;36276:1;36236:20;:42::i;:::-;34260:2026;;34156:2130;;;:::o;31705:163::-;31828:32;31834:2;31838:8;31848:5;31855:4;31828:5;:32::i;:::-;31705:163;;;:::o;4283:326::-;4343:4;4600:1;4578:7;:19;;;:23;4571:30;;4283:326;;;:::o;39901:667::-;40064:4;40101:2;40085:36;;;40122:12;:10;:12::i;:::-;40136:4;40142:7;40151:5;40085:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40081:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40336:1;40319:6;:13;:18;40315:235;;40365:40;;;;;;;;;;;;;;40315:235;40508:6;40502:13;40493:6;40489:2;40485:15;40478:38;40081:480;40214:45;;;40204:55;;;:6;:55;;;;40197:62;;;39901:667;;;;;;:::o;41216:159::-;;;;;:::o;42034:158::-;;;;;:::o;32127:1775::-;32266:20;32289:13;;32266:36;;32331:1;32317:16;;:2;:16;;;32313:48;;32342:19;;;;;;;;;;;;;;32313:48;32388:1;32376:8;:13;32372:44;;32398:18;;;;;;;;;;;;;;32372:44;32429:61;32459:1;32463:2;32467:12;32481:8;32429:21;:61::i;:::-;32802:8;32767:12;:16;32780:2;32767:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32866:8;32826:12;:16;32839:2;32826:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32925:2;32892:11;:25;32904:12;32892:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32992:15;32942:11;:25;32954:12;32942:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33025:20;33048:12;33025:35;;33075:11;33104:8;33089:12;:23;33075:37;;33133:4;:23;;;;;33141:15;:2;:13;;;:15::i;:::-;33133:23;33129:641;;;33177:314;33233:12;33229:2;33208:38;;33225:1;33208:38;;;;;;;;;;;;33274:69;33313:1;33317:2;33321:14;;;;;;33337:5;33274:30;:69::i;:::-;33269:174;;33379:40;;;;;;;;;;;;;;33269:174;33486:3;33470:12;:19;33177:314;;33572:12;33555:13;;:29;33551:43;;33586:8;;;33551:43;33129:641;;;33635:120;33691:14;;;;;;33687:2;33666:40;;33683:1;33666:40;;;;;;;;;;;;33750:3;33734:12;:19;33635:120;;33129:641;33800:12;33784:13;:28;;;;32742:1082;;33834:60;33863:1;33867:2;33871:12;33885:8;33834:20;:60::i;:::-;32255:1647;32127:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:86;369:7;409:4;402:5;398:16;387:27;;334:86;;;:::o;426:118::-;497:22;513:5;497:22;:::i;:::-;490:5;487:33;477:61;;534:1;531;524:12;477:61;426:118;:::o;550:135::-;594:5;632:6;619:20;610:29;;648:31;673:5;648:31;:::i;:::-;550:135;;;;:::o;691:325::-;748:6;797:2;785:9;776:7;772:23;768:32;765:119;;;803:79;;:::i;:::-;765:119;923:1;948:51;991:7;982:6;971:9;967:22;948:51;:::i;:::-;938:61;;894:115;691:325;;;;:::o;1022:149::-;1058:7;1098:66;1091:5;1087:78;1076:89;;1022:149;;;:::o;1177:120::-;1249:23;1266:5;1249:23;:::i;:::-;1242:5;1239:34;1229:62;;1287:1;1284;1277:12;1229:62;1177:120;:::o;1303:137::-;1348:5;1386:6;1373:20;1364:29;;1402:32;1428:5;1402:32;:::i;:::-;1303:137;;;;:::o;1446:327::-;1504:6;1553:2;1541:9;1532:7;1528:23;1524:32;1521:119;;;1559:79;;:::i;:::-;1521:119;1679:1;1704:52;1748:7;1739:6;1728:9;1724:22;1704:52;:::i;:::-;1694:62;;1650:116;1446:327;;;;:::o;1779:90::-;1813:7;1856:5;1849:13;1842:21;1831:32;;1779:90;;;:::o;1875:109::-;1956:21;1971:5;1956:21;:::i;:::-;1951:3;1944:34;1875:109;;:::o;1990:210::-;2077:4;2115:2;2104:9;2100:18;2092:26;;2128:65;2190:1;2179:9;2175:17;2166:6;2128:65;:::i;:::-;1990:210;;;;:::o;2206:89::-;2242:7;2282:6;2275:5;2271:18;2260:29;;2206:89;;;:::o;2301:120::-;2373:23;2390:5;2373:23;:::i;:::-;2366:5;2363:34;2353:62;;2411:1;2408;2401:12;2353:62;2301:120;:::o;2427:137::-;2472:5;2510:6;2497:20;2488:29;;2526:32;2552:5;2526:32;:::i;:::-;2427:137;;;;:::o;2570:327::-;2628:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:119;;;2683:79;;:::i;:::-;2645:119;2803:1;2828:52;2872:7;2863:6;2852:9;2848:22;2828:52;:::i;:::-;2818:62;;2774:116;2570:327;;;;:::o;2903:99::-;2955:6;2989:5;2983:12;2973:22;;2903:99;;;:::o;3008:169::-;3092:11;3126:6;3121:3;3114:19;3166:4;3161:3;3157:14;3142:29;;3008:169;;;;:::o;3183:307::-;3251:1;3261:113;3275:6;3272:1;3269:13;3261:113;;;3360:1;3355:3;3351:11;3345:18;3341:1;3336:3;3332:11;3325:39;3297:2;3294:1;3290:10;3285:15;;3261:113;;;3392:6;3389:1;3386:13;3383:101;;;3472:1;3463:6;3458:3;3454:16;3447:27;3383:101;3232:258;3183:307;;;:::o;3496:102::-;3537:6;3588:2;3584:7;3579:2;3572:5;3568:14;3564:28;3554:38;;3496:102;;;:::o;3604:364::-;3692:3;3720:39;3753:5;3720:39;:::i;:::-;3775:71;3839:6;3834:3;3775:71;:::i;:::-;3768:78;;3855:52;3900:6;3895:3;3888:4;3881:5;3877:16;3855:52;:::i;:::-;3932:29;3954:6;3932:29;:::i;:::-;3927:3;3923:39;3916:46;;3696:272;3604:364;;;;:::o;3974:313::-;4087:4;4125:2;4114:9;4110:18;4102:26;;4174:9;4168:4;4164:20;4160:1;4149:9;4145:17;4138:47;4202:78;4275:4;4266:6;4202:78;:::i;:::-;4194:86;;3974:313;;;;:::o;4293:77::-;4330:7;4359:5;4348:16;;4293:77;;;:::o;4376:122::-;4449:24;4467:5;4449:24;:::i;:::-;4442:5;4439:35;4429:63;;4488:1;4485;4478:12;4429:63;4376:122;:::o;4504:139::-;4550:5;4588:6;4575:20;4566:29;;4604:33;4631:5;4604:33;:::i;:::-;4504:139;;;;:::o;4649:329::-;4708:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:119;;;4763:79;;:::i;:::-;4725:119;4883:1;4908:53;4953:7;4944:6;4933:9;4929:22;4908:53;:::i;:::-;4898:63;;4854:117;4649:329;;;;:::o;4984:126::-;5021:7;5061:42;5054:5;5050:54;5039:65;;4984:126;;;:::o;5116:96::-;5153:7;5182:24;5200:5;5182:24;:::i;:::-;5171:35;;5116:96;;;:::o;5218:118::-;5305:24;5323:5;5305:24;:::i;:::-;5300:3;5293:37;5218:118;;:::o;5342:222::-;5435:4;5473:2;5462:9;5458:18;5450:26;;5486:71;5554:1;5543:9;5539:17;5530:6;5486:71;:::i;:::-;5342:222;;;;:::o;5570:122::-;5643:24;5661:5;5643:24;:::i;:::-;5636:5;5633:35;5623:63;;5682:1;5679;5672:12;5623:63;5570:122;:::o;5698:139::-;5744:5;5782:6;5769:20;5760:29;;5798:33;5825:5;5798:33;:::i;:::-;5698:139;;;;:::o;5843:474::-;5911:6;5919;5968:2;5956:9;5947:7;5943:23;5939:32;5936:119;;;5974:79;;:::i;:::-;5936:119;6094:1;6119:53;6164:7;6155:6;6144:9;6140:22;6119:53;:::i;:::-;6109:63;;6065:117;6221:2;6247:53;6292:7;6283:6;6272:9;6268:22;6247:53;:::i;:::-;6237:63;;6192:118;5843:474;;;;;:::o;6323:117::-;6432:1;6429;6422:12;6446:117;6555:1;6552;6545:12;6569:180;6617:77;6614:1;6607:88;6714:4;6711:1;6704:15;6738:4;6735:1;6728:15;6755:281;6838:27;6860:4;6838:27;:::i;:::-;6830:6;6826:40;6968:6;6956:10;6953:22;6932:18;6920:10;6917:34;6914:62;6911:88;;;6979:18;;:::i;:::-;6911:88;7019:10;7015:2;7008:22;6798:238;6755:281;;:::o;7042:129::-;7076:6;7103:20;;:::i;:::-;7093:30;;7132:33;7160:4;7152:6;7132:33;:::i;:::-;7042:129;;;:::o;7177:308::-;7239:4;7329:18;7321:6;7318:30;7315:56;;;7351:18;;:::i;:::-;7315:56;7389:29;7411:6;7389:29;:::i;:::-;7381:37;;7473:4;7467;7463:15;7455:23;;7177:308;;;:::o;7491:154::-;7575:6;7570:3;7565;7552:30;7637:1;7628:6;7623:3;7619:16;7612:27;7491:154;;;:::o;7651:412::-;7729:5;7754:66;7770:49;7812:6;7770:49;:::i;:::-;7754:66;:::i;:::-;7745:75;;7843:6;7836:5;7829:21;7881:4;7874:5;7870:16;7919:3;7910:6;7905:3;7901:16;7898:25;7895:112;;;7926:79;;:::i;:::-;7895:112;8016:41;8050:6;8045:3;8040;8016:41;:::i;:::-;7735:328;7651:412;;;;;:::o;8083:340::-;8139:5;8188:3;8181:4;8173:6;8169:17;8165:27;8155:122;;8196:79;;:::i;:::-;8155:122;8313:6;8300:20;8338:79;8413:3;8405:6;8398:4;8390:6;8386:17;8338:79;:::i;:::-;8329:88;;8145:278;8083:340;;;;:::o;8429:509::-;8498:6;8547:2;8535:9;8526:7;8522:23;8518:32;8515:119;;;8553:79;;:::i;:::-;8515:119;8701:1;8690:9;8686:17;8673:31;8731:18;8723:6;8720:30;8717:117;;;8753:79;;:::i;:::-;8717:117;8858:63;8913:7;8904:6;8893:9;8889:22;8858:63;:::i;:::-;8848:73;;8644:287;8429:509;;;;:::o;8944:118::-;9031:24;9049:5;9031:24;:::i;:::-;9026:3;9019:37;8944:118;;:::o;9068:222::-;9161:4;9199:2;9188:9;9184:18;9176:26;;9212:71;9280:1;9269:9;9265:17;9256:6;9212:71;:::i;:::-;9068:222;;;;:::o;9296:619::-;9373:6;9381;9389;9438:2;9426:9;9417:7;9413:23;9409:32;9406:119;;;9444:79;;:::i;:::-;9406:119;9564:1;9589:53;9634:7;9625:6;9614:9;9610:22;9589:53;:::i;:::-;9579:63;;9535:117;9691:2;9717:53;9762:7;9753:6;9742:9;9738:22;9717:53;:::i;:::-;9707:63;;9662:118;9819:2;9845:53;9890:7;9881:6;9870:9;9866:22;9845:53;:::i;:::-;9835:63;;9790:118;9296:619;;;;;:::o;9921:329::-;9980:6;10029:2;10017:9;10008:7;10004:23;10000:32;9997:119;;;10035:79;;:::i;:::-;9997:119;10155:1;10180:53;10225:7;10216:6;10205:9;10201:22;10180:53;:::i;:::-;10170:63;;10126:117;9921:329;;;;:::o;10256:112::-;10339:22;10355:5;10339:22;:::i;:::-;10334:3;10327:35;10256:112;;:::o;10374:214::-;10463:4;10501:2;10490:9;10486:18;10478:26;;10514:67;10578:1;10567:9;10563:17;10554:6;10514:67;:::i;:::-;10374:214;;;;:::o;10594:116::-;10664:21;10679:5;10664:21;:::i;:::-;10657:5;10654:32;10644:60;;10700:1;10697;10690:12;10644:60;10594:116;:::o;10716:133::-;10759:5;10797:6;10784:20;10775:29;;10813:30;10837:5;10813:30;:::i;:::-;10716:133;;;;:::o;10855:468::-;10920:6;10928;10977:2;10965:9;10956:7;10952:23;10948:32;10945:119;;;10983:79;;:::i;:::-;10945:119;11103:1;11128:53;11173:7;11164:6;11153:9;11149:22;11128:53;:::i;:::-;11118:63;;11074:117;11230:2;11256:50;11298:7;11289:6;11278:9;11274:22;11256:50;:::i;:::-;11246:60;;11201:115;10855:468;;;;;:::o;11329:307::-;11390:4;11480:18;11472:6;11469:30;11466:56;;;11502:18;;:::i;:::-;11466:56;11540:29;11562:6;11540:29;:::i;:::-;11532:37;;11624:4;11618;11614:15;11606:23;;11329:307;;;:::o;11642:410::-;11719:5;11744:65;11760:48;11801:6;11760:48;:::i;:::-;11744:65;:::i;:::-;11735:74;;11832:6;11825:5;11818:21;11870:4;11863:5;11859:16;11908:3;11899:6;11894:3;11890:16;11887:25;11884:112;;;11915:79;;:::i;:::-;11884:112;12005:41;12039:6;12034:3;12029;12005:41;:::i;:::-;11725:327;11642:410;;;;;:::o;12071:338::-;12126:5;12175:3;12168:4;12160:6;12156:17;12152:27;12142:122;;12183:79;;:::i;:::-;12142:122;12300:6;12287:20;12325:78;12399:3;12391:6;12384:4;12376:6;12372:17;12325:78;:::i;:::-;12316:87;;12132:277;12071:338;;;;:::o;12415:943::-;12510:6;12518;12526;12534;12583:3;12571:9;12562:7;12558:23;12554:33;12551:120;;;12590:79;;:::i;:::-;12551:120;12710:1;12735:53;12780:7;12771:6;12760:9;12756:22;12735:53;:::i;:::-;12725:63;;12681:117;12837:2;12863:53;12908:7;12899:6;12888:9;12884:22;12863:53;:::i;:::-;12853:63;;12808:118;12965:2;12991:53;13036:7;13027:6;13016:9;13012:22;12991:53;:::i;:::-;12981:63;;12936:118;13121:2;13110:9;13106:18;13093:32;13152:18;13144:6;13141:30;13138:117;;;13174:79;;:::i;:::-;13138:117;13279:62;13333:7;13324:6;13313:9;13309:22;13279:62;:::i;:::-;13269:72;;13064:287;12415:943;;;;;;;:::o;13364:117::-;13473:1;13470;13463:12;13487:117;13596:1;13593;13586:12;13627:568;13700:8;13710:6;13760:3;13753:4;13745:6;13741:17;13737:27;13727:122;;13768:79;;:::i;:::-;13727:122;13881:6;13868:20;13858:30;;13911:18;13903:6;13900:30;13897:117;;;13933:79;;:::i;:::-;13897:117;14047:4;14039:6;14035:17;14023:29;;14101:3;14093:4;14085:6;14081:17;14071:8;14067:32;14064:41;14061:128;;;14108:79;;:::i;:::-;14061:128;13627:568;;;;;:::o;14201:700::-;14294:6;14302;14310;14359:2;14347:9;14338:7;14334:23;14330:32;14327:119;;;14365:79;;:::i;:::-;14327:119;14485:1;14510:51;14553:7;14544:6;14533:9;14529:22;14510:51;:::i;:::-;14500:61;;14456:115;14638:2;14627:9;14623:18;14610:32;14669:18;14661:6;14658:30;14655:117;;;14691:79;;:::i;:::-;14655:117;14804:80;14876:7;14867:6;14856:9;14852:22;14804:80;:::i;:::-;14786:98;;;;14581:313;14201:700;;;;;:::o;14907:115::-;14992:23;15009:5;14992:23;:::i;:::-;14987:3;14980:36;14907:115;;:::o;15028:218::-;15119:4;15157:2;15146:9;15142:18;15134:26;;15170:69;15236:1;15225:9;15221:17;15212:6;15170:69;:::i;:::-;15028:218;;;;:::o;15252:472::-;15319:6;15327;15376:2;15364:9;15355:7;15351:23;15347:32;15344:119;;;15382:79;;:::i;:::-;15344:119;15502:1;15527:52;15571:7;15562:6;15551:9;15547:22;15527:52;:::i;:::-;15517:62;;15473:116;15628:2;15654:53;15699:7;15690:6;15679:9;15675:22;15654:53;:::i;:::-;15644:63;;15599:118;15252:472;;;;;:::o;15730:474::-;15798:6;15806;15855:2;15843:9;15834:7;15830:23;15826:32;15823:119;;;15861:79;;:::i;:::-;15823:119;15981:1;16006:53;16051:7;16042:6;16031:9;16027:22;16006:53;:::i;:::-;15996:63;;15952:117;16108:2;16134:53;16179:7;16170:6;16159:9;16155:22;16134:53;:::i;:::-;16124:63;;16079:118;15730:474;;;;;:::o;16210:182::-;16350:34;16346:1;16338:6;16334:14;16327:58;16210:182;:::o;16398:366::-;16540:3;16561:67;16625:2;16620:3;16561:67;:::i;:::-;16554:74;;16637:93;16726:3;16637:93;:::i;:::-;16755:2;16750:3;16746:12;16739:19;;16398:366;;;:::o;16770:419::-;16936:4;16974:2;16963:9;16959:18;16951:26;;17023:9;17017:4;17013:20;17009:1;16998:9;16994:17;16987:47;17051:131;17177:4;17051:131;:::i;:::-;17043:139;;16770:419;;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:320;17425:6;17462:1;17456:4;17452:12;17442:22;;17509:1;17503:4;17499:12;17530:18;17520:81;;17586:4;17578:6;17574:17;17564:27;;17520:81;17648:2;17640:6;17637:14;17617:18;17614:38;17611:84;;17667:18;;:::i;:::-;17611:84;17432:269;17381:320;;;:::o;17707:332::-;17828:4;17866:2;17855:9;17851:18;17843:26;;17879:71;17947:1;17936:9;17932:17;17923:6;17879:71;:::i;:::-;17960:72;18028:2;18017:9;18013:18;18004:6;17960:72;:::i;:::-;17707:332;;;;;:::o;18045:137::-;18099:5;18130:6;18124:13;18115:22;;18146:30;18170:5;18146:30;:::i;:::-;18045:137;;;;:::o;18188:345::-;18255:6;18304:2;18292:9;18283:7;18279:23;18275:32;18272:119;;;18310:79;;:::i;:::-;18272:119;18430:1;18455:61;18508:7;18499:6;18488:9;18484:22;18455:61;:::i;:::-;18445:71;;18401:125;18188:345;;;;:::o;18539:180::-;18587:77;18584:1;18577:88;18684:4;18681:1;18674:15;18708:4;18705:1;18698:15;18725:242;18764:3;18783:19;18800:1;18783:19;:::i;:::-;18778:24;;18816:19;18833:1;18816:19;:::i;:::-;18811:24;;18909:1;18901:6;18897:14;18894:1;18891:21;18888:47;;;18915:18;;:::i;:::-;18888:47;18959:1;18956;18952:9;18945:16;;18725:242;;;;:::o;18973:169::-;19113:21;19109:1;19101:6;19097:14;19090:45;18973:169;:::o;19148:366::-;19290:3;19311:67;19375:2;19370:3;19311:67;:::i;:::-;19304:74;;19387:93;19476:3;19387:93;:::i;:::-;19505:2;19500:3;19496:12;19489:19;;19148:366;;;:::o;19520:419::-;19686:4;19724:2;19713:9;19709:18;19701:26;;19773:9;19767:4;19763:20;19759:1;19748:9;19744:17;19737:47;19801:131;19927:4;19801:131;:::i;:::-;19793:139;;19520:419;;;:::o;19945:237::-;19983:3;20002:18;20018:1;20002:18;:::i;:::-;19997:23;;20034:18;20050:1;20034:18;:::i;:::-;20029:23;;20124:1;20118:4;20114:12;20111:1;20108:19;20105:45;;;20130:18;;:::i;:::-;20105:45;20174:1;20171;20167:9;20160:16;;19945:237;;;;:::o;20188:178::-;20328:30;20324:1;20316:6;20312:14;20305:54;20188:178;:::o;20372:366::-;20514:3;20535:67;20599:2;20594:3;20535:67;:::i;:::-;20528:74;;20611:93;20700:3;20611:93;:::i;:::-;20729:2;20724:3;20720:12;20713:19;;20372:366;;;:::o;20744:419::-;20910:4;20948:2;20937:9;20933:18;20925:26;;20997:9;20991:4;20987:20;20983:1;20972:9;20968:17;20961:47;21025:131;21151:4;21025:131;:::i;:::-;21017:139;;20744:419;;;:::o;21169:173::-;21309:25;21305:1;21297:6;21293:14;21286:49;21169:173;:::o;21348:366::-;21490:3;21511:67;21575:2;21570:3;21511:67;:::i;:::-;21504:74;;21587:93;21676:3;21587:93;:::i;:::-;21705:2;21700:3;21696:12;21689:19;;21348:366;;;:::o;21720:419::-;21886:4;21924:2;21913:9;21909:18;21901:26;;21973:9;21967:4;21963:20;21959:1;21948:9;21944:17;21937:47;22001:131;22127:4;22001:131;:::i;:::-;21993:139;;21720:419;;;:::o;22145:348::-;22185:7;22208:20;22226:1;22208:20;:::i;:::-;22203:25;;22242:20;22260:1;22242:20;:::i;:::-;22237:25;;22430:1;22362:66;22358:74;22355:1;22352:81;22347:1;22340:9;22333:17;22329:105;22326:131;;;22437:18;;:::i;:::-;22326:131;22485:1;22482;22478:9;22467:20;;22145:348;;;;:::o;22499:169::-;22639:21;22635:1;22627:6;22623:14;22616:45;22499:169;:::o;22674:366::-;22816:3;22837:67;22901:2;22896:3;22837:67;:::i;:::-;22830:74;;22913:93;23002:3;22913:93;:::i;:::-;23031:2;23026:3;23022:12;23015:19;;22674:366;;;:::o;23046:419::-;23212:4;23250:2;23239:9;23235:18;23227:26;;23299:9;23293:4;23289:20;23285:1;23274:9;23270:17;23263:47;23327:131;23453:4;23327:131;:::i;:::-;23319:139;;23046:419;;;:::o;23471:185::-;23509:4;23529:18;23545:1;23529:18;:::i;:::-;23524:23;;23561:18;23577:1;23561:18;:::i;:::-;23556:23;;23598:1;23595;23592:8;23589:34;;;23603:18;;:::i;:::-;23589:34;23648:1;23645;23641:9;23633:17;;23471:185;;;;:::o;23662:234::-;23802:34;23798:1;23790:6;23786:14;23779:58;23871:17;23866:2;23858:6;23854:15;23847:42;23662:234;:::o;23902:366::-;24044:3;24065:67;24129:2;24124:3;24065:67;:::i;:::-;24058:74;;24141:93;24230:3;24141:93;:::i;:::-;24259:2;24254:3;24250:12;24243:19;;23902:366;;;:::o;24274:419::-;24440:4;24478:2;24467:9;24463:18;24455:26;;24527:9;24521:4;24517:20;24513:1;24502:9;24498:17;24491:47;24555:131;24681:4;24555:131;:::i;:::-;24547:139;;24274:419;;;:::o;24699:148::-;24801:11;24838:3;24823:18;;24699:148;;;;:::o;24853:377::-;24959:3;24987:39;25020:5;24987:39;:::i;:::-;25042:89;25124:6;25119:3;25042:89;:::i;:::-;25035:96;;25140:52;25185:6;25180:3;25173:4;25166:5;25162:16;25140:52;:::i;:::-;25217:6;25212:3;25208:16;25201:23;;24963:267;24853:377;;;;:::o;25236:141::-;25285:4;25308:3;25300:11;;25331:3;25328:1;25321:14;25365:4;25362:1;25352:18;25344:26;;25236:141;;;:::o;25407:845::-;25510:3;25547:5;25541:12;25576:36;25602:9;25576:36;:::i;:::-;25628:89;25710:6;25705:3;25628:89;:::i;:::-;25621:96;;25748:1;25737:9;25733:17;25764:1;25759:137;;;;25910:1;25905:341;;;;25726:520;;25759:137;25843:4;25839:9;25828;25824:25;25819:3;25812:38;25879:6;25874:3;25870:16;25863:23;;25759:137;;25905:341;25972:38;26004:5;25972:38;:::i;:::-;26032:1;26046:154;26060:6;26057:1;26054:13;26046:154;;;26134:7;26128:14;26124:1;26119:3;26115:11;26108:35;26184:1;26175:7;26171:15;26160:26;;26082:4;26079:1;26075:12;26070:17;;26046:154;;;26229:6;26224:3;26220:16;26213:23;;25912:334;;25726:520;;25514:738;;25407:845;;;;:::o;26258:589::-;26483:3;26505:95;26596:3;26587:6;26505:95;:::i;:::-;26498:102;;26617:95;26708:3;26699:6;26617:95;:::i;:::-;26610:102;;26729:92;26817:3;26808:6;26729:92;:::i;:::-;26722:99;;26838:3;26831:10;;26258:589;;;;;;:::o;26853:305::-;26893:3;26912:20;26930:1;26912:20;:::i;:::-;26907:25;;26946:20;26964:1;26946:20;:::i;:::-;26941:25;;27100:1;27032:66;27028:74;27025:1;27022:81;27019:107;;;27106:18;;:::i;:::-;27019:107;27150:1;27147;27143:9;27136:16;;26853:305;;;;:::o;27164:180::-;27212:77;27209:1;27202:88;27309:4;27306:1;27299:15;27333:4;27330:1;27323:15;27350:233;27389:3;27412:24;27430:5;27412:24;:::i;:::-;27403:33;;27458:66;27451:5;27448:77;27445:103;;27528:18;;:::i;:::-;27445:103;27575:1;27568:5;27564:13;27557:20;;27350:233;;;:::o;27589:225::-;27729:34;27725:1;27717:6;27713:14;27706:58;27798:8;27793:2;27785:6;27781:15;27774:33;27589:225;:::o;27820:366::-;27962:3;27983:67;28047:2;28042:3;27983:67;:::i;:::-;27976:74;;28059:93;28148:3;28059:93;:::i;:::-;28177:2;28172:3;28168:12;28161:19;;27820:366;;;:::o;28192:419::-;28358:4;28396:2;28385:9;28381:18;28373:26;;28445:9;28439:4;28435:20;28431:1;28420:9;28416:17;28409:47;28473:131;28599:4;28473:131;:::i;:::-;28465:139;;28192:419;;;:::o;28617:180::-;28665:77;28662:1;28655:88;28762:4;28759:1;28752:15;28786:4;28783:1;28776:15;28803:185;28843:1;28860:20;28878:1;28860:20;:::i;:::-;28855:25;;28894:20;28912:1;28894:20;:::i;:::-;28889:25;;28933:1;28923:35;;28938:18;;:::i;:::-;28923:35;28980:1;28977;28973:9;28968:14;;28803:185;;;;:::o;28994:191::-;29034:4;29054:20;29072:1;29054:20;:::i;:::-;29049:25;;29088:20;29106:1;29088:20;:::i;:::-;29083:25;;29127:1;29124;29121:8;29118:34;;;29132:18;;:::i;:::-;29118:34;29177:1;29174;29170:9;29162:17;;28994:191;;;;:::o;29191:176::-;29223:1;29240:20;29258:1;29240:20;:::i;:::-;29235:25;;29274:20;29292:1;29274:20;:::i;:::-;29269:25;;29313:1;29303:35;;29318:18;;:::i;:::-;29303:35;29359:1;29356;29352:9;29347:14;;29191:176;;;;:::o;29373:98::-;29424:6;29458:5;29452:12;29442:22;;29373:98;;;:::o;29477:168::-;29560:11;29594:6;29589:3;29582:19;29634:4;29629:3;29625:14;29610:29;;29477:168;;;;:::o;29651:360::-;29737:3;29765:38;29797:5;29765:38;:::i;:::-;29819:70;29882:6;29877:3;29819:70;:::i;:::-;29812:77;;29898:52;29943:6;29938:3;29931:4;29924:5;29920:16;29898:52;:::i;:::-;29975:29;29997:6;29975:29;:::i;:::-;29970:3;29966:39;29959:46;;29741:270;29651:360;;;;:::o;30017:640::-;30212:4;30250:3;30239:9;30235:19;30227:27;;30264:71;30332:1;30321:9;30317:17;30308:6;30264:71;:::i;:::-;30345:72;30413:2;30402:9;30398:18;30389:6;30345:72;:::i;:::-;30427;30495:2;30484:9;30480:18;30471:6;30427:72;:::i;:::-;30546:9;30540:4;30536:20;30531:2;30520:9;30516:18;30509:48;30574:76;30645:4;30636:6;30574:76;:::i;:::-;30566:84;;30017:640;;;;;;;:::o;30663:141::-;30719:5;30750:6;30744:13;30735:22;;30766:32;30792:5;30766:32;:::i;:::-;30663:141;;;;:::o;30810:349::-;30879:6;30928:2;30916:9;30907:7;30903:23;30899:32;30896:119;;;30934:79;;:::i;:::-;30896:119;31054:1;31079:63;31134:7;31125:6;31114:9;31110:22;31079:63;:::i;:::-;31069:73;;31025:127;30810:349;;;;:::o

Swarm Source

ipfs://054fa3ffd3d9864936f7c081c2a7c9c5d0b0f7f06f88d2a155acd93425b4b95d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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