ETH Price: $3,435.91 (-1.27%)
Gas: 7 Gwei

Token

DAPEYC (DAPES)
 

Overview

Max Total Supply

812 DAPES

Holders

431

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
24 DAPES
0xda726cbfb714e318d5f11125bfd6b427ea991a34
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DAPEYC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-10
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts v4.4.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 tokenId);

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/DAPEYC.sol



pragma solidity >=0.8.0;



contract DAPEYC is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint;


  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.055 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 3;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  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 mintDape(uint256 _mintAmount) public payable {
    require(!paused, "The contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "You need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "You've exceeded the max mint amount for this session");
    require(supply.add( _mintAmount) <= maxSupply, "Max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount.add(_mintAmount) <= nftPerAddressLimit, "Max NFT per address exceeded");

        }

       
       require(msg.value >= cost.mul(_mintAmount), "Insufficient funds");

    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply.add(i) );
    }
  }
  
  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 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 giftDape(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "Need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply.add(_mintAmount) <= maxSupply, "Max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[destination]++;
            _safeMint(destination, supply.add(i));
        }
    }


  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 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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"giftDape","outputs":[],"stateMutability":"nonpayable","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":[],"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":"mintDape","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":"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":"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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003c1565b5066c3663566a58000600e55610d05600f55600a60105560036011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550348015620000cb57600080fd5b50604051620059b2380380620059b28339818101604052810190620000f19190620004e3565b838381600090805190602001906200010b929190620003c1565b50806001908051906020019062000124929190620003c1565b505050620001476200013b6200017360201b60201c565b6200017b60201b60201c565b62000158826200024160201b60201c565b6200016981620002ec60201b60201c565b5050505062000759565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002516200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002776200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c790620005f5565b60405180910390fd5b80600b9080519060200190620002e8929190620003c1565b5050565b620002fc6200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003226200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037290620005f5565b60405180910390fd5b80600d908051906020019062000393929190620003c1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003cf90620006c5565b90600052602060002090601f016020900481019282620003f357600085556200043f565b82601f106200040e57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043e57825182559160200191906001019062000421565b5b5090506200044e919062000452565b5090565b5b808211156200046d57600081600090555060010162000453565b5090565b60006200048862000482846200064b565b62000617565b905082815260208101848484011115620004a157600080fd5b620004ae8482856200068f565b509392505050565b600082601f830112620004c857600080fd5b8151620004da84826020860162000471565b91505092915050565b60008060008060808587031215620004fa57600080fd5b600085015167ffffffffffffffff8111156200051557600080fd5b6200052387828801620004b6565b945050602085015167ffffffffffffffff8111156200054157600080fd5b6200054f87828801620004b6565b935050604085015167ffffffffffffffff8111156200056d57600080fd5b6200057b87828801620004b6565b925050606085015167ffffffffffffffff8111156200059957600080fd5b620005a787828801620004b6565b91505092959194509250565b6000620005c26020836200067e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200061081620005b3565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064157620006406200072a565b5b8060405250919050565b600067ffffffffffffffff8211156200066957620006686200072a565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620006af57808201518184015260208101905062000692565b83811115620006bf576000848401525b50505050565b60006002820490506001821680620006de57607f821691505b60208210811415620006f557620006f4620006fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61524980620007696000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610990578063da3ef23f146109bb578063e985e9c5146109e4578063edec5f2714610a21578063f2c4ce1e14610a4a578063f2fde38b14610a735761027d565b8063b88d4fde1461086e578063ba4e5c4914610897578063ba7d2c76146108d4578063c6682862146108ff578063c87b56dd1461092a578063d0eb26b0146109675761027d565b80638da5cb5b116101135780638da5cb5b1461079157806395d89b41146107bc5780639c70b512146107e7578063a22cb46514610812578063a475b5dd1461083b578063b00dab25146108525761027d565b80636352211e146106ac5780636c0360eb146106e957806370a0823114610714578063715018a6146107515780637f00c7a6146107685761027d565b806323b872dd116101f3578063438b6300116101ac578063438b63001461058a57806344a0d68a146105c75780634f6ccce7146105f0578063518302271461062d57806355f804b3146106585780635c975abb146106815761027d565b806323b872dd1461048b5780632f745c59146104b45780633af32abf146104f15780633c9527641461052e5780633ccfd60b1461055757806342842e0e146105615761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a45780631619ca9b146103cf57806318160ddd146103f857806318cae26914610423578063239c70ae146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d3f565b610a9c565b6040516102b691906149ae565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613d16565b610b16565b005b3480156102f457600080fd5b506102fd610baf565b60405161030a91906149c9565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613dd2565b610c41565b6040516103479190614925565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b60405161037291906149c9565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613c95565b610d54565b005b3480156103b057600080fd5b506103b9610e6c565b6040516103c69190614d2b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfb565b610e72565b005b34801561040457600080fd5b5061040d61102c565b60405161041a9190614d2b565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613b2a565b611039565b6040516104579190614d2b565b60405180910390f35b34801561046c57600080fd5b50610475611051565b6040516104829190614d2b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190613b8f565b611057565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613c95565b6110b7565b6040516104e89190614d2b565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613b2a565b61115c565b60405161052591906149ae565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613d16565b611231565b005b61055f6112ca565b005b34801561056d57600080fd5b5061058860048036038101906105839190613b8f565b6113c6565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613b2a565b6113e6565b6040516105be919061498c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613dd2565b6114e0565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613dd2565b611566565b6040516106249190614d2b565b60405180910390f35b34801561063957600080fd5b506106426115fd565b60405161064f91906149ae565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613d91565b611610565b005b34801561068d57600080fd5b506106966116a6565b6040516106a391906149ae565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613dd2565b6116b9565b6040516106e09190614925565b60405180910390f35b3480156106f557600080fd5b506106fe61176b565b60405161070b91906149c9565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613b2a565b6117f9565b6040516107489190614d2b565b60405180910390f35b34801561075d57600080fd5b506107666118b1565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613dd2565b611939565b005b34801561079d57600080fd5b506107a66119bf565b6040516107b39190614925565b60405180910390f35b3480156107c857600080fd5b506107d16119e9565b6040516107de91906149c9565b60405180910390f35b3480156107f357600080fd5b506107fc611a7b565b60405161080991906149ae565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613c59565b611a8e565b005b34801561084757600080fd5b50610850611aa4565b005b61086c60048036038101906108679190613dd2565b611b3d565b005b34801561087a57600080fd5b5061089560048036038101906108909190613bde565b611ea2565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613dd2565b611f04565b6040516108cb9190614925565b60405180910390f35b3480156108e057600080fd5b506108e9611f43565b6040516108f69190614d2b565b60405180910390f35b34801561090b57600080fd5b50610914611f49565b60405161092191906149c9565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613dd2565b611fd7565b60405161095e91906149c9565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613dd2565b612130565b005b34801561099c57600080fd5b506109a56121b6565b6040516109b29190614d2b565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613d91565b6121bc565b005b3480156109f057600080fd5b50610a0b6004803603810190610a069190613b53565b612252565b604051610a1891906149ae565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613cd1565b6122e6565b005b348015610a5657600080fd5b50610a716004803603810190610a6c9190613d91565b612386565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613b2a565b61241c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f5750610b0e82612514565b5b9050919050565b610b1e6125f6565b73ffffffffffffffffffffffffffffffffffffffff16610b3c6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990614beb565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610bbe9061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea9061503e565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826125fe565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614bcb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd39061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff9061503e565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b505050505081565b6000610d5f826116b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614c6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610def6125f6565b73ffffffffffffffffffffffffffffffffffffffff161480610e1e5750610e1d81610e186125f6565b612252565b5b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614b2b565b60405180910390fd5b610e67838361266a565b505050565b600e5481565b610e7a6125f6565b73ffffffffffffffffffffffffffffffffffffffff16610e986119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614beb565b60405180910390fd5b60008211610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890614ceb565b60405180910390fd5b6000610f3b61102c565b9050600f54610f53848361272390919063ffffffff16565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90614b8b565b60405180910390fd5b6000600190505b83811161102657601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ff290615070565b91905055506110138361100e838561272390919063ffffffff16565b612739565b808061101e90615070565b915050610f9b565b50505050565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b6110686110626125f6565b82612757565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90614c8b565b60405180910390fd5b6110b2838383612835565b505050565b60006110c2836117f9565b8210611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906149eb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611226578273ffffffffffffffffffffffffffffffffffffffff16601382815481106111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561121357600191505061122c565b808061121e90615070565b915050611164565b50600090505b919050565b6112396125f6565b73ffffffffffffffffffffffffffffffffffffffff166112576119bf565b73ffffffffffffffffffffffffffffffffffffffff16146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490614beb565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6112d26125f6565b73ffffffffffffffffffffffffffffffffffffffff166112f06119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614beb565b60405180910390fd5b60006113506119bf565b73ffffffffffffffffffffffffffffffffffffffff164760405161137390614910565b60006040518083038185875af1925050503d80600081146113b0576040519150601f19603f3d011682016040523d82523d6000602084013e6113b5565b606091505b50509050806113c357600080fd5b50565b6113e183838360405180602001604052806000815250611ea2565b505050565b606060006113f3836117f9565b905060008167ffffffffffffffff811115611437577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114655781602001602082028036833780820191505090505b50905060005b828110156114d55761147d85826110b7565b8282815181106114b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114cd90615070565b91505061146b565b508092505050919050565b6114e86125f6565b73ffffffffffffffffffffffffffffffffffffffff166115066119bf565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614beb565b60405180910390fd5b80600e8190555050565b600061157061102c565b82106115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614cab565b60405180910390fd5b600882815481106115eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6116186125f6565b73ffffffffffffffffffffffffffffffffffffffff166116366119bf565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614beb565b60405180910390fd5b80600b90805190602001906116a2929190613843565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614b6b565b60405180910390fd5b80915050919050565b600b80546117789061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546117a49061503e565b80156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614b4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118b96125f6565b73ffffffffffffffffffffffffffffffffffffffff166118d76119bf565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614beb565b60405180910390fd5b6119376000612a91565b565b6119416125f6565b73ffffffffffffffffffffffffffffffffffffffff1661195f6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614beb565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f89061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a249061503e565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611aa0611a996125f6565b8383612b57565b5050565b611aac6125f6565b73ffffffffffffffffffffffffffffffffffffffff16611aca6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790614beb565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b601260009054906101000a900460ff1615611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614a2b565b60405180910390fd5b6000611b9761102c565b905060008211611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614ccb565b60405180910390fd5b601054821115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890614d0b565b60405180910390fd5b600f54611c37838361272390919063ffffffff16565b1115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90614b8b565b60405180910390fd5b611c806119bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e0b5760011515601260029054906101000a900460ff1615151415611db357611cd73361115c565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614b0b565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601154611d70848361272390919063ffffffff16565b1115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890614c4b565b60405180910390fd5b505b611dc882600e54612cc490919063ffffffff16565b341015611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190614aeb565b60405180910390fd5b5b6000600190505b828111611e9d57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e6990615070565b9190505550611e8a33611e85838561272390919063ffffffff16565b612739565b8080611e9590615070565b915050611e12565b505050565b611eb3611ead6125f6565b83612757565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990614c8b565b60405180910390fd5b611efe84848484612cda565b50505050565b60138181548110611f1457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611f569061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f829061503e565b8015611fcf5780601f10611fa457610100808354040283529160200191611fcf565b820191906000526020600020905b815481529060010190602001808311611fb257829003601f168201915b505050505081565b6060611fe2826125fe565b612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890614c2b565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156120cf57600d805461204a9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546120769061503e565b80156120c35780601f10612098576101008083540402835291602001916120c3565b820191906000526020600020905b8154815290600101906020018083116120a657829003601f168201915b5050505050905061212b565b60006120d9612d36565b905060008151116120f95760405180602001604052806000815250612127565b8061210384612dc8565b600c604051602001612117939291906148df565b6040516020818303038152906040525b9150505b919050565b6121386125f6565b73ffffffffffffffffffffffffffffffffffffffff166121566119bf565b73ffffffffffffffffffffffffffffffffffffffff16146121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614beb565b60405180910390fd5b8060118190555050565b600f5481565b6121c46125f6565b73ffffffffffffffffffffffffffffffffffffffff166121e26119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614beb565b60405180910390fd5b80600c908051906020019061224e929190613843565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ee6125f6565b73ffffffffffffffffffffffffffffffffffffffff1661230c6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614beb565b60405180910390fd5b6013600061237091906138c9565b8181601391906123819291906138ea565b505050565b61238e6125f6565b73ffffffffffffffffffffffffffffffffffffffff166123ac6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614beb565b60405180910390fd5b80600d9080519060200190612418929190613843565b5050565b6124246125f6565b73ffffffffffffffffffffffffffffffffffffffff166124426119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614beb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614a4b565b60405180910390fd5b61251181612a91565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125ef57506125ee82612f75565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126dd836116b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836127319190614e73565b905092915050565b612753828260405180602001604052806000815250612fdf565b5050565b6000612762826125fe565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614acb565b60405180910390fd5b60006127ac836116b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061281b57508373ffffffffffffffffffffffffffffffffffffffff1661280384610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b8061282c575061282b8185612252565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612855826116b9565b73ffffffffffffffffffffffffffffffffffffffff16146128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a290614c0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614a8b565b60405180910390fd5b61292683838361303a565b61293160008261266a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129819190614f54565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d89190614e73565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614aab565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cb791906149ae565b60405180910390a3505050565b60008183612cd29190614efa565b905092915050565b612ce5848484612835565b612cf18484848461314e565b612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614a0b565b60405180910390fd5b50505050565b6060600b8054612d459061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054612d719061503e565b8015612dbe5780601f10612d9357610100808354040283529160200191612dbe565b820191906000526020600020905b815481529060010190602001808311612da157829003601f168201915b5050505050905090565b60606000821415612e10576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e42578080612e2b90615070565b915050600a82612e3b9190614ec9565b9150612e18565b60008167ffffffffffffffff811115612e84577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb65781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ecf9190614f54565b9150600a85612ede91906150b9565b6030612eea9190614e73565b60f81b818381518110612f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614ec9565b9450612eba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fe983836132e5565b612ff6600084848461314e565b613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302c90614a0b565b60405180910390fd5b505050565b6130458383836134b3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561308857613083816134b8565b6130c7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130c6576130c58382613501565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561310a576131058161366e565b613149565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131485761314782826137b1565b5b5b505050565b600061316f8473ffffffffffffffffffffffffffffffffffffffff16613830565b156132d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131986125f6565b8786866040518563ffffffff1660e01b81526004016131ba9493929190614940565b602060405180830381600087803b1580156131d457600080fd5b505af192505050801561320557506040513d601f19601f820116820180604052508101906132029190613d68565b60015b613288573d8060008114613235576040519150601f19603f3d011682016040523d82523d6000602084013e61323a565b606091505b50600081511415613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790614a0b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334c90614bab565b60405180910390fd5b61335e816125fe565b1561339e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339590614a6b565b60405180910390fd5b6133aa6000838361303a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133fa9190614e73565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161350e846117f9565b6135189190614f54565b90506000600760008481526020019081526020016000205490508181146135fd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136829190614f54565b90506000600960008481526020019081526020016000205490506000600883815481106136d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613720577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613795577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137bc836117f9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461384f9061503e565b90600052602060002090601f01602090048101928261387157600085556138b8565b82601f1061388a57805160ff19168380011785556138b8565b828001600101855582156138b8579182015b828111156138b757825182559160200191906001019061389c565b5b5090506138c5919061398a565b5090565b50805460008255906000526020600020908101906138e7919061398a565b50565b828054828255906000526020600020908101928215613979579160200282015b8281111561397857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061390a565b5b509050613986919061398a565b5090565b5b808211156139a357600081600090555060010161398b565b5090565b60006139ba6139b584614d77565b614d46565b9050828152602081018484840111156139d257600080fd5b6139dd848285614ffc565b509392505050565b60006139f86139f384614da7565b614d46565b905082815260208101848484011115613a1057600080fd5b613a1b848285614ffc565b509392505050565b600081359050613a32816151b7565b92915050565b60008083601f840112613a4a57600080fd5b8235905067ffffffffffffffff811115613a6357600080fd5b602083019150836020820283011115613a7b57600080fd5b9250929050565b600081359050613a91816151ce565b92915050565b600081359050613aa6816151e5565b92915050565b600081519050613abb816151e5565b92915050565b600082601f830112613ad257600080fd5b8135613ae28482602086016139a7565b91505092915050565b600082601f830112613afc57600080fd5b8135613b0c8482602086016139e5565b91505092915050565b600081359050613b24816151fc565b92915050565b600060208284031215613b3c57600080fd5b6000613b4a84828501613a23565b91505092915050565b60008060408385031215613b6657600080fd5b6000613b7485828601613a23565b9250506020613b8585828601613a23565b9150509250929050565b600080600060608486031215613ba457600080fd5b6000613bb286828701613a23565b9350506020613bc386828701613a23565b9250506040613bd486828701613b15565b9150509250925092565b60008060008060808587031215613bf457600080fd5b6000613c0287828801613a23565b9450506020613c1387828801613a23565b9350506040613c2487828801613b15565b925050606085013567ffffffffffffffff811115613c4157600080fd5b613c4d87828801613ac1565b91505092959194509250565b60008060408385031215613c6c57600080fd5b6000613c7a85828601613a23565b9250506020613c8b85828601613a82565b9150509250929050565b60008060408385031215613ca857600080fd5b6000613cb685828601613a23565b9250506020613cc785828601613b15565b9150509250929050565b60008060208385031215613ce457600080fd5b600083013567ffffffffffffffff811115613cfe57600080fd5b613d0a85828601613a38565b92509250509250929050565b600060208284031215613d2857600080fd5b6000613d3684828501613a82565b91505092915050565b600060208284031215613d5157600080fd5b6000613d5f84828501613a97565b91505092915050565b600060208284031215613d7a57600080fd5b6000613d8884828501613aac565b91505092915050565b600060208284031215613da357600080fd5b600082013567ffffffffffffffff811115613dbd57600080fd5b613dc984828501613aeb565b91505092915050565b600060208284031215613de457600080fd5b6000613df284828501613b15565b91505092915050565b60008060408385031215613e0e57600080fd5b6000613e1c85828601613b15565b9250506020613e2d85828601613a23565b9150509250929050565b6000613e4383836148c1565b60208301905092915050565b613e5881614f88565b82525050565b6000613e6982614dfc565b613e738185614e2a565b9350613e7e83614dd7565b8060005b83811015613eaf578151613e968882613e37565b9750613ea183614e1d565b925050600181019050613e82565b5085935050505092915050565b613ec581614f9a565b82525050565b6000613ed682614e07565b613ee08185614e3b565b9350613ef081856020860161500b565b613ef9816151a6565b840191505092915050565b6000613f0f82614e12565b613f198185614e57565b9350613f2981856020860161500b565b613f32816151a6565b840191505092915050565b6000613f4882614e12565b613f528185614e68565b9350613f6281856020860161500b565b80840191505092915050565b60008154613f7b8161503e565b613f858186614e68565b94506001821660008114613fa05760018114613fb157613fe4565b60ff19831686528186019350613fe4565b613fba85614de7565b60005b83811015613fdc57815481890152600182019150602081019050613fbd565b838801955050505b50505092915050565b6000613ffa602b83614e57565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614060603283614e57565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140c6601683614e57565b91507f54686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b6000614106602683614e57565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c601c83614e57565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006141ac602483614e57565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614212601983614e57565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614252602c83614e57565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142b8601283614e57565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b60006142f8601783614e57565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000614338603883614e57565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061439e602a83614e57565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614404602983614e57565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061446a601683614e57565b91507f4d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b60006144aa602083614e57565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006144ea602c83614e57565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614550602083614e57565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614590602983614e57565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006145f6602f83614e57565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061465c601c83614e57565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061469c602183614e57565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614702600083614e4c565b9150600082019050919050565b600061471c603183614e57565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614782602c83614e57565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006147e8601f83614e57565b91507f596f75206e65656420746f206d696e74206174206c656173742031204e4654006000830152602082019050919050565b6000614828601b83614e57565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b6000614868603483614e57565b91507f596f7527766520657863656564656420746865206d6178206d696e7420616d6f60008301527f756e7420666f7220746869732073657373696f6e0000000000000000000000006020830152604082019050919050565b6148ca81614ff2565b82525050565b6148d981614ff2565b82525050565b60006148eb8286613f3d565b91506148f78285613f3d565b91506149038284613f6e565b9150819050949350505050565b600061491b826146f5565b9150819050919050565b600060208201905061493a6000830184613e4f565b92915050565b60006080820190506149556000830187613e4f565b6149626020830186613e4f565b61496f60408301856148d0565b81810360608301526149818184613ecb565b905095945050505050565b600060208201905081810360008301526149a68184613e5e565b905092915050565b60006020820190506149c36000830184613ebc565b92915050565b600060208201905081810360008301526149e38184613f04565b905092915050565b60006020820190508181036000830152614a0481613fed565b9050919050565b60006020820190508181036000830152614a2481614053565b9050919050565b60006020820190508181036000830152614a44816140b9565b9050919050565b60006020820190508181036000830152614a64816140f9565b9050919050565b60006020820190508181036000830152614a848161415f565b9050919050565b60006020820190508181036000830152614aa48161419f565b9050919050565b60006020820190508181036000830152614ac481614205565b9050919050565b60006020820190508181036000830152614ae481614245565b9050919050565b60006020820190508181036000830152614b04816142ab565b9050919050565b60006020820190508181036000830152614b24816142eb565b9050919050565b60006020820190508181036000830152614b448161432b565b9050919050565b60006020820190508181036000830152614b6481614391565b9050919050565b60006020820190508181036000830152614b84816143f7565b9050919050565b60006020820190508181036000830152614ba48161445d565b9050919050565b60006020820190508181036000830152614bc48161449d565b9050919050565b60006020820190508181036000830152614be4816144dd565b9050919050565b60006020820190508181036000830152614c0481614543565b9050919050565b60006020820190508181036000830152614c2481614583565b9050919050565b60006020820190508181036000830152614c44816145e9565b9050919050565b60006020820190508181036000830152614c648161464f565b9050919050565b60006020820190508181036000830152614c848161468f565b9050919050565b60006020820190508181036000830152614ca48161470f565b9050919050565b60006020820190508181036000830152614cc481614775565b9050919050565b60006020820190508181036000830152614ce4816147db565b9050919050565b60006020820190508181036000830152614d048161481b565b9050919050565b60006020820190508181036000830152614d248161485b565b9050919050565b6000602082019050614d4060008301846148d0565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614d6d57614d6c615177565b5b8060405250919050565b600067ffffffffffffffff821115614d9257614d91615177565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614dc257614dc1615177565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e7e82614ff2565b9150614e8983614ff2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ebe57614ebd6150ea565b5b828201905092915050565b6000614ed482614ff2565b9150614edf83614ff2565b925082614eef57614eee615119565b5b828204905092915050565b6000614f0582614ff2565b9150614f1083614ff2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f4957614f486150ea565b5b828202905092915050565b6000614f5f82614ff2565b9150614f6a83614ff2565b925082821015614f7d57614f7c6150ea565b5b828203905092915050565b6000614f9382614fd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561502957808201518184015260208101905061500e565b83811115615038576000848401525b50505050565b6000600282049050600182168061505657607f821691505b6020821081141561506a57615069615148565b5b50919050565b600061507b82614ff2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150ae576150ad6150ea565b5b600182019050919050565b60006150c482614ff2565b91506150cf83614ff2565b9250826150df576150de615119565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6151c081614f88565b81146151cb57600080fd5b50565b6151d781614f9a565b81146151e257600080fd5b50565b6151ee81614fa6565b81146151f957600080fd5b50565b61520581614ff2565b811461521057600080fd5b5056fea26469706673582212207183e76d8dbce50b07cff16e12fe38e6f9608c434f19ba21637ff6fe034bc06264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000064441504559430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544415045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596133366d5159734239597458536a31656b5356355770524d46525a46636a317a35735767685a4e625158692f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d61315033545366425833395331724b4c5162374b444536704c6732426b346636574a5333326a57424679456b2f77656e646170652e6a736f6e000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610990578063da3ef23f146109bb578063e985e9c5146109e4578063edec5f2714610a21578063f2c4ce1e14610a4a578063f2fde38b14610a735761027d565b8063b88d4fde1461086e578063ba4e5c4914610897578063ba7d2c76146108d4578063c6682862146108ff578063c87b56dd1461092a578063d0eb26b0146109675761027d565b80638da5cb5b116101135780638da5cb5b1461079157806395d89b41146107bc5780639c70b512146107e7578063a22cb46514610812578063a475b5dd1461083b578063b00dab25146108525761027d565b80636352211e146106ac5780636c0360eb146106e957806370a0823114610714578063715018a6146107515780637f00c7a6146107685761027d565b806323b872dd116101f3578063438b6300116101ac578063438b63001461058a57806344a0d68a146105c75780634f6ccce7146105f0578063518302271461062d57806355f804b3146106585780635c975abb146106815761027d565b806323b872dd1461048b5780632f745c59146104b45780633af32abf146104f15780633c9527641461052e5780633ccfd60b1461055757806342842e0e146105615761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a45780631619ca9b146103cf57806318160ddd146103f857806318cae26914610423578063239c70ae146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d3f565b610a9c565b6040516102b691906149ae565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613d16565b610b16565b005b3480156102f457600080fd5b506102fd610baf565b60405161030a91906149c9565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613dd2565b610c41565b6040516103479190614925565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b60405161037291906149c9565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613c95565b610d54565b005b3480156103b057600080fd5b506103b9610e6c565b6040516103c69190614d2b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfb565b610e72565b005b34801561040457600080fd5b5061040d61102c565b60405161041a9190614d2b565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613b2a565b611039565b6040516104579190614d2b565b60405180910390f35b34801561046c57600080fd5b50610475611051565b6040516104829190614d2b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190613b8f565b611057565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613c95565b6110b7565b6040516104e89190614d2b565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613b2a565b61115c565b60405161052591906149ae565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613d16565b611231565b005b61055f6112ca565b005b34801561056d57600080fd5b5061058860048036038101906105839190613b8f565b6113c6565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613b2a565b6113e6565b6040516105be919061498c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613dd2565b6114e0565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613dd2565b611566565b6040516106249190614d2b565b60405180910390f35b34801561063957600080fd5b506106426115fd565b60405161064f91906149ae565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613d91565b611610565b005b34801561068d57600080fd5b506106966116a6565b6040516106a391906149ae565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613dd2565b6116b9565b6040516106e09190614925565b60405180910390f35b3480156106f557600080fd5b506106fe61176b565b60405161070b91906149c9565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613b2a565b6117f9565b6040516107489190614d2b565b60405180910390f35b34801561075d57600080fd5b506107666118b1565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613dd2565b611939565b005b34801561079d57600080fd5b506107a66119bf565b6040516107b39190614925565b60405180910390f35b3480156107c857600080fd5b506107d16119e9565b6040516107de91906149c9565b60405180910390f35b3480156107f357600080fd5b506107fc611a7b565b60405161080991906149ae565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613c59565b611a8e565b005b34801561084757600080fd5b50610850611aa4565b005b61086c60048036038101906108679190613dd2565b611b3d565b005b34801561087a57600080fd5b5061089560048036038101906108909190613bde565b611ea2565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613dd2565b611f04565b6040516108cb9190614925565b60405180910390f35b3480156108e057600080fd5b506108e9611f43565b6040516108f69190614d2b565b60405180910390f35b34801561090b57600080fd5b50610914611f49565b60405161092191906149c9565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613dd2565b611fd7565b60405161095e91906149c9565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613dd2565b612130565b005b34801561099c57600080fd5b506109a56121b6565b6040516109b29190614d2b565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613d91565b6121bc565b005b3480156109f057600080fd5b50610a0b6004803603810190610a069190613b53565b612252565b604051610a1891906149ae565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613cd1565b6122e6565b005b348015610a5657600080fd5b50610a716004803603810190610a6c9190613d91565b612386565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613b2a565b61241c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f5750610b0e82612514565b5b9050919050565b610b1e6125f6565b73ffffffffffffffffffffffffffffffffffffffff16610b3c6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990614beb565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610bbe9061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea9061503e565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826125fe565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614bcb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd39061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff9061503e565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b505050505081565b6000610d5f826116b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614c6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610def6125f6565b73ffffffffffffffffffffffffffffffffffffffff161480610e1e5750610e1d81610e186125f6565b612252565b5b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614b2b565b60405180910390fd5b610e67838361266a565b505050565b600e5481565b610e7a6125f6565b73ffffffffffffffffffffffffffffffffffffffff16610e986119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614beb565b60405180910390fd5b60008211610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890614ceb565b60405180910390fd5b6000610f3b61102c565b9050600f54610f53848361272390919063ffffffff16565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90614b8b565b60405180910390fd5b6000600190505b83811161102657601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ff290615070565b91905055506110138361100e838561272390919063ffffffff16565b612739565b808061101e90615070565b915050610f9b565b50505050565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b6110686110626125f6565b82612757565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90614c8b565b60405180910390fd5b6110b2838383612835565b505050565b60006110c2836117f9565b8210611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906149eb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611226578273ffffffffffffffffffffffffffffffffffffffff16601382815481106111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561121357600191505061122c565b808061121e90615070565b915050611164565b50600090505b919050565b6112396125f6565b73ffffffffffffffffffffffffffffffffffffffff166112576119bf565b73ffffffffffffffffffffffffffffffffffffffff16146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490614beb565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6112d26125f6565b73ffffffffffffffffffffffffffffffffffffffff166112f06119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614beb565b60405180910390fd5b60006113506119bf565b73ffffffffffffffffffffffffffffffffffffffff164760405161137390614910565b60006040518083038185875af1925050503d80600081146113b0576040519150601f19603f3d011682016040523d82523d6000602084013e6113b5565b606091505b50509050806113c357600080fd5b50565b6113e183838360405180602001604052806000815250611ea2565b505050565b606060006113f3836117f9565b905060008167ffffffffffffffff811115611437577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114655781602001602082028036833780820191505090505b50905060005b828110156114d55761147d85826110b7565b8282815181106114b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114cd90615070565b91505061146b565b508092505050919050565b6114e86125f6565b73ffffffffffffffffffffffffffffffffffffffff166115066119bf565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614beb565b60405180910390fd5b80600e8190555050565b600061157061102c565b82106115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614cab565b60405180910390fd5b600882815481106115eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6116186125f6565b73ffffffffffffffffffffffffffffffffffffffff166116366119bf565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614beb565b60405180910390fd5b80600b90805190602001906116a2929190613843565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614b6b565b60405180910390fd5b80915050919050565b600b80546117789061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546117a49061503e565b80156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614b4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118b96125f6565b73ffffffffffffffffffffffffffffffffffffffff166118d76119bf565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614beb565b60405180910390fd5b6119376000612a91565b565b6119416125f6565b73ffffffffffffffffffffffffffffffffffffffff1661195f6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614beb565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f89061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a249061503e565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611aa0611a996125f6565b8383612b57565b5050565b611aac6125f6565b73ffffffffffffffffffffffffffffffffffffffff16611aca6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790614beb565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b601260009054906101000a900460ff1615611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614a2b565b60405180910390fd5b6000611b9761102c565b905060008211611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614ccb565b60405180910390fd5b601054821115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890614d0b565b60405180910390fd5b600f54611c37838361272390919063ffffffff16565b1115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90614b8b565b60405180910390fd5b611c806119bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e0b5760011515601260029054906101000a900460ff1615151415611db357611cd73361115c565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614b0b565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601154611d70848361272390919063ffffffff16565b1115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890614c4b565b60405180910390fd5b505b611dc882600e54612cc490919063ffffffff16565b341015611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190614aeb565b60405180910390fd5b5b6000600190505b828111611e9d57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e6990615070565b9190505550611e8a33611e85838561272390919063ffffffff16565b612739565b8080611e9590615070565b915050611e12565b505050565b611eb3611ead6125f6565b83612757565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990614c8b565b60405180910390fd5b611efe84848484612cda565b50505050565b60138181548110611f1457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611f569061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f829061503e565b8015611fcf5780601f10611fa457610100808354040283529160200191611fcf565b820191906000526020600020905b815481529060010190602001808311611fb257829003601f168201915b505050505081565b6060611fe2826125fe565b612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890614c2b565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156120cf57600d805461204a9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546120769061503e565b80156120c35780601f10612098576101008083540402835291602001916120c3565b820191906000526020600020905b8154815290600101906020018083116120a657829003601f168201915b5050505050905061212b565b60006120d9612d36565b905060008151116120f95760405180602001604052806000815250612127565b8061210384612dc8565b600c604051602001612117939291906148df565b6040516020818303038152906040525b9150505b919050565b6121386125f6565b73ffffffffffffffffffffffffffffffffffffffff166121566119bf565b73ffffffffffffffffffffffffffffffffffffffff16146121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614beb565b60405180910390fd5b8060118190555050565b600f5481565b6121c46125f6565b73ffffffffffffffffffffffffffffffffffffffff166121e26119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614beb565b60405180910390fd5b80600c908051906020019061224e929190613843565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ee6125f6565b73ffffffffffffffffffffffffffffffffffffffff1661230c6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614beb565b60405180910390fd5b6013600061237091906138c9565b8181601391906123819291906138ea565b505050565b61238e6125f6565b73ffffffffffffffffffffffffffffffffffffffff166123ac6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614beb565b60405180910390fd5b80600d9080519060200190612418929190613843565b5050565b6124246125f6565b73ffffffffffffffffffffffffffffffffffffffff166124426119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614beb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614a4b565b60405180910390fd5b61251181612a91565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125ef57506125ee82612f75565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126dd836116b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836127319190614e73565b905092915050565b612753828260405180602001604052806000815250612fdf565b5050565b6000612762826125fe565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614acb565b60405180910390fd5b60006127ac836116b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061281b57508373ffffffffffffffffffffffffffffffffffffffff1661280384610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b8061282c575061282b8185612252565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612855826116b9565b73ffffffffffffffffffffffffffffffffffffffff16146128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a290614c0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614a8b565b60405180910390fd5b61292683838361303a565b61293160008261266a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129819190614f54565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d89190614e73565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614aab565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cb791906149ae565b60405180910390a3505050565b60008183612cd29190614efa565b905092915050565b612ce5848484612835565b612cf18484848461314e565b612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614a0b565b60405180910390fd5b50505050565b6060600b8054612d459061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054612d719061503e565b8015612dbe5780601f10612d9357610100808354040283529160200191612dbe565b820191906000526020600020905b815481529060010190602001808311612da157829003601f168201915b5050505050905090565b60606000821415612e10576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e42578080612e2b90615070565b915050600a82612e3b9190614ec9565b9150612e18565b60008167ffffffffffffffff811115612e84577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb65781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ecf9190614f54565b9150600a85612ede91906150b9565b6030612eea9190614e73565b60f81b818381518110612f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614ec9565b9450612eba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fe983836132e5565b612ff6600084848461314e565b613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302c90614a0b565b60405180910390fd5b505050565b6130458383836134b3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561308857613083816134b8565b6130c7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130c6576130c58382613501565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561310a576131058161366e565b613149565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131485761314782826137b1565b5b5b505050565b600061316f8473ffffffffffffffffffffffffffffffffffffffff16613830565b156132d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131986125f6565b8786866040518563ffffffff1660e01b81526004016131ba9493929190614940565b602060405180830381600087803b1580156131d457600080fd5b505af192505050801561320557506040513d601f19601f820116820180604052508101906132029190613d68565b60015b613288573d8060008114613235576040519150601f19603f3d011682016040523d82523d6000602084013e61323a565b606091505b50600081511415613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790614a0b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334c90614bab565b60405180910390fd5b61335e816125fe565b1561339e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339590614a6b565b60405180910390fd5b6133aa6000838361303a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133fa9190614e73565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161350e846117f9565b6135189190614f54565b90506000600760008481526020019081526020016000205490508181146135fd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136829190614f54565b90506000600960008481526020019081526020016000205490506000600883815481106136d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613720577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613795577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137bc836117f9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461384f9061503e565b90600052602060002090601f01602090048101928261387157600085556138b8565b82601f1061388a57805160ff19168380011785556138b8565b828001600101855582156138b8579182015b828111156138b757825182559160200191906001019061389c565b5b5090506138c5919061398a565b5090565b50805460008255906000526020600020908101906138e7919061398a565b50565b828054828255906000526020600020908101928215613979579160200282015b8281111561397857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061390a565b5b509050613986919061398a565b5090565b5b808211156139a357600081600090555060010161398b565b5090565b60006139ba6139b584614d77565b614d46565b9050828152602081018484840111156139d257600080fd5b6139dd848285614ffc565b509392505050565b60006139f86139f384614da7565b614d46565b905082815260208101848484011115613a1057600080fd5b613a1b848285614ffc565b509392505050565b600081359050613a32816151b7565b92915050565b60008083601f840112613a4a57600080fd5b8235905067ffffffffffffffff811115613a6357600080fd5b602083019150836020820283011115613a7b57600080fd5b9250929050565b600081359050613a91816151ce565b92915050565b600081359050613aa6816151e5565b92915050565b600081519050613abb816151e5565b92915050565b600082601f830112613ad257600080fd5b8135613ae28482602086016139a7565b91505092915050565b600082601f830112613afc57600080fd5b8135613b0c8482602086016139e5565b91505092915050565b600081359050613b24816151fc565b92915050565b600060208284031215613b3c57600080fd5b6000613b4a84828501613a23565b91505092915050565b60008060408385031215613b6657600080fd5b6000613b7485828601613a23565b9250506020613b8585828601613a23565b9150509250929050565b600080600060608486031215613ba457600080fd5b6000613bb286828701613a23565b9350506020613bc386828701613a23565b9250506040613bd486828701613b15565b9150509250925092565b60008060008060808587031215613bf457600080fd5b6000613c0287828801613a23565b9450506020613c1387828801613a23565b9350506040613c2487828801613b15565b925050606085013567ffffffffffffffff811115613c4157600080fd5b613c4d87828801613ac1565b91505092959194509250565b60008060408385031215613c6c57600080fd5b6000613c7a85828601613a23565b9250506020613c8b85828601613a82565b9150509250929050565b60008060408385031215613ca857600080fd5b6000613cb685828601613a23565b9250506020613cc785828601613b15565b9150509250929050565b60008060208385031215613ce457600080fd5b600083013567ffffffffffffffff811115613cfe57600080fd5b613d0a85828601613a38565b92509250509250929050565b600060208284031215613d2857600080fd5b6000613d3684828501613a82565b91505092915050565b600060208284031215613d5157600080fd5b6000613d5f84828501613a97565b91505092915050565b600060208284031215613d7a57600080fd5b6000613d8884828501613aac565b91505092915050565b600060208284031215613da357600080fd5b600082013567ffffffffffffffff811115613dbd57600080fd5b613dc984828501613aeb565b91505092915050565b600060208284031215613de457600080fd5b6000613df284828501613b15565b91505092915050565b60008060408385031215613e0e57600080fd5b6000613e1c85828601613b15565b9250506020613e2d85828601613a23565b9150509250929050565b6000613e4383836148c1565b60208301905092915050565b613e5881614f88565b82525050565b6000613e6982614dfc565b613e738185614e2a565b9350613e7e83614dd7565b8060005b83811015613eaf578151613e968882613e37565b9750613ea183614e1d565b925050600181019050613e82565b5085935050505092915050565b613ec581614f9a565b82525050565b6000613ed682614e07565b613ee08185614e3b565b9350613ef081856020860161500b565b613ef9816151a6565b840191505092915050565b6000613f0f82614e12565b613f198185614e57565b9350613f2981856020860161500b565b613f32816151a6565b840191505092915050565b6000613f4882614e12565b613f528185614e68565b9350613f6281856020860161500b565b80840191505092915050565b60008154613f7b8161503e565b613f858186614e68565b94506001821660008114613fa05760018114613fb157613fe4565b60ff19831686528186019350613fe4565b613fba85614de7565b60005b83811015613fdc57815481890152600182019150602081019050613fbd565b838801955050505b50505092915050565b6000613ffa602b83614e57565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614060603283614e57565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140c6601683614e57565b91507f54686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b6000614106602683614e57565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c601c83614e57565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006141ac602483614e57565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614212601983614e57565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614252602c83614e57565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142b8601283614e57565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b60006142f8601783614e57565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000614338603883614e57565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061439e602a83614e57565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614404602983614e57565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061446a601683614e57565b91507f4d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b60006144aa602083614e57565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006144ea602c83614e57565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614550602083614e57565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614590602983614e57565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006145f6602f83614e57565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061465c601c83614e57565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b600061469c602183614e57565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614702600083614e4c565b9150600082019050919050565b600061471c603183614e57565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614782602c83614e57565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006147e8601f83614e57565b91507f596f75206e65656420746f206d696e74206174206c656173742031204e4654006000830152602082019050919050565b6000614828601b83614e57565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b6000614868603483614e57565b91507f596f7527766520657863656564656420746865206d6178206d696e7420616d6f60008301527f756e7420666f7220746869732073657373696f6e0000000000000000000000006020830152604082019050919050565b6148ca81614ff2565b82525050565b6148d981614ff2565b82525050565b60006148eb8286613f3d565b91506148f78285613f3d565b91506149038284613f6e565b9150819050949350505050565b600061491b826146f5565b9150819050919050565b600060208201905061493a6000830184613e4f565b92915050565b60006080820190506149556000830187613e4f565b6149626020830186613e4f565b61496f60408301856148d0565b81810360608301526149818184613ecb565b905095945050505050565b600060208201905081810360008301526149a68184613e5e565b905092915050565b60006020820190506149c36000830184613ebc565b92915050565b600060208201905081810360008301526149e38184613f04565b905092915050565b60006020820190508181036000830152614a0481613fed565b9050919050565b60006020820190508181036000830152614a2481614053565b9050919050565b60006020820190508181036000830152614a44816140b9565b9050919050565b60006020820190508181036000830152614a64816140f9565b9050919050565b60006020820190508181036000830152614a848161415f565b9050919050565b60006020820190508181036000830152614aa48161419f565b9050919050565b60006020820190508181036000830152614ac481614205565b9050919050565b60006020820190508181036000830152614ae481614245565b9050919050565b60006020820190508181036000830152614b04816142ab565b9050919050565b60006020820190508181036000830152614b24816142eb565b9050919050565b60006020820190508181036000830152614b448161432b565b9050919050565b60006020820190508181036000830152614b6481614391565b9050919050565b60006020820190508181036000830152614b84816143f7565b9050919050565b60006020820190508181036000830152614ba48161445d565b9050919050565b60006020820190508181036000830152614bc48161449d565b9050919050565b60006020820190508181036000830152614be4816144dd565b9050919050565b60006020820190508181036000830152614c0481614543565b9050919050565b60006020820190508181036000830152614c2481614583565b9050919050565b60006020820190508181036000830152614c44816145e9565b9050919050565b60006020820190508181036000830152614c648161464f565b9050919050565b60006020820190508181036000830152614c848161468f565b9050919050565b60006020820190508181036000830152614ca48161470f565b9050919050565b60006020820190508181036000830152614cc481614775565b9050919050565b60006020820190508181036000830152614ce4816147db565b9050919050565b60006020820190508181036000830152614d048161481b565b9050919050565b60006020820190508181036000830152614d248161485b565b9050919050565b6000602082019050614d4060008301846148d0565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614d6d57614d6c615177565b5b8060405250919050565b600067ffffffffffffffff821115614d9257614d91615177565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614dc257614dc1615177565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e7e82614ff2565b9150614e8983614ff2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ebe57614ebd6150ea565b5b828201905092915050565b6000614ed482614ff2565b9150614edf83614ff2565b925082614eef57614eee615119565b5b828204905092915050565b6000614f0582614ff2565b9150614f1083614ff2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f4957614f486150ea565b5b828202905092915050565b6000614f5f82614ff2565b9150614f6a83614ff2565b925082821015614f7d57614f7c6150ea565b5b828203905092915050565b6000614f9382614fd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561502957808201518184015260208101905061500e565b83811115615038576000848401525b50505050565b6000600282049050600182168061505657607f821691505b6020821081141561506a57615069615148565b5b50919050565b600061507b82614ff2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150ae576150ad6150ea565b5b600182019050919050565b60006150c482614ff2565b91506150cf83614ff2565b9250826150df576150de615119565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6151c081614f88565b81146151cb57600080fd5b50565b6151d781614f9a565b81146151e257600080fd5b50565b6151ee81614fa6565b81146151f957600080fd5b50565b61520581614ff2565b811461521057600080fd5b5056fea26469706673582212207183e76d8dbce50b07cff16e12fe38e6f9608c434f19ba21637ff6fe034bc06264736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000064441504559430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544415045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596133366d5159734239597458536a31656b5356355770524d46525a46636a317a35735767685a4e625158692f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d61315033545366425833395331724b4c5162374b444536704c6732426b346636574a5333326a57424679456b2f77656e646170652e6a736f6e000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DAPEYC
