ETH Price: $2,514.18 (+0.91%)

Token

Dead Potato Society (DPS)
 

Overview

Max Total Supply

166 DPS

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DPS
0x521bc9bb5ab741658e48ef578d291aee05dba358
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-15
*/

// SPDX-License-Identifier: GPL-3.0
// Created by SpudLabs

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

pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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

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

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

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

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

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

// File: @openzeppelin/contracts/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/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/NFT.sol


// Created by SpudLabs

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

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 gwei;
    uint256 public maxSupply = 7777;
    uint256 public maxMintAmount = 20;
    uint256 public maxWhitelistBalance = 4;
    bool public paused = false;
    bool public requireWhitelist = true;
    mapping(address => bool) public whitelisted;

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

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

    // public
    function mint(address _to, uint256 _mintAmount)
        public
        payable
        returns (bool sufficient)
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "Specify a number to mint");
        require(_mintAmount <= maxMintAmount, "Too many mints requested");
        require(supply + _mintAmount <= maxSupply, "No more supply");

        if (msg.sender != owner()) {
            require(!paused, "Not currently for sale");
            require(msg.value >= cost * _mintAmount, "Price too low");

            if (requireWhitelist == true) {
                require(whitelisted[msg.sender] == true, "Whitelist required");
                require(
                    balanceOf(msg.sender) + _mintAmount <= maxWhitelistBalance,
                    "Too many whitelist mints"
                );
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }

        return true;
    }

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

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMintAmount = _newMaxMintAmount;
    }

    function setMaxWhitelistBalance(uint256 _newMaxWhitelistBalance)
        public
        onlyOwner
    {
        maxWhitelistBalance = _newMaxWhitelistBalance;
    }

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

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

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRequireWhitelist(bool _state) public onlyOwner {
        requireWhitelist = _state;
    }

    function whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"maxWhitelistBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"sufficient","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requireWhitelist","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":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxWhitelistBalance","type":"uint256"}],"name":"setMaxWhitelistBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRequireWhitelist","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":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002e3565b506000600d55611e61600e556014600f5560046010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550348015620000aa57600080fd5b5060405162005179380380620051798339818101604052810190620000d0919062000411565b82828160009080519060200190620000ea929190620002e3565b50806001908051906020019062000103929190620002e3565b505050620001266200011a6200014060201b60201c565b6200014860201b60201c565b62000137816200020e60201b60201c565b505050620006d1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021e6200014060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000244620002b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029490620004f1565b60405180910390fd5b80600b9080519060200190620002b5929190620002e3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f190620005b9565b90600052602060002090601f01602090048101928262000315576000855562000361565b82601f106200033057805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036057825182559160200191906001019062000343565b5b50905062000370919062000374565b5090565b5b808211156200038f57600081600090555060010162000375565b5090565b6000620003aa620003a4846200053c565b62000513565b905082815260208101848484011115620003c957620003c862000688565b5b620003d684828562000583565b509392505050565b600082601f830112620003f657620003f562000683565b5b81516200040884826020860162000393565b91505092915050565b6000806000606084860312156200042d576200042c62000692565b5b600084015167ffffffffffffffff8111156200044e576200044d6200068d565b5b6200045c86828701620003de565b935050602084015167ffffffffffffffff81111562000480576200047f6200068d565b5b6200048e86828701620003de565b925050604084015167ffffffffffffffff811115620004b257620004b16200068d565b5b620004c086828701620003de565b9150509250925092565b6000620004d960208362000572565b9150620004e682620006a8565b602082019050919050565b600060208201905081810360008301526200050c81620004ca565b9050919050565b60006200051f62000532565b90506200052d8282620005ef565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055a576200055962000654565b5b620005658262000697565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005a357808201518184015260208101905062000586565b83811115620005b3576000848401525b50505050565b60006002820490506001821680620005d257607f821691505b60208210811415620005e957620005e862000625565b5b50919050565b620005fa8262000697565b810181811067ffffffffffffffff821117156200061c576200061b62000654565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a9880620006e16000396000f3fe60806040526004361061023b5760003560e01c806357ced13a1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610867578063d936547e14610892578063da3ef23f146108cf578063e985e9c5146108f8578063f2fde38b146109355761023b565b8063a22cb46514610784578063b88d4fde146107ad578063c6682862146107d6578063c87b56dd14610801578063ca625dae1461083e5761023b565b8063715018a6116100f2578063715018a6146106c357806378cf6de0146106da578063856734c4146107035780638da5cb5b1461072e57806395d89b41146107595761023b565b806357ced13a146105c85780635c975abb146105f35780636352211e1461061e5780636c0360eb1461065b57806370a08231146106865761023b565b80632f745c59116101bc578063438b630011610180578063438b6300146104d357806344a0d68a146105105780634a4c560d146105395780634f6ccce71461056257806355f804b31461059f5761023b565b80632f745c591461040a57806330cc7ae0146104475780633ccfd60b1461047057806340c10f191461047a57806342842e0e146104aa5761023b565b806313faede61161020357806313faede61461033757806316c38b3c1461036257806318160ddd1461038b578063239c70ae146103b657806323b872dd146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134b1565b61095e565b6040516102749190613b7a565b60405180910390f35b34801561028957600080fd5b506102926109d8565b60405161029f9190613b95565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613554565b610a6a565b6040516102dc9190613af1565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613554565b610aef565b005b34801561031a57600080fd5b5061033560048036038101906103309190613444565b610b75565b005b34801561034357600080fd5b5061034c610c8d565b6040516103599190613ed7565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613484565b610c93565b005b34801561039757600080fd5b506103a0610d2c565b6040516103ad9190613ed7565b60405180910390f35b3480156103c257600080fd5b506103cb610d39565b6040516103d89190613ed7565b60405180910390f35b3480156103ed57600080fd5b506104086004803603810190610403919061332e565b610d3f565b005b34801561041657600080fd5b50610431600480360381019061042c9190613444565b610d9f565b60405161043e9190613ed7565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906132c1565b610e44565b005b610478610f1b565b005b610494600480360381019061048f9190613444565b610fd7565b6040516104a19190613b7a565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061332e565b6112e1565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906132c1565b611301565b6040516105079190613b58565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613554565b6113af565b005b34801561054557600080fd5b50610560600480360381019061055b91906132c1565b611435565b005b34801561056e57600080fd5b5061058960048036038101906105849190613554565b61150c565b6040516105969190613ed7565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c1919061350b565b61157d565b005b3480156105d457600080fd5b506105dd611613565b6040516105ea9190613ed7565b60405180910390f35b3480156105ff57600080fd5b50610608611619565b6040516106159190613b7a565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613554565b61162c565b6040516106529190613af1565b60405180910390f35b34801561066757600080fd5b506106706116de565b60405161067d9190613b95565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906132c1565b61176c565b6040516106ba9190613ed7565b60405180910390f35b3480156106cf57600080fd5b506106d8611824565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190613484565b6118ac565b005b34801561070f57600080fd5b50610718611945565b6040516107259190613b7a565b60405180910390f35b34801561073a57600080fd5b50610743611958565b6040516107509190613af1565b60405180910390f35b34801561076557600080fd5b5061076e611982565b60405161077b9190613b95565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613404565b611a14565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613381565b611b95565b005b3480156107e257600080fd5b506107eb611bf7565b6040516107f89190613b95565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613554565b611c85565b6040516108359190613b95565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613554565b611d2f565b005b34801561087357600080fd5b5061087c611db5565b6040516108899190613ed7565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906132c1565b611dbb565b6040516108c69190613b7a565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f1919061350b565b611ddb565b005b34801561090457600080fd5b5061091f600480360381019061091a91906132ee565b611e71565b60405161092c9190613b7a565b60405180910390f35b34801561094157600080fd5b5061095c600480360381019061095791906132c1565b611f05565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d157506109d082611ffd565b5b9050919050565b6060600080546109e7906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a13906141d5565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b6000610a75826120df565b610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90613d77565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610af761214b565b73ffffffffffffffffffffffffffffffffffffffff16610b15611958565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613d97565b60405180910390fd5b80600f8190555050565b6000610b808261162c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613df7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1061214b565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c3961214b565b611e71565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613cf7565b60405180910390fd5b610c888383612153565b505050565b600d5481565b610c9b61214b565b73ffffffffffffffffffffffffffffffffffffffff16610cb9611958565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613d97565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600f5481565b610d50610d4a61214b565b8261220c565b610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613e77565b60405180910390fd5b610d9a8383836122ea565b505050565b6000610daa8361176c565b8210610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613bd7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e4c61214b565b73ffffffffffffffffffffffffffffffffffffffff16610e6a611958565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613d97565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f2361214b565b73ffffffffffffffffffffffffffffffffffffffff16610f41611958565b73ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613d97565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fd557600080fd5b565b600080610fe2610d2c565b905060008311611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613e37565b60405180910390fd5b600f5483111561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613bb7565b60405180910390fd5b600e54838261107b919061400a565b11156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613eb7565b60405180910390fd5b6110c4611958565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129f57601160009054906101000a900460ff1615611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613c57565b60405180910390fd5b82600d546111549190614091565b341015611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613e57565b60405180910390fd5b60011515601160019054906101000a900460ff161515141561129e5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613cb7565b60405180910390fd5b601054836112523361176c565b61125c919061400a565b111561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613e17565b60405180910390fd5b5b5b6000600190505b8381116112d5576112c28582846112bd919061400a565b612546565b80806112cd90614238565b9150506112a6565b50600191505092915050565b6112fc83838360405180602001604052806000815250611b95565b505050565b6060600061130e8361176c565b905060008167ffffffffffffffff81111561132c5761132b61439d565b5b60405190808252806020026020018201604052801561135a5781602001602082028036833780820191505090505b50905060005b828110156113a4576113728582610d9f565b8282815181106113855761138461436e565b5b602002602001018181525050808061139c90614238565b915050611360565b508092505050919050565b6113b761214b565b73ffffffffffffffffffffffffffffffffffffffff166113d5611958565b73ffffffffffffffffffffffffffffffffffffffff161461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613d97565b60405180910390fd5b80600d8190555050565b61143d61214b565b73ffffffffffffffffffffffffffffffffffffffff1661145b611958565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613d97565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611516610d2c565b8210611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90613e97565b60405180910390fd5b6008828154811061156b5761156a61436e565b5b90600052602060002001549050919050565b61158561214b565b73ffffffffffffffffffffffffffffffffffffffff166115a3611958565b73ffffffffffffffffffffffffffffffffffffffff16146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090613d97565b60405180910390fd5b80600b908051906020019061160f9291906130d5565b5050565b60105481565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613d37565b60405180910390fd5b80915050919050565b600b80546116eb906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906141d5565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490613d17565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182c61214b565b73ffffffffffffffffffffffffffffffffffffffff1661184a611958565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613d97565b60405180910390fd5b6118aa6000612564565b565b6118b461214b565b73ffffffffffffffffffffffffffffffffffffffff166118d2611958565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613d97565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611991906141d5565b80601f01602080910402602001604051908101604052809291908181526020018280546119bd906141d5565b8015611a0a5780601f106119df57610100808354040283529160200191611a0a565b820191906000526020600020905b8154815290600101906020018083116119ed57829003601f168201915b5050505050905090565b611a1c61214b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190613c97565b60405180910390fd5b8060056000611a9761214b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4461214b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b899190613b7a565b60405180910390a35050565b611ba6611ba061214b565b8361220c565b611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613e77565b60405180910390fd5b611bf18484848461262a565b50505050565b600c8054611c04906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c30906141d5565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b505050505081565b6060611c90826120df565b611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613dd7565b60405180910390fd5b6000611cd9612686565b90506000815111611cf95760405180602001604052806000815250611d27565b80611d0384612718565b600c604051602001611d1793929190613ac0565b6040516020818303038152906040525b915050919050565b611d3761214b565b73ffffffffffffffffffffffffffffffffffffffff16611d55611958565b73ffffffffffffffffffffffffffffffffffffffff1614611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613d97565b60405180910390fd5b8060108190555050565b600e5481565b60126020528060005260406000206000915054906101000a900460ff1681565b611de361214b565b73ffffffffffffffffffffffffffffffffffffffff16611e01611958565b73ffffffffffffffffffffffffffffffffffffffff1614611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613d97565b60405180910390fd5b80600c9080519060200190611e6d9291906130d5565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0d61214b565b73ffffffffffffffffffffffffffffffffffffffff16611f2b611958565b73ffffffffffffffffffffffffffffffffffffffff1614611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890613d97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890613c17565b60405180910390fd5b611ffa81612564565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120d857506120d782612879565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c68361162c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612217826120df565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90613cd7565b60405180910390fd5b60006122618361162c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d057508373ffffffffffffffffffffffffffffffffffffffff166122b884610a6a565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e157506122e08185611e71565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661230a8261162c565b73ffffffffffffffffffffffffffffffffffffffff1614612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613c77565b60405180910390fd5b6123db8383836128e3565b6123e6600082612153565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243691906140eb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d919061400a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125608282604051806020016040528060008152506129f7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126358484846122ea565b61264184848484612a52565b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790613bf7565b60405180910390fd5b50505050565b6060600b8054612695906141d5565b80601f01602080910402602001604051908101604052809291908181526020018280546126c1906141d5565b801561270e5780601f106126e35761010080835404028352916020019161270e565b820191906000526020600020905b8154815290600101906020018083116126f157829003601f168201915b5050505050905090565b60606000821415612760576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612874565b600082905060005b6000821461279257808061277b90614238565b915050600a8261278b9190614060565b9150612768565b60008167ffffffffffffffff8111156127ae576127ad61439d565b5b6040519080825280601f01601f1916602001820160405280156127e05781602001600182028036833780820191505090505b5090505b6000851461286d576001826127f991906140eb565b9150600a856128089190614281565b6030612814919061400a565b60f81b81838151811061282a5761282961436e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128669190614060565b94506127e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128ee838383612be9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129315761292c81612bee565b612970565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461296f5761296e8382612c37565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b3576129ae81612da4565b6129f2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129f1576129f08282612e75565b5b5b505050565b612a018383612ef4565b612a0e6000848484612a52565b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490613bf7565b60405180910390fd5b505050565b6000612a738473ffffffffffffffffffffffffffffffffffffffff166130c2565b15612bdc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a9c61214b565b8786866040518563ffffffff1660e01b8152600401612abe9493929190613b0c565b602060405180830381600087803b158015612ad857600080fd5b505af1925050508015612b0957506040513d601f19601f82011682018060405250810190612b0691906134de565b60015b612b8c573d8060008114612b39576040519150601f19603f3d011682016040523d82523d6000602084013e612b3e565b606091505b50600081511415612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b90613bf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c448461176c565b612c4e91906140eb565b9050600060076000848152602001908152602001600020549050818114612d33576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db891906140eb565b9050600060096000848152602001908152602001600020549050600060088381548110612de857612de761436e565b5b906000526020600020015490508060088381548110612e0a57612e0961436e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5957612e5861433f565b5b6001900381819060005260206000200160009055905550505050565b6000612e808361176c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90613d57565b60405180910390fd5b612f6d816120df565b15612fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa490613c37565b60405180910390fd5b612fb9600083836128e3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613009919061400a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130e1906141d5565b90600052602060002090601f016020900481019282613103576000855561314a565b82601f1061311c57805160ff191683800117855561314a565b8280016001018555821561314a579182015b8281111561314957825182559160200191906001019061312e565b5b509050613157919061315b565b5090565b5b8082111561317457600081600090555060010161315c565b5090565b600061318b61318684613f17565b613ef2565b9050828152602081018484840111156131a7576131a66143d1565b5b6131b2848285614193565b509392505050565b60006131cd6131c884613f48565b613ef2565b9050828152602081018484840111156131e9576131e86143d1565b5b6131f4848285614193565b509392505050565b60008135905061320b81614a06565b92915050565b60008135905061322081614a1d565b92915050565b60008135905061323581614a34565b92915050565b60008151905061324a81614a34565b92915050565b600082601f830112613265576132646143cc565b5b8135613275848260208601613178565b91505092915050565b600082601f830112613293576132926143cc565b5b81356132a38482602086016131ba565b91505092915050565b6000813590506132bb81614a4b565b92915050565b6000602082840312156132d7576132d66143db565b5b60006132e5848285016131fc565b91505092915050565b60008060408385031215613305576133046143db565b5b6000613313858286016131fc565b9250506020613324858286016131fc565b9150509250929050565b600080600060608486031215613347576133466143db565b5b6000613355868287016131fc565b9350506020613366868287016131fc565b9250506040613377868287016132ac565b9150509250925092565b6000806000806080858703121561339b5761339a6143db565b5b60006133a9878288016131fc565b94505060206133ba878288016131fc565b93505060406133cb878288016132ac565b925050606085013567ffffffffffffffff8111156133ec576133eb6143d6565b5b6133f887828801613250565b91505092959194509250565b6000806040838503121561341b5761341a6143db565b5b6000613429858286016131fc565b925050602061343a85828601613211565b9150509250929050565b6000806040838503121561345b5761345a6143db565b5b6000613469858286016131fc565b925050602061347a858286016132ac565b9150509250929050565b60006020828403121561349a576134996143db565b5b60006134a884828501613211565b91505092915050565b6000602082840312156134c7576134c66143db565b5b60006134d584828501613226565b91505092915050565b6000602082840312156134f4576134f36143db565b5b60006135028482850161323b565b91505092915050565b600060208284031215613521576135206143db565b5b600082013567ffffffffffffffff81111561353f5761353e6143d6565b5b61354b8482850161327e565b91505092915050565b60006020828403121561356a576135696143db565b5b6000613578848285016132ac565b91505092915050565b600061358d8383613aa2565b60208301905092915050565b6135a28161411f565b82525050565b60006135b382613f9e565b6135bd8185613fcc565b93506135c883613f79565b8060005b838110156135f95781516135e08882613581565b97506135eb83613fbf565b9250506001810190506135cc565b5085935050505092915050565b61360f81614131565b82525050565b600061362082613fa9565b61362a8185613fdd565b935061363a8185602086016141a2565b613643816143e0565b840191505092915050565b600061365982613fb4565b6136638185613fee565b93506136738185602086016141a2565b61367c816143e0565b840191505092915050565b600061369282613fb4565b61369c8185613fff565b93506136ac8185602086016141a2565b80840191505092915050565b600081546136c5816141d5565b6136cf8186613fff565b945060018216600081146136ea57600181146136fb5761372e565b60ff1983168652818601935061372e565b61370485613f89565b60005b8381101561372657815481890152600182019150602081019050613707565b838801955050505b50505092915050565b6000613744601883613fee565b915061374f826143f1565b602082019050919050565b6000613767602b83613fee565b91506137728261441a565b604082019050919050565b600061378a603283613fee565b915061379582614469565b604082019050919050565b60006137ad602683613fee565b91506137b8826144b8565b604082019050919050565b60006137d0601c83613fee565b91506137db82614507565b602082019050919050565b60006137f3601683613fee565b91506137fe82614530565b602082019050919050565b6000613816602483613fee565b915061382182614559565b604082019050919050565b6000613839601983613fee565b9150613844826145a8565b602082019050919050565b600061385c601283613fee565b9150613867826145d1565b602082019050919050565b600061387f602c83613fee565b915061388a826145fa565b604082019050919050565b60006138a2603883613fee565b91506138ad82614649565b604082019050919050565b60006138c5602a83613fee565b91506138d082614698565b604082019050919050565b60006138e8602983613fee565b91506138f3826146e7565b604082019050919050565b600061390b602083613fee565b915061391682614736565b602082019050919050565b600061392e602c83613fee565b91506139398261475f565b604082019050919050565b6000613951602083613fee565b915061395c826147ae565b602082019050919050565b6000613974602983613fee565b915061397f826147d7565b604082019050919050565b6000613997602f83613fee565b91506139a282614826565b604082019050919050565b60006139ba602183613fee565b91506139c582614875565b604082019050919050565b60006139dd601883613fee565b91506139e8826148c4565b602082019050919050565b6000613a00601883613fee565b9150613a0b826148ed565b602082019050919050565b6000613a23600d83613fee565b9150613a2e82614916565b602082019050919050565b6000613a46603183613fee565b9150613a518261493f565b604082019050919050565b6000613a69602c83613fee565b9150613a748261498e565b604082019050919050565b6000613a8c600e83613fee565b9150613a97826149dd565b602082019050919050565b613aab81614189565b82525050565b613aba81614189565b82525050565b6000613acc8286613687565b9150613ad88285613687565b9150613ae482846136b8565b9150819050949350505050565b6000602082019050613b066000830184613599565b92915050565b6000608082019050613b216000830187613599565b613b2e6020830186613599565b613b3b6040830185613ab1565b8181036060830152613b4d8184613615565b905095945050505050565b60006020820190508181036000830152613b7281846135a8565b905092915050565b6000602082019050613b8f6000830184613606565b92915050565b60006020820190508181036000830152613baf818461364e565b905092915050565b60006020820190508181036000830152613bd081613737565b9050919050565b60006020820190508181036000830152613bf08161375a565b9050919050565b60006020820190508181036000830152613c108161377d565b9050919050565b60006020820190508181036000830152613c30816137a0565b9050919050565b60006020820190508181036000830152613c50816137c3565b9050919050565b60006020820190508181036000830152613c70816137e6565b9050919050565b60006020820190508181036000830152613c9081613809565b9050919050565b60006020820190508181036000830152613cb08161382c565b9050919050565b60006020820190508181036000830152613cd08161384f565b9050919050565b60006020820190508181036000830152613cf081613872565b9050919050565b60006020820190508181036000830152613d1081613895565b9050919050565b60006020820190508181036000830152613d30816138b8565b9050919050565b60006020820190508181036000830152613d50816138db565b9050919050565b60006020820190508181036000830152613d70816138fe565b9050919050565b60006020820190508181036000830152613d9081613921565b9050919050565b60006020820190508181036000830152613db081613944565b9050919050565b60006020820190508181036000830152613dd081613967565b9050919050565b60006020820190508181036000830152613df08161398a565b9050919050565b60006020820190508181036000830152613e10816139ad565b9050919050565b60006020820190508181036000830152613e30816139d0565b9050919050565b60006020820190508181036000830152613e50816139f3565b9050919050565b60006020820190508181036000830152613e7081613a16565b9050919050565b60006020820190508181036000830152613e9081613a39565b9050919050565b60006020820190508181036000830152613eb081613a5c565b9050919050565b60006020820190508181036000830152613ed081613a7f565b9050919050565b6000602082019050613eec6000830184613ab1565b92915050565b6000613efc613f0d565b9050613f088282614207565b919050565b6000604051905090565b600067ffffffffffffffff821115613f3257613f3161439d565b5b613f3b826143e0565b9050602081019050919050565b600067ffffffffffffffff821115613f6357613f6261439d565b5b613f6c826143e0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061401582614189565b915061402083614189565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614055576140546142b2565b5b828201905092915050565b600061406b82614189565b915061407683614189565b925082614086576140856142e1565b5b828204905092915050565b600061409c82614189565b91506140a783614189565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e0576140df6142b2565b5b828202905092915050565b60006140f682614189565b915061410183614189565b925082821015614114576141136142b2565b5b828203905092915050565b600061412a82614169565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c05780820151818401526020810190506141a5565b838111156141cf576000848401525b50505050565b600060028204905060018216806141ed57607f821691505b6020821081141561420157614200614310565b5b50919050565b614210826143e0565b810181811067ffffffffffffffff8211171561422f5761422e61439d565b5b80604052505050565b600061424382614189565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614276576142756142b2565b5b600182019050919050565b600061428c82614189565b915061429783614189565b9250826142a7576142a66142e1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e79206d696e7473207265717565737465640000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f742063757272656e746c7920666f722073616c6500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57686974656c6973742072657175697265640000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e792077686974656c697374206d696e74730000000000000000600082015250565b7f537065636966792061206e756d62657220746f206d696e740000000000000000600082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b614a0f8161411f565b8114614a1a57600080fd5b50565b614a2681614131565b8114614a3157600080fd5b50565b614a3d8161413d565b8114614a4857600080fd5b50565b614a5481614189565b8114614a5f57600080fd5b5056fea264697066735822122035d1d3fe3a7c24c82aa35ae0b7a25eacd9522141c6bfd089b19b8fbdc54dd64c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000134465616420506f7461746f20536f63696574790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034450530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6d696e742e64656164706f7461746f736f63696574792e636f6d2f6d657461646174612f0000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806357ced13a1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610867578063d936547e14610892578063da3ef23f146108cf578063e985e9c5146108f8578063f2fde38b146109355761023b565b8063a22cb46514610784578063b88d4fde146107ad578063c6682862146107d6578063c87b56dd14610801578063ca625dae1461083e5761023b565b8063715018a6116100f2578063715018a6146106c357806378cf6de0146106da578063856734c4146107035780638da5cb5b1461072e57806395d89b41146107595761023b565b806357ced13a146105c85780635c975abb146105f35780636352211e1461061e5780636c0360eb1461065b57806370a08231146106865761023b565b80632f745c59116101bc578063438b630011610180578063438b6300146104d357806344a0d68a146105105780634a4c560d146105395780634f6ccce71461056257806355f804b31461059f5761023b565b80632f745c591461040a57806330cc7ae0146104475780633ccfd60b1461047057806340c10f191461047a57806342842e0e146104aa5761023b565b806313faede61161020357806313faede61461033757806316c38b3c1461036257806318160ddd1461038b578063239c70ae146103b657806323b872dd146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134b1565b61095e565b6040516102749190613b7a565b60405180910390f35b34801561028957600080fd5b506102926109d8565b60405161029f9190613b95565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613554565b610a6a565b6040516102dc9190613af1565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613554565b610aef565b005b34801561031a57600080fd5b5061033560048036038101906103309190613444565b610b75565b005b34801561034357600080fd5b5061034c610c8d565b6040516103599190613ed7565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613484565b610c93565b005b34801561039757600080fd5b506103a0610d2c565b6040516103ad9190613ed7565b60405180910390f35b3480156103c257600080fd5b506103cb610d39565b6040516103d89190613ed7565b60405180910390f35b3480156103ed57600080fd5b506104086004803603810190610403919061332e565b610d3f565b005b34801561041657600080fd5b50610431600480360381019061042c9190613444565b610d9f565b60405161043e9190613ed7565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906132c1565b610e44565b005b610478610f1b565b005b610494600480360381019061048f9190613444565b610fd7565b6040516104a19190613b7a565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061332e565b6112e1565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906132c1565b611301565b6040516105079190613b58565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613554565b6113af565b005b34801561054557600080fd5b50610560600480360381019061055b91906132c1565b611435565b005b34801561056e57600080fd5b5061058960048036038101906105849190613554565b61150c565b6040516105969190613ed7565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c1919061350b565b61157d565b005b3480156105d457600080fd5b506105dd611613565b6040516105ea9190613ed7565b60405180910390f35b3480156105ff57600080fd5b50610608611619565b6040516106159190613b7a565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613554565b61162c565b6040516106529190613af1565b60405180910390f35b34801561066757600080fd5b506106706116de565b60405161067d9190613b95565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906132c1565b61176c565b6040516106ba9190613ed7565b60405180910390f35b3480156106cf57600080fd5b506106d8611824565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190613484565b6118ac565b005b34801561070f57600080fd5b50610718611945565b6040516107259190613b7a565b60405180910390f35b34801561073a57600080fd5b50610743611958565b6040516107509190613af1565b60405180910390f35b34801561076557600080fd5b5061076e611982565b60405161077b9190613b95565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613404565b611a14565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613381565b611b95565b005b3480156107e257600080fd5b506107eb611bf7565b6040516107f89190613b95565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613554565b611c85565b6040516108359190613b95565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613554565b611d2f565b005b34801561087357600080fd5b5061087c611db5565b6040516108899190613ed7565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906132c1565b611dbb565b6040516108c69190613b7a565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f1919061350b565b611ddb565b005b34801561090457600080fd5b5061091f600480360381019061091a91906132ee565b611e71565b60405161092c9190613b7a565b60405180910390f35b34801561094157600080fd5b5061095c600480360381019061095791906132c1565b611f05565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d157506109d082611ffd565b5b9050919050565b6060600080546109e7906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a13906141d5565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b6000610a75826120df565b610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90613d77565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610af761214b565b73ffffffffffffffffffffffffffffffffffffffff16610b15611958565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613d97565b60405180910390fd5b80600f8190555050565b6000610b808261162c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613df7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1061214b565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c3961214b565b611e71565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613cf7565b60405180910390fd5b610c888383612153565b505050565b600d5481565b610c9b61214b565b73ffffffffffffffffffffffffffffffffffffffff16610cb9611958565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613d97565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600f5481565b610d50610d4a61214b565b8261220c565b610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613e77565b60405180910390fd5b610d9a8383836122ea565b505050565b6000610daa8361176c565b8210610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613bd7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e4c61214b565b73ffffffffffffffffffffffffffffffffffffffff16610e6a611958565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613d97565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f2361214b565b73ffffffffffffffffffffffffffffffffffffffff16610f41611958565b73ffffffffffffffffffffffffffffffffffffffff1614610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613d97565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fd557600080fd5b565b600080610fe2610d2c565b905060008311611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613e37565b60405180910390fd5b600f5483111561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613bb7565b60405180910390fd5b600e54838261107b919061400a565b11156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613eb7565b60405180910390fd5b6110c4611958565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129f57601160009054906101000a900460ff1615611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613c57565b60405180910390fd5b82600d546111549190614091565b341015611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613e57565b60405180910390fd5b60011515601160019054906101000a900460ff161515141561129e5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613cb7565b60405180910390fd5b601054836112523361176c565b61125c919061400a565b111561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613e17565b60405180910390fd5b5b5b6000600190505b8381116112d5576112c28582846112bd919061400a565b612546565b80806112cd90614238565b9150506112a6565b50600191505092915050565b6112fc83838360405180602001604052806000815250611b95565b505050565b6060600061130e8361176c565b905060008167ffffffffffffffff81111561132c5761132b61439d565b5b60405190808252806020026020018201604052801561135a5781602001602082028036833780820191505090505b50905060005b828110156113a4576113728582610d9f565b8282815181106113855761138461436e565b5b602002602001018181525050808061139c90614238565b915050611360565b508092505050919050565b6113b761214b565b73ffffffffffffffffffffffffffffffffffffffff166113d5611958565b73ffffffffffffffffffffffffffffffffffffffff161461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613d97565b60405180910390fd5b80600d8190555050565b61143d61214b565b73ffffffffffffffffffffffffffffffffffffffff1661145b611958565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613d97565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611516610d2c565b8210611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90613e97565b60405180910390fd5b6008828154811061156b5761156a61436e565b5b90600052602060002001549050919050565b61158561214b565b73ffffffffffffffffffffffffffffffffffffffff166115a3611958565b73ffffffffffffffffffffffffffffffffffffffff16146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090613d97565b60405180910390fd5b80600b908051906020019061160f9291906130d5565b5050565b60105481565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613d37565b60405180910390fd5b80915050919050565b600b80546116eb906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906141d5565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490613d17565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182c61214b565b73ffffffffffffffffffffffffffffffffffffffff1661184a611958565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613d97565b60405180910390fd5b6118aa6000612564565b565b6118b461214b565b73ffffffffffffffffffffffffffffffffffffffff166118d2611958565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613d97565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611991906141d5565b80601f01602080910402602001604051908101604052809291908181526020018280546119bd906141d5565b8015611a0a5780601f106119df57610100808354040283529160200191611a0a565b820191906000526020600020905b8154815290600101906020018083116119ed57829003601f168201915b5050505050905090565b611a1c61214b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190613c97565b60405180910390fd5b8060056000611a9761214b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4461214b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b899190613b7a565b60405180910390a35050565b611ba6611ba061214b565b8361220c565b611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613e77565b60405180910390fd5b611bf18484848461262a565b50505050565b600c8054611c04906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c30906141d5565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b505050505081565b6060611c90826120df565b611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613dd7565b60405180910390fd5b6000611cd9612686565b90506000815111611cf95760405180602001604052806000815250611d27565b80611d0384612718565b600c604051602001611d1793929190613ac0565b6040516020818303038152906040525b915050919050565b611d3761214b565b73ffffffffffffffffffffffffffffffffffffffff16611d55611958565b73ffffffffffffffffffffffffffffffffffffffff1614611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613d97565b60405180910390fd5b8060108190555050565b600e5481565b60126020528060005260406000206000915054906101000a900460ff1681565b611de361214b565b73ffffffffffffffffffffffffffffffffffffffff16611e01611958565b73ffffffffffffffffffffffffffffffffffffffff1614611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613d97565b60405180910390fd5b80600c9080519060200190611e6d9291906130d5565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0d61214b565b73ffffffffffffffffffffffffffffffffffffffff16611f2b611958565b73ffffffffffffffffffffffffffffffffffffffff1614611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890613d97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890613c17565b60405180910390fd5b611ffa81612564565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120d857506120d782612879565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c68361162c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612217826120df565b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90613cd7565b60405180910390fd5b60006122618361162c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d057508373ffffffffffffffffffffffffffffffffffffffff166122b884610a6a565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e157506122e08185611e71565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661230a8261162c565b73ffffffffffffffffffffffffffffffffffffffff1614612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613c77565b60405180910390fd5b6123db8383836128e3565b6123e6600082612153565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243691906140eb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d919061400a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125608282604051806020016040528060008152506129f7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126358484846122ea565b61264184848484612a52565b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790613bf7565b60405180910390fd5b50505050565b6060600b8054612695906141d5565b80601f01602080910402602001604051908101604052809291908181526020018280546126c1906141d5565b801561270e5780601f106126e35761010080835404028352916020019161270e565b820191906000526020600020905b8154815290600101906020018083116126f157829003601f168201915b5050505050905090565b60606000821415612760576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612874565b600082905060005b6000821461279257808061277b90614238565b915050600a8261278b9190614060565b9150612768565b60008167ffffffffffffffff8111156127ae576127ad61439d565b5b6040519080825280601f01601f1916602001820160405280156127e05781602001600182028036833780820191505090505b5090505b6000851461286d576001826127f991906140eb565b9150600a856128089190614281565b6030612814919061400a565b60f81b81838151811061282a5761282961436e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128669190614060565b94506127e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128ee838383612be9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129315761292c81612bee565b612970565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461296f5761296e8382612c37565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b3576129ae81612da4565b6129f2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129f1576129f08282612e75565b5b5b505050565b612a018383612ef4565b612a0e6000848484612a52565b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490613bf7565b60405180910390fd5b505050565b6000612a738473ffffffffffffffffffffffffffffffffffffffff166130c2565b15612bdc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a9c61214b565b8786866040518563ffffffff1660e01b8152600401612abe9493929190613b0c565b602060405180830381600087803b158015612ad857600080fd5b505af1925050508015612b0957506040513d601f19601f82011682018060405250810190612b0691906134de565b60015b612b8c573d8060008114612b39576040519150601f19603f3d011682016040523d82523d6000602084013e612b3e565b606091505b50600081511415612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b90613bf7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c448461176c565b612c4e91906140eb565b9050600060076000848152602001908152602001600020549050818114612d33576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db891906140eb565b9050600060096000848152602001908152602001600020549050600060088381548110612de857612de761436e565b5b906000526020600020015490508060088381548110612e0a57612e0961436e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5957612e5861433f565b5b6001900381819060005260206000200160009055905550505050565b6000612e808361176c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90613d57565b60405180910390fd5b612f6d816120df565b15612fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa490613c37565b60405180910390fd5b612fb9600083836128e3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613009919061400a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130e1906141d5565b90600052602060002090601f016020900481019282613103576000855561314a565b82601f1061311c57805160ff191683800117855561314a565b8280016001018555821561314a579182015b8281111561314957825182559160200191906001019061312e565b5b509050613157919061315b565b5090565b5b8082111561317457600081600090555060010161315c565b5090565b600061318b61318684613f17565b613ef2565b9050828152602081018484840111156131a7576131a66143d1565b5b6131b2848285614193565b509392505050565b60006131cd6131c884613f48565b613ef2565b9050828152602081018484840111156131e9576131e86143d1565b5b6131f4848285614193565b509392505050565b60008135905061320b81614a06565b92915050565b60008135905061322081614a1d565b92915050565b60008135905061323581614a34565b92915050565b60008151905061324a81614a34565b92915050565b600082601f830112613265576132646143cc565b5b8135613275848260208601613178565b91505092915050565b600082601f830112613293576132926143cc565b5b81356132a38482602086016131ba565b91505092915050565b6000813590506132bb81614a4b565b92915050565b6000602082840312156132d7576132d66143db565b5b60006132e5848285016131fc565b91505092915050565b60008060408385031215613305576133046143db565b5b6000613313858286016131fc565b9250506020613324858286016131fc565b9150509250929050565b600080600060608486031215613347576133466143db565b5b6000613355868287016131fc565b9350506020613366868287016131fc565b9250506040613377868287016132ac565b9150509250925092565b6000806000806080858703121561339b5761339a6143db565b5b60006133a9878288016131fc565b94505060206133ba878288016131fc565b93505060406133cb878288016132ac565b925050606085013567ffffffffffffffff8111156133ec576133eb6143d6565b5b6133f887828801613250565b91505092959194509250565b6000806040838503121561341b5761341a6143db565b5b6000613429858286016131fc565b925050602061343a85828601613211565b9150509250929050565b6000806040838503121561345b5761345a6143db565b5b6000613469858286016131fc565b925050602061347a858286016132ac565b9150509250929050565b60006020828403121561349a576134996143db565b5b60006134a884828501613211565b91505092915050565b6000602082840312156134c7576134c66143db565b5b60006134d584828501613226565b91505092915050565b6000602082840312156134f4576134f36143db565b5b60006135028482850161323b565b91505092915050565b600060208284031215613521576135206143db565b5b600082013567ffffffffffffffff81111561353f5761353e6143d6565b5b61354b8482850161327e565b91505092915050565b60006020828403121561356a576135696143db565b5b6000613578848285016132ac565b91505092915050565b600061358d8383613aa2565b60208301905092915050565b6135a28161411f565b82525050565b60006135b382613f9e565b6135bd8185613fcc565b93506135c883613f79565b8060005b838110156135f95781516135e08882613581565b97506135eb83613fbf565b9250506001810190506135cc565b5085935050505092915050565b61360f81614131565b82525050565b600061362082613fa9565b61362a8185613fdd565b935061363a8185602086016141a2565b613643816143e0565b840191505092915050565b600061365982613fb4565b6136638185613fee565b93506136738185602086016141a2565b61367c816143e0565b840191505092915050565b600061369282613fb4565b61369c8185613fff565b93506136ac8185602086016141a2565b80840191505092915050565b600081546136c5816141d5565b6136cf8186613fff565b945060018216600081146136ea57600181146136fb5761372e565b60ff1983168652818601935061372e565b61370485613f89565b60005b8381101561372657815481890152600182019150602081019050613707565b838801955050505b50505092915050565b6000613744601883613fee565b915061374f826143f1565b602082019050919050565b6000613767602b83613fee565b91506137728261441a565b604082019050919050565b600061378a603283613fee565b915061379582614469565b604082019050919050565b60006137ad602683613fee565b91506137b8826144b8565b604082019050919050565b60006137d0601c83613fee565b91506137db82614507565b602082019050919050565b60006137f3601683613fee565b91506137fe82614530565b602082019050919050565b6000613816602483613fee565b915061382182614559565b604082019050919050565b6000613839601983613fee565b9150613844826145a8565b602082019050919050565b600061385c601283613fee565b9150613867826145d1565b602082019050919050565b600061387f602c83613fee565b915061388a826145fa565b604082019050919050565b60006138a2603883613fee565b91506138ad82614649565b604082019050919050565b60006138c5602a83613fee565b91506138d082614698565b604082019050919050565b60006138e8602983613fee565b91506138f3826146e7565b604082019050919050565b600061390b602083613fee565b915061391682614736565b602082019050919050565b600061392e602c83613fee565b91506139398261475f565b604082019050919050565b6000613951602083613fee565b915061395c826147ae565b602082019050919050565b6000613974602983613fee565b915061397f826147d7565b604082019050919050565b6000613997602f83613fee565b91506139a282614826565b604082019050919050565b60006139ba602183613fee565b91506139c582614875565b604082019050919050565b60006139dd601883613fee565b91506139e8826148c4565b602082019050919050565b6000613a00601883613fee565b9150613a0b826148ed565b602082019050919050565b6000613a23600d83613fee565b9150613a2e82614916565b602082019050919050565b6000613a46603183613fee565b9150613a518261493f565b604082019050919050565b6000613a69602c83613fee565b9150613a748261498e565b604082019050919050565b6000613a8c600e83613fee565b9150613a97826149dd565b602082019050919050565b613aab81614189565b82525050565b613aba81614189565b82525050565b6000613acc8286613687565b9150613ad88285613687565b9150613ae482846136b8565b9150819050949350505050565b6000602082019050613b066000830184613599565b92915050565b6000608082019050613b216000830187613599565b613b2e6020830186613599565b613b3b6040830185613ab1565b8181036060830152613b4d8184613615565b905095945050505050565b60006020820190508181036000830152613b7281846135a8565b905092915050565b6000602082019050613b8f6000830184613606565b92915050565b60006020820190508181036000830152613baf818461364e565b905092915050565b60006020820190508181036000830152613bd081613737565b9050919050565b60006020820190508181036000830152613bf08161375a565b9050919050565b60006020820190508181036000830152613c108161377d565b9050919050565b60006020820190508181036000830152613c30816137a0565b9050919050565b60006020820190508181036000830152613c50816137c3565b9050919050565b60006020820190508181036000830152613c70816137e6565b9050919050565b60006020820190508181036000830152613c9081613809565b9050919050565b60006020820190508181036000830152613cb08161382c565b9050919050565b60006020820190508181036000830152613cd08161384f565b9050919050565b60006020820190508181036000830152613cf081613872565b9050919050565b60006020820190508181036000830152613d1081613895565b9050919050565b60006020820190508181036000830152613d30816138b8565b9050919050565b60006020820190508181036000830152613d50816138db565b9050919050565b60006020820190508181036000830152613d70816138fe565b9050919050565b60006020820190508181036000830152613d9081613921565b9050919050565b60006020820190508181036000830152613db081613944565b9050919050565b60006020820190508181036000830152613dd081613967565b9050919050565b60006020820190508181036000830152613df08161398a565b9050919050565b60006020820190508181036000830152613e10816139ad565b9050919050565b60006020820190508181036000830152613e30816139d0565b9050919050565b60006020820190508181036000830152613e50816139f3565b9050919050565b60006020820190508181036000830152613e7081613a16565b9050919050565b60006020820190508181036000830152613e9081613a39565b9050919050565b60006020820190508181036000830152613eb081613a5c565b9050919050565b60006020820190508181036000830152613ed081613a7f565b9050919050565b6000602082019050613eec6000830184613ab1565b92915050565b6000613efc613f0d565b9050613f088282614207565b919050565b6000604051905090565b600067ffffffffffffffff821115613f3257613f3161439d565b5b613f3b826143e0565b9050602081019050919050565b600067ffffffffffffffff821115613f6357613f6261439d565b5b613f6c826143e0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061401582614189565b915061402083614189565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614055576140546142b2565b5b828201905092915050565b600061406b82614189565b915061407683614189565b925082614086576140856142e1565b5b828204905092915050565b600061409c82614189565b91506140a783614189565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e0576140df6142b2565b5b828202905092915050565b60006140f682614189565b915061410183614189565b925082821015614114576141136142b2565b5b828203905092915050565b600061412a82614169565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c05780820151818401526020810190506141a5565b838111156141cf576000848401525b50505050565b600060028204905060018216806141ed57607f821691505b6020821081141561420157614200614310565b5b50919050565b614210826143e0565b810181811067ffffffffffffffff8211171561422f5761422e61439d565b5b80604052505050565b600061424382614189565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614276576142756142b2565b5b600182019050919050565b600061428c82614189565b915061429783614189565b9250826142a7576142a66142e1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e79206d696e7473207265717565737465640000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f742063757272656e746c7920666f722073616c6500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57686974656c6973742072657175697265640000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e792077686974656c697374206d696e74730000000000000000600082015250565b7f537065636966792061206e756d62657220746f206d696e740000000000000000600082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b614a0f8161411f565b8114614a1a57600080fd5b50565b614a2681614131565b8114614a3157600080fd5b50565b614a3d8161413d565b8114614a4857600080fd5b50565b614a5481614189565b8114614a5f57600080fd5b5056fea264697066735822122035d1d3fe3a7c24c82aa35ae0b7a25eacd9522141c6bfd089b19b8fbdc54dd64c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000134465616420506f7461746f20536f63696574790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034450530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6d696e742e64656164706f7461746f736f63696574792e636f6d2f6d657461646174612f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dead Potato Society
