ETH Price: $2,471.93 (-8.35%)

Token

Fancy Dragons (FD)
 

Overview

Max Total Supply

866 FD

Holders

444

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 FD
0xab48de856930c018238c226d166feaed3541ec7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fancy Dragons is a set of 6666 Unique NFTs based on Ethereum chain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FancyDragons

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-19
*/

// SPDX-License-Identifier: GPL-3.0

// 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/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// 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 (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/fancydragon.sol



pragma solidity >=0.7.0 <0.9.0;



contract FancyDragons is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.66 ether;
  uint256 public presalecost = 0.06 ether;
  uint256 public nocost = 0 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmount = 6;
  uint256 public nftPerAddressLimit = 1;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  address[] public freewhitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {

            require(isWhitelistedaddress(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");

        if(isfreeWhitelisted(msg.sender) == true) {
            require(msg.value >= nocost * _mintAmount, "insufficient funds");
        }

        if(isfreeWhitelisted(msg.sender) == false) {

        if(isWhitelisted(msg.sender) == true) {
        require(msg.value >= presalecost * _mintAmount, "insufficient funds");
        }

        if(isWhitelisted(msg.sender) == false) {

         if(isfreeWhitelisted(msg.sender) == true) {
            require(msg.value >= nocost * _mintAmount, "insufficient funds");
        } 

        if(isfreeWhitelisted(msg.sender) == false) {
           require(isWhitelisted(msg.sender), "user is not whitelisted");
        }
        }

        }

        }
        if(onlyWhitelisted == false) {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  

    function isWhitelistedaddress(address _user) public view returns (bool) {
    if(isWhitelisted(msg.sender) == true) {
           return true;
        }

    if(isfreeWhitelisted(msg.sender) == true) {
           return true;
        }   

    if(isWhitelisted(msg.sender) == false) {
      if(isfreeWhitelisted(msg.sender) == true) {
           return true;
        } 
        } 

    if(isWhitelisted(msg.sender) == false) {
      if(isfreeWhitelisted(msg.sender) == false) {
           return false;
        } 
        } 
    }



  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function isfreeWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < freewhitelistedAddresses.length; i++) {
      if (freewhitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
   function freewhitelistUsers(address[] calldata _users) public onlyOwner {
    delete freewhitelistedAddresses;
    freewhitelistedAddresses = _users;
  }
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"freewhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freewhitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelistedaddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isfreeWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nocost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalecost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003d2565b50670928ca80cfc20000600e5566d529ae9e860000600f556000601055611a0a601155600660125560016013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff021916908315150217905550348015620000dc57600080fd5b5060405162005e4c38038062005e4c833981810160405281019062000102919062000500565b838381600090805190602001906200011c929190620003d2565b50806001908051906020019062000135929190620003d2565b505050620001586200014c6200018460201b60201c565b6200018c60201b60201c565b62000169826200025260201b60201c565b6200017a81620002fd60201b60201c565b50505050620007f5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002626200018460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000288620003a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d89062000615565b60405180910390fd5b80600b9080519060200190620002f9929190620003d2565b5050565b6200030d6200018460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000333620003a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003839062000615565b60405180910390fd5b80600d9080519060200190620003a4929190620003d2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e090620006dd565b90600052602060002090601f01602090048101928262000404576000855562000450565b82601f106200041f57805160ff191683800117855562000450565b8280016001018555821562000450579182015b828111156200044f57825182559160200191906001019062000432565b5b5090506200045f919062000463565b5090565b5b808211156200047e57600081600090555060010162000464565b5090565b600062000499620004938462000660565b62000637565b905082815260208101848484011115620004b857620004b7620007ac565b5b620004c5848285620006a7565b509392505050565b600082601f830112620004e557620004e4620007a7565b5b8151620004f784826020860162000482565b91505092915050565b600080600080608085870312156200051d576200051c620007b6565b5b600085015167ffffffffffffffff8111156200053e576200053d620007b1565b5b6200054c87828801620004cd565b945050602085015167ffffffffffffffff81111562000570576200056f620007b1565b5b6200057e87828801620004cd565b935050604085015167ffffffffffffffff811115620005a257620005a1620007b1565b5b620005b087828801620004cd565b925050606085015167ffffffffffffffff811115620005d457620005d3620007b1565b5b620005e287828801620004cd565b91505092959194509250565b6000620005fd60208362000696565b91506200060a82620007cc565b602082019050919050565b600060208201905081810360008301526200063081620005ee565b9050919050565b60006200064362000656565b905062000651828262000713565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067e576200067d62000778565b5b6200068982620007bb565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006c7578082015181840152602081019050620006aa565b83811115620006d7576000848401525b50505050565b60006002820490506001821680620006f657607f821691505b602082108114156200070d576200070c62000749565b5b50919050565b6200071e82620007bb565b810181811067ffffffffffffffff8211171562000740576200073f62000778565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61564780620008056000396000f3fe6080604052600436106102e45760003560e01c80636c0360eb11610190578063ba7d2c76116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b42578063f95589a614610b6b578063faa9c3d614610b96578063fb875b8114610bd3576102e4565b8063e985e9c514610ab3578063edec5f2714610af0578063f2c4ce1e14610b19576102e4565b8063ba7d2c76146109a3578063c6682862146109ce578063c87b56dd146109f9578063d0eb26b014610a36578063d5abeb0114610a5f578063da3ef23f14610a8a576102e4565b806395d89b4111610149578063a22cb46511610123578063a22cb465146108fd578063a475b5dd14610926578063b88d4fde1461093d578063ba4e5c4914610966576102e4565b806395d89b411461088b5780639c70b512146108b6578063a0712d68146108e1576102e4565b80636c0360eb1461078f57806370a08231146107ba578063715018a6146107f75780637f00c7a61461080e5780638da5cb5b146108375780638e1b828c14610862576102e4565b80633af32abf1161024f57806344a0d68a1161020857806351830227116101e257806351830227146106d357806355f804b3146106fe5780635c975abb146107275780636352211e14610752576102e4565b806344a0d68a146106305780634ce0e9b4146106595780634f6ccce714610696576102e4565b80633af32abf1461052f5780633c9527641461056c5780633ccfd60b1461059557806342842e0e1461059f578063430b21d6146105c8578063438b6300146105f3576102e4565b806313faede6116102a157806313faede61461040b57806318160ddd1461043657806318cae26914610461578063239c70ae1461049e57806323b872dd146104c95780632f745c59146104f2576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613fea565b610c10565b60405161031d91906146eb565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613fbd565b610c8a565b005b34801561035b57600080fd5b50610364610d23565b6040516103719190614706565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061408d565b610db5565b6040516103ae9190614662565b60405180910390f35b3480156103c357600080fd5b506103cc610e3a565b6040516103d99190614706565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613f30565b610ec8565b005b34801561041757600080fd5b50610420610fe0565b60405161042d9190614a48565b60405180910390f35b34801561044257600080fd5b5061044b610fe6565b6040516104589190614a48565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613dad565b610ff3565b6040516104959190614a48565b60405180910390f35b3480156104aa57600080fd5b506104b361100b565b6040516104c09190614a48565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613e1a565b611011565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613f30565b611071565b6040516105269190614a48565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613dad565b611116565b60405161056391906146eb565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613fbd565b6111c5565b005b61059d61125e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613e1a565b61135a565b005b3480156105d457600080fd5b506105dd61137a565b6040516105ea9190614a48565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190613dad565b611380565b60405161062791906146c9565b60405180910390f35b34801561063c57600080fd5b506106576004803603810190610652919061408d565b61142e565b005b34801561066557600080fd5b50610680600480360381019061067b919061408d565b6114b4565b60405161068d9190614662565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b8919061408d565b6114f3565b6040516106ca9190614a48565b60405180910390f35b3480156106df57600080fd5b506106e8611564565b6040516106f591906146eb565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190614044565b611577565b005b34801561073357600080fd5b5061073c61160d565b60405161074991906146eb565b60405180910390f35b34801561075e57600080fd5b506107796004803603810190610774919061408d565b611620565b6040516107869190614662565b60405180910390f35b34801561079b57600080fd5b506107a46116d2565b6040516107b19190614706565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190613dad565b611760565b6040516107ee9190614a48565b60405180910390f35b34801561080357600080fd5b5061080c611818565b005b34801561081a57600080fd5b506108356004803603810190610830919061408d565b6118a0565b005b34801561084357600080fd5b5061084c611926565b6040516108599190614662565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613f70565b611950565b005b34801561089757600080fd5b506108a06119f0565b6040516108ad9190614706565b60405180910390f35b3480156108c257600080fd5b506108cb611a82565b6040516108d891906146eb565b60405180910390f35b6108fb60048036038101906108f6919061408d565b611a95565b005b34801561090957600080fd5b50610924600480360381019061091f9190613ef0565b611fb7565b005b34801561093257600080fd5b5061093b611fcd565b005b34801561094957600080fd5b50610964600480360381019061095f9190613e6d565b612066565b005b34801561097257600080fd5b5061098d6004803603810190610988919061408d565b6120c8565b60405161099a9190614662565b60405180910390f35b3480156109af57600080fd5b506109b8612107565b6040516109c59190614a48565b60405180910390f35b3480156109da57600080fd5b506109e361210d565b6040516109f09190614706565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061408d565b61219b565b604051610a2d9190614706565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a58919061408d565b6122f4565b005b348015610a6b57600080fd5b50610a7461237a565b604051610a819190614a48565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190614044565b612380565b005b348015610abf57600080fd5b50610ada6004803603810190610ad59190613dda565b612416565b604051610ae791906146eb565b60405180910390f35b348015610afc57600080fd5b50610b176004803603810190610b129190613f70565b6124aa565b005b348015610b2557600080fd5b50610b406004803603810190610b3b9190614044565b61254a565b005b348015610b4e57600080fd5b50610b696004803603810190610b649190613dad565b6125e0565b005b348015610b7757600080fd5b50610b806126d8565b604051610b8d9190614a48565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb89190613dad565b6126de565b604051610bca91906146eb565b60405180910390f35b348015610bdf57600080fd5b50610bfa6004803603810190610bf59190613dad565b61278a565b604051610c0791906146eb565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c835750610c8282612839565b5b9050919050565b610c9261291b565b73ffffffffffffffffffffffffffffffffffffffff16610cb0611926565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90614928565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610d3290614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90614d51565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b6000610dc082612923565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614908565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e4790614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7390614d51565b8015610ec05780601f10610e9557610100808354040283529160200191610ec0565b820191906000526020600020905b815481529060010190602001808311610ea357829003601f168201915b505050505081565b6000610ed382611620565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614988565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6361291b565b73ffffffffffffffffffffffffffffffffffffffff161480610f925750610f9181610f8c61291b565b612416565b5b610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890614848565b60405180910390fd5b610fdb838361298f565b505050565b600e5481565b6000600880549050905090565b60176020528060005260406000206000915090505481565b60125481565b61102261101c61291b565b82612a48565b611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906149c8565b60405180910390fd5b61106c838383612b26565b505050565b600061107c83611760565b82106110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490614728565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b6015805490508110156111ba578273ffffffffffffffffffffffffffffffffffffffff166015828154811061115657611155614eea565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156111a75760019150506111c0565b80806111b290614db4565b91505061111e565b50600090505b919050565b6111cd61291b565b73ffffffffffffffffffffffffffffffffffffffff166111eb611926565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890614928565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b61126661291b565b73ffffffffffffffffffffffffffffffffffffffff16611284611926565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190614928565b60405180910390fd5b60006112e4611926565b73ffffffffffffffffffffffffffffffffffffffff16476040516113079061464d565b60006040518083038185875af1925050503d8060008114611344576040519150601f19603f3d011682016040523d82523d6000602084013e611349565b606091505b505090508061135757600080fd5b50565b61137583838360405180602001604052806000815250612066565b505050565b600f5481565b6060600061138d83611760565b905060008167ffffffffffffffff8111156113ab576113aa614f19565b5b6040519080825280602002602001820160405280156113d95781602001602082028036833780820191505090505b50905060005b82811015611423576113f18582611071565b82828151811061140457611403614eea565b5b602002602001018181525050808061141b90614db4565b9150506113df565b508092505050919050565b61143661291b565b73ffffffffffffffffffffffffffffffffffffffff16611454611926565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614928565b60405180910390fd5b80600e8190555050565b601681815481106114c457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114fd610fe6565b821061153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906149e8565b60405180910390fd5b6008828154811061155257611551614eea565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b61157f61291b565b73ffffffffffffffffffffffffffffffffffffffff1661159d611926565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614928565b60405180910390fd5b80600b9080519060200190611609929190613aaa565b5050565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614888565b60405180910390fd5b80915050919050565b600b80546116df90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461170b90614d51565b80156117585780601f1061172d57610100808354040283529160200191611758565b820191906000526020600020905b81548152906001019060200180831161173b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890614868565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182061291b565b73ffffffffffffffffffffffffffffffffffffffff1661183e611926565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614928565b60405180910390fd5b61189e6000612d8d565b565b6118a861291b565b73ffffffffffffffffffffffffffffffffffffffff166118c6611926565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614928565b60405180910390fd5b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195861291b565b73ffffffffffffffffffffffffffffffffffffffff16611976611926565b73ffffffffffffffffffffffffffffffffffffffff16146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390614928565b60405180910390fd5b601660006119da9190613b30565b8181601691906119eb929190613b51565b505050565b6060600180546119ff90614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614d51565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1615611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614948565b60405180910390fd5b6000611aef610fe6565b905060008211611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614a28565b60405180910390fd5b601254821115611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906148c8565b60405180910390fd5b6011548282611b889190614b86565b1115611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906148a8565b60405180910390fd5b611bd1611926565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f275760011515601460029054906101000a900460ff1615151415611eb957611c28336126de565b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614a08565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611cba9190614b86565b1115611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf2906147c8565b60405180910390fd5b60011515611d083361278a565b15151415611d615782601054611d1e9190614c0d565b341015611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906149a8565b60405180910390fd5b5b60001515611d6e3361278a565b15151415611eb75760011515611d8333611116565b15151415611ddc5782600f54611d999190614c0d565b341015611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd2906149a8565b60405180910390fd5b5b60001515611de933611116565b15151415611eb65760011515611dfe3361278a565b15151415611e575782601054611e149190614c0d565b341015611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d906149a8565b60405180910390fd5b5b60001515611e643361278a565b15151415611eb557611e7533611116565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614a08565b60405180910390fd5b5b5b5b505b60001515601460029054906101000a900460ff1615151415611f265781600e54611ee39190614c0d565b341015611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c906149a8565b60405180910390fd5b5b5b6000600190505b828111611fb257601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f8590614db4565b9190505550611f9f338284611f9a9190614b86565b612e53565b8080611faa90614db4565b915050611f2e565b505050565b611fc9611fc261291b565b8383612e71565b5050565b611fd561291b565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611926565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090614928565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b61207761207161291b565b83612a48565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad906149c8565b60405180910390fd5b6120c284848484612fde565b50505050565b601581815481106120d857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c805461211a90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461214690614d51565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b505050505081565b60606121a682612923565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614968565b60405180910390fd5b60001515601460019054906101000a900460ff161515141561229357600d805461220e90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461223a90614d51565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b505050505090506122ef565b600061229d61303a565b905060008151116122bd57604051806020016040528060008152506122eb565b806122c7846130cc565b600c6040516020016122db9392919061461c565b6040516020818303038152906040525b9150505b919050565b6122fc61291b565b73ffffffffffffffffffffffffffffffffffffffff1661231a611926565b73ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614928565b60405180910390fd5b8060138190555050565b60115481565b61238861291b565b73ffffffffffffffffffffffffffffffffffffffff166123a6611926565b73ffffffffffffffffffffffffffffffffffffffff16146123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f390614928565b60405180910390fd5b80600c9080519060200190612412929190613aaa565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b261291b565b73ffffffffffffffffffffffffffffffffffffffff166124d0611926565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614928565b60405180910390fd5b601560006125349190613b30565b818160159190612545929190613b51565b505050565b61255261291b565b73ffffffffffffffffffffffffffffffffffffffff16612570611926565b73ffffffffffffffffffffffffffffffffffffffff16146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614928565b60405180910390fd5b80600d90805190602001906125dc929190613aaa565b5050565b6125e861291b565b73ffffffffffffffffffffffffffffffffffffffff16612606611926565b73ffffffffffffffffffffffffffffffffffffffff161461265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390614928565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c390614768565b60405180910390fd5b6126d581612d8d565b50565b60105481565b6000600115156126ed33611116565b151514156126fe5760019050612785565b6001151561270b3361278a565b1515141561271c5760019050612785565b6000151561272933611116565b15151415612750576001151561273e3361278a565b1515141561274f5760019050612785565b5b6000151561275d33611116565b1515141561278457600015156127723361278a565b151514156127835760009050612785565b5b5b919050565b600080600090505b60168054905081101561282e578273ffffffffffffffffffffffffffffffffffffffff16601682815481106127ca576127c9614eea565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561281b576001915050612834565b808061282690614db4565b915050612792565b50600090505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061290457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061291457506129138261322d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0283611620565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a5382612923565b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614828565b60405180910390fd5b6000612a9d83611620565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612adf5750612ade8185612416565b5b80612b1d57508373ffffffffffffffffffffffffffffffffffffffff16612b0584610db5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b4682611620565b73ffffffffffffffffffffffffffffffffffffffff1614612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c03906147e8565b60405180910390fd5b612c17838383613297565b612c2260008261298f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190614c67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cc99190614b86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d888383836133ab565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e6d8282604051806020016040528060008152506133b0565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed790614808565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fd191906146eb565b60405180910390a3505050565b612fe9848484612b26565b612ff58484848461340b565b613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614748565b60405180910390fd5b50505050565b6060600b805461304990614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461307590614d51565b80156130c25780601f10613097576101008083540402835291602001916130c2565b820191906000526020600020905b8154815290600101906020018083116130a557829003601f168201915b5050505050905090565b60606000821415613114576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613228565b600082905060005b6000821461314657808061312f90614db4565b915050600a8261313f9190614bdc565b915061311c565b60008167ffffffffffffffff81111561316257613161614f19565b5b6040519080825280601f01601f1916602001820160405280156131945781602001600182028036833780820191505090505b5090505b60008514613221576001826131ad9190614c67565b9150600a856131bc9190614dfd565b60306131c89190614b86565b60f81b8183815181106131de576131dd614eea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561321a9190614bdc565b9450613198565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132a28383836135a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e5576132e0816135a7565b613324565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133235761332283826135f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613367576133628161375d565b6133a6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133a5576133a4828261382e565b5b5b505050565b505050565b6133ba83836138ad565b6133c7600084848461340b565b613406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fd90614748565b60405180910390fd5b505050565b600061342c8473ffffffffffffffffffffffffffffffffffffffff16613a87565b15613595578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261345561291b565b8786866040518563ffffffff1660e01b8152600401613477949392919061467d565b602060405180830381600087803b15801561349157600080fd5b505af19250505080156134c257506040513d601f19601f820116820180604052508101906134bf9190614017565b60015b613545573d80600081146134f2576040519150601f19603f3d011682016040523d82523d6000602084013e6134f7565b606091505b5060008151141561353d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353490614748565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061359a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135fd84611760565b6136079190614c67565b90506000600760008481526020019081526020016000205490508181146136ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137719190614c67565b90506000600960008481526020019081526020016000205490506000600883815481106137a1576137a0614eea565b5b9060005260206000200154905080600883815481106137c3576137c2614eea565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061381257613811614ebb565b5b6001900381819060005260206000200160009055905550505050565b600061383983611760565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561391d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613914906148e8565b60405180910390fd5b61392681612923565b15613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d906147a8565b60405180910390fd5b61397260008383613297565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c29190614b86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a83600083836133ab565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613ab690614d51565b90600052602060002090601f016020900481019282613ad85760008555613b1f565b82601f10613af157805160ff1916838001178555613b1f565b82800160010185558215613b1f579182015b82811115613b1e578251825591602001919060010190613b03565b5b509050613b2c9190613bf1565b5090565b5080546000825590600052602060002090810190613b4e9190613bf1565b50565b828054828255906000526020600020908101928215613be0579160200282015b82811115613bdf57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b71565b5b509050613bed9190613bf1565b5090565b5b80821115613c0a576000816000905550600101613bf2565b5090565b6000613c21613c1c84614a88565b614a63565b905082815260208101848484011115613c3d57613c3c614f57565b5b613c48848285614d0f565b509392505050565b6000613c63613c5e84614ab9565b614a63565b905082815260208101848484011115613c7f57613c7e614f57565b5b613c8a848285614d0f565b509392505050565b600081359050613ca1816155b5565b92915050565b60008083601f840112613cbd57613cbc614f4d565b5b8235905067ffffffffffffffff811115613cda57613cd9614f48565b5b602083019150836020820283011115613cf657613cf5614f52565b5b9250929050565b600081359050613d0c816155cc565b92915050565b600081359050613d21816155e3565b92915050565b600081519050613d36816155e3565b92915050565b600082601f830112613d5157613d50614f4d565b5b8135613d61848260208601613c0e565b91505092915050565b600082601f830112613d7f57613d7e614f4d565b5b8135613d8f848260208601613c50565b91505092915050565b600081359050613da7816155fa565b92915050565b600060208284031215613dc357613dc2614f61565b5b6000613dd184828501613c92565b91505092915050565b60008060408385031215613df157613df0614f61565b5b6000613dff85828601613c92565b9250506020613e1085828601613c92565b9150509250929050565b600080600060608486031215613e3357613e32614f61565b5b6000613e4186828701613c92565b9350506020613e5286828701613c92565b9250506040613e6386828701613d98565b9150509250925092565b60008060008060808587031215613e8757613e86614f61565b5b6000613e9587828801613c92565b9450506020613ea687828801613c92565b9350506040613eb787828801613d98565b925050606085013567ffffffffffffffff811115613ed857613ed7614f5c565b5b613ee487828801613d3c565b91505092959194509250565b60008060408385031215613f0757613f06614f61565b5b6000613f1585828601613c92565b9250506020613f2685828601613cfd565b9150509250929050565b60008060408385031215613f4757613f46614f61565b5b6000613f5585828601613c92565b9250506020613f6685828601613d98565b9150509250929050565b60008060208385031215613f8757613f86614f61565b5b600083013567ffffffffffffffff811115613fa557613fa4614f5c565b5b613fb185828601613ca7565b92509250509250929050565b600060208284031215613fd357613fd2614f61565b5b6000613fe184828501613cfd565b91505092915050565b60006020828403121561400057613fff614f61565b5b600061400e84828501613d12565b91505092915050565b60006020828403121561402d5761402c614f61565b5b600061403b84828501613d27565b91505092915050565b60006020828403121561405a57614059614f61565b5b600082013567ffffffffffffffff81111561407857614077614f5c565b5b61408484828501613d6a565b91505092915050565b6000602082840312156140a3576140a2614f61565b5b60006140b184828501613d98565b91505092915050565b60006140c683836145fe565b60208301905092915050565b6140db81614c9b565b82525050565b60006140ec82614b0f565b6140f68185614b3d565b935061410183614aea565b8060005b8381101561413257815161411988826140ba565b975061412483614b30565b925050600181019050614105565b5085935050505092915050565b61414881614cad565b82525050565b600061415982614b1a565b6141638185614b4e565b9350614173818560208601614d1e565b61417c81614f66565b840191505092915050565b600061419282614b25565b61419c8185614b6a565b93506141ac818560208601614d1e565b6141b581614f66565b840191505092915050565b60006141cb82614b25565b6141d58185614b7b565b93506141e5818560208601614d1e565b80840191505092915050565b600081546141fe81614d51565b6142088186614b7b565b94506001821660008114614223576001811461423457614267565b60ff19831686528186019350614267565b61423d85614afa565b60005b8381101561425f57815481890152600182019150602081019050614240565b838801955050505b50505092915050565b600061427d602b83614b6a565b915061428882614f77565b604082019050919050565b60006142a0603283614b6a565b91506142ab82614fc6565b604082019050919050565b60006142c3602683614b6a565b91506142ce82615015565b604082019050919050565b60006142e6602583614b6a565b91506142f182615064565b604082019050919050565b6000614309601c83614b6a565b9150614314826150b3565b602082019050919050565b600061432c601c83614b6a565b9150614337826150dc565b602082019050919050565b600061434f602483614b6a565b915061435a82615105565b604082019050919050565b6000614372601983614b6a565b915061437d82615154565b602082019050919050565b6000614395602c83614b6a565b91506143a08261517d565b604082019050919050565b60006143b8603883614b6a565b91506143c3826151cc565b604082019050919050565b60006143db602a83614b6a565b91506143e68261521b565b604082019050919050565b60006143fe602983614b6a565b91506144098261526a565b604082019050919050565b6000614421601683614b6a565b915061442c826152b9565b602082019050919050565b6000614444602483614b6a565b915061444f826152e2565b604082019050919050565b6000614467602083614b6a565b915061447282615331565b602082019050919050565b600061448a602c83614b6a565b91506144958261535a565b604082019050919050565b60006144ad602083614b6a565b91506144b8826153a9565b602082019050919050565b60006144d0601683614b6a565b91506144db826153d2565b602082019050919050565b60006144f3602f83614b6a565b91506144fe826153fb565b604082019050919050565b6000614516602183614b6a565b91506145218261544a565b604082019050919050565b6000614539600083614b5f565b915061454482615499565b600082019050919050565b600061455c601283614b6a565b91506145678261549c565b602082019050919050565b600061457f603183614b6a565b915061458a826154c5565b604082019050919050565b60006145a2602c83614b6a565b91506145ad82615514565b604082019050919050565b60006145c5601783614b6a565b91506145d082615563565b602082019050919050565b60006145e8601b83614b6a565b91506145f38261558c565b602082019050919050565b61460781614d05565b82525050565b61461681614d05565b82525050565b600061462882866141c0565b915061463482856141c0565b915061464082846141f1565b9150819050949350505050565b60006146588261452c565b9150819050919050565b600060208201905061467760008301846140d2565b92915050565b600060808201905061469260008301876140d2565b61469f60208301866140d2565b6146ac604083018561460d565b81810360608301526146be818461414e565b905095945050505050565b600060208201905081810360008301526146e381846140e1565b905092915050565b6000602082019050614700600083018461413f565b92915050565b600060208201905081810360008301526147208184614187565b905092915050565b6000602082019050818103600083015261474181614270565b9050919050565b6000602082019050818103600083015261476181614293565b9050919050565b60006020820190508181036000830152614781816142b6565b9050919050565b600060208201905081810360008301526147a1816142d9565b9050919050565b600060208201905081810360008301526147c1816142fc565b9050919050565b600060208201905081810360008301526147e18161431f565b9050919050565b6000602082019050818103600083015261480181614342565b9050919050565b6000602082019050818103600083015261482181614365565b9050919050565b6000602082019050818103600083015261484181614388565b9050919050565b60006020820190508181036000830152614861816143ab565b9050919050565b60006020820190508181036000830152614881816143ce565b9050919050565b600060208201905081810360008301526148a1816143f1565b9050919050565b600060208201905081810360008301526148c181614414565b9050919050565b600060208201905081810360008301526148e181614437565b9050919050565b600060208201905081810360008301526149018161445a565b9050919050565b600060208201905081810360008301526149218161447d565b9050919050565b60006020820190508181036000830152614941816144a0565b9050919050565b60006020820190508181036000830152614961816144c3565b9050919050565b60006020820190508181036000830152614981816144e6565b9050919050565b600060208201905081810360008301526149a181614509565b9050919050565b600060208201905081810360008301526149c18161454f565b9050919050565b600060208201905081810360008301526149e181614572565b9050919050565b60006020820190508181036000830152614a0181614595565b9050919050565b60006020820190508181036000830152614a21816145b8565b9050919050565b60006020820190508181036000830152614a41816145db565b9050919050565b6000602082019050614a5d600083018461460d565b92915050565b6000614a6d614a7e565b9050614a798282614d83565b919050565b6000604051905090565b600067ffffffffffffffff821115614aa357614aa2614f19565b5b614aac82614f66565b9050602081019050919050565b600067ffffffffffffffff821115614ad457614ad3614f19565b5b614add82614f66565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b9182614d05565b9150614b9c83614d05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bd157614bd0614e2e565b5b828201905092915050565b6000614be782614d05565b9150614bf283614d05565b925082614c0257614c01614e5d565b5b828204905092915050565b6000614c1882614d05565b9150614c2383614d05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c5c57614c5b614e2e565b5b828202905092915050565b6000614c7282614d05565b9150614c7d83614d05565b925082821015614c9057614c8f614e2e565b5b828203905092915050565b6000614ca682614ce5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d3c578082015181840152602081019050614d21565b83811115614d4b576000848401525b50505050565b60006002820490506001821680614d6957607f821691505b60208210811415614d7d57614d7c614e8c565b5b50919050565b614d8c82614f66565b810181811067ffffffffffffffff82111715614dab57614daa614f19565b5b80604052505050565b6000614dbf82614d05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614df257614df1614e2e565b5b600182019050919050565b6000614e0882614d05565b9150614e1383614d05565b925082614e2357614e22614e5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6155be81614c9b565b81146155c957600080fd5b50565b6155d581614cad565b81146155e057600080fd5b50565b6155ec81614cb9565b81146155f757600080fd5b50565b61560381614d05565b811461560e57600080fd5b5056fea2646970667358221220825c01d94fc3cb3764bf1b942a69f61784be20d1fa30d937a83a1d851d472da364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d46616e637920447261676f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000246440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50634c4873563151505831636b4d76704534656b4e7073394d3959414a54784d7572634d33515765315564592f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58703277704a48633634637865505a6332354d7658796f634e51454a36684a356e45464e37614e56686263572f00000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80636c0360eb11610190578063ba7d2c76116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b42578063f95589a614610b6b578063faa9c3d614610b96578063fb875b8114610bd3576102e4565b8063e985e9c514610ab3578063edec5f2714610af0578063f2c4ce1e14610b19576102e4565b8063ba7d2c76146109a3578063c6682862146109ce578063c87b56dd146109f9578063d0eb26b014610a36578063d5abeb0114610a5f578063da3ef23f14610a8a576102e4565b806395d89b4111610149578063a22cb46511610123578063a22cb465146108fd578063a475b5dd14610926578063b88d4fde1461093d578063ba4e5c4914610966576102e4565b806395d89b411461088b5780639c70b512146108b6578063a0712d68146108e1576102e4565b80636c0360eb1461078f57806370a08231146107ba578063715018a6146107f75780637f00c7a61461080e5780638da5cb5b146108375780638e1b828c14610862576102e4565b80633af32abf1161024f57806344a0d68a1161020857806351830227116101e257806351830227146106d357806355f804b3146106fe5780635c975abb146107275780636352211e14610752576102e4565b806344a0d68a146106305780634ce0e9b4146106595780634f6ccce714610696576102e4565b80633af32abf1461052f5780633c9527641461056c5780633ccfd60b1461059557806342842e0e1461059f578063430b21d6146105c8578063438b6300146105f3576102e4565b806313faede6116102a157806313faede61461040b57806318160ddd1461043657806318cae26914610461578063239c70ae1461049e57806323b872dd146104c95780632f745c59146104f2576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613fea565b610c10565b60405161031d91906146eb565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613fbd565b610c8a565b005b34801561035b57600080fd5b50610364610d23565b6040516103719190614706565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061408d565b610db5565b6040516103ae9190614662565b60405180910390f35b3480156103c357600080fd5b506103cc610e3a565b6040516103d99190614706565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613f30565b610ec8565b005b34801561041757600080fd5b50610420610fe0565b60405161042d9190614a48565b60405180910390f35b34801561044257600080fd5b5061044b610fe6565b6040516104589190614a48565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613dad565b610ff3565b6040516104959190614a48565b60405180910390f35b3480156104aa57600080fd5b506104b361100b565b6040516104c09190614a48565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613e1a565b611011565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613f30565b611071565b6040516105269190614a48565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613dad565b611116565b60405161056391906146eb565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613fbd565b6111c5565b005b61059d61125e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613e1a565b61135a565b005b3480156105d457600080fd5b506105dd61137a565b6040516105ea9190614a48565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190613dad565b611380565b60405161062791906146c9565b60405180910390f35b34801561063c57600080fd5b506106576004803603810190610652919061408d565b61142e565b005b34801561066557600080fd5b50610680600480360381019061067b919061408d565b6114b4565b60405161068d9190614662565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b8919061408d565b6114f3565b6040516106ca9190614a48565b60405180910390f35b3480156106df57600080fd5b506106e8611564565b6040516106f591906146eb565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190614044565b611577565b005b34801561073357600080fd5b5061073c61160d565b60405161074991906146eb565b60405180910390f35b34801561075e57600080fd5b506107796004803603810190610774919061408d565b611620565b6040516107869190614662565b60405180910390f35b34801561079b57600080fd5b506107a46116d2565b6040516107b19190614706565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190613dad565b611760565b6040516107ee9190614a48565b60405180910390f35b34801561080357600080fd5b5061080c611818565b005b34801561081a57600080fd5b506108356004803603810190610830919061408d565b6118a0565b005b34801561084357600080fd5b5061084c611926565b6040516108599190614662565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613f70565b611950565b005b34801561089757600080fd5b506108a06119f0565b6040516108ad9190614706565b60405180910390f35b3480156108c257600080fd5b506108cb611a82565b6040516108d891906146eb565b60405180910390f35b6108fb60048036038101906108f6919061408d565b611a95565b005b34801561090957600080fd5b50610924600480360381019061091f9190613ef0565b611fb7565b005b34801561093257600080fd5b5061093b611fcd565b005b34801561094957600080fd5b50610964600480360381019061095f9190613e6d565b612066565b005b34801561097257600080fd5b5061098d6004803603810190610988919061408d565b6120c8565b60405161099a9190614662565b60405180910390f35b3480156109af57600080fd5b506109b8612107565b6040516109c59190614a48565b60405180910390f35b3480156109da57600080fd5b506109e361210d565b6040516109f09190614706565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061408d565b61219b565b604051610a2d9190614706565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a58919061408d565b6122f4565b005b348015610a6b57600080fd5b50610a7461237a565b604051610a819190614a48565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190614044565b612380565b005b348015610abf57600080fd5b50610ada6004803603810190610ad59190613dda565b612416565b604051610ae791906146eb565b60405180910390f35b348015610afc57600080fd5b50610b176004803603810190610b129190613f70565b6124aa565b005b348015610b2557600080fd5b50610b406004803603810190610b3b9190614044565b61254a565b005b348015610b4e57600080fd5b50610b696004803603810190610b649190613dad565b6125e0565b005b348015610b7757600080fd5b50610b806126d8565b604051610b8d9190614a48565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb89190613dad565b6126de565b604051610bca91906146eb565b60405180910390f35b348015610bdf57600080fd5b50610bfa6004803603810190610bf59190613dad565b61278a565b604051610c0791906146eb565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c835750610c8282612839565b5b9050919050565b610c9261291b565b73ffffffffffffffffffffffffffffffffffffffff16610cb0611926565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90614928565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610d3290614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90614d51565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b6000610dc082612923565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614908565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610e4790614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7390614d51565b8015610ec05780601f10610e9557610100808354040283529160200191610ec0565b820191906000526020600020905b815481529060010190602001808311610ea357829003601f168201915b505050505081565b6000610ed382611620565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614988565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6361291b565b73ffffffffffffffffffffffffffffffffffffffff161480610f925750610f9181610f8c61291b565b612416565b5b610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890614848565b60405180910390fd5b610fdb838361298f565b505050565b600e5481565b6000600880549050905090565b60176020528060005260406000206000915090505481565b60125481565b61102261101c61291b565b82612a48565b611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906149c8565b60405180910390fd5b61106c838383612b26565b505050565b600061107c83611760565b82106110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490614728565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b6015805490508110156111ba578273ffffffffffffffffffffffffffffffffffffffff166015828154811061115657611155614eea565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156111a75760019150506111c0565b80806111b290614db4565b91505061111e565b50600090505b919050565b6111cd61291b565b73ffffffffffffffffffffffffffffffffffffffff166111eb611926565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890614928565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b61126661291b565b73ffffffffffffffffffffffffffffffffffffffff16611284611926565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190614928565b60405180910390fd5b60006112e4611926565b73ffffffffffffffffffffffffffffffffffffffff16476040516113079061464d565b60006040518083038185875af1925050503d8060008114611344576040519150601f19603f3d011682016040523d82523d6000602084013e611349565b606091505b505090508061135757600080fd5b50565b61137583838360405180602001604052806000815250612066565b505050565b600f5481565b6060600061138d83611760565b905060008167ffffffffffffffff8111156113ab576113aa614f19565b5b6040519080825280602002602001820160405280156113d95781602001602082028036833780820191505090505b50905060005b82811015611423576113f18582611071565b82828151811061140457611403614eea565b5b602002602001018181525050808061141b90614db4565b9150506113df565b508092505050919050565b61143661291b565b73ffffffffffffffffffffffffffffffffffffffff16611454611926565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614928565b60405180910390fd5b80600e8190555050565b601681815481106114c457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114fd610fe6565b821061153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906149e8565b60405180910390fd5b6008828154811061155257611551614eea565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b61157f61291b565b73ffffffffffffffffffffffffffffffffffffffff1661159d611926565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614928565b60405180910390fd5b80600b9080519060200190611609929190613aaa565b5050565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614888565b60405180910390fd5b80915050919050565b600b80546116df90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461170b90614d51565b80156117585780601f1061172d57610100808354040283529160200191611758565b820191906000526020600020905b81548152906001019060200180831161173b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890614868565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182061291b565b73ffffffffffffffffffffffffffffffffffffffff1661183e611926565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614928565b60405180910390fd5b61189e6000612d8d565b565b6118a861291b565b73ffffffffffffffffffffffffffffffffffffffff166118c6611926565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614928565b60405180910390fd5b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195861291b565b73ffffffffffffffffffffffffffffffffffffffff16611976611926565b73ffffffffffffffffffffffffffffffffffffffff16146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390614928565b60405180910390fd5b601660006119da9190613b30565b8181601691906119eb929190613b51565b505050565b6060600180546119ff90614d51565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614d51565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1615611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614948565b60405180910390fd5b6000611aef610fe6565b905060008211611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614a28565b60405180910390fd5b601254821115611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906148c8565b60405180910390fd5b6011548282611b889190614b86565b1115611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906148a8565b60405180910390fd5b611bd1611926565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f275760011515601460029054906101000a900460ff1615151415611eb957611c28336126de565b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614a08565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611cba9190614b86565b1115611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf2906147c8565b60405180910390fd5b60011515611d083361278a565b15151415611d615782601054611d1e9190614c0d565b341015611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906149a8565b60405180910390fd5b5b60001515611d6e3361278a565b15151415611eb75760011515611d8333611116565b15151415611ddc5782600f54611d999190614c0d565b341015611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd2906149a8565b60405180910390fd5b5b60001515611de933611116565b15151415611eb65760011515611dfe3361278a565b15151415611e575782601054611e149190614c0d565b341015611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d906149a8565b60405180910390fd5b5b60001515611e643361278a565b15151415611eb557611e7533611116565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614a08565b60405180910390fd5b5b5b5b505b60001515601460029054906101000a900460ff1615151415611f265781600e54611ee39190614c0d565b341015611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c906149a8565b60405180910390fd5b5b5b6000600190505b828111611fb257601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f8590614db4565b9190505550611f9f338284611f9a9190614b86565b612e53565b8080611faa90614db4565b915050611f2e565b505050565b611fc9611fc261291b565b8383612e71565b5050565b611fd561291b565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611926565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090614928565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b61207761207161291b565b83612a48565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad906149c8565b60405180910390fd5b6120c284848484612fde565b50505050565b601581815481106120d857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c805461211a90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461214690614d51565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b505050505081565b60606121a682612923565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614968565b60405180910390fd5b60001515601460019054906101000a900460ff161515141561229357600d805461220e90614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461223a90614d51565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b505050505090506122ef565b600061229d61303a565b905060008151116122bd57604051806020016040528060008152506122eb565b806122c7846130cc565b600c6040516020016122db9392919061461c565b6040516020818303038152906040525b9150505b919050565b6122fc61291b565b73ffffffffffffffffffffffffffffffffffffffff1661231a611926565b73ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614928565b60405180910390fd5b8060138190555050565b60115481565b61238861291b565b73ffffffffffffffffffffffffffffffffffffffff166123a6611926565b73ffffffffffffffffffffffffffffffffffffffff16146123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f390614928565b60405180910390fd5b80600c9080519060200190612412929190613aaa565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b261291b565b73ffffffffffffffffffffffffffffffffffffffff166124d0611926565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614928565b60405180910390fd5b601560006125349190613b30565b818160159190612545929190613b51565b505050565b61255261291b565b73ffffffffffffffffffffffffffffffffffffffff16612570611926565b73ffffffffffffffffffffffffffffffffffffffff16146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614928565b60405180910390fd5b80600d90805190602001906125dc929190613aaa565b5050565b6125e861291b565b73ffffffffffffffffffffffffffffffffffffffff16612606611926565b73ffffffffffffffffffffffffffffffffffffffff161461265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390614928565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c390614768565b60405180910390fd5b6126d581612d8d565b50565b60105481565b6000600115156126ed33611116565b151514156126fe5760019050612785565b6001151561270b3361278a565b1515141561271c5760019050612785565b6000151561272933611116565b15151415612750576001151561273e3361278a565b1515141561274f5760019050612785565b5b6000151561275d33611116565b1515141561278457600015156127723361278a565b151514156127835760009050612785565b5b5b919050565b600080600090505b60168054905081101561282e578273ffffffffffffffffffffffffffffffffffffffff16601682815481106127ca576127c9614eea565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561281b576001915050612834565b808061282690614db4565b915050612792565b50600090505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061290457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061291457506129138261322d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0283611620565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a5382612923565b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614828565b60405180910390fd5b6000612a9d83611620565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612adf5750612ade8185612416565b5b80612b1d57508373ffffffffffffffffffffffffffffffffffffffff16612b0584610db5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b4682611620565b73ffffffffffffffffffffffffffffffffffffffff1614612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c03906147e8565b60405180910390fd5b612c17838383613297565b612c2260008261298f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190614c67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cc99190614b86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d888383836133ab565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e6d8282604051806020016040528060008152506133b0565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed790614808565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fd191906146eb565b60405180910390a3505050565b612fe9848484612b26565b612ff58484848461340b565b613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614748565b60405180910390fd5b50505050565b6060600b805461304990614d51565b80601f016020809104026020016040519081016040528092919081815260200182805461307590614d51565b80156130c25780601f10613097576101008083540402835291602001916130c2565b820191906000526020600020905b8154815290600101906020018083116130a557829003601f168201915b5050505050905090565b60606000821415613114576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613228565b600082905060005b6000821461314657808061312f90614db4565b915050600a8261313f9190614bdc565b915061311c565b60008167ffffffffffffffff81111561316257613161614f19565b5b6040519080825280601f01601f1916602001820160405280156131945781602001600182028036833780820191505090505b5090505b60008514613221576001826131ad9190614c67565b9150600a856131bc9190614dfd565b60306131c89190614b86565b60f81b8183815181106131de576131dd614eea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561321a9190614bdc565b9450613198565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132a28383836135a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e5576132e0816135a7565b613324565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133235761332283826135f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613367576133628161375d565b6133a6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133a5576133a4828261382e565b5b5b505050565b505050565b6133ba83836138ad565b6133c7600084848461340b565b613406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fd90614748565b60405180910390fd5b505050565b600061342c8473ffffffffffffffffffffffffffffffffffffffff16613a87565b15613595578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261345561291b565b8786866040518563ffffffff1660e01b8152600401613477949392919061467d565b602060405180830381600087803b15801561349157600080fd5b505af19250505080156134c257506040513d601f19601f820116820180604052508101906134bf9190614017565b60015b613545573d80600081146134f2576040519150601f19603f3d011682016040523d82523d6000602084013e6134f7565b606091505b5060008151141561353d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353490614748565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061359a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135fd84611760565b6136079190614c67565b90506000600760008481526020019081526020016000205490508181146136ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137719190614c67565b90506000600960008481526020019081526020016000205490506000600883815481106137a1576137a0614eea565b5b9060005260206000200154905080600883815481106137c3576137c2614eea565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061381257613811614ebb565b5b6001900381819060005260206000200160009055905550505050565b600061383983611760565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561391d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613914906148e8565b60405180910390fd5b61392681612923565b15613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d906147a8565b60405180910390fd5b61397260008383613297565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c29190614b86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a83600083836133ab565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613ab690614d51565b90600052602060002090601f016020900481019282613ad85760008555613b1f565b82601f10613af157805160ff1916838001178555613b1f565b82800160010185558215613b1f579182015b82811115613b1e578251825591602001919060010190613b03565b5b509050613b2c9190613bf1565b5090565b5080546000825590600052602060002090810190613b4e9190613bf1565b50565b828054828255906000526020600020908101928215613be0579160200282015b82811115613bdf57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b71565b5b509050613bed9190613bf1565b5090565b5b80821115613c0a576000816000905550600101613bf2565b5090565b6000613c21613c1c84614a88565b614a63565b905082815260208101848484011115613c3d57613c3c614f57565b5b613c48848285614d0f565b509392505050565b6000613c63613c5e84614ab9565b614a63565b905082815260208101848484011115613c7f57613c7e614f57565b5b613c8a848285614d0f565b509392505050565b600081359050613ca1816155b5565b92915050565b60008083601f840112613cbd57613cbc614f4d565b5b8235905067ffffffffffffffff811115613cda57613cd9614f48565b5b602083019150836020820283011115613cf657613cf5614f52565b5b9250929050565b600081359050613d0c816155cc565b92915050565b600081359050613d21816155e3565b92915050565b600081519050613d36816155e3565b92915050565b600082601f830112613d5157613d50614f4d565b5b8135613d61848260208601613c0e565b91505092915050565b600082601f830112613d7f57613d7e614f4d565b5b8135613d8f848260208601613c50565b91505092915050565b600081359050613da7816155fa565b92915050565b600060208284031215613dc357613dc2614f61565b5b6000613dd184828501613c92565b91505092915050565b60008060408385031215613df157613df0614f61565b5b6000613dff85828601613c92565b9250506020613e1085828601613c92565b9150509250929050565b600080600060608486031215613e3357613e32614f61565b5b6000613e4186828701613c92565b9350506020613e5286828701613c92565b9250506040613e6386828701613d98565b9150509250925092565b60008060008060808587031215613e8757613e86614f61565b5b6000613e9587828801613c92565b9450506020613ea687828801613c92565b9350506040613eb787828801613d98565b925050606085013567ffffffffffffffff811115613ed857613ed7614f5c565b5b613ee487828801613d3c565b91505092959194509250565b60008060408385031215613f0757613f06614f61565b5b6000613f1585828601613c92565b9250506020613f2685828601613cfd565b9150509250929050565b60008060408385031215613f4757613f46614f61565b5b6000613f5585828601613c92565b9250506020613f6685828601613d98565b9150509250929050565b60008060208385031215613f8757613f86614f61565b5b600083013567ffffffffffffffff811115613fa557613fa4614f5c565b5b613fb185828601613ca7565b92509250509250929050565b600060208284031215613fd357613fd2614f61565b5b6000613fe184828501613cfd565b91505092915050565b60006020828403121561400057613fff614f61565b5b600061400e84828501613d12565b91505092915050565b60006020828403121561402d5761402c614f61565b5b600061403b84828501613d27565b91505092915050565b60006020828403121561405a57614059614f61565b5b600082013567ffffffffffffffff81111561407857614077614f5c565b5b61408484828501613d6a565b91505092915050565b6000602082840312156140a3576140a2614f61565b5b60006140b184828501613d98565b91505092915050565b60006140c683836145fe565b60208301905092915050565b6140db81614c9b565b82525050565b60006140ec82614b0f565b6140f68185614b3d565b935061410183614aea565b8060005b8381101561413257815161411988826140ba565b975061412483614b30565b925050600181019050614105565b5085935050505092915050565b61414881614cad565b82525050565b600061415982614b1a565b6141638185614b4e565b9350614173818560208601614d1e565b61417c81614f66565b840191505092915050565b600061419282614b25565b61419c8185614b6a565b93506141ac818560208601614d1e565b6141b581614f66565b840191505092915050565b60006141cb82614b25565b6141d58185614b7b565b93506141e5818560208601614d1e565b80840191505092915050565b600081546141fe81614d51565b6142088186614b7b565b94506001821660008114614223576001811461423457614267565b60ff19831686528186019350614267565b61423d85614afa565b60005b8381101561425f57815481890152600182019150602081019050614240565b838801955050505b50505092915050565b600061427d602b83614b6a565b915061428882614f77565b604082019050919050565b60006142a0603283614b6a565b91506142ab82614fc6565b604082019050919050565b60006142c3602683614b6a565b91506142ce82615015565b604082019050919050565b60006142e6602583614b6a565b91506142f182615064565b604082019050919050565b6000614309601c83614b6a565b9150614314826150b3565b602082019050919050565b600061432c601c83614b6a565b9150614337826150dc565b602082019050919050565b600061434f602483614b6a565b915061435a82615105565b604082019050919050565b6000614372601983614b6a565b915061437d82615154565b602082019050919050565b6000614395602c83614b6a565b91506143a08261517d565b604082019050919050565b60006143b8603883614b6a565b91506143c3826151cc565b604082019050919050565b60006143db602a83614b6a565b91506143e68261521b565b604082019050919050565b60006143fe602983614b6a565b91506144098261526a565b604082019050919050565b6000614421601683614b6a565b915061442c826152b9565b602082019050919050565b6000614444602483614b6a565b915061444f826152e2565b604082019050919050565b6000614467602083614b6a565b915061447282615331565b602082019050919050565b600061448a602c83614b6a565b91506144958261535a565b604082019050919050565b60006144ad602083614b6a565b91506144b8826153a9565b602082019050919050565b60006144d0601683614b6a565b91506144db826153d2565b602082019050919050565b60006144f3602f83614b6a565b91506144fe826153fb565b604082019050919050565b6000614516602183614b6a565b91506145218261544a565b604082019050919050565b6000614539600083614b5f565b915061454482615499565b600082019050919050565b600061455c601283614b6a565b91506145678261549c565b602082019050919050565b600061457f603183614b6a565b915061458a826154c5565b604082019050919050565b60006145a2602c83614b6a565b91506145ad82615514565b604082019050919050565b60006145c5601783614b6a565b91506145d082615563565b602082019050919050565b60006145e8601b83614b6a565b91506145f38261558c565b602082019050919050565b61460781614d05565b82525050565b61461681614d05565b82525050565b600061462882866141c0565b915061463482856141c0565b915061464082846141f1565b9150819050949350505050565b60006146588261452c565b9150819050919050565b600060208201905061467760008301846140d2565b92915050565b600060808201905061469260008301876140d2565b61469f60208301866140d2565b6146ac604083018561460d565b81810360608301526146be818461414e565b905095945050505050565b600060208201905081810360008301526146e381846140e1565b905092915050565b6000602082019050614700600083018461413f565b92915050565b600060208201905081810360008301526147208184614187565b905092915050565b6000602082019050818103600083015261474181614270565b9050919050565b6000602082019050818103600083015261476181614293565b9050919050565b60006020820190508181036000830152614781816142b6565b9050919050565b600060208201905081810360008301526147a1816142d9565b9050919050565b600060208201905081810360008301526147c1816142fc565b9050919050565b600060208201905081810360008301526147e18161431f565b9050919050565b6000602082019050818103600083015261480181614342565b9050919050565b6000602082019050818103600083015261482181614365565b9050919050565b6000602082019050818103600083015261484181614388565b9050919050565b60006020820190508181036000830152614861816143ab565b9050919050565b60006020820190508181036000830152614881816143ce565b9050919050565b600060208201905081810360008301526148a1816143f1565b9050919050565b600060208201905081810360008301526148c181614414565b9050919050565b600060208201905081810360008301526148e181614437565b9050919050565b600060208201905081810360008301526149018161445a565b9050919050565b600060208201905081810360008301526149218161447d565b9050919050565b60006020820190508181036000830152614941816144a0565b9050919050565b60006020820190508181036000830152614961816144c3565b9050919050565b60006020820190508181036000830152614981816144e6565b9050919050565b600060208201905081810360008301526149a181614509565b9050919050565b600060208201905081810360008301526149c18161454f565b9050919050565b600060208201905081810360008301526149e181614572565b9050919050565b60006020820190508181036000830152614a0181614595565b9050919050565b60006020820190508181036000830152614a21816145b8565b9050919050565b60006020820190508181036000830152614a41816145db565b9050919050565b6000602082019050614a5d600083018461460d565b92915050565b6000614a6d614a7e565b9050614a798282614d83565b919050565b6000604051905090565b600067ffffffffffffffff821115614aa357614aa2614f19565b5b614aac82614f66565b9050602081019050919050565b600067ffffffffffffffff821115614ad457614ad3614f19565b5b614add82614f66565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b9182614d05565b9150614b9c83614d05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bd157614bd0614e2e565b5b828201905092915050565b6000614be782614d05565b9150614bf283614d05565b925082614c0257614c01614e5d565b5b828204905092915050565b6000614c1882614d05565b9150614c2383614d05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c5c57614c5b614e2e565b5b828202905092915050565b6000614c7282614d05565b9150614c7d83614d05565b925082821015614c9057614c8f614e2e565b5b828203905092915050565b6000614ca682614ce5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d3c578082015181840152602081019050614d21565b83811115614d4b576000848401525b50505050565b60006002820490506001821680614d6957607f821691505b60208210811415614d7d57614d7c614e8c565b5b50919050565b614d8c82614f66565b810181811067ffffffffffffffff82111715614dab57614daa614f19565b5b80604052505050565b6000614dbf82614d05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614df257614df1614e2e565b5b600182019050919050565b6000614e0882614d05565b9150614e1383614d05565b925082614e2357614e22614e5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6155be81614c9b565b81146155c957600080fd5b50565b6155d581614cad565b81146155e057600080fd5b50565b6155ec81614cb9565b81146155f757600080fd5b50565b61560381614d05565b811461560e57600080fd5b5056fea2646970667358221220825c01d94fc3cb3764bf1b942a69f61784be20d1fa30d937a83a1d851d472da364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d46616e637920447261676f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000246440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50634c4873563151505831636b4d76704534656b4e7073394d3959414a54784d7572634d33515765315564592f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58703277704a48633634637865505a6332354d7658796f634e51454a36684a356e45464e37614e56686263572f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fancy Dragons
Arg [1] : _symbol (string): FD
Arg [2] : _initBaseURI (string): ipfs://QmPcLHsV1QPX1ckMvpE4ekNps9M9YAJTxMurcM3QWe1UdY/
Arg [3] : _initNotRevealedUri (string): ipfs://QmXp2wpJHc64cxePZc25MvXyocNQEJ6hJ5nEFN7aNVhbcW/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 46616e637920447261676f6e7300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4644000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d50634c4873563151505831636b4d76704534656b4e7073
Arg [10] : 394d3959414a54784d7572634d33515765315564592f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d58703277704a48633634637865505a6332354d7658796f
Arg [13] : 634e51454a36684a356e45464e37614e56686263572f00000000000000000000


Deployed Bytecode Sourcemap

45621:6118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39392:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51098:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26211:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27771:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45777:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27294:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45810:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40032:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46233:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45963:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28521:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39700:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48970:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51179:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51591:145;;;:::i;:::-;;28931:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45847:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49472:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50530:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46187:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40222:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50738:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46042:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25905:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45709:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25635:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4769:103;;;;;;;;;;;;;:::i;:::-;;50616:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4118:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51431:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26380:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46106:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46688:1711;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28064:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50345:65;;;;;;;;;;;;;:::i;:::-;;29187:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46145:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46000;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45735;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49826:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50418:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45927:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50842:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28290:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51282:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50972:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5027:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45891:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48411:549;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49215:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39392:224;39494:4;39533:35;39518:50;;;:11;:50;;;;:90;;;;39572:36;39596:11;39572:23;:36::i;:::-;39518:90;39511:97;;39392:224;;;:::o;51098:73::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51159:6:::1;51150;;:15;;;;;;;;;;;;;;;;;;51098:73:::0;:::o;26211:100::-;26265:13;26298:5;26291:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26211:100;:::o;27771:221::-;27847:7;27875:16;27883:7;27875;:16::i;:::-;27867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27960:15;:24;27976:7;27960:24;;;;;;;;;;;;;;;;;;;;;27953:31;;27771:221;;;:::o;45777:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27294:411::-;27375:13;27391:23;27406:7;27391:14;:23::i;:::-;27375:39;;27439:5;27433:11;;:2;:11;;;;27425:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27533:5;27517:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27542:37;27559:5;27566:12;:10;:12::i;:::-;27542:16;:37::i;:::-;27517:62;27495:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27676:21;27685:2;27689:7;27676:8;:21::i;:::-;27364:341;27294:411;;:::o;45810:32::-;;;;:::o;40032:113::-;40093:7;40120:10;:17;;;;40113:24;;40032:113;:::o;46233:55::-;;;;;;;;;;;;;;;;;:::o;45963:32::-;;;;:::o;28521:339::-;28716:41;28735:12;:10;:12::i;:::-;28749:7;28716:18;:41::i;:::-;28708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28824:28;28834:4;28840:2;28844:7;28824:9;:28::i;:::-;28521:339;;;:::o;39700:256::-;39797:7;39833:23;39850:5;39833:16;:23::i;:::-;39825:5;:31;39817:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:12;:19;39935:5;39922:19;;;;;;;;;;;;;;;:26;39942:5;39922:26;;;;;;;;;;;;39915:33;;39700:256;;;;:::o;48970:239::-;49029:4;49047:6;49056:1;49047:10;;49042:143;49063:20;:27;;;;49059:1;:31;49042:143;;;49137:5;49110:32;;:20;49131:1;49110:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;49106:72;;;49164:4;49157:11;;;;;49106:72;49092:3;;;;;:::i;:::-;;;;49042:143;;;;49198:5;49191:12;;48970:239;;;;:::o;51179:95::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51262:6:::1;51244:15;;:24;;;;;;;;;;;;;;;;;;51179:95:::0;:::o;51591:145::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51644:7:::1;51665;:5;:7::i;:::-;51657:21;;51686;51657:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51643:69;;;51727:2;51719:11;;;::::0;::::1;;51636:100;51591:145::o:0;28931:185::-;29069:39;29086:4;29092:2;29096:7;29069:39;;;;;;;;;;;;:16;:39::i;:::-;28931:185;;;:::o;45847:39::-;;;;:::o;49472:348::-;49547:16;49575:23;49601:17;49611:6;49601:9;:17::i;:::-;49575:43;;49625:25;49667:15;49653:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49625:58;;49695:9;49690:103;49710:15;49706:1;:19;49690:103;;;49755:30;49775:6;49783:1;49755:19;:30::i;:::-;49741:8;49750:1;49741:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49727:3;;;;;:::i;:::-;;;;49690:103;;;;49806:8;49799:15;;;;49472:348;;;:::o;50530:80::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50596:8:::1;50589:4;:15;;;;50530:80:::0;:::o;46187:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40222:233::-;40297:7;40333:30;:28;:30::i;:::-;40325:5;:38;40317:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40430:10;40441:5;40430:17;;;;;;;;:::i;:::-;;;;;;;;;;40423:24;;40222:233;;;:::o;46073:28::-;;;;;;;;;;;;;:::o;50738:98::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50819:11:::1;50809:7;:21;;;;;;;;;;;;:::i;:::-;;50738:98:::0;:::o;46042:26::-;;;;;;;;;;;;;:::o;25905:239::-;25977:7;25997:13;26013:7;:16;26021:7;26013:16;;;;;;;;;;;;;;;;;;;;;25997:32;;26065:1;26048:19;;:5;:19;;;;26040:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26131:5;26124:12;;;25905:239;;;:::o;45709:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25635:208::-;25707:7;25752:1;25735:19;;:5;:19;;;;25727:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25819:9;:16;25829:5;25819:16;;;;;;;;;;;;;;;;25812:23;;25635:208;;;:::o;4769:103::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4834:30:::1;4861:1;4834:18;:30::i;:::-;4769:103::o:0;50616:116::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50709:17:::1;50693:13;:33;;;;50616:116:::0;:::o;4118:87::-;4164:7;4191:6;;;;;;;;;;;4184:13;;4118:87;:::o;51431:156::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51517:24:::1;;51510:31;;;;:::i;:::-;51575:6;;51548:24;:33;;;;;;;:::i;:::-;;51431:156:::0;;:::o;26380:104::-;26436:13;26469:7;26462:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26380:104;:::o;46106:34::-;;;;;;;;;;;;;:::o;46688:1711::-;46754:6;;;;;;;;;;;46753:7;46745:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;46794:14;46811:13;:11;:13::i;:::-;46794:30;;46853:1;46839:11;:15;46831:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46916:13;;46901:11;:28;;46893:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47009:9;;46994:11;46985:6;:20;;;;:::i;:::-;:33;;46977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:7;:5;:7::i;:::-;47058:21;;:10;:21;;;47054:1190;;47114:4;47095:23;;:15;;;;;;;;;;;:23;;;47092:1017;;;47145:32;47166:10;47145:20;:32::i;:::-;47137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47220:24;47247:20;:32;47268:10;47247:32;;;;;;;;;;;;;;;;47220:59;;47336:18;;47321:11;47302:16;:30;;;;:::i;:::-;:52;;47294:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;47436:4;47403:37;;:29;47421:10;47403:17;:29::i;:::-;:37;;;47400:133;;;47487:11;47478:6;;:20;;;;:::i;:::-;47465:9;:33;;47457:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47400:133;47581:5;47548:38;;:29;47566:10;47548:17;:29::i;:::-;:38;;;47545:551;;;47633:4;47604:33;;:25;47618:10;47604:13;:25::i;:::-;:33;;;47601:130;;;47685:11;47671;;:25;;;;:::i;:::-;47658:9;:38;;47650:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47601:130;47775:5;47746:34;;:25;47760:10;47746:13;:25::i;:::-;:34;;;47743:340;;;47832:4;47799:37;;:29;47817:10;47799:17;:29::i;:::-;:37;;;47796:133;;;47883:11;47874:6;;:20;;;;:::i;:::-;47861:9;:33;;47853:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47796:133;47978:5;47945:38;;:29;47963:10;47945:17;:29::i;:::-;:38;;;47942:130;;;48007:25;48021:10;48007:13;:25::i;:::-;47999:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47942:130;47743:340;47545:551;47120:989;47092:1017;48141:5;48122:24;;:15;;;;;;;;;;;:24;;;48119:118;;;48191:11;48184:4;;:18;;;;:::i;:::-;48171:9;:31;;48163:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48119:118;47054:1190;48261:9;48273:1;48261:13;;48256:138;48281:11;48276:1;:16;48256:138;;48310:20;:32;48331:10;48310:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;48353:33;48363:10;48384:1;48375:6;:10;;;;:::i;:::-;48353:9;:33::i;:::-;48294:3;;;;;:::i;:::-;;;;48256:138;;;;46738:1661;46688:1711;:::o;28064:155::-;28159:52;28178:12;:10;:12::i;:::-;28192:8;28202;28159:18;:52::i;:::-;28064:155;;:::o;50345:65::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50400:4:::1;50389:8;;:15;;;;;;;;;;;;;;;;;;50345:65::o:0;29187:328::-;29362:41;29381:12;:10;:12::i;:::-;29395:7;29362:18;:41::i;:::-;29354:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29468:39;29482:4;29488:2;29492:7;29501:5;29468:13;:39::i;:::-;29187:328;;;;:::o;46145:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46000:::-;;;;:::o;45735:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49826:497::-;49924:13;49965:16;49973:7;49965;:16::i;:::-;49949:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50074:5;50062:17;;:8;;;;;;;;;;;:17;;;50059:62;;;50099:14;50092:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50059:62;50129:28;50160:10;:8;:10::i;:::-;50129:41;;50215:1;50190:14;50184:28;:32;:133;;;;;;;;;;;;;;;;;50252:14;50268:18;:7;:16;:18::i;:::-;50288:13;50235:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50184:133;50177:140;;;49826:497;;;;:::o;50418:104::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50510:6:::1;50489:18;:27;;;;50418:104:::0;:::o;45927:31::-;;;;:::o;50842:122::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50941:17:::1;50925:13;:33;;;;;;;;;;;;:::i;:::-;;50842:122:::0;:::o;28290:164::-;28387:4;28411:18;:25;28430:5;28411:25;;;;;;;;;;;;;;;:35;28437:8;28411:35;;;;;;;;;;;;;;;;;;;;;;;;;28404:42;;28290:164;;;;:::o;51282:144::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:20:::1;;51357:27;;;;:::i;:::-;51414:6;;51391:20;:29;;;;;;;:::i;:::-;;51282:144:::0;;:::o;50972:120::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51071:15:::1;51054:14;:32;;;;;;;;;;;;:::i;:::-;;50972:120:::0;:::o;5027:201::-;4349:12;:10;:12::i;:::-;4338:23;;:7;:5;:7::i;:::-;:23;;;4330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5136:1:::1;5116:22;;:8;:22;;;;5108:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5192:28;5211:8;5192:18;:28::i;:::-;5027:201:::0;:::o;45891:31::-;;;;:::o;48411:549::-;48477:4;48522;48493:33;;:25;48507:10;48493:13;:25::i;:::-;:33;;;48490:75;;;48549:4;48542:11;;;;48490:75;48609:4;48576:37;;:29;48594:10;48576:17;:29::i;:::-;:37;;;48573:79;;;48636:4;48629:11;;;;48573:79;48695:5;48666:34;;:25;48680:10;48666:13;:25::i;:::-;:34;;;48663:139;;;48747:4;48714:37;;:29;48732:10;48714:17;:29::i;:::-;:37;;;48711:79;;;48774:4;48767:11;;;;48711:79;48663:139;48843:5;48814:34;;:25;48828:10;48814:13;:25::i;:::-;:34;;;48811:141;;;48895:5;48862:38;;:29;48880:10;48862:17;:29::i;:::-;:38;;;48859:81;;;48923:5;48916:12;;;;48859:81;48811:141;48411:549;;;;:::o;49215:251::-;49278:4;49296:6;49305:1;49296:10;;49291:151;49312:24;:31;;;;49308:1;:35;49291:151;;;49394:5;49363:36;;:24;49388:1;49363:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:36;;;49359:76;;;49421:4;49414:11;;;;;49359:76;49345:3;;;;;:::i;:::-;;;;49291:151;;;;49455:5;49448:12;;49215:251;;;;:::o;25266:305::-;25368:4;25420:25;25405:40;;;:11;:40;;;;:105;;;;25477:33;25462:48;;;:11;:48;;;;25405:105;:158;;;;25527:36;25551:11;25527:23;:36::i;:::-;25405:158;25385:178;;25266:305;;;:::o;2842:98::-;2895:7;2922:10;2915:17;;2842:98;:::o;31025:127::-;31090:4;31142:1;31114:30;;:7;:16;31122:7;31114:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31107:37;;31025:127;;;:::o;35171:174::-;35273:2;35246:15;:24;35262:7;35246:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35329:7;35325:2;35291:46;;35300:23;35315:7;35300:14;:23::i;:::-;35291:46;;;;;;;;;;;;35171:174;;:::o;31319:348::-;31412:4;31437:16;31445:7;31437;:16::i;:::-;31429:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31513:13;31529:23;31544:7;31529:14;:23::i;:::-;31513:39;;31582:5;31571:16;;:7;:16;;;:52;;;;31591:32;31608:5;31615:7;31591:16;:32::i;:::-;31571:52;:87;;;;31651:7;31627:31;;:20;31639:7;31627:11;:20::i;:::-;:31;;;31571:87;31563:96;;;31319:348;;;;:::o;34428:625::-;34587:4;34560:31;;:23;34575:7;34560:14;:23::i;:::-;:31;;;34552:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34666:1;34652:16;;:2;:16;;;;34644:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34722:39;34743:4;34749:2;34753:7;34722:20;:39::i;:::-;34826:29;34843:1;34847:7;34826:8;:29::i;:::-;34887:1;34868:9;:15;34878:4;34868:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34916:1;34899:9;:13;34909:2;34899:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34947:2;34928:7;:16;34936:7;34928:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34986:7;34982:2;34967:27;;34976:4;34967:27;;;;;;;;;;;;35007:38;35027:4;35033:2;35037:7;35007:19;:38::i;:::-;34428:625;;;:::o;5388:191::-;5462:16;5481:6;;;;;;;;;;;5462:25;;5507:8;5498:6;;:17;;;;;;;;;;;;;;;;;;5562:8;5531:40;;5552:8;5531:40;;;;;;;;;;;;5451:128;5388:191;:::o;32009:110::-;32085:26;32095:2;32099:7;32085:26;;;;;;;;;;;;:9;:26::i;:::-;32009:110;;:::o;35487:315::-;35642:8;35633:17;;:5;:17;;;;35625:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35729:8;35691:18;:25;35710:5;35691:25;;;;;;;;;;;;;;;:35;35717:8;35691:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35775:8;35753:41;;35768:5;35753:41;;;35785:8;35753:41;;;;;;:::i;:::-;;;;;;;;35487:315;;;:::o;30397:::-;30554:28;30564:4;30570:2;30574:7;30554:9;:28::i;:::-;30601:48;30624:4;30630:2;30634:7;30643:5;30601:22;:48::i;:::-;30593:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30397:315;;;;:::o;46567:102::-;46627:13;46656:7;46649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46567:102;:::o;404:723::-;460:13;690:1;681:5;:10;677:53;;;708:10;;;;;;;;;;;;;;;;;;;;;677:53;740:12;755:5;740:20;;771:14;796:78;811:1;803:4;:9;796:78;;829:8;;;;;:::i;:::-;;;;860:2;852:10;;;;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884:39;;934:154;950:1;941:5;:10;934:154;;978:1;968:11;;;;;:::i;:::-;;;1045:2;1037:5;:10;;;;:::i;:::-;1024:2;:24;;;;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1074:2;1065:11;;;;;:::i;:::-;;;934:154;;;1112:6;1098:21;;;;;404:723;;;;:::o;16925:157::-;17010:4;17049:25;17034:40;;;:11;:40;;;;17027:47;;16925:157;;;:::o;41068:589::-;41212:45;41239:4;41245:2;41249:7;41212:26;:45::i;:::-;41290:1;41274:18;;:4;:18;;;41270:187;;;41309:40;41341:7;41309:31;:40::i;:::-;41270:187;;;41379:2;41371:10;;:4;:10;;;41367:90;;41398:47;41431:4;41437:7;41398:32;:47::i;:::-;41367:90;41270:187;41485:1;41471:16;;:2;:16;;;41467:183;;;41504:45;41541:7;41504:36;:45::i;:::-;41467:183;;;41577:4;41571:10;;:2;:10;;;41567:83;;41598:40;41626:2;41630:7;41598:27;:40::i;:::-;41567:83;41467:183;41068:589;;;:::o;38249:125::-;;;;:::o;32346:321::-;32476:18;32482:2;32486:7;32476:5;:18::i;:::-;32527:54;32558:1;32562:2;32566:7;32575:5;32527:22;:54::i;:::-;32505:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32346:321;;;:::o;36367:799::-;36522:4;36543:15;:2;:13;;;:15::i;:::-;36539:620;;;36595:2;36579:36;;;36616:12;:10;:12::i;:::-;36630:4;36636:7;36645:5;36579:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36575:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36838:1;36821:6;:13;:18;36817:272;;;36864:60;;;;;;;;;;:::i;:::-;;;;;;;;36817:272;37039:6;37033:13;37024:6;37020:2;37016:15;37009:38;36575:529;36712:41;;;36702:51;;;:6;:51;;;;36695:58;;;;;36539:620;37143:4;37136:11;;36367:799;;;;;;;:::o;37738:126::-;;;;:::o;42380:164::-;42484:10;:17;;;;42457:15;:24;42473:7;42457:24;;;;;;;;;;;:44;;;;42512:10;42528:7;42512:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42380:164;:::o;43171:988::-;43437:22;43487:1;43462:22;43479:4;43462:16;:22::i;:::-;:26;;;;:::i;:::-;43437:51;;43499:18;43520:17;:26;43538:7;43520:26;;;;;;;;;;;;43499:47;;43667:14;43653:10;:28;43649:328;;43698:19;43720:12;:18;43733:4;43720:18;;;;;;;;;;;;;;;:34;43739:14;43720:34;;;;;;;;;;;;43698:56;;43804:11;43771:12;:18;43784:4;43771:18;;;;;;;;;;;;;;;:30;43790:10;43771:30;;;;;;;;;;;:44;;;;43921:10;43888:17;:30;43906:11;43888:30;;;;;;;;;;;:43;;;;43683:294;43649:328;44073:17;:26;44091:7;44073:26;;;;;;;;;;;44066:33;;;44117:12;:18;44130:4;44117:18;;;;;;;;;;;;;;;:34;44136:14;44117:34;;;;;;;;;;;44110:41;;;43252:907;;43171:988;;:::o;44454:1079::-;44707:22;44752:1;44732:10;:17;;;;:21;;;;:::i;:::-;44707:46;;44764:18;44785:15;:24;44801:7;44785:24;;;;;;;;;;;;44764:45;;45136:19;45158:10;45169:14;45158:26;;;;;;;;:::i;:::-;;;;;;;;;;45136:48;;45222:11;45197:10;45208;45197:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45333:10;45302:15;:28;45318:11;45302:28;;;;;;;;;;;:41;;;;45474:15;:24;45490:7;45474:24;;;;;;;;;;;45467:31;;;45509:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44525:1008;;;44454:1079;:::o;41958:221::-;42043:14;42060:20;42077:2;42060:16;:20::i;:::-;42043:37;;42118:7;42091:12;:16;42104:2;42091:16;;;;;;;;;;;;;;;:24;42108:6;42091:24;;;;;;;;;;;:34;;;;42165:6;42136:17;:26;42154:7;42136:26;;;;;;;;;;;:35;;;;42032:147;41958:221;;:::o;33003:439::-;33097:1;33083:16;;:2;:16;;;;33075:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33156:16;33164:7;33156;:16::i;:::-;33155:17;33147:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33218:45;33247:1;33251:2;33255:7;33218:20;:45::i;:::-;33293:1;33276:9;:13;33286:2;33276:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33324:2;33305:7;:16;33313:7;33305:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33369:7;33365:2;33344:33;;33361:1;33344:33;;;;;;;;;;;;33390:44;33418:1;33422:2;33426:7;33390:19;:44::i;:::-;33003:439;;:::o;6819:326::-;6879:4;7136:1;7114:7;:19;;;:23;7107:30;;6819:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:398::-;19428:3;19449:83;19530:1;19525:3;19449:83;:::i;:::-;19442:90;;19541:93;19630:3;19541:93;:::i;:::-;19659:1;19654:3;19650:11;19643:18;;19269:398;;;:::o;19673:366::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:108::-;21610:24;21628:5;21610:24;:::i;:::-;21605:3;21598:37;21533:108;;:::o;21647:118::-;21734:24;21752:5;21734:24;:::i;:::-;21729:3;21722:37;21647:118;;:::o;21771:589::-;21996:3;22018:95;22109:3;22100:6;22018:95;:::i;:::-;22011:102;;22130:95;22221:3;22212:6;22130:95;:::i;:::-;22123:102;;22242:92;22330:3;22321:6;22242:92;:::i;:::-;22235:99;;22351:3;22344:10;;21771:589;;;;;;:::o;22366:379::-;22550:3;22572:147;22715:3;22572:147;:::i;:::-;22565:154;;22736:3;22729:10;;22366:379;;;:::o;22751:222::-;22844:4;22882:2;22871:9;22867:18;22859:26;;22895:71;22963:1;22952:9;22948:17;22939:6;22895:71;:::i;:::-;22751:222;;;;:::o;22979:640::-;23174:4;23212:3;23201:9;23197:19;23189:27;;23226:71;23294:1;23283:9;23279:17;23270:6;23226:71;:::i;:::-;23307:72;23375:2;23364:9;23360:18;23351:6;23307:72;:::i;:::-;23389;23457:2;23446:9;23442:18;23433:6;23389:72;:::i;:::-;23508:9;23502:4;23498:20;23493:2;23482:9;23478:18;23471:48;23536:76;23607:4;23598:6;23536:76;:::i;:::-;23528:84;;22979:640;;;;;;;:::o;23625:373::-;23768:4;23806:2;23795:9;23791:18;23783:26;;23855:9;23849:4;23845:20;23841:1;23830:9;23826:17;23819:47;23883:108;23986:4;23977:6;23883:108;:::i;:::-;23875:116;;23625:373;;;;:::o;24004:210::-;24091:4;24129:2;24118:9;24114:18;24106:26;;24142:65;24204:1;24193:9;24189:17;24180:6;24142:65;:::i;:::-;24004:210;;;;:::o;24220:313::-;24333:4;24371:2;24360:9;24356:18;24348:26;;24420:9;24414:4;24410:20;24406:1;24395:9;24391:17;24384:47;24448:78;24521:4;24512:6;24448:78;:::i;:::-;24440:86;;24220:313;;;;:::o;24539:419::-;24705:4;24743:2;24732:9;24728:18;24720:26;;24792:9;24786:4;24782:20;24778:1;24767:9;24763:17;24756:47;24820:131;24946:4;24820:131;:::i;:::-;24812:139;;24539:419;;;:::o;24964:::-;25130:4;25168:2;25157:9;25153:18;25145:26;;25217:9;25211:4;25207:20;25203:1;25192:9;25188:17;25181:47;25245:131;25371:4;25245:131;:::i;:::-;25237:139;;24964:419;;;:::o;25389:::-;25555:4;25593:2;25582:9;25578:18;25570:26;;25642:9;25636:4;25632:20;25628:1;25617:9;25613:17;25606:47;25670:131;25796:4;25670:131;:::i;:::-;25662:139;;25389:419;;;:::o;25814:::-;25980:4;26018:2;26007:9;26003:18;25995:26;;26067:9;26061:4;26057:20;26053:1;26042:9;26038:17;26031:47;26095:131;26221:4;26095:131;:::i;:::-;26087:139;;25814:419;;;:::o;26239:::-;26405:4;26443:2;26432:9;26428:18;26420:26;;26492:9;26486:4;26482:20;26478:1;26467:9;26463:17;26456:47;26520:131;26646:4;26520:131;:::i;:::-;26512:139;;26239:419;;;:::o;26664:::-;26830:4;26868:2;26857:9;26853:18;26845:26;;26917:9;26911:4;26907:20;26903:1;26892:9;26888:17;26881:47;26945:131;27071:4;26945:131;:::i;:::-;26937:139;;26664:419;;;:::o;27089:::-;27255:4;27293:2;27282:9;27278:18;27270:26;;27342:9;27336:4;27332:20;27328:1;27317:9;27313:17;27306:47;27370:131;27496:4;27370:131;:::i;:::-;27362:139;;27089:419;;;:::o;27514:::-;27680:4;27718:2;27707:9;27703:18;27695:26;;27767:9;27761:4;27757:20;27753:1;27742:9;27738:17;27731:47;27795:131;27921:4;27795:131;:::i;:::-;27787:139;;27514:419;;;:::o;27939:::-;28105:4;28143:2;28132:9;28128:18;28120:26;;28192:9;28186:4;28182:20;28178:1;28167:9;28163:17;28156:47;28220:131;28346:4;28220:131;:::i;:::-;28212:139;;27939:419;;;:::o;28364:::-;28530:4;28568:2;28557:9;28553:18;28545:26;;28617:9;28611:4;28607:20;28603:1;28592:9;28588:17;28581:47;28645:131;28771:4;28645:131;:::i;:::-;28637:139;;28364:419;;;:::o;28789:::-;28955:4;28993:2;28982:9;28978:18;28970:26;;29042:9;29036:4;29032:20;29028:1;29017:9;29013:17;29006:47;29070:131;29196:4;29070:131;:::i;:::-;29062:139;;28789:419;;;:::o;29214:::-;29380:4;29418:2;29407:9;29403:18;29395:26;;29467:9;29461:4;29457:20;29453:1;29442:9;29438:17;29431:47;29495:131;29621:4;29495:131;:::i;:::-;29487:139;;29214:419;;;:::o;29639:::-;29805:4;29843:2;29832:9;29828:18;29820:26;;29892:9;29886:4;29882:20;29878:1;29867:9;29863:17;29856:47;29920:131;30046:4;29920:131;:::i;:::-;29912:139;;29639:419;;;:::o;30064:::-;30230:4;30268:2;30257:9;30253:18;30245:26;;30317:9;30311:4;30307:20;30303:1;30292:9;30288:17;30281:47;30345:131;30471:4;30345:131;:::i;:::-;30337:139;;30064:419;;;:::o;30489:::-;30655:4;30693:2;30682:9;30678:18;30670:26;;30742:9;30736:4;30732:20;30728:1;30717:9;30713:17;30706:47;30770:131;30896:4;30770:131;:::i;:::-;30762:139;;30489:419;;;:::o;30914:::-;31080:4;31118:2;31107:9;31103:18;31095:26;;31167:9;31161:4;31157:20;31153:1;31142:9;31138:17;31131:47;31195:131;31321:4;31195:131;:::i;:::-;31187:139;;30914:419;;;:::o;31339:::-;31505:4;31543:2;31532:9;31528:18;31520:26;;31592:9;31586:4;31582:20;31578:1;31567:9;31563:17;31556:47;31620:131;31746:4;31620:131;:::i;:::-;31612:139;;31339:419;;;:::o;31764:::-;31930:4;31968:2;31957:9;31953:18;31945:26;;32017:9;32011:4;32007:20;32003:1;31992:9;31988:17;31981:47;32045:131;32171:4;32045:131;:::i;:::-;32037:139;;31764:419;;;:::o;32189:::-;32355:4;32393:2;32382:9;32378:18;32370:26;;32442:9;32436:4;32432:20;32428:1;32417:9;32413:17;32406:47;32470:131;32596:4;32470:131;:::i;:::-;32462:139;;32189:419;;;:::o;32614:::-;32780:4;32818:2;32807:9;32803:18;32795:26;;32867:9;32861:4;32857:20;32853:1;32842:9;32838:17;32831:47;32895:131;33021:4;32895:131;:::i;:::-;32887:139;;32614:419;;;:::o;33039:::-;33205:4;33243:2;33232:9;33228:18;33220:26;;33292:9;33286:4;33282:20;33278:1;33267:9;33263:17;33256:47;33320:131;33446:4;33320:131;:::i;:::-;33312:139;;33039:419;;;:::o;33464:::-;33630:4;33668:2;33657:9;33653:18;33645:26;;33717:9;33711:4;33707:20;33703:1;33692:9;33688:17;33681:47;33745:131;33871:4;33745:131;:::i;:::-;33737:139;;33464:419;;;:::o;33889:::-;34055:4;34093:2;34082:9;34078:18;34070:26;;34142:9;34136:4;34132:20;34128:1;34117:9;34113:17;34106:47;34170:131;34296:4;34170:131;:::i;:::-;34162:139;;33889:419;;;:::o;34314:::-;34480:4;34518:2;34507:9;34503:18;34495:26;;34567:9;34561:4;34557:20;34553:1;34542:9;34538:17;34531:47;34595:131;34721:4;34595:131;:::i;:::-;34587:139;;34314:419;;;:::o;34739:::-;34905:4;34943:2;34932:9;34928:18;34920:26;;34992:9;34986:4;34982:20;34978:1;34967:9;34963:17;34956:47;35020:131;35146:4;35020:131;:::i;:::-;35012:139;;34739:419;;;:::o;35164:222::-;35257:4;35295:2;35284:9;35280:18;35272:26;;35308:71;35376:1;35365:9;35361:17;35352:6;35308:71;:::i;:::-;35164:222;;;;:::o;35392:129::-;35426:6;35453:20;;:::i;:::-;35443:30;;35482:33;35510:4;35502:6;35482:33;:::i;:::-;35392:129;;;:::o;35527:75::-;35560:6;35593:2;35587:9;35577:19;;35527:75;:::o;35608:307::-;35669:4;35759:18;35751:6;35748:30;35745:56;;;35781:18;;:::i;:::-;35745:56;35819:29;35841:6;35819:29;:::i;:::-;35811:37;;35903:4;35897;35893:15;35885:23;;35608:307;;;:::o;35921:308::-;35983:4;36073:18;36065:6;36062:30;36059:56;;;36095:18;;:::i;:::-;36059:56;36133:29;36155:6;36133:29;:::i;:::-;36125:37;;36217:4;36211;36207:15;36199:23;;35921:308;;;:::o;36235:132::-;36302:4;36325:3;36317:11;;36355:4;36350:3;36346:14;36338:22;;36235:132;;;:::o;36373:141::-;36422:4;36445:3;36437:11;;36468:3;36465:1;36458:14;36502:4;36499:1;36489:18;36481:26;;36373:141;;;:::o;36520:114::-;36587:6;36621:5;36615:12;36605:22;;36520:114;;;:::o;36640:98::-;36691:6;36725:5;36719:12;36709:22;;36640:98;;;:::o;36744:99::-;36796:6;36830:5;36824:12;36814:22;;36744:99;;;:::o;36849:113::-;36919:4;36951;36946:3;36942:14;36934:22;;36849:113;;;:::o;36968:184::-;37067:11;37101:6;37096:3;37089:19;37141:4;37136:3;37132:14;37117:29;;36968:184;;;;:::o;37158:168::-;37241:11;37275:6;37270:3;37263:19;37315:4;37310:3;37306:14;37291:29;;37158:168;;;;:::o;37332:147::-;37433:11;37470:3;37455:18;;37332:147;;;;:::o;37485:169::-;37569:11;37603:6;37598:3;37591:19;37643:4;37638:3;37634:14;37619:29;;37485:169;;;;:::o;37660:148::-;37762:11;37799:3;37784:18;;37660:148;;;;:::o;37814:305::-;37854:3;37873:20;37891:1;37873:20;:::i;:::-;37868:25;;37907:20;37925:1;37907:20;:::i;:::-;37902:25;;38061:1;37993:66;37989:74;37986:1;37983:81;37980:107;;;38067:18;;:::i;:::-;37980:107;38111:1;38108;38104:9;38097:16;;37814:305;;;;:::o;38125:185::-;38165:1;38182:20;38200:1;38182:20;:::i;:::-;38177:25;;38216:20;38234:1;38216:20;:::i;:::-;38211:25;;38255:1;38245:35;;38260:18;;:::i;:::-;38245:35;38302:1;38299;38295:9;38290:14;;38125:185;;;;:::o;38316:348::-;38356:7;38379:20;38397:1;38379:20;:::i;:::-;38374:25;;38413:20;38431:1;38413:20;:::i;:::-;38408:25;;38601:1;38533:66;38529:74;38526:1;38523:81;38518:1;38511:9;38504:17;38500:105;38497:131;;;38608:18;;:::i;:::-;38497:131;38656:1;38653;38649:9;38638:20;;38316:348;;;;:::o;38670:191::-;38710:4;38730:20;38748:1;38730:20;:::i;:::-;38725:25;;38764:20;38782:1;38764:20;:::i;:::-;38759:25;;38803:1;38800;38797:8;38794:34;;;38808:18;;:::i;:::-;38794:34;38853:1;38850;38846:9;38838:17;;38670:191;;;;:::o;38867:96::-;38904:7;38933:24;38951:5;38933:24;:::i;:::-;38922:35;;38867:96;;;:::o;38969:90::-;39003:7;39046:5;39039:13;39032:21;39021:32;;38969:90;;;:::o;39065:149::-;39101:7;39141:66;39134:5;39130:78;39119:89;;39065:149;;;:::o;39220:126::-;39257:7;39297:42;39290:5;39286:54;39275:65;;39220:126;;;:::o;39352:77::-;39389:7;39418:5;39407:16;;39352:77;;;:::o;39435:154::-;39519:6;39514:3;39509;39496:30;39581:1;39572:6;39567:3;39563:16;39556:27;39435:154;;;:::o;39595:307::-;39663:1;39673:113;39687:6;39684:1;39681:13;39673:113;;;39772:1;39767:3;39763:11;39757:18;39753:1;39748:3;39744:11;39737:39;39709:2;39706:1;39702:10;39697:15;;39673:113;;;39804:6;39801:1;39798:13;39795:101;;;39884:1;39875:6;39870:3;39866:16;39859:27;39795:101;39644:258;39595:307;;;:::o;39908:320::-;39952:6;39989:1;39983:4;39979:12;39969:22;;40036:1;40030:4;40026:12;40057:18;40047:81;;40113:4;40105:6;40101:17;40091:27;;40047:81;40175:2;40167:6;40164:14;40144:18;40141:38;40138:84;;;40194:18;;:::i;:::-;40138:84;39959:269;39908:320;;;:::o;40234:281::-;40317:27;40339:4;40317:27;:::i;:::-;40309:6;40305:40;40447:6;40435:10;40432:22;40411:18;40399:10;40396:34;40393:62;40390:88;;;40458:18;;:::i;:::-;40390:88;40498:10;40494:2;40487:22;40277:238;40234:281;;:::o;40521:233::-;40560:3;40583:24;40601:5;40583:24;:::i;:::-;40574:33;;40629:66;40622:5;40619:77;40616:103;;;40699:18;;:::i;:::-;40616:103;40746:1;40739:5;40735:13;40728:20;;40521:233;;;:::o;40760:176::-;40792:1;40809:20;40827:1;40809:20;:::i;:::-;40804:25;;40843:20;40861:1;40843:20;:::i;:::-;40838:25;;40882:1;40872:35;;40887:18;;:::i;:::-;40872:35;40928:1;40925;40921:9;40916:14;;40760:176;;;;:::o;40942:180::-;40990:77;40987:1;40980:88;41087:4;41084:1;41077:15;41111:4;41108:1;41101:15;41128:180;41176:77;41173:1;41166:88;41273:4;41270:1;41263:15;41297:4;41294:1;41287:15;41314:180;41362:77;41359:1;41352:88;41459:4;41456:1;41449:15;41483:4;41480:1;41473:15;41500:180;41548:77;41545:1;41538:88;41645:4;41642:1;41635:15;41669:4;41666:1;41659:15;41686:180;41734:77;41731:1;41724:88;41831:4;41828:1;41821:15;41855:4;41852:1;41845:15;41872:180;41920:77;41917:1;41910:88;42017:4;42014:1;42007:15;42041:4;42038:1;42031:15;42058:117;42167:1;42164;42157:12;42181:117;42290:1;42287;42280:12;42304:117;42413:1;42410;42403:12;42427:117;42536:1;42533;42526:12;42550:117;42659:1;42656;42649:12;42673:117;42782:1;42779;42772:12;42796:102;42837:6;42888:2;42884:7;42879:2;42872:5;42868:14;42864:28;42854:38;;42796:102;;;:::o;42904:230::-;43044:34;43040:1;43032:6;43028:14;43021:58;43113:13;43108:2;43100:6;43096:15;43089:38;42904:230;:::o;43140:237::-;43280:34;43276:1;43268:6;43264:14;43257:58;43349:20;43344:2;43336:6;43332:15;43325:45;43140:237;:::o;43383:225::-;43523:34;43519:1;43511:6;43507:14;43500:58;43592:8;43587:2;43579:6;43575:15;43568:33;43383:225;:::o;43614:224::-;43754:34;43750:1;43742:6;43738:14;43731:58;43823:7;43818:2;43810:6;43806:15;43799:32;43614:224;:::o;43844:178::-;43984:30;43980:1;43972:6;43968:14;43961:54;43844:178;:::o;44028:::-;44168:30;44164:1;44156:6;44152:14;44145:54;44028:178;:::o;44212:223::-;44352:34;44348:1;44340:6;44336:14;44329:58;44421:6;44416:2;44408:6;44404:15;44397:31;44212:223;:::o;44441:175::-;44581:27;44577:1;44569:6;44565:14;44558:51;44441:175;:::o;44622:231::-;44762:34;44758:1;44750:6;44746:14;44739:58;44831:14;44826:2;44818:6;44814:15;44807:39;44622:231;:::o;44859:243::-;44999:34;44995:1;44987:6;44983:14;44976:58;45068:26;45063:2;45055:6;45051:15;45044:51;44859:243;:::o;45108:229::-;45248:34;45244:1;45236:6;45232:14;45225:58;45317:12;45312:2;45304:6;45300:15;45293:37;45108:229;:::o;45343:228::-;45483:34;45479:1;45471:6;45467:14;45460:58;45552:11;45547:2;45539:6;45535:15;45528:36;45343:228;:::o;45577:172::-;45717:24;45713:1;45705:6;45701:14;45694:48;45577:172;:::o;45755:223::-;45895:34;45891:1;45883:6;45879:14;45872:58;45964:6;45959:2;45951:6;45947:15;45940:31;45755:223;:::o;45984:182::-;46124:34;46120:1;46112:6;46108:14;46101:58;45984:182;:::o;46172:231::-;46312:34;46308:1;46300:6;46296:14;46289:58;46381:14;46376:2;46368:6;46364:15;46357:39;46172:231;:::o;46409:182::-;46549:34;46545:1;46537:6;46533:14;46526:58;46409:182;:::o;46597:172::-;46737:24;46733:1;46725:6;46721:14;46714:48;46597:172;:::o;46775:234::-;46915:34;46911:1;46903:6;46899:14;46892:58;46984:17;46979:2;46971:6;46967:15;46960:42;46775:234;:::o;47015:220::-;47155:34;47151:1;47143:6;47139:14;47132:58;47224:3;47219:2;47211:6;47207:15;47200:28;47015:220;:::o;47241:114::-;;:::o;47361:168::-;47501:20;47497:1;47489:6;47485:14;47478:44;47361:168;:::o;47535:236::-;47675:34;47671:1;47663:6;47659:14;47652:58;47744:19;47739:2;47731:6;47727:15;47720:44;47535:236;:::o;47777:231::-;47917:34;47913:1;47905:6;47901:14;47894:58;47986:14;47981:2;47973:6;47969:15;47962:39;47777:231;:::o;48014:173::-;48154:25;48150:1;48142:6;48138:14;48131:49;48014:173;:::o;48193:177::-;48333:29;48329:1;48321:6;48317:14;48310:53;48193:177;:::o;48376:122::-;48449:24;48467:5;48449:24;:::i;:::-;48442:5;48439:35;48429:63;;48488:1;48485;48478:12;48429:63;48376:122;:::o;48504:116::-;48574:21;48589:5;48574:21;:::i;:::-;48567:5;48564:32;48554:60;;48610:1;48607;48600:12;48554:60;48504:116;:::o;48626:120::-;48698:23;48715:5;48698:23;:::i;:::-;48691:5;48688:34;48678:62;;48736:1;48733;48726:12;48678:62;48626:120;:::o;48752:122::-;48825:24;48843:5;48825:24;:::i;:::-;48818:5;48815:35;48805:63;;48864:1;48861;48854:12;48805:63;48752:122;:::o

Swarm Source

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