Arg [1] : _symbol (string): DAPES
Arg [2] : _initBaseURI (string): ipfs://QmYa36mQYsB9YtXSj1ekSV5WpRMFRZFcj1z5sWghZNbQXi/
Arg [3] : _initNotRevealedUri (string): ipfs://Qma1P3TSfBX39S1rKLQb7KDE6pLg2Bk4f6WJS32jWBFyEk/wendape.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4441504559430000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4441504553000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d596133366d5159734239597458536a31656b5356355770
Arg [10] : 524d46525a46636a317a35735767685a4e625158692f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [12] : 697066733a2f2f516d61315033545366425833395331724b4c5162374b444536
Arg [13] : 704c6732426b346636574a5333326a57424679456b2f77656e646170652e6a73
Arg [14] : 6f6e000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51692:4777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35903:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55984:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22312:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23871:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51872:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23394:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51905:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54780:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36543:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52204:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51979:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24621:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36211:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53656:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56065:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56319:147;;;:::i;:::-;;25031:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53901:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55416:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36733:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52090:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55624:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52059:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22006:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51804:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21736:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43770:103;;;;;;;;;;;;;:::i;:::-;;55502:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43119:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22481:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52123:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24164:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55231:65;;;;;;;;;;;;;:::i;:::-;;52659:989;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25287:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52162:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52017;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51830;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54255:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55304:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51943:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55728:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24390:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56168:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55858:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44028:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35903:224;36005:4;36044:35;36029:50;;;:11;:50;;;;:90;;;;36083:36;36107:11;36083:23;:36::i;:::-;36029:90;36022:97;;35903:224;;;:::o;55984:73::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56045:6:::1;56036;;:15;;;;;;;;;;;;;;;;;;55984:73:::0;:::o;22312:100::-;22366:13;22399:5;22392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22312:100;:::o;23871:221::-;23947:7;23975:16;23983:7;23975;:16::i;:::-;23967:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24060:15;:24;24076:7;24060:24;;;;;;;;;;;;;;;;;;;;;24053:31;;23871:221;;;:::o;51872:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23394:411::-;23475:13;23491:23;23506:7;23491:14;:23::i;:::-;23475:39;;23539:5;23533:11;;:2;:11;;;;23525:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23633:5;23617:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23642:37;23659:5;23666:12;:10;:12::i;:::-;23642:16;:37::i;:::-;23617:62;23595:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23776:21;23785:2;23789:7;23776:8;:21::i;:::-;23394:411;;;:::o;51905:33::-;;;;:::o;54780:443::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54890:1:::1;54876:11;:15;54868:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54934:14;54951:13;:11;:13::i;:::-;54934:30;;55010:9;;54983:23;54994:11;54983:6;:10;;:23;;;;:::i;:::-;:36;;54975:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55064:9;55076:1;55064:13;;55059:157;55084:11;55079:1;:16;55059:157;;55117:20;:33;55138:11;55117:33;;;;;;;;;;;;;;;;:35;;;;;;;;;:::i;:::-;;;;;;55167:37;55177:11;55190:13;55201:1;55190:6;:10;;:13;;;;:::i;:::-;55167:9;:37::i;:::-;55097:3;;;;;:::i;:::-;;;;55059:157;;;;43410:1;54780:443:::0;;:::o;36543:113::-;36604:7;36631:10;:17;;;;36624:24;;36543:113;:::o;52204:55::-;;;;;;;;;;;;;;;;;:::o;51979:33::-;;;;:::o;24621:339::-;24816:41;24835:12;:10;:12::i;:::-;24849:7;24816:18;:41::i;:::-;24808:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24924:28;24934:4;24940:2;24944:7;24924:9;:28::i;:::-;24621:339;;;:::o;36211:256::-;36308:7;36344:23;36361:5;36344:16;:23::i;:::-;36336:5;:31;36328:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36433:12;:19;36446:5;36433:19;;;;;;;;;;;;;;;:26;36453:5;36433:26;;;;;;;;;;;;36426:33;;36211:256;;;;:::o;53656:239::-;53715:4;53733:6;53742:1;53733:10;;53728:143;53749:20;:27;;;;53745:1;:31;53728:143;;;53823:5;53796:32;;:20;53817:1;53796:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;53792:72;;;53850:4;53843:11;;;;;53792:72;53778:3;;;;;:::i;:::-;;;;53728:143;;;;53884:5;53877:12;;53656:239;;;;:::o;56065:95::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56148:6:::1;56130:15;;:24;;;;;;;;;;;;;;;;;;56065:95:::0;:::o;56319:147::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56374:7:::1;56395;:5;:7::i;:::-;56387:21;;56416;56387:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56373:69;;;56457:2;56449:11;;;::::0;::::1;;43410:1;56319:147::o:0;25031:185::-;25169:39;25186:4;25192:2;25196:7;25169:39;;;;;;;;;;;;:16;:39::i;:::-;25031:185;;;:::o;53901:348::-;53976:16;54004:23;54030:17;54040:6;54030:9;:17::i;:::-;54004:43;;54054:25;54096:15;54082:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54054:58;;54124:9;54119:103;54139:15;54135:1;:19;54119:103;;;54184:30;54204:6;54212:1;54184:19;:30::i;:::-;54170:8;54179:1;54170:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;54156:3;;;;;:::i;:::-;;;;54119:103;;;;54235:8;54228:15;;;;53901:348;;;:::o;55416:80::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55482:8:::1;55475:4;:15;;;;55416:80:::0;:::o;36733:233::-;36808:7;36844:30;:28;:30::i;:::-;36836:5;:38;36828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36941:10;36952:5;36941:17;;;;;;;;;;;;;;;;;;;;;;;;36934:24;;36733:233;;;:::o;52090:28::-;;;;;;;;;;;;;:::o;55624:98::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55705:11:::1;55695:7;:21;;;;;;;;;;;;:::i;:::-;;55624:98:::0;:::o;52059:26::-;;;;;;;;;;;;;:::o;22006:239::-;22078:7;22098:13;22114:7;:16;22122:7;22114:16;;;;;;;;;;;;;;;;;;;;;22098:32;;22166:1;22149:19;;:5;:19;;;;22141:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22232:5;22225:12;;;22006:239;;;:::o;51804:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21736:208::-;21808:7;21853:1;21836:19;;:5;:19;;;;21828:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21920:9;:16;21930:5;21920:16;;;;;;;;;;;;;;;;21913:23;;21736:208;;;:::o;43770:103::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43835:30:::1;43862:1;43835:18;:30::i;:::-;43770:103::o:0;55502:116::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55595:17:::1;55579:13;:33;;;;55502:116:::0;:::o;43119:87::-;43165:7;43192:6;;;;;;;;;;;43185:13;;43119:87;:::o;22481:104::-;22537:13;22570:7;22563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22481:104;:::o;52123:34::-;;;;;;;;;;;;;:::o;24164:155::-;24259:52;24278:12;:10;:12::i;:::-;24292:8;24302;24259:18;:52::i;:::-;24164:155;;:::o;55231:65::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55286:4:::1;55275:8;;:15;;;;;;;;;;;;;;;;;;55231:65::o:0;52659:989::-;52729:6;;;;;;;;;;;52728:7;52720:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;52769:14;52786:13;:11;:13::i;:::-;52769:30;;52828:1;52814:11;:15;52806:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52895:13;;52880:11;:28;;52872:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;53008:9;;52980:24;52992:11;52980:6;:10;;:24;;;;:::i;:::-;:37;;52972:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53071:7;:5;:7::i;:::-;53057:21;;:10;:21;;;53053:436;;53113:4;53094:23;;:15;;;;;;;;;;;:23;;;53091:303;;;53142:25;53156:10;53142:13;:25::i;:::-;53134:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53210:24;53237:20;:32;53258:10;53237:32;;;;;;;;;;;;;;;;53210:59;;53329:18;;53292:33;53313:11;53292:16;:20;;:33;;;;:::i;:::-;:55;;53284:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;53091:303;;53435:21;53444:11;53435:4;;:8;;:21;;;;:::i;:::-;53422:9;:34;;53414:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53053:436;53506:9;53518:1;53506:13;;53501:142;53526:11;53521:1;:16;53501:142;;53555:20;:32;53576:10;53555:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;53598:37;53608:10;53620:13;53631:1;53620:6;:10;;:13;;;;:::i;:::-;53598:9;:37::i;:::-;53539:3;;;;;:::i;:::-;;;;53501:142;;;;52659:989;;:::o;25287:328::-;25462:41;25481:12;:10;:12::i;:::-;25495:7;25462:18;:41::i;:::-;25454:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25568:39;25582:4;25588:2;25592:7;25601:5;25568:13;:39::i;:::-;25287:328;;;;:::o;52162:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52017:::-;;;;:::o;51830:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54255:497::-;54353:13;54394:16;54402:7;54394;:16::i;:::-;54378:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;54503:5;54491:17;;:8;;;;;;;;;;;:17;;;54488:62;;;54528:14;54521:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54488:62;54558:28;54589:10;:8;:10::i;:::-;54558:41;;54644:1;54619:14;54613:28;:32;:133;;;;;;;;;;;;;;;;;54681:14;54697:18;:7;:16;:18::i;:::-;54717:13;54664:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54613:133;54606:140;;;54255:497;;;;:::o;55304:104::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55396:6:::1;55375:18;:27;;;;55304:104:::0;:::o;51943:31::-;;;;:::o;55728:122::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55827:17:::1;55811:13;:33;;;;;;;;;;;;:::i;:::-;;55728:122:::0;:::o;24390:164::-;24487:4;24511:18;:25;24530:5;24511:25;;;;;;;;;;;;;;;:35;24537:8;24511:35;;;;;;;;;;;;;;;;;;;;;;;;;24504:42;;24390:164;;;;:::o;56168:144::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56250:20:::1;;56243:27;;;;:::i;:::-;56300:6;;56277:20;:29;;;;;;;:::i;:::-;;56168:144:::0;;:::o;55858:120::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55957:15:::1;55940:14;:32;;;;;;;;;;;;:::i;:::-;;55858:120:::0;:::o;44028:201::-;43350:12;:10;:12::i;:::-;43339:23;;:7;:5;:7::i;:::-;:23;;;43331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44137:1:::1;44117:22;;:8;:22;;;;44109:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44193:28;44212:8;44193:18;:28::i;:::-;44028:201:::0;:::o;21367:305::-;21469:4;21521:25;21506:40;;;:11;:40;;;;:105;;;;21578:33;21563:48;;;:11;:48;;;;21506:105;:158;;;;21628:36;21652:11;21628:23;:36::i;:::-;21506:158;21486:178;;21367:305;;;:::o;16588:98::-;16641:7;16668:10;16661:17;;16588:98;:::o;27125:127::-;27190:4;27242:1;27214:30;;:7;:16;27222:7;27214:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27207:37;;27125:127;;;:::o;31107:174::-;31209:2;31182:15;:24;31198:7;31182:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31265:7;31261:2;31227:46;;31236:23;31251:7;31236:14;:23::i;:::-;31227:46;;;;;;;;;;;;31107:174;;:::o;47457:98::-;47515:7;47546:1;47542;:5;;;;:::i;:::-;47535:12;;47457:98;;;;:::o;28109:110::-;28185:26;28195:2;28199:7;28185:26;;;;;;;;;;;;:9;:26::i;:::-;28109:110;;:::o;27419:348::-;27512:4;27537:16;27545:7;27537;:16::i;:::-;27529:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27613:13;27629:23;27644:7;27629:14;:23::i;:::-;27613:39;;27682:5;27671:16;;:7;:16;;;:51;;;;27715:7;27691:31;;:20;27703:7;27691:11;:20::i;:::-;:31;;;27671:51;:87;;;;27726:32;27743:5;27750:7;27726:16;:32::i;:::-;27671:87;27663:96;;;27419:348;;;;:::o;30411:578::-;30570:4;30543:31;;:23;30558:7;30543:14;:23::i;:::-;:31;;;30535:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30653:1;30639:16;;:2;:16;;;;30631:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30709:39;30730:4;30736:2;30740:7;30709:20;:39::i;:::-;30813:29;30830:1;30834:7;30813:8;:29::i;:::-;30874:1;30855:9;:15;30865:4;30855:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30903:1;30886:9;:13;30896:2;30886:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30934:2;30915:7;:16;30923:7;30915:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30973:7;30969:2;30954:27;;30963:4;30954:27;;;;;;;;;;;;30411:578;;;:::o;44389:191::-;44463:16;44482:6;;;;;;;;;;;44463:25;;44508:8;44499:6;;:17;;;;;;;;;;;;;;;;;;44563:8;44532:40;;44553:8;44532:40;;;;;;;;;;;;44389:191;;:::o;31423:315::-;31578:8;31569:17;;:5;:17;;;;31561:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31665:8;31627:18;:25;31646:5;31627:25;;;;;;;;;;;;;;;:35;31653:8;31627:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31711:8;31689:41;;31704:5;31689:41;;;31721:8;31689:41;;;;;;:::i;:::-;;;;;;;;31423:315;;;:::o;48195:98::-;48253:7;48284:1;48280;:5;;;;:::i;:::-;48273:12;;48195:98;;;;:::o;26497:315::-;26654:28;26664:4;26670:2;26674:7;26654:9;:28::i;:::-;26701:48;26724:4;26730:2;26734:7;26743:5;26701:22;:48::i;:::-;26693:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26497:315;;;;:::o;52538:102::-;52598:13;52627:7;52620:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52538:102;:::o;17175:723::-;17231:13;17461:1;17452:5;:10;17448:53;;;17479:10;;;;;;;;;;;;;;;;;;;;;17448:53;17511:12;17526:5;17511:20;;17542:14;17567:78;17582:1;17574:4;:9;17567:78;;17600:8;;;;;:::i;:::-;;;;17631:2;17623:10;;;;;:::i;:::-;;;17567:78;;;17655:19;17687:6;17677:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17655:39;;17705:154;17721:1;17712:5;:10;17705:154;;17749:1;17739:11;;;;;:::i;:::-;;;17816:2;17808:5;:10;;;;:::i;:::-;17795:2;:24;;;;:::i;:::-;17782:39;;17765:6;17772;17765:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17845:2;17836:11;;;;;:::i;:::-;;;17705:154;;;17883:6;17869:21;;;;;17175:723;;;;:::o;19805:157::-;19890:4;19929:25;19914:40;;;:11;:40;;;;19907:47;;19805:157;;;:::o;28446:321::-;28576:18;28582:2;28586:7;28576:5;:18::i;:::-;28627:54;28658:1;28662:2;28666:7;28675:5;28627:22;:54::i;:::-;28605:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28446:321;;;:::o;37579:589::-;37723:45;37750:4;37756:2;37760:7;37723:26;:45::i;:::-;37801:1;37785:18;;:4;:18;;;37781:187;;;37820:40;37852:7;37820:31;:40::i;:::-;37781:187;;;37890:2;37882:10;;:4;:10;;;37878:90;;37909:47;37942:4;37948:7;37909:32;:47::i;:::-;37878:90;37781:187;37996:1;37982:16;;:2;:16;;;37978:183;;;38015:45;38052:7;38015:36;:45::i;:::-;37978:183;;;38088:4;38082:10;;:2;:10;;;38078:83;;38109:40;38137:2;38141:7;38109:27;:40::i;:::-;38078:83;37978:183;37579:589;;;:::o;32303:799::-;32458:4;32479:15;:2;:13;;;:15::i;:::-;32475:620;;;32531:2;32515:36;;;32552:12;:10;:12::i;:::-;32566:4;32572:7;32581:5;32515:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32511:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32774:1;32757:6;:13;:18;32753:272;;;32800:60;;;;;;;;;;:::i;:::-;;;;;;;;32753:272;32975:6;32969:13;32960:6;32956:2;32952:15;32945:38;32511:529;32648:41;;;32638:51;;;:6;:51;;;;32631:58;;;;;32475:620;33079:4;33072:11;;32303:799;;;;;;;:::o;29103:382::-;29197:1;29183:16;;:2;:16;;;;29175:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29256:16;29264:7;29256;:16::i;:::-;29255:17;29247:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29318:45;29347:1;29351:2;29355:7;29318:20;:45::i;:::-;29393:1;29376:9;:13;29386:2;29376:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29424:2;29405:7;:16;29413:7;29405:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29469:7;29465:2;29444:33;;29461:1;29444:33;;;;;;;;;;;;29103:382;;:::o;33674:126::-;;;;:::o;38891:164::-;38995:10;:17;;;;38968:15;:24;38984:7;38968:24;;;;;;;;;;;:44;;;;39023:10;39039:7;39023:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38891:164;:::o;39682:988::-;39948:22;39998:1;39973:22;39990:4;39973:16;:22::i;:::-;:26;;;;:::i;:::-;39948:51;;40010:18;40031:17;:26;40049:7;40031:26;;;;;;;;;;;;40010:47;;40178:14;40164:10;:28;40160:328;;40209:19;40231:12;:18;40244:4;40231:18;;;;;;;;;;;;;;;:34;40250:14;40231:34;;;;;;;;;;;;40209:56;;40315:11;40282:12;:18;40295:4;40282:18;;;;;;;;;;;;;;;:30;40301:10;40282:30;;;;;;;;;;;:44;;;;40432:10;40399:17;:30;40417:11;40399:30;;;;;;;;;;;:43;;;;40160:328;;40584:17;:26;40602:7;40584:26;;;;;;;;;;;40577:33;;;40628:12;:18;40641:4;40628:18;;;;;;;;;;;;;;;:34;40647:14;40628:34;;;;;;;;;;;40621:41;;;39682:988;;;;:::o;40965:1079::-;41218:22;41263:1;41243:10;:17;;;;:21;;;;:::i;:::-;41218:46;;41275:18;41296:15;:24;41312:7;41296:24;;;;;;;;;;;;41275:45;;41647:19;41669:10;41680:14;41669:26;;;;;;;;;;;;;;;;;;;;;;;;41647:48;;41733:11;41708:10;41719;41708:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41844:10;41813:15;:28;41829:11;41813:28;;;;;;;;;;;:41;;;;41985:15;:24;42001:7;41985:24;;;;;;;;;;;41978:31;;;42020:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40965:1079;;;;:::o;38469:221::-;38554:14;38571:20;38588:2;38571:16;:20::i;:::-;38554:37;;38629:7;38602:12;:16;38615:2;38602:16;;;;;;;;;;;;;;;:24;38619:6;38602:24;;;;;;;;;;;:34;;;;38676:6;38647:17;:26;38665:7;38647:26;;;;;;;;;;;:35;;;;38469:221;;;:::o;8570:387::-;8630:4;8838:12;8905:7;8893:20;8885:28;;8948:1;8941:4;:8;8934:15;;;8570:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:407::-;;;7292:2;7280:9;7271:7;7267:23;7263:32;7260:2;;;7308:1;7305;7298:12;7260:2;7351:1;7376:53;7421:7;7412:6;7401:9;7397:22;7376:53;:::i;:::-;7366:63;;7322:117;7478:2;7504:53;7549:7;7540:6;7529:9;7525:22;7504:53;:::i;:::-;7494:63;;7449:118;7250:324;;;;;:::o;7580:179::-;;7670:46;7712:3;7704:6;7670:46;:::i;:::-;7748:4;7743:3;7739:14;7725:28;;7660:99;;;;:::o;7765:118::-;7852:24;7870:5;7852:24;:::i;:::-;7847:3;7840:37;7830:53;;:::o;7919:732::-;;8067:54;8115:5;8067:54;:::i;:::-;8137:86;8216:6;8211:3;8137:86;:::i;:::-;8130:93;;8247:56;8297:5;8247:56;:::i;:::-;8326:7;8357:1;8342:284;8367:6;8364:1;8361:13;8342:284;;;8443:6;8437:13;8470:63;8529:3;8514:13;8470:63;:::i;:::-;8463:70;;8556:60;8609:6;8556:60;:::i;:::-;8546:70;;8402:224;8389:1;8386;8382:9;8377:14;;8342:284;;;8346:14;8642:3;8635:10;;8043:608;;;;;;;:::o;8657:109::-;8738:21;8753:5;8738:21;:::i;:::-;8733:3;8726:34;8716:50;;:::o;8772:360::-;;8886:38;8918:5;8886:38;:::i;:::-;8940:70;9003:6;8998:3;8940:70;:::i;:::-;8933:77;;9019:52;9064:6;9059:3;9052:4;9045:5;9041:16;9019:52;:::i;:::-;9096:29;9118:6;9096:29;:::i;:::-;9091:3;9087:39;9080:46;;8862:270;;;;;:::o;9138:364::-;;9254:39;9287:5;9254:39;:::i;:::-;9309:71;9373:6;9368:3;9309:71;:::i;:::-;9302:78;;9389:52;9434:6;9429:3;9422:4;9415:5;9411:16;9389:52;:::i;:::-;9466:29;9488:6;9466:29;:::i;:::-;9461:3;9457:39;9450:46;;9230:272;;;;;:::o;9508:377::-;;9642:39;9675:5;9642:39;:::i;:::-;9697:89;9779:6;9774:3;9697:89;:::i;:::-;9690:96;;9795:52;9840:6;9835:3;9828:4;9821:5;9817:16;9795:52;:::i;:::-;9872:6;9867:3;9863:16;9856:23;;9618:267;;;;;:::o;9915:845::-;;10055:5;10049:12;10084:36;10110:9;10084:36;:::i;:::-;10136:89;10218:6;10213:3;10136:89;:::i;:::-;10129:96;;10256:1;10245:9;10241:17;10272:1;10267:137;;;;10418:1;10413:341;;;;10234:520;;10267:137;10351:4;10347:9;10336;10332:25;10327:3;10320:38;10387:6;10382:3;10378:16;10371:23;;10267:137;;10413:341;10480:38;10512:5;10480:38;:::i;:::-;10540:1;10554:154;10568:6;10565:1;10562:13;10554:154;;;10642:7;10636:14;10632:1;10627:3;10623:11;10616:35;10692:1;10683:7;10679:15;10668:26;;10590:4;10587:1;10583:12;10578:17;;10554:154;;;10737:6;10732:3;10728:16;10721:23;;10420:334;;10234:520;;10022:738;;;;;;:::o;10766:375::-;;10929:67;10993:2;10988:3;10929:67;:::i;:::-;10922:74;;11026:34;11022:1;11017:3;11013:11;11006:55;11092:13;11087:2;11082:3;11078:12;11071:35;11132:2;11127:3;11123:12;11116:19;;10912:229;;;:::o;11147:382::-;;11310:67;11374:2;11369:3;11310:67;:::i;:::-;11303:74;;11407:34;11403:1;11398:3;11394:11;11387:55;11473:20;11468:2;11463:3;11459:12;11452:42;11520:2;11515:3;11511:12;11504:19;;11293:236;;;:::o;11535:320::-;;11698:67;11762:2;11757:3;11698:67;:::i;:::-;11691:74;;11795:24;11791:1;11786:3;11782:11;11775:45;11846:2;11841:3;11837:12;11830:19;;11681:174;;;:::o;11861:370::-;;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12121:34;12117:1;12112:3;12108:11;12101:55;12187:8;12182:2;12177:3;12173:12;12166:30;12222:2;12217:3;12213:12;12206:19;;12007:224;;;:::o;12237:326::-;;12400:67;12464:2;12459:3;12400:67;:::i;:::-;12393:74;;12497:30;12493:1;12488:3;12484:11;12477:51;12554:2;12549:3;12545:12;12538:19;;12383:180;;;:::o;12569:368::-;;12732:67;12796:2;12791:3;12732:67;:::i;:::-;12725:74;;12829:34;12825:1;12820:3;12816:11;12809:55;12895:6;12890:2;12885:3;12881:12;12874:28;12928:2;12923:3;12919:12;12912:19;;12715:222;;;:::o;12943:323::-;;13106:67;13170:2;13165:3;13106:67;:::i;:::-;13099:74;;13203:27;13199:1;13194:3;13190:11;13183:48;13257:2;13252:3;13248:12;13241:19;;13089:177;;;:::o;13272:376::-;;13435:67;13499:2;13494:3;13435:67;:::i;:::-;13428:74;;13532:34;13528:1;13523:3;13519:11;13512:55;13598:14;13593:2;13588:3;13584:12;13577:36;13639:2;13634:3;13630:12;13623:19;;13418:230;;;:::o;13654:316::-;;13817:67;13881:2;13876:3;13817:67;:::i;:::-;13810:74;;13914:20;13910:1;13905:3;13901:11;13894:41;13961:2;13956:3;13952:12;13945:19;;13800:170;;;:::o;13976:321::-;;14139:67;14203:2;14198:3;14139:67;:::i;:::-;14132:74;;14236:25;14232:1;14227:3;14223:11;14216:46;14288:2;14283:3;14279:12;14272:19;;14122:175;;;:::o;14303:388::-;;14466:67;14530:2;14525:3;14466:67;:::i;:::-;14459:74;;14563:34;14559:1;14554:3;14550:11;14543:55;14629:26;14624:2;14619:3;14615:12;14608:48;14682:2;14677:3;14673:12;14666:19;;14449:242;;;:::o;14697:374::-;;14860:67;14924:2;14919:3;14860:67;:::i;:::-;14853:74;;14957:34;14953:1;14948:3;14944:11;14937:55;15023:12;15018:2;15013:3;15009:12;15002:34;15062:2;15057:3;15053:12;15046:19;;14843:228;;;:::o;15077:373::-;;15240:67;15304:2;15299:3;15240:67;:::i;:::-;15233:74;;15337:34;15333:1;15328:3;15324:11;15317:55;15403:11;15398:2;15393:3;15389:12;15382:33;15441:2;15436:3;15432:12;15425:19;;15223:227;;;:::o;15456:320::-;;15619:67;15683:2;15678:3;15619:67;:::i;:::-;15612:74;;15716:24;15712:1;15707:3;15703:11;15696:45;15767:2;15762:3;15758:12;15751:19;;15602:174;;;:::o;15782:330::-;;15945:67;16009:2;16004:3;15945:67;:::i;:::-;15938:74;;16042:34;16038:1;16033:3;16029:11;16022:55;16103:2;16098:3;16094:12;16087:19;;15928:184;;;:::o;16118:376::-;;16281:67;16345:2;16340:3;16281:67;:::i;:::-;16274:74;;16378:34;16374:1;16369:3;16365:11;16358:55;16444:14;16439:2;16434:3;16430:12;16423:36;16485:2;16480:3;16476:12;16469:19;;16264:230;;;:::o;16500:330::-;;16663:67;16727:2;16722:3;16663:67;:::i;:::-;16656:74;;16760:34;16756:1;16751:3;16747:11;16740:55;16821:2;16816:3;16812:12;16805:19;;16646:184;;;:::o;16836:373::-;;16999:67;17063:2;17058:3;16999:67;:::i;:::-;16992:74;;17096:34;17092:1;17087:3;17083:11;17076:55;17162:11;17157:2;17152:3;17148:12;17141:33;17200:2;17195:3;17191:12;17184:19;;16982:227;;;:::o;17215:379::-;;17378:67;17442:2;17437:3;17378:67;:::i;:::-;17371:74;;17475:34;17471:1;17466:3;17462:11;17455:55;17541:17;17536:2;17531:3;17527:12;17520:39;17585:2;17580:3;17576:12;17569:19;;17361:233;;;:::o;17600:326::-;;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17860:30;17856:1;17851:3;17847:11;17840:51;17917:2;17912:3;17908:12;17901:19;;17746:180;;;:::o;17932:365::-;;18095:67;18159:2;18154:3;18095:67;:::i;:::-;18088:74;;18192:34;18188:1;18183:3;18179:11;18172:55;18258:3;18253:2;18248:3;18244:12;18237:25;18288:2;18283:3;18279:12;18272:19;;18078:219;;;:::o;18303:297::-;;18483:83;18564:1;18559:3;18483:83;:::i;:::-;18476:90;;18592:1;18587:3;18583:11;18576:18;;18466:134;;;:::o;18606:381::-;;18769:67;18833:2;18828:3;18769:67;:::i;:::-;18762:74;;18866:34;18862:1;18857:3;18853:11;18846:55;18932:19;18927:2;18922:3;18918:12;18911:41;18978:2;18973:3;18969:12;18962:19;;18752:235;;;:::o;18993:376::-;;19156:67;19220:2;19215:3;19156:67;:::i;:::-;19149:74;;19253:34;19249:1;19244:3;19240:11;19233:55;19319:14;19314:2;19309:3;19305:12;19298:36;19360:2;19355:3;19351:12;19344:19;;19139:230;;;:::o;19375:329::-;;19538:67;19602:2;19597:3;19538:67;:::i;:::-;19531:74;;19635:33;19631:1;19626:3;19622:11;19615:54;19695:2;19690:3;19686:12;19679:19;;19521:183;;;:::o;19710:325::-;;19873:67;19937:2;19932:3;19873:67;:::i;:::-;19866:74;;19970:29;19966:1;19961:3;19957:11;19950:50;20026:2;20021:3;20017:12;20010:19;;19856:179;;;:::o;20041:384::-;;20204:67;20268:2;20263:3;20204:67;:::i;:::-;20197:74;;20301:34;20297:1;20292:3;20288:11;20281:55;20367:22;20362:2;20357:3;20353:12;20346:44;20416:2;20411:3;20407:12;20400:19;;20187:238;;;:::o;20431:108::-;20508:24;20526:5;20508:24;:::i;:::-;20503:3;20496:37;20486:53;;:::o;20545:118::-;20632:24;20650:5;20632:24;:::i;:::-;20627:3;20620:37;20610:53;;:::o;20669:589::-;;20916:95;21007:3;20998:6;20916:95;:::i;:::-;20909:102;;21028:95;21119:3;21110:6;21028:95;:::i;:::-;21021:102;;21140:92;21228:3;21219:6;21140:92;:::i;:::-;21133:99;;21249:3;21242:10;;20898:360;;;;;;:::o;21264:379::-;;21470:147;21613:3;21470:147;:::i;:::-;21463:154;;21634:3;21627:10;;21452:191;;;:::o;21649:222::-;;21780:2;21769:9;21765:18;21757:26;;21793:71;21861:1;21850:9;21846:17;21837:6;21793:71;:::i;:::-;21747:124;;;;:::o;21877:640::-;;22110:3;22099:9;22095:19;22087:27;;22124:71;22192:1;22181:9;22177:17;22168:6;22124:71;:::i;:::-;22205:72;22273:2;22262:9;22258:18;22249:6;22205:72;:::i;:::-;22287;22355:2;22344:9;22340:18;22331:6;22287:72;:::i;:::-;22406:9;22400:4;22396:20;22391:2;22380:9;22376:18;22369:48;22434:76;22505:4;22496:6;22434:76;:::i;:::-;22426:84;;22077:440;;;;;;;:::o;22523:373::-;;22704:2;22693:9;22689:18;22681:26;;22753:9;22747:4;22743:20;22739:1;22728:9;22724:17;22717:47;22781:108;22884:4;22875:6;22781:108;:::i;:::-;22773:116;;22671:225;;;;:::o;22902:210::-;;23027:2;23016:9;23012:18;23004:26;;23040:65;23102:1;23091:9;23087:17;23078:6;23040:65;:::i;:::-;22994:118;;;;:::o;23118:313::-;;23269:2;23258:9;23254:18;23246:26;;23318:9;23312:4;23308:20;23304:1;23293:9;23289:17;23282:47;23346:78;23419:4;23410:6;23346:78;:::i;:::-;23338:86;;23236:195;;;;:::o;23437:419::-;;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23608:248;;;:::o;23862:419::-;;24066:2;24055:9;24051:18;24043:26;;24115:9;24109:4;24105:20;24101:1;24090:9;24086:17;24079:47;24143:131;24269:4;24143:131;:::i;:::-;24135:139;;24033:248;;;:::o;24287:419::-;;24491:2;24480:9;24476:18;24468:26;;24540:9;24534:4;24530:20;24526:1;24515:9;24511:17;24504:47;24568:131;24694:4;24568:131;:::i;:::-;24560:139;;24458:248;;;:::o;24712:419::-;;24916:2;24905:9;24901:18;24893:26;;24965:9;24959:4;24955:20;24951:1;24940:9;24936:17;24929:47;24993:131;25119:4;24993:131;:::i;:::-;24985:139;;24883:248;;;:::o;25137:419::-;;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25308:248;;;:::o;25562:419::-;;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25733:248;;;:::o;25987:419::-;;26191:2;26180:9;26176:18;26168:26;;26240:9;26234:4;26230:20;26226:1;26215:9;26211:17;26204:47;26268:131;26394:4;26268:131;:::i;:::-;26260:139;;26158:248;;;:::o;26412:419::-;;26616:2;26605:9;26601:18;26593:26;;26665:9;26659:4;26655:20;26651:1;26640:9;26636:17;26629:47;26693:131;26819:4;26693:131;:::i;:::-;26685:139;;26583:248;;;:::o;26837:419::-;;27041:2;27030:9;27026:18;27018:26;;27090:9;27084:4;27080:20;27076:1;27065:9;27061:17;27054:47;27118:131;27244:4;27118:131;:::i;:::-;27110:139;;27008:248;;;:::o;27262:419::-;;27466:2;27455:9;27451:18;27443:26;;27515:9;27509:4;27505:20;27501:1;27490:9;27486:17;27479:47;27543:131;27669:4;27543:131;:::i;:::-;27535:139;;27433:248;;;:::o;27687:419::-;;27891:2;27880:9;27876:18;27868:26;;27940:9;27934:4;27930:20;27926:1;27915:9;27911:17;27904:47;27968:131;28094:4;27968:131;:::i;:::-;27960:139;;27858:248;;;:::o;28112:419::-;;28316:2;28305:9;28301:18;28293:26;;28365:9;28359:4;28355:20;28351:1;28340:9;28336:17;28329:47;28393:131;28519:4;28393:131;:::i;:::-;28385:139;;28283:248;;;:::o;28537:419::-;;28741:2;28730:9;28726:18;28718:26;;28790:9;28784:4;28780:20;28776:1;28765:9;28761:17;28754:47;28818:131;28944:4;28818:131;:::i;:::-;28810:139;;28708:248;;;:::o;28962:419::-;;29166:2;29155:9;29151:18;29143:26;;29215:9;29209:4;29205:20;29201:1;29190:9;29186:17;29179:47;29243:131;29369:4;29243:131;:::i;:::-;29235:139;;29133:248;;;:::o;29387:419::-;;29591:2;29580:9;29576:18;29568:26;;29640:9;29634:4;29630:20;29626:1;29615:9;29611:17;29604:47;29668:131;29794:4;29668:131;:::i;:::-;29660:139;;29558:248;;;:::o;29812:419::-;;30016:2;30005:9;30001:18;29993:26;;30065:9;30059:4;30055:20;30051:1;30040:9;30036:17;30029:47;30093:131;30219:4;30093:131;:::i;:::-;30085:139;;29983:248;;;:::o;30237:419::-;;30441:2;30430:9;30426:18;30418:26;;30490:9;30484:4;30480:20;30476:1;30465:9;30461:17;30454:47;30518:131;30644:4;30518:131;:::i;:::-;30510:139;;30408:248;;;:::o;30662:419::-;;30866:2;30855:9;30851:18;30843:26;;30915:9;30909:4;30905:20;30901:1;30890:9;30886:17;30879:47;30943:131;31069:4;30943:131;:::i;:::-;30935:139;;30833:248;;;:::o;31087:419::-;;31291:2;31280:9;31276:18;31268:26;;31340:9;31334:4;31330:20;31326:1;31315:9;31311:17;31304:47;31368:131;31494:4;31368:131;:::i;:::-;31360:139;;31258:248;;;:::o;31512:419::-;;31716:2;31705:9;31701:18;31693:26;;31765:9;31759:4;31755:20;31751:1;31740:9;31736:17;31729:47;31793:131;31919:4;31793:131;:::i;:::-;31785:139;;31683:248;;;:::o;31937:419::-;;32141:2;32130:9;32126:18;32118:26;;32190:9;32184:4;32180:20;32176:1;32165:9;32161:17;32154:47;32218:131;32344:4;32218:131;:::i;:::-;32210:139;;32108:248;;;:::o;32362:419::-;;32566:2;32555:9;32551:18;32543:26;;32615:9;32609:4;32605:20;32601:1;32590:9;32586:17;32579:47;32643:131;32769:4;32643:131;:::i;:::-;32635:139;;32533:248;;;:::o;32787:419::-;;32991:2;32980:9;32976:18;32968:26;;33040:9;33034:4;33030:20;33026:1;33015:9;33011:17;33004:47;33068:131;33194:4;33068:131;:::i;:::-;33060:139;;32958:248;;;:::o;33212:419::-;;33416:2;33405:9;33401:18;33393:26;;33465:9;33459:4;33455:20;33451:1;33440:9;33436:17;33429:47;33493:131;33619:4;33493:131;:::i;:::-;33485:139;;33383:248;;;:::o;33637:419::-;;33841:2;33830:9;33826:18;33818:26;;33890:9;33884:4;33880:20;33876:1;33865:9;33861:17;33854:47;33918:131;34044:4;33918:131;:::i;:::-;33910:139;;33808:248;;;:::o;34062:419::-;;34266:2;34255:9;34251:18;34243:26;;34315:9;34309:4;34305:20;34301:1;34290:9;34286:17;34279:47;34343:131;34469:4;34343:131;:::i;:::-;34335:139;;34233:248;;;:::o;34487:222::-;;34618:2;34607:9;34603:18;34595:26;;34631:71;34699:1;34688:9;34684:17;34675:6;34631:71;:::i;:::-;34585:124;;;;:::o;34715:283::-;;34781:2;34775:9;34765:19;;34823:4;34815:6;34811:17;34930:6;34918:10;34915:22;34894:18;34882:10;34879:34;34876:62;34873:2;;;34941:18;;:::i;:::-;34873:2;34981:10;34977:2;34970:22;34755:243;;;;:::o;35004:331::-;;35155:18;35147:6;35144:30;35141:2;;;35177:18;;:::i;:::-;35141:2;35262:4;35258:9;35251:4;35243:6;35239:17;35235:33;35227:41;;35323:4;35317;35313:15;35305:23;;35070:265;;;:::o;35341:332::-;;35493:18;35485:6;35482:30;35479:2;;;35515:18;;:::i;:::-;35479:2;35600:4;35596:9;35589:4;35581:6;35577:17;35573:33;35565:41;;35661:4;35655;35651:15;35643:23;;35408:265;;;:::o;35679:132::-;;35769:3;35761:11;;35799:4;35794:3;35790:14;35782:22;;35751:60;;;:::o;35817:141::-;;35889:3;35881:11;;35912:3;35909:1;35902:14;35946:4;35943:1;35933:18;35925:26;;35871:87;;;:::o;35964:114::-;;36065:5;36059:12;36049:22;;36038:40;;;:::o;36084:98::-;;36169:5;36163:12;36153:22;;36142:40;;;:::o;36188:99::-;;36274:5;36268:12;36258:22;;36247:40;;;:::o;36293:113::-;;36395:4;36390:3;36386:14;36378:22;;36368:38;;;:::o;36412:184::-;;36545:6;36540:3;36533:19;36585:4;36580:3;36576:14;36561:29;;36523:73;;;;:::o;36602:168::-;;36719:6;36714:3;36707:19;36759:4;36754:3;36750:14;36735:29;;36697:73;;;;:::o;36776:147::-;;36914:3;36899:18;;36889:34;;;;:::o;36929:169::-;;37047:6;37042:3;37035:19;37087:4;37082:3;37078:14;37063:29;;37025:73;;;;:::o;37104:148::-;;37243:3;37228:18;;37218:34;;;;:::o;37258:305::-;;37317:20;37335:1;37317:20;:::i;:::-;37312:25;;37351:20;37369:1;37351:20;:::i;:::-;37346:25;;37505:1;37437:66;37433:74;37430:1;37427:81;37424:2;;;37511:18;;:::i;:::-;37424:2;37555:1;37552;37548:9;37541:16;;37302:261;;;;:::o;37569:185::-;;37626:20;37644:1;37626:20;:::i;:::-;37621:25;;37660:20;37678:1;37660:20;:::i;:::-;37655:25;;37699:1;37689:2;;37704:18;;:::i;:::-;37689:2;37746:1;37743;37739:9;37734:14;;37611:143;;;;:::o;37760:348::-;;37823:20;37841:1;37823:20;:::i;:::-;37818:25;;37857:20;37875:1;37857:20;:::i;:::-;37852:25;;38045:1;37977:66;37973:74;37970:1;37967:81;37962:1;37955:9;37948:17;37944:105;37941:2;;;38052:18;;:::i;:::-;37941:2;38100:1;38097;38093:9;38082:20;;37808:300;;;;:::o;38114:191::-;;38174:20;38192:1;38174:20;:::i;:::-;38169:25;;38208:20;38226:1;38208:20;:::i;:::-;38203:25;;38247:1;38244;38241:8;38238:2;;;38252:18;;:::i;:::-;38238:2;38297:1;38294;38290:9;38282:17;;38159:146;;;;:::o;38311:96::-;;38377:24;38395:5;38377:24;:::i;:::-;38366:35;;38356:51;;;:::o;38413:90::-;;38490:5;38483:13;38476:21;38465:32;;38455:48;;;:::o;38509:149::-;;38585:66;38578:5;38574:78;38563:89;;38553:105;;;:::o;38664:126::-;;38741:42;38734:5;38730:54;38719:65;;38709:81;;;:::o;38796:77::-;;38862:5;38851:16;;38841:32;;;:::o;38879:154::-;38963:6;38958:3;38953;38940:30;39025:1;39016:6;39011:3;39007:16;39000:27;38930:103;;;:::o;39039:307::-;39107:1;39117:113;39131:6;39128:1;39125:13;39117:113;;;39216:1;39211:3;39207:11;39201:18;39197:1;39192:3;39188:11;39181:39;39153:2;39150:1;39146:10;39141:15;;39117:113;;;39248:6;39245:1;39242:13;39239:2;;;39328:1;39319:6;39314:3;39310:16;39303:27;39239:2;39088:258;;;;:::o;39352:320::-;;39433:1;39427:4;39423:12;39413:22;;39480:1;39474:4;39470:12;39501:18;39491:2;;39557:4;39549:6;39545:17;39535:27;;39491:2;39619;39611:6;39608:14;39588:18;39585:38;39582:2;;;39638:18;;:::i;:::-;39582:2;39403:269;;;;:::o;39678:233::-;;39740:24;39758:5;39740:24;:::i;:::-;39731:33;;39786:66;39779:5;39776:77;39773:2;;;39856:18;;:::i;:::-;39773:2;39903:1;39896:5;39892:13;39885:20;;39721:190;;;:::o;39917:176::-;;39966:20;39984:1;39966:20;:::i;:::-;39961:25;;40000:20;40018:1;40000:20;:::i;:::-;39995:25;;40039:1;40029:2;;40044:18;;:::i;:::-;40029:2;40085:1;40082;40078:9;40073:14;;39951:142;;;;:::o;40099:180::-;40147:77;40144:1;40137:88;40244:4;40241:1;40234:15;40268:4;40265:1;40258:15;40285:180;40333:77;40330:1;40323:88;40430:4;40427:1;40420:15;40454:4;40451:1;40444:15;40471:180;40519:77;40516:1;40509:88;40616:4;40613:1;40606:15;40640:4;40637:1;40630:15;40657:180;40705:77;40702:1;40695:88;40802:4;40799:1;40792:15;40826:4;40823:1;40816:15;40843:102;;40935:2;40931:7;40926:2;40919:5;40915:14;40911:28;40901:38;;40891:54;;;:::o;40951:122::-;41024:24;41042:5;41024:24;:::i;:::-;41017:5;41014:35;41004:2;;41063:1;41060;41053:12;41004:2;40994:79;:::o;41079:116::-;41149:21;41164:5;41149:21;:::i;:::-;41142:5;41139:32;41129:2;;41185:1;41182;41175:12;41129:2;41119:76;:::o;41201:120::-;41273:23;41290:5;41273:23;:::i;:::-;41266:5;41263:34;41253:2;;41311:1;41308;41301:12;41253:2;41243:78;:::o;41327:122::-;41400:24;41418:5;41400:24;:::i;:::-;41393:5;41390:35;41380:2;;41439:1;41436;41429:12;41380:2;41370:79;:::o

Swarm Source

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