Arg [1] : _symbol (string): DPS
Arg [2] : _initBaseURI (string): https://mint.deadpotatosociety.com/metadata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 4465616420506f7461746f20536f636965747900000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4450530000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [8] : 68747470733a2f2f6d696e742e64656164706f7461746f736f63696574792e63
Arg [9] : 6f6d2f6d657461646174612f0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43232:4082:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37026:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24918:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26477:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46190:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26000:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43387:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46768:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37666:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43460:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27367:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37334:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47077:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47191:120;;;:::i;:::-;;44012:1010;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27777:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45030:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46096:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46970:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37856:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46497:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43500:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43545:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24612:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43315:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24342:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4617:94;;;;;;;;;;;;;:::i;:::-;;46859:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43578:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3966:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25087:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26770:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28033:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43343:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45428:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46320:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43422:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43620:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46609:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27136:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4866:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37026:224;37128:4;37167:35;37152:50;;;:11;:50;;;;:90;;;;37206:36;37230:11;37206:23;:36::i;:::-;37152:90;37145:97;;37026:224;;;:::o;24918:100::-;24972:13;25005:5;24998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24918:100;:::o;26477:221::-;26553:7;26581:16;26589:7;26581;:16::i;:::-;26573:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26666:15;:24;26682:7;26666:24;;;;;;;;;;;;;;;;;;;;;26659:31;;26477:221;;;:::o;46190:122::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46287:17:::1;46271:13;:33;;;;46190:122:::0;:::o;26000:411::-;26081:13;26097:23;26112:7;26097:14;:23::i;:::-;26081:39;;26145:5;26139:11;;:2;:11;;;;26131:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26239:5;26223:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26248:37;26265:5;26272:12;:10;:12::i;:::-;26248:16;:37::i;:::-;26223:62;26201:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26382:21;26391:2;26395:7;26382:8;:21::i;:::-;26070:341;26000:411;;:::o;43387:28::-;;;;:::o;46768:83::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46837:6:::1;46828;;:15;;;;;;;;;;;;;;;;;;46768:83:::0;:::o;37666:113::-;37727:7;37754:10;:17;;;;37747:24;;37666:113;:::o;43460:33::-;;;;:::o;27367:339::-;27562:41;27581:12;:10;:12::i;:::-;27595:7;27562:18;:41::i;:::-;27554:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27670:28;27680:4;27686:2;27690:7;27670:9;:28::i;:::-;27367:339;;;:::o;37334:256::-;37431:7;37467:23;37484:5;37467:16;:23::i;:::-;37459:5;:31;37451:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37556:12;:19;37569:5;37556:19;;;;;;;;;;;;;;;:26;37576:5;37556:26;;;;;;;;;;;;37549:33;;37334:256;;;;:::o;47077:106::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47170:5:::1;47149:11;:18;47161:5;47149:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;47077:106:::0;:::o;47191:120::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47263:10:::1;47255:24;;:47;47280:21;47255:47;;;;;;;;;;;;;;;;;;;;;;;47247:56;;;::::0;::::1;;47191:120::o:0;44012:1010::-;44111:15;44144:14;44161:13;:11;:13::i;:::-;44144:30;;44207:1;44193:11;:15;44185:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44271:13;;44256:11;:28;;44248:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44356:9;;44341:11;44332:6;:20;;;;:::i;:::-;:33;;44324:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44415:7;:5;:7::i;:::-;44401:21;;:10;:21;;;44397:486;;44448:6;;;;;;;;;;;44447:7;44439:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44524:11;44517:4;;:18;;;;:::i;:::-;44504:9;:31;;44496:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44594:4;44574:24;;:16;;;;;;;;;;;:24;;;44570:302;;;44654:4;44627:31;;:11;:23;44639:10;44627:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;44619:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44769:19;;44754:11;44730:21;44740:10;44730:9;:21::i;:::-;:35;;;;:::i;:::-;:58;;44700:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;44570:302;44397:486;44900:9;44912:1;44900:13;;44895:96;44920:11;44915:1;:16;44895:96;;44953:26;44963:3;44977:1;44968:6;:10;;;;:::i;:::-;44953:9;:26::i;:::-;44933:3;;;;;:::i;:::-;;;;44895:96;;;;45010:4;45003:11;;;44012:1010;;;;:::o;27777:185::-;27915:39;27932:4;27938:2;27942:7;27915:39;;;;;;;;;;;;:16;:39::i;:::-;27777:185;;;:::o;45030:390::-;45117:16;45151:23;45177:17;45187:6;45177:9;:17::i;:::-;45151:43;;45205:25;45247:15;45233:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45205:58;;45279:9;45274:113;45294:15;45290:1;:19;45274:113;;;45345:30;45365:6;45373:1;45345:19;:30::i;:::-;45331:8;45340:1;45331:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45311:3;;;;;:::i;:::-;;;;45274:113;;;;45404:8;45397:15;;;;45030:390;;;:::o;46096:86::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46166:8:::1;46159:4;:15;;;;46096:86:::0;:::o;46970:99::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47057:4:::1;47036:11;:18;47048:5;47036:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;46970:99:::0;:::o;37856:233::-;37931:7;37967:30;:28;:30::i;:::-;37959:5;:38;37951:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38064:10;38075:5;38064:17;;;;;;;;:::i;:::-;;;;;;;;;;38057:24;;37856:233;;;:::o;46497:104::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46582:11:::1;46572:7;:21;;;;;;;;;;;;:::i;:::-;;46497:104:::0;:::o;43500:38::-;;;;:::o;43545:26::-;;;;;;;;;;;;;:::o;24612:239::-;24684:7;24704:13;24720:7;:16;24728:7;24720:16;;;;;;;;;;;;;;;;;;;;;24704:32;;24772:1;24755:19;;:5;:19;;;;24747:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24838:5;24831:12;;;24612:239;;;:::o;43315:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24342:208::-;24414:7;24459:1;24442:19;;:5;:19;;;;24434:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24526:9;:16;24536:5;24526:16;;;;;;;;;;;;;;;;24519:23;;24342:208;;;:::o;4617:94::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4682:21:::1;4700:1;4682:9;:21::i;:::-;4617:94::o:0;46859:103::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46948:6:::1;46929:16;;:25;;;;;;;;;;;;;;;;;;46859:103:::0;:::o;43578:35::-;;;;;;;;;;;;;:::o;3966:87::-;4012:7;4039:6;;;;;;;;;;;4032:13;;3966:87;:::o;25087:104::-;25143:13;25176:7;25169:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25087:104;:::o;26770:295::-;26885:12;:10;:12::i;:::-;26873:24;;:8;:24;;;;26865:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26985:8;26940:18;:32;26959:12;:10;:12::i;:::-;26940:32;;;;;;;;;;;;;;;:42;26973:8;26940:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27038:8;27009:48;;27024:12;:10;:12::i;:::-;27009:48;;;27048:8;27009:48;;;;;;:::i;:::-;;;;;;;;26770:295;;:::o;28033:328::-;28208:41;28227:12;:10;:12::i;:::-;28241:7;28208:18;:41::i;:::-;28200:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28314:39;28328:4;28334:2;28338:7;28347:5;28314:13;:39::i;:::-;28033:328;;;;:::o;43343:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45428:642::-;45546:13;45599:16;45607:7;45599;:16::i;:::-;45577:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;45703:28;45734:10;:8;:10::i;:::-;45703:41;;45806:1;45781:14;45775:28;:32;:287;;;;;;;;;;;;;;;;;45899:14;45940:18;:7;:16;:18::i;:::-;45985:13;45856:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45775:287;45755:307;;;45428:642;;;:::o;46320:169::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46458:23:::1;46436:19;:45;;;;46320:169:::0;:::o;43422:31::-;;;;:::o;43620:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;46609:151::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46735:17:::1;46719:13;:33;;;;;;;;;;;;:::i;:::-;;46609:151:::0;:::o;27136:164::-;27233:4;27257:18;:25;27276:5;27257:25;;;;;;;;;;;;;;;:35;27283:8;27257:35;;;;;;;;;;;;;;;;;;;;;;;;;27250:42;;27136:164;;;;:::o;4866:192::-;4197:12;:10;:12::i;:::-;4186:23;;:7;:5;:7::i;:::-;:23;;;4178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4975:1:::1;4955:22;;:8;:22;;;;4947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5031:19;5041:8;5031:9;:19::i;:::-;4866:192:::0;:::o;23973:305::-;24075:4;24127:25;24112:40;;;:11;:40;;;;:105;;;;24184:33;24169:48;;;:11;:48;;;;24112:105;:158;;;;24234:36;24258:11;24234:23;:36::i;:::-;24112:158;24092:178;;23973:305;;;:::o;29871:127::-;29936:4;29988:1;29960:30;;:7;:16;29968:7;29960:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29953:37;;29871:127;;;:::o;2754:98::-;2807:7;2834:10;2827:17;;2754:98;:::o;33853:174::-;33955:2;33928:15;:24;33944:7;33928:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34011:7;34007:2;33973:46;;33982:23;33997:7;33982:14;:23::i;:::-;33973:46;;;;;;;;;;;;33853:174;;:::o;30165:348::-;30258:4;30283:16;30291:7;30283;:16::i;:::-;30275:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30359:13;30375:23;30390:7;30375:14;:23::i;:::-;30359:39;;30428:5;30417:16;;:7;:16;;;:51;;;;30461:7;30437:31;;:20;30449:7;30437:11;:20::i;:::-;:31;;;30417:51;:87;;;;30472:32;30489:5;30496:7;30472:16;:32::i;:::-;30417:87;30409:96;;;30165:348;;;;:::o;33157:578::-;33316:4;33289:31;;:23;33304:7;33289:14;:23::i;:::-;:31;;;33281:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33399:1;33385:16;;:2;:16;;;;33377:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33455:39;33476:4;33482:2;33486:7;33455:20;:39::i;:::-;33559:29;33576:1;33580:7;33559:8;:29::i;:::-;33620:1;33601:9;:15;33611:4;33601:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33649:1;33632:9;:13;33642:2;33632:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33680:2;33661:7;:16;33669:7;33661:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33719:7;33715:2;33700:27;;33709:4;33700:27;;;;;;;;;;;;33157:578;;;:::o;30855:110::-;30931:26;30941:2;30945:7;30931:26;;;;;;;;;;;;:9;:26::i;:::-;30855:110;;:::o;5066:173::-;5122:16;5141:6;;;;;;;;;;;5122:25;;5167:8;5158:6;;:17;;;;;;;;;;;;;;;;;;5222:8;5191:40;;5212:8;5191:40;;;;;;;;;;;;5111:128;5066:173;:::o;29243:315::-;29400:28;29410:4;29416:2;29420:7;29400:9;:28::i;:::-;29447:48;29470:4;29476:2;29480:7;29489:5;29447:22;:48::i;:::-;29439:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29243:315;;;;:::o;43881:108::-;43941:13;43974:7;43967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43881:108;:::o;370:723::-;426:13;656:1;647:5;:10;643:53;;;674:10;;;;;;;;;;;;;;;;;;;;;643:53;706:12;721:5;706:20;;737:14;762:78;777:1;769:4;:9;762:78;;795:8;;;;;:::i;:::-;;;;826:2;818:10;;;;;:::i;:::-;;;762:78;;;850:19;882:6;872:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850:39;;900:154;916:1;907:5;:10;900:154;;944:1;934:11;;;;;:::i;:::-;;;1011:2;1003:5;:10;;;;:::i;:::-;990:2;:24;;;;:::i;:::-;977:39;;960:6;967;960:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1040:2;1031:11;;;;;:::i;:::-;;;900:154;;;1078:6;1064:21;;;;;370:723;;;;:::o;15952:157::-;16037:4;16076:25;16061:40;;;:11;:40;;;;16054:47;;15952:157;;;:::o;38702:589::-;38846:45;38873:4;38879:2;38883:7;38846:26;:45::i;:::-;38924:1;38908:18;;:4;:18;;;38904:187;;;38943:40;38975:7;38943:31;:40::i;:::-;38904:187;;;39013:2;39005:10;;:4;:10;;;39001:90;;39032:47;39065:4;39071:7;39032:32;:47::i;:::-;39001:90;38904:187;39119:1;39105:16;;:2;:16;;;39101:183;;;39138:45;39175:7;39138:36;:45::i;:::-;39101:183;;;39211:4;39205:10;;:2;:10;;;39201:83;;39232:40;39260:2;39264:7;39232:27;:40::i;:::-;39201:83;39101:183;38702:589;;;:::o;31192:321::-;31322:18;31328:2;31332:7;31322:5;:18::i;:::-;31373:54;31404:1;31408:2;31412:7;31421:5;31373:22;:54::i;:::-;31351:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31192:321;;;:::o;34592:799::-;34747:4;34768:15;:2;:13;;;:15::i;:::-;34764:620;;;34820:2;34804:36;;;34841:12;:10;:12::i;:::-;34855:4;34861:7;34870:5;34804:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34800:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35063:1;35046:6;:13;:18;35042:272;;;35089:60;;;;;;;;;;:::i;:::-;;;;;;;;35042:272;35264:6;35258:13;35249:6;35245:2;35241:15;35234:38;34800:529;34937:41;;;34927:51;;;:6;:51;;;;34920:58;;;;;34764:620;35368:4;35361:11;;34592:799;;;;;;;:::o;35963:126::-;;;;:::o;40014:164::-;40118:10;:17;;;;40091:15;:24;40107:7;40091:24;;;;;;;;;;;:44;;;;40146:10;40162:7;40146:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40014:164;:::o;40805:988::-;41071:22;41121:1;41096:22;41113:4;41096:16;:22::i;:::-;:26;;;;:::i;:::-;41071:51;;41133:18;41154:17;:26;41172:7;41154:26;;;;;;;;;;;;41133:47;;41301:14;41287:10;:28;41283:328;;41332:19;41354:12;:18;41367:4;41354:18;;;;;;;;;;;;;;;:34;41373:14;41354:34;;;;;;;;;;;;41332:56;;41438:11;41405:12;:18;41418:4;41405:18;;;;;;;;;;;;;;;:30;41424:10;41405:30;;;;;;;;;;;:44;;;;41555:10;41522:17;:30;41540:11;41522:30;;;;;;;;;;;:43;;;;41317:294;41283:328;41707:17;:26;41725:7;41707:26;;;;;;;;;;;41700:33;;;41751:12;:18;41764:4;41751:18;;;;;;;;;;;;;;;:34;41770:14;41751:34;;;;;;;;;;;41744:41;;;40886:907;;40805:988;;:::o;42088:1079::-;42341:22;42386:1;42366:10;:17;;;;:21;;;;:::i;:::-;42341:46;;42398:18;42419:15;:24;42435:7;42419:24;;;;;;;;;;;;42398:45;;42770:19;42792:10;42803:14;42792:26;;;;;;;;:::i;:::-;;;;;;;;;;42770:48;;42856:11;42831:10;42842;42831:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42967:10;42936:15;:28;42952:11;42936:28;;;;;;;;;;;:41;;;;43108:15;:24;43124:7;43108:24;;;;;;;;;;;43101:31;;;43143:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42159:1008;;;42088:1079;:::o;39592:221::-;39677:14;39694:20;39711:2;39694:16;:20::i;:::-;39677:37;;39752:7;39725:12;:16;39738:2;39725:16;;;;;;;;;;;;;;;:24;39742:6;39725:24;;;;;;;;;;;:34;;;;39799:6;39770:17;:26;39788:7;39770:26;;;;;;;;;;;:35;;;;39666:147;39592:221;;:::o;31849:382::-;31943:1;31929:16;;:2;:16;;;;31921:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32002:16;32010:7;32002;:16::i;:::-;32001:17;31993:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32064:45;32093:1;32097:2;32101:7;32064:20;:45::i;:::-;32139:1;32122:9;:13;32132:2;32122:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32170:2;32151:7;:16;32159:7;32151:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32215:7;32211:2;32190:33;;32207:1;32190:33;;;;;;;;;;;;31849:382;;:::o;6012:387::-;6072:4;6280:12;6347:7;6335:20;6327:28;;6390:1;6383:4;:8;6376:15;;;6012:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:::-;18255:3;18276:67;18340:2;18335:3;18276:67;:::i;:::-;18269:74;;18352:93;18441:3;18352:93;:::i;:::-;18470:2;18465:3;18461:12;18454:19;;18113:366;;;:::o;18485:::-;18627:3;18648:67;18712:2;18707:3;18648:67;:::i;:::-;18641:74;;18724:93;18813:3;18724:93;:::i;:::-;18842:2;18837:3;18833:12;18826:19;;18485:366;;;:::o;18857:::-;18999:3;19020:67;19084:2;19079:3;19020:67;:::i;:::-;19013:74;;19096:93;19185:3;19096:93;:::i;:::-;19214:2;19209:3;19205:12;19198:19;;18857:366;;;:::o;19229:::-;19371:3;19392:67;19456:2;19451:3;19392:67;:::i;:::-;19385:74;;19468:93;19557:3;19468:93;:::i;:::-;19586:2;19581:3;19577:12;19570:19;;19229:366;;;:::o;19601:::-;19743:3;19764:67;19828:2;19823:3;19764:67;:::i;:::-;19757:74;;19840:93;19929:3;19840:93;:::i;:::-;19958:2;19953:3;19949:12;19942:19;;19601:366;;;:::o;19973:108::-;20050:24;20068:5;20050:24;:::i;:::-;20045:3;20038:37;19973:108;;:::o;20087:118::-;20174:24;20192:5;20174:24;:::i;:::-;20169:3;20162:37;20087:118;;:::o;20211:589::-;20436:3;20458:95;20549:3;20540:6;20458:95;:::i;:::-;20451:102;;20570:95;20661:3;20652:6;20570:95;:::i;:::-;20563:102;;20682:92;20770:3;20761:6;20682:92;:::i;:::-;20675:99;;20791:3;20784:10;;20211:589;;;;;;:::o;20806:222::-;20899:4;20937:2;20926:9;20922:18;20914:26;;20950:71;21018:1;21007:9;21003:17;20994:6;20950:71;:::i;:::-;20806:222;;;;:::o;21034:640::-;21229:4;21267:3;21256:9;21252:19;21244:27;;21281:71;21349:1;21338:9;21334:17;21325:6;21281:71;:::i;:::-;21362:72;21430:2;21419:9;21415:18;21406:6;21362:72;:::i;:::-;21444;21512:2;21501:9;21497:18;21488:6;21444:72;:::i;:::-;21563:9;21557:4;21553:20;21548:2;21537:9;21533:18;21526:48;21591:76;21662:4;21653:6;21591:76;:::i;:::-;21583:84;;21034:640;;;;;;;:::o;21680:373::-;21823:4;21861:2;21850:9;21846:18;21838:26;;21910:9;21904:4;21900:20;21896:1;21885:9;21881:17;21874:47;21938:108;22041:4;22032:6;21938:108;:::i;:::-;21930:116;;21680:373;;;;:::o;22059:210::-;22146:4;22184:2;22173:9;22169:18;22161:26;;22197:65;22259:1;22248:9;22244:17;22235:6;22197:65;:::i;:::-;22059:210;;;;:::o;22275:313::-;22388:4;22426:2;22415:9;22411:18;22403:26;;22475:9;22469:4;22465:20;22461:1;22450:9;22446:17;22439:47;22503:78;22576:4;22567:6;22503:78;:::i;:::-;22495:86;;22275:313;;;;:::o;22594:419::-;22760:4;22798:2;22787:9;22783:18;22775:26;;22847:9;22841:4;22837:20;22833:1;22822:9;22818:17;22811:47;22875:131;23001:4;22875:131;:::i;:::-;22867:139;;22594:419;;;:::o;23019:::-;23185:4;23223:2;23212:9;23208:18;23200:26;;23272:9;23266:4;23262:20;23258:1;23247:9;23243:17;23236:47;23300:131;23426:4;23300:131;:::i;:::-;23292:139;;23019:419;;;:::o;23444:::-;23610:4;23648:2;23637:9;23633:18;23625:26;;23697:9;23691:4;23687:20;23683:1;23672:9;23668:17;23661:47;23725:131;23851:4;23725:131;:::i;:::-;23717:139;;23444:419;;;:::o;23869:::-;24035:4;24073:2;24062:9;24058:18;24050:26;;24122:9;24116:4;24112:20;24108:1;24097:9;24093:17;24086:47;24150:131;24276:4;24150:131;:::i;:::-;24142:139;;23869:419;;;:::o;24294:::-;24460:4;24498:2;24487:9;24483:18;24475:26;;24547:9;24541:4;24537:20;24533:1;24522:9;24518:17;24511:47;24575:131;24701:4;24575:131;:::i;:::-;24567:139;;24294:419;;;:::o;24719:::-;24885:4;24923:2;24912:9;24908:18;24900:26;;24972:9;24966:4;24962:20;24958:1;24947:9;24943:17;24936:47;25000:131;25126:4;25000:131;:::i;:::-;24992:139;;24719:419;;;:::o;25144:::-;25310:4;25348:2;25337:9;25333:18;25325:26;;25397:9;25391:4;25387:20;25383:1;25372:9;25368:17;25361:47;25425:131;25551:4;25425:131;:::i;:::-;25417:139;;25144:419;;;:::o;25569:::-;25735:4;25773:2;25762:9;25758:18;25750:26;;25822:9;25816:4;25812:20;25808:1;25797:9;25793:17;25786:47;25850:131;25976:4;25850:131;:::i;:::-;25842:139;;25569:419;;;:::o;25994:::-;26160:4;26198:2;26187:9;26183:18;26175:26;;26247:9;26241:4;26237:20;26233:1;26222:9;26218:17;26211:47;26275:131;26401:4;26275:131;:::i;:::-;26267:139;;25994:419;;;:::o;26419:::-;26585:4;26623:2;26612:9;26608:18;26600:26;;26672:9;26666:4;26662:20;26658:1;26647:9;26643:17;26636:47;26700:131;26826:4;26700:131;:::i;:::-;26692:139;;26419:419;;;:::o;26844:::-;27010:4;27048:2;27037:9;27033:18;27025:26;;27097:9;27091:4;27087:20;27083:1;27072:9;27068:17;27061:47;27125:131;27251:4;27125:131;:::i;:::-;27117:139;;26844:419;;;:::o;27269:::-;27435:4;27473:2;27462:9;27458:18;27450:26;;27522:9;27516:4;27512:20;27508:1;27497:9;27493:17;27486:47;27550:131;27676:4;27550:131;:::i;:::-;27542:139;;27269:419;;;:::o;27694:::-;27860:4;27898:2;27887:9;27883:18;27875:26;;27947:9;27941:4;27937:20;27933:1;27922:9;27918:17;27911:47;27975:131;28101:4;27975:131;:::i;:::-;27967:139;;27694:419;;;:::o;28119:::-;28285:4;28323:2;28312:9;28308:18;28300:26;;28372:9;28366:4;28362:20;28358:1;28347:9;28343:17;28336:47;28400:131;28526:4;28400:131;:::i;:::-;28392:139;;28119:419;;;:::o;28544:::-;28710:4;28748:2;28737:9;28733:18;28725:26;;28797:9;28791:4;28787:20;28783:1;28772:9;28768:17;28761:47;28825:131;28951:4;28825:131;:::i;:::-;28817:139;;28544:419;;;:::o;28969:::-;29135:4;29173:2;29162:9;29158:18;29150:26;;29222:9;29216:4;29212:20;29208:1;29197:9;29193:17;29186:47;29250:131;29376:4;29250:131;:::i;:::-;29242:139;;28969:419;;;:::o;29394:::-;29560:4;29598:2;29587:9;29583:18;29575:26;;29647:9;29641:4;29637:20;29633:1;29622:9;29618:17;29611:47;29675:131;29801:4;29675:131;:::i;:::-;29667:139;;29394:419;;;:::o;29819:::-;29985:4;30023:2;30012:9;30008:18;30000:26;;30072:9;30066:4;30062:20;30058:1;30047:9;30043:17;30036:47;30100:131;30226:4;30100:131;:::i;:::-;30092:139;;29819:419;;;:::o;30244:::-;30410:4;30448:2;30437:9;30433:18;30425:26;;30497:9;30491:4;30487:20;30483:1;30472:9;30468:17;30461:47;30525:131;30651:4;30525:131;:::i;:::-;30517:139;;30244:419;;;:::o;30669:::-;30835:4;30873:2;30862:9;30858:18;30850:26;;30922:9;30916:4;30912:20;30908:1;30897:9;30893:17;30886:47;30950:131;31076:4;30950:131;:::i;:::-;30942:139;;30669:419;;;:::o;31094:::-;31260:4;31298:2;31287:9;31283:18;31275:26;;31347:9;31341:4;31337:20;31333:1;31322:9;31318:17;31311:47;31375:131;31501:4;31375:131;:::i;:::-;31367:139;;31094:419;;;:::o;31519:::-;31685:4;31723:2;31712:9;31708:18;31700:26;;31772:9;31766:4;31762:20;31758:1;31747:9;31743:17;31736:47;31800:131;31926:4;31800:131;:::i;:::-;31792:139;;31519:419;;;:::o;31944:::-;32110:4;32148:2;32137:9;32133:18;32125:26;;32197:9;32191:4;32187:20;32183:1;32172:9;32168:17;32161:47;32225:131;32351:4;32225:131;:::i;:::-;32217:139;;31944:419;;;:::o;32369:::-;32535:4;32573:2;32562:9;32558:18;32550:26;;32622:9;32616:4;32612:20;32608:1;32597:9;32593:17;32586:47;32650:131;32776:4;32650:131;:::i;:::-;32642:139;;32369:419;;;:::o;32794:::-;32960:4;32998:2;32987:9;32983:18;32975:26;;33047:9;33041:4;33037:20;33033:1;33022:9;33018:17;33011:47;33075:131;33201:4;33075:131;:::i;:::-;33067:139;;32794:419;;;:::o;33219:222::-;33312:4;33350:2;33339:9;33335:18;33327:26;;33363:71;33431:1;33420:9;33416:17;33407:6;33363:71;:::i;:::-;33219:222;;;;:::o;33447:129::-;33481:6;33508:20;;:::i;:::-;33498:30;;33537:33;33565:4;33557:6;33537:33;:::i;:::-;33447:129;;;:::o;33582:75::-;33615:6;33648:2;33642:9;33632:19;;33582:75;:::o;33663:307::-;33724:4;33814:18;33806:6;33803:30;33800:56;;;33836:18;;:::i;:::-;33800:56;33874:29;33896:6;33874:29;:::i;:::-;33866:37;;33958:4;33952;33948:15;33940:23;;33663:307;;;:::o;33976:308::-;34038:4;34128:18;34120:6;34117:30;34114:56;;;34150:18;;:::i;:::-;34114:56;34188:29;34210:6;34188:29;:::i;:::-;34180:37;;34272:4;34266;34262:15;34254:23;;33976:308;;;:::o;34290:132::-;34357:4;34380:3;34372:11;;34410:4;34405:3;34401:14;34393:22;;34290:132;;;:::o;34428:141::-;34477:4;34500:3;34492:11;;34523:3;34520:1;34513:14;34557:4;34554:1;34544:18;34536:26;;34428:141;;;:::o;34575:114::-;34642:6;34676:5;34670:12;34660:22;;34575:114;;;:::o;34695:98::-;34746:6;34780:5;34774:12;34764:22;;34695:98;;;:::o;34799:99::-;34851:6;34885:5;34879:12;34869:22;;34799:99;;;:::o;34904:113::-;34974:4;35006;35001:3;34997:14;34989:22;;34904:113;;;:::o;35023:184::-;35122:11;35156:6;35151:3;35144:19;35196:4;35191:3;35187:14;35172:29;;35023:184;;;;:::o;35213:168::-;35296:11;35330:6;35325:3;35318:19;35370:4;35365:3;35361:14;35346:29;;35213:168;;;;:::o;35387:169::-;35471:11;35505:6;35500:3;35493:19;35545:4;35540:3;35536:14;35521:29;;35387:169;;;;:::o;35562:148::-;35664:11;35701:3;35686:18;;35562:148;;;;:::o;35716:305::-;35756:3;35775:20;35793:1;35775:20;:::i;:::-;35770:25;;35809:20;35827:1;35809:20;:::i;:::-;35804:25;;35963:1;35895:66;35891:74;35888:1;35885:81;35882:107;;;35969:18;;:::i;:::-;35882:107;36013:1;36010;36006:9;35999:16;;35716:305;;;;:::o;36027:185::-;36067:1;36084:20;36102:1;36084:20;:::i;:::-;36079:25;;36118:20;36136:1;36118:20;:::i;:::-;36113:25;;36157:1;36147:35;;36162:18;;:::i;:::-;36147:35;36204:1;36201;36197:9;36192:14;;36027:185;;;;:::o;36218:348::-;36258:7;36281:20;36299:1;36281:20;:::i;:::-;36276:25;;36315:20;36333:1;36315:20;:::i;:::-;36310:25;;36503:1;36435:66;36431:74;36428:1;36425:81;36420:1;36413:9;36406:17;36402:105;36399:131;;;36510:18;;:::i;:::-;36399:131;36558:1;36555;36551:9;36540:20;;36218:348;;;;:::o;36572:191::-;36612:4;36632:20;36650:1;36632:20;:::i;:::-;36627:25;;36666:20;36684:1;36666:20;:::i;:::-;36661:25;;36705:1;36702;36699:8;36696:34;;;36710:18;;:::i;:::-;36696:34;36755:1;36752;36748:9;36740:17;;36572:191;;;;:::o;36769:96::-;36806:7;36835:24;36853:5;36835:24;:::i;:::-;36824:35;;36769:96;;;:::o;36871:90::-;36905:7;36948:5;36941:13;36934:21;36923:32;;36871:90;;;:::o;36967:149::-;37003:7;37043:66;37036:5;37032:78;37021:89;;36967:149;;;:::o;37122:126::-;37159:7;37199:42;37192:5;37188:54;37177:65;;37122:126;;;:::o;37254:77::-;37291:7;37320:5;37309:16;;37254:77;;;:::o;37337:154::-;37421:6;37416:3;37411;37398:30;37483:1;37474:6;37469:3;37465:16;37458:27;37337:154;;;:::o;37497:307::-;37565:1;37575:113;37589:6;37586:1;37583:13;37575:113;;;37674:1;37669:3;37665:11;37659:18;37655:1;37650:3;37646:11;37639:39;37611:2;37608:1;37604:10;37599:15;;37575:113;;;37706:6;37703:1;37700:13;37697:101;;;37786:1;37777:6;37772:3;37768:16;37761:27;37697:101;37546:258;37497:307;;;:::o;37810:320::-;37854:6;37891:1;37885:4;37881:12;37871:22;;37938:1;37932:4;37928:12;37959:18;37949:81;;38015:4;38007:6;38003:17;37993:27;;37949:81;38077:2;38069:6;38066:14;38046:18;38043:38;38040:84;;;38096:18;;:::i;:::-;38040:84;37861:269;37810:320;;;:::o;38136:281::-;38219:27;38241:4;38219:27;:::i;:::-;38211:6;38207:40;38349:6;38337:10;38334:22;38313:18;38301:10;38298:34;38295:62;38292:88;;;38360:18;;:::i;:::-;38292:88;38400:10;38396:2;38389:22;38179:238;38136:281;;:::o;38423:233::-;38462:3;38485:24;38503:5;38485:24;:::i;:::-;38476:33;;38531:66;38524:5;38521:77;38518:103;;;38601:18;;:::i;:::-;38518:103;38648:1;38641:5;38637:13;38630:20;;38423:233;;;:::o;38662:176::-;38694:1;38711:20;38729:1;38711:20;:::i;:::-;38706:25;;38745:20;38763:1;38745:20;:::i;:::-;38740:25;;38784:1;38774:35;;38789:18;;:::i;:::-;38774:35;38830:1;38827;38823:9;38818:14;;38662:176;;;;:::o;38844:180::-;38892:77;38889:1;38882:88;38989:4;38986:1;38979:15;39013:4;39010:1;39003:15;39030:180;39078:77;39075:1;39068:88;39175:4;39172:1;39165:15;39199:4;39196:1;39189:15;39216:180;39264:77;39261:1;39254:88;39361:4;39358:1;39351:15;39385:4;39382:1;39375:15;39402:180;39450:77;39447:1;39440:88;39547:4;39544:1;39537:15;39571:4;39568:1;39561:15;39588:180;39636:77;39633:1;39626:88;39733:4;39730:1;39723:15;39757:4;39754:1;39747:15;39774:180;39822:77;39819:1;39812:88;39919:4;39916:1;39909:15;39943:4;39940:1;39933:15;39960:117;40069:1;40066;40059:12;40083:117;40192:1;40189;40182:12;40206:117;40315:1;40312;40305:12;40329:117;40438:1;40435;40428:12;40452:102;40493:6;40544:2;40540:7;40535:2;40528:5;40524:14;40520:28;40510:38;;40452:102;;;:::o;40560:174::-;40700:26;40696:1;40688:6;40684:14;40677:50;40560:174;:::o;40740:230::-;40880:34;40876:1;40868:6;40864:14;40857:58;40949:13;40944:2;40936:6;40932:15;40925:38;40740:230;:::o;40976:237::-;41116:34;41112:1;41104:6;41100:14;41093:58;41185:20;41180:2;41172:6;41168:15;41161:45;40976:237;:::o;41219:225::-;41359:34;41355:1;41347:6;41343:14;41336:58;41428:8;41423:2;41415:6;41411:15;41404:33;41219:225;:::o;41450:178::-;41590:30;41586:1;41578:6;41574:14;41567:54;41450:178;:::o;41634:172::-;41774:24;41770:1;41762:6;41758:14;41751:48;41634:172;:::o;41812:223::-;41952:34;41948:1;41940:6;41936:14;41929:58;42021:6;42016:2;42008:6;42004:15;41997:31;41812:223;:::o;42041:175::-;42181:27;42177:1;42169:6;42165:14;42158:51;42041:175;:::o;42222:168::-;42362:20;42358:1;42350:6;42346:14;42339:44;42222:168;:::o;42396:231::-;42536:34;42532:1;42524:6;42520:14;42513:58;42605:14;42600:2;42592:6;42588:15;42581:39;42396:231;:::o;42633:243::-;42773:34;42769:1;42761:6;42757:14;42750:58;42842:26;42837:2;42829:6;42825:15;42818:51;42633:243;:::o;42882:229::-;43022:34;43018:1;43010:6;43006:14;42999:58;43091:12;43086:2;43078:6;43074:15;43067:37;42882:229;:::o;43117:228::-;43257:34;43253:1;43245:6;43241:14;43234:58;43326:11;43321:2;43313:6;43309:15;43302:36;43117:228;:::o;43351:182::-;43491:34;43487:1;43479:6;43475:14;43468:58;43351:182;:::o;43539:231::-;43679:34;43675:1;43667:6;43663:14;43656:58;43748:14;43743:2;43735:6;43731:15;43724:39;43539:231;:::o;43776:182::-;43916:34;43912:1;43904:6;43900:14;43893:58;43776:182;:::o;43964:228::-;44104:34;44100:1;44092:6;44088:14;44081:58;44173:11;44168:2;44160:6;44156:15;44149:36;43964:228;:::o;44198:234::-;44338:34;44334:1;44326:6;44322:14;44315:58;44407:17;44402:2;44394:6;44390:15;44383:42;44198:234;:::o;44438:220::-;44578:34;44574:1;44566:6;44562:14;44555:58;44647:3;44642:2;44634:6;44630:15;44623:28;44438:220;:::o;44664:174::-;44804:26;44800:1;44792:6;44788:14;44781:50;44664:174;:::o;44844:::-;44984:26;44980:1;44972:6;44968:14;44961:50;44844:174;:::o;45024:163::-;45164:15;45160:1;45152:6;45148:14;45141:39;45024:163;:::o;45193:236::-;45333:34;45329:1;45321:6;45317:14;45310:58;45402:19;45397:2;45389:6;45385:15;45378:44;45193:236;:::o;45435:231::-;45575:34;45571:1;45563:6;45559:14;45552:58;45644:14;45639:2;45631:6;45627:15;45620:39;45435:231;:::o;45672:164::-;45812:16;45808:1;45800:6;45796:14;45789:40;45672:164;:::o;45842:122::-;45915:24;45933:5;45915:24;:::i;:::-;45908:5;45905:35;45895:63;;45954:1;45951;45944:12;45895:63;45842:122;:::o;45970:116::-;46040:21;46055:5;46040:21;:::i;:::-;46033:5;46030:32;46020:60;;46076:1;46073;46066:12;46020:60;45970:116;:::o;46092:120::-;46164:23;46181:5;46164:23;:::i;:::-;46157:5;46154:34;46144:62;;46202:1;46199;46192:12;46144:62;46092:120;:::o;46218:122::-;46291:24;46309:5;46291:24;:::i;:::-;46284:5;46281:35;46271:63;;46330:1;46327;46320:12;46271:63;46218:122;:::o

Swarm Source

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