ETH Price: $3,269.68 (+0.82%)
Gas: 1 Gwei

Token

SacGirl Corps (SC)
 

Overview

Max Total Supply

81 SC

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zhugeliang55.eth
Balance
1 SC
0x0fad9daa9f63ad5a47132b3f7f4edbc09faeaa90
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:
SacCorps

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-28
*/

// File: IWhitelist.sol


pragma solidity ^0.8.4;

interface IWhitelist {
    function whitelistedAddresses(address) external view returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: sacgirl.sol

// SPDX-License-Indetifier: MIT
pragma solidity ^0.8.4;




contract SacCorps is ERC721Enumerable, Ownable {
    string _baseTokenURI;
    uint256 public _price = 0.0077 ether;
    bool public _paused;
    uint256 public maxTokenIds = 999;
    uint256 public tokenIds;
    IWhitelist whitelist;
    bool public presaleStarted;
    uint256 public presaleEnded;

    modifier onlyWhenNotPaused() {
        require(!_paused, "Contract currently paused");
        _;
    }

    constructor(string memory baseURI, address whitelistContract)
        ERC721("SacGirl Corps", "SC")
    {
        _baseTokenURI = baseURI;
        whitelist = IWhitelist(whitelistContract);
    }

    function startPresale() public onlyOwner {
        presaleStarted = true;
        presaleEnded = block.timestamp + 1440 minutes;
    }

    function presaleMint() public payable onlyWhenNotPaused {
        require(
            presaleStarted && block.timestamp < presaleEnded,
            "Presale is not running"
        );
        require(tokenIds < maxTokenIds, "Exceeded maximum Crypto Devs supply");
        require(msg.value >= _price, "Ether sent is not correct");
        tokenIds += 1;

        _safeMint(msg.sender, tokenIds);
    }

    function mint() public payable onlyWhenNotPaused {
        require(tokenIds < maxTokenIds, "Exceed maximum Crypto Devs supply");
        require(msg.value >= _price, "Ether sent is not correct");
        tokenIds += 1;

        _safeMint(msg.sender, tokenIds);
    }

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

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

    function setPaused(bool val) public onlyOwner {
        _paused = val;
    }

    function withdraw() public onlyOwner {
        address _owner = owner();
        uint256 amount = address(this).balance;
        (bool sent, ) = _owner.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    receive() external payable {}

    fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"whitelistContract","type":"address"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","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":[],"name":"tokenIds","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052661b5b1bf4c54000600c556103e7600e553480156200002257600080fd5b506040516200422e3803806200422e83398181016040528101906200004891906200037d565b6040518060400160405280600d81526020017f5361634769726c20436f727073000000000000000000000000000000000000008152506040518060400160405280600281526020017f53430000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cc92919062000238565b508060019080519060200190620000e592919062000238565b50505062000108620000fc6200016a60201b60201c565b6200017260201b60201c565b81600b90805190602001906200012092919062000238565b5080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005b5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620004ac565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b6000620002ff620002f9846200040c565b620003e3565b9050828152602081018484840111156200031e576200031d6200057b565b5b6200032b84828562000476565b509392505050565b60008151905062000344816200059b565b92915050565b600082601f83011262000362576200036162000576565b5b815162000374848260208601620002e8565b91505092915050565b6000806040838503121562000397576200039662000585565b5b600083015167ffffffffffffffff811115620003b857620003b762000580565b5b620003c6858286016200034a565b9250506020620003d98582860162000333565b9150509250929050565b6000620003ef62000402565b9050620003fd8282620004e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042a576200042962000547565b5b62000435826200058a565b9050602081019050919050565b60006200044f8262000456565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200049657808201518184015260208101905062000479565b83811115620004a6576000848401525b50505050565b60006002820490506001821680620004c557607f821691505b60208210811415620004dc57620004db62000518565b5b50919050565b620004ed826200058a565b810181811067ffffffffffffffff821117156200050f576200050e62000547565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005a68162000442565b8114620005b257600080fd5b50565b613c6980620005c56000396000f3fe6080604052600436106101dc5760003560e01c80634f6ccce7116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd1461064e578063e580b2b01461068b578063e985e9c5146106b6578063f2fde38b146106f3576101e3565b80638da5cb5b146105a657806395d89b41146105d1578063a22cb465146105fc578063b88d4fde14610625576101e3565b80636352211e116100d15780636352211e146104ea57806370a0823114610527578063714cff5614610564578063715018a61461058f576101e3565b80634f6ccce71461044f57806355f804b31461048c57806359533d6c146104b55780635f769621146104bf576101e3565b806316c38b3c1161017a57806323b872dd1161014957806323b872dd146103a95780632f745c59146103d25780633ccfd60b1461040f57806342842e0e14610426576101e3565b806316c38b3c146102ff57806316c61ccc1461032857806318160ddd14610353578063235b6ea11461037e576101e3565b806306fdde03116101b657806306fdde0314610264578063081812fc1461028f578063095ea7b3146102cc5780631249c58b146102f5576101e3565b806301ffc9a7146101e557806304549d6f1461022257806304c98b2b1461024d576101e3565b366101e357005b005b3480156101f157600080fd5b5061020c60048036038101906102079190612a13565b61071c565b6040516102199190612f55565b60405180910390f35b34801561022e57600080fd5b50610237610796565b6040516102449190612f55565b60405180910390f35b34801561025957600080fd5b506102626107a9565b005b34801561027057600080fd5b506102796107e3565b6040516102869190612f70565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612ab6565b610875565b6040516102c39190612eee565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906129a6565b6108bb565b005b6102fd6109d3565b005b34801561030b57600080fd5b50610326600480360381019061032191906129e6565b610ad6565b005b34801561033457600080fd5b5061033d610afb565b60405161034a9190612f55565b60405180910390f35b34801561035f57600080fd5b50610368610b0e565b6040516103759190613232565b60405180910390f35b34801561038a57600080fd5b50610393610b1b565b6040516103a09190613232565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612890565b610b21565b005b3480156103de57600080fd5b506103f960048036038101906103f491906129a6565b610b81565b6040516104069190613232565b60405180910390f35b34801561041b57600080fd5b50610424610c26565b005b34801561043257600080fd5b5061044d60048036038101906104489190612890565b610cf0565b005b34801561045b57600080fd5b5061047660048036038101906104719190612ab6565b610d10565b6040516104839190613232565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612a6d565b610d81565b005b6104bd610da3565b005b3480156104cb57600080fd5b506104d4610f02565b6040516104e19190613232565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612ab6565b610f08565b60405161051e9190612eee565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612823565b610fba565b60405161055b9190613232565b60405180910390f35b34801561057057600080fd5b50610579611072565b6040516105869190613232565b60405180910390f35b34801561059b57600080fd5b506105a4611078565b005b3480156105b257600080fd5b506105bb61108c565b6040516105c89190612eee565b60405180910390f35b3480156105dd57600080fd5b506105e66110b6565b6040516105f39190612f70565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190612966565b611148565b005b34801561063157600080fd5b5061064c600480360381019061064791906128e3565b61115e565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ab6565b6111c0565b6040516106829190612f70565b60405180910390f35b34801561069757600080fd5b506106a0611228565b6040516106ad9190613232565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612850565b61122e565b6040516106ea9190612f55565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612823565b6112c2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078f575061078e82611346565b5b9050919050565b601060149054906101000a900460ff1681565b6107b1611428565b6001601060146101000a81548160ff02191690831515021790555062015180426107db9190613322565b601181905550565b6060600080546107f290613493565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90613493565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000610880826114a6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c682610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906131b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109566114f1565b73ffffffffffffffffffffffffffffffffffffffff16148061098557506109848161097f6114f1565b61122e565b5b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613112565b60405180910390fd5b6109ce83836114f9565b505050565b600d60009054906101000a900460ff1615610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90613172565b60405180910390fd5b600e54600f5410610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090612ff2565b60405180910390fd5b600c54341015610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906131d2565b60405180910390fd5b6001600f6000828254610ac19190613322565b92505081905550610ad433600f546115b2565b565b610ade611428565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b600c5481565b610b32610b2c6114f1565b826115d0565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613212565b60405180910390fd5b610b7c838383611665565b505050565b6000610b8c83610fba565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490612f92565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611428565b6000610c3861108c565b9050600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610c6590612ed9565b60006040518083038185875af1925050503d8060008114610ca2576040519150601f19603f3d011682016040523d82523d6000602084013e610ca7565b606091505b5050905080610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613092565b60405180910390fd5b505050565b610d0b8383836040518060200160405280600081525061115e565b505050565b6000610d1a610b0e565b8210610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d52906131f2565b60405180910390fd5b60088281548110610d6f57610d6e61362c565b5b90600052602060002001549050919050565b610d89611428565b80600b9080519060200190610d9f929190612637565b5050565b600d60009054906101000a900460ff1615610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613172565b60405180910390fd5b601060149054906101000a900460ff168015610e10575060115442105b610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690613072565b60405180910390fd5b600e54600f5410610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613032565b60405180910390fd5b600c54341015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906131d2565b60405180910390fd5b6001600f6000828254610eed9190613322565b92505081905550610f0033600f546115b2565b565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613192565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611022906130f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b611080611428565b61108a60006118cc565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110c590613493565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190613493565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b61115a6111536114f1565b8383611992565b5050565b61116f6111696114f1565b836115d0565b6111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613212565b60405180910390fd5b6111ba84848484611aff565b50505050565b60606111cb826114a6565b60006111d5611b5b565b905060008151116111f55760405180602001604052806000815250611220565b806111ff84611bed565b604051602001611210929190612eb5565b6040516020818303038152906040525b915050919050565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112ca611428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190612fd2565b60405180910390fd5b611343816118cc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061141157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611421575061142082611d4e565b5b9050919050565b6114306114f1565b73ffffffffffffffffffffffffffffffffffffffff1661144e61108c565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613152565b60405180910390fd5b565b6114af81611db8565b6114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613192565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156c83610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115cc828260405180602001604052806000815250611e24565b5050565b6000806115dc83610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061161e575061161d818561122e565b5b8061165c57508373ffffffffffffffffffffffffffffffffffffffff1661164484610875565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168582610f08565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906130b2565b60405180910390fd5b611756838383611e7f565b6117616000826114f9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b191906133a9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118089190613322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c7838383611f93565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906130d2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af29190612f55565b60405180910390a3505050565b611b0a848484611665565b611b1684848484611f98565b611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90612fb2565b60405180910390fd5b50505050565b6060600b8054611b6a90613493565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9690613493565b8015611be35780601f10611bb857610100808354040283529160200191611be3565b820191906000526020600020905b815481529060010190602001808311611bc657829003601f168201915b5050505050905090565b60606000821415611c35576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d49565b600082905060005b60008214611c67578080611c50906134f6565b915050600a82611c609190613378565b9150611c3d565b60008167ffffffffffffffff811115611c8357611c8261365b565b5b6040519080825280601f01601f191660200182016040528015611cb55781602001600182028036833780820191505090505b5090505b60008514611d4257600182611cce91906133a9565b9150600a85611cdd919061353f565b6030611ce99190613322565b60f81b818381518110611cff57611cfe61362c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d3b9190613378565b9450611cb9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611e2e838361212f565b611e3b6000848484611f98565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190612fb2565b60405180910390fd5b505050565b611e8a838383612309565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ecd57611ec88161230e565b611f0c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0b57611f0a8382612357565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4f57611f4a816124c4565b611f8e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f8d57611f8c8282612595565b5b5b505050565b505050565b6000611fb98473ffffffffffffffffffffffffffffffffffffffff16612614565b15612122578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe26114f1565b8786866040518563ffffffff1660e01b81526004016120049493929190612f09565b602060405180830381600087803b15801561201e57600080fd5b505af192505050801561204f57506040513d601f19601f8201168201806040525081019061204c9190612a40565b60015b6120d2573d806000811461207f576040519150601f19603f3d011682016040523d82523d6000602084013e612084565b606091505b506000815114156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190612fb2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612127565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613132565b60405180910390fd5b6121a881611db8565b156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613052565b60405180910390fd5b6121f460008383611e7f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122449190613322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230560008383611f93565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161236484610fba565b61236e91906133a9565b9050600060076000848152602001908152602001600020549050818114612453576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124d891906133a9565b90506000600960008481526020019081526020016000205490506000600883815481106125085761250761362c565b5b90600052602060002001549050806008838154811061252a5761252961362c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612579576125786135fd565b5b6001900381819060005260206000200160009055905550505050565b60006125a083610fba565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461264390613493565b90600052602060002090601f01602090048101928261266557600085556126ac565b82601f1061267e57805160ff19168380011785556126ac565b828001600101855582156126ac579182015b828111156126ab578251825591602001919060010190612690565b5b5090506126b991906126bd565b5090565b5b808211156126d65760008160009055506001016126be565b5090565b60006126ed6126e884613272565b61324d565b9050828152602081018484840111156127095761270861368f565b5b612714848285613451565b509392505050565b600061272f61272a846132a3565b61324d565b90508281526020810184848401111561274b5761274a61368f565b5b612756848285613451565b509392505050565b60008135905061276d81613bd7565b92915050565b60008135905061278281613bee565b92915050565b60008135905061279781613c05565b92915050565b6000815190506127ac81613c05565b92915050565b600082601f8301126127c7576127c661368a565b5b81356127d78482602086016126da565b91505092915050565b600082601f8301126127f5576127f461368a565b5b813561280584826020860161271c565b91505092915050565b60008135905061281d81613c1c565b92915050565b60006020828403121561283957612838613699565b5b60006128478482850161275e565b91505092915050565b6000806040838503121561286757612866613699565b5b60006128758582860161275e565b92505060206128868582860161275e565b9150509250929050565b6000806000606084860312156128a9576128a8613699565b5b60006128b78682870161275e565b93505060206128c88682870161275e565b92505060406128d98682870161280e565b9150509250925092565b600080600080608085870312156128fd576128fc613699565b5b600061290b8782880161275e565b945050602061291c8782880161275e565b935050604061292d8782880161280e565b925050606085013567ffffffffffffffff81111561294e5761294d613694565b5b61295a878288016127b2565b91505092959194509250565b6000806040838503121561297d5761297c613699565b5b600061298b8582860161275e565b925050602061299c85828601612773565b9150509250929050565b600080604083850312156129bd576129bc613699565b5b60006129cb8582860161275e565b92505060206129dc8582860161280e565b9150509250929050565b6000602082840312156129fc576129fb613699565b5b6000612a0a84828501612773565b91505092915050565b600060208284031215612a2957612a28613699565b5b6000612a3784828501612788565b91505092915050565b600060208284031215612a5657612a55613699565b5b6000612a648482850161279d565b91505092915050565b600060208284031215612a8357612a82613699565b5b600082013567ffffffffffffffff811115612aa157612aa0613694565b5b612aad848285016127e0565b91505092915050565b600060208284031215612acc57612acb613699565b5b6000612ada8482850161280e565b91505092915050565b612aec816133dd565b82525050565b612afb816133ef565b82525050565b6000612b0c826132d4565b612b1681856132ea565b9350612b26818560208601613460565b612b2f8161369e565b840191505092915050565b6000612b45826132df565b612b4f8185613306565b9350612b5f818560208601613460565b612b688161369e565b840191505092915050565b6000612b7e826132df565b612b888185613317565b9350612b98818560208601613460565b80840191505092915050565b6000612bb1602b83613306565b9150612bbc826136af565b604082019050919050565b6000612bd4603283613306565b9150612bdf826136fe565b604082019050919050565b6000612bf7602683613306565b9150612c028261374d565b604082019050919050565b6000612c1a602183613306565b9150612c258261379c565b604082019050919050565b6000612c3d602583613306565b9150612c48826137eb565b604082019050919050565b6000612c60602383613306565b9150612c6b8261383a565b604082019050919050565b6000612c83601c83613306565b9150612c8e82613889565b602082019050919050565b6000612ca6601683613306565b9150612cb1826138b2565b602082019050919050565b6000612cc9601483613306565b9150612cd4826138db565b602082019050919050565b6000612cec602483613306565b9150612cf782613904565b604082019050919050565b6000612d0f601983613306565b9150612d1a82613953565b602082019050919050565b6000612d32602983613306565b9150612d3d8261397c565b604082019050919050565b6000612d55603e83613306565b9150612d60826139cb565b604082019050919050565b6000612d78602083613306565b9150612d8382613a1a565b602082019050919050565b6000612d9b602083613306565b9150612da682613a43565b602082019050919050565b6000612dbe601983613306565b9150612dc982613a6c565b602082019050919050565b6000612de1601883613306565b9150612dec82613a95565b602082019050919050565b6000612e04602183613306565b9150612e0f82613abe565b604082019050919050565b6000612e27601983613306565b9150612e3282613b0d565b602082019050919050565b6000612e4a6000836132fb565b9150612e5582613b36565b600082019050919050565b6000612e6d602c83613306565b9150612e7882613b39565b604082019050919050565b6000612e90602e83613306565b9150612e9b82613b88565b604082019050919050565b612eaf81613447565b82525050565b6000612ec18285612b73565b9150612ecd8284612b73565b91508190509392505050565b6000612ee482612e3d565b9150819050919050565b6000602082019050612f036000830184612ae3565b92915050565b6000608082019050612f1e6000830187612ae3565b612f2b6020830186612ae3565b612f386040830185612ea6565b8181036060830152612f4a8184612b01565b905095945050505050565b6000602082019050612f6a6000830184612af2565b92915050565b60006020820190508181036000830152612f8a8184612b3a565b905092915050565b60006020820190508181036000830152612fab81612ba4565b9050919050565b60006020820190508181036000830152612fcb81612bc7565b9050919050565b60006020820190508181036000830152612feb81612bea565b9050919050565b6000602082019050818103600083015261300b81612c0d565b9050919050565b6000602082019050818103600083015261302b81612c30565b9050919050565b6000602082019050818103600083015261304b81612c53565b9050919050565b6000602082019050818103600083015261306b81612c76565b9050919050565b6000602082019050818103600083015261308b81612c99565b9050919050565b600060208201905081810360008301526130ab81612cbc565b9050919050565b600060208201905081810360008301526130cb81612cdf565b9050919050565b600060208201905081810360008301526130eb81612d02565b9050919050565b6000602082019050818103600083015261310b81612d25565b9050919050565b6000602082019050818103600083015261312b81612d48565b9050919050565b6000602082019050818103600083015261314b81612d6b565b9050919050565b6000602082019050818103600083015261316b81612d8e565b9050919050565b6000602082019050818103600083015261318b81612db1565b9050919050565b600060208201905081810360008301526131ab81612dd4565b9050919050565b600060208201905081810360008301526131cb81612df7565b9050919050565b600060208201905081810360008301526131eb81612e1a565b9050919050565b6000602082019050818103600083015261320b81612e60565b9050919050565b6000602082019050818103600083015261322b81612e83565b9050919050565b60006020820190506132476000830184612ea6565b92915050565b6000613257613268565b905061326382826134c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561328d5761328c61365b565b5b6132968261369e565b9050602081019050919050565b600067ffffffffffffffff8211156132be576132bd61365b565b5b6132c78261369e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061332d82613447565b915061333883613447565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336d5761336c613570565b5b828201905092915050565b600061338382613447565b915061338e83613447565b92508261339e5761339d61359f565b5b828204905092915050565b60006133b482613447565b91506133bf83613447565b9250828210156133d2576133d1613570565b5b828203905092915050565b60006133e882613427565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561347e578082015181840152602081019050613463565b8381111561348d576000848401525b50505050565b600060028204905060018216806134ab57607f821691505b602082108114156134bf576134be6135ce565b5b50919050565b6134ce8261369e565b810181811067ffffffffffffffff821117156134ed576134ec61365b565b5b80604052505050565b600061350182613447565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353457613533613570565b5b600182019050919050565b600061354a82613447565b915061355583613447565b9250826135655761356461359f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d2043727970746f204465767320737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178696d756d2043727970746f20446576732073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c65206973206e6f742072756e6e696e6700000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e74726163742063757272656e746c792070617573656400000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613be0816133dd565b8114613beb57600080fd5b50565b613bf7816133ef565b8114613c0257600080fd5b50565b613c0e816133fb565b8114613c1957600080fd5b50565b613c2581613447565b8114613c3057600080fd5b5056fea2646970667358221220a2f13166c96a296e9b4e94faffbc1ddd5ae6ef28f8c732771810687b2ea906e564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000010f852d9b4cdb1c1983760eb42b6c885f3d7441c0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5132504372383147665a4541754661375839477262423974414758376734584b415139596e69474e594e71362f00000000000000000000

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80634f6ccce7116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd1461064e578063e580b2b01461068b578063e985e9c5146106b6578063f2fde38b146106f3576101e3565b80638da5cb5b146105a657806395d89b41146105d1578063a22cb465146105fc578063b88d4fde14610625576101e3565b80636352211e116100d15780636352211e146104ea57806370a0823114610527578063714cff5614610564578063715018a61461058f576101e3565b80634f6ccce71461044f57806355f804b31461048c57806359533d6c146104b55780635f769621146104bf576101e3565b806316c38b3c1161017a57806323b872dd1161014957806323b872dd146103a95780632f745c59146103d25780633ccfd60b1461040f57806342842e0e14610426576101e3565b806316c38b3c146102ff57806316c61ccc1461032857806318160ddd14610353578063235b6ea11461037e576101e3565b806306fdde03116101b657806306fdde0314610264578063081812fc1461028f578063095ea7b3146102cc5780631249c58b146102f5576101e3565b806301ffc9a7146101e557806304549d6f1461022257806304c98b2b1461024d576101e3565b366101e357005b005b3480156101f157600080fd5b5061020c60048036038101906102079190612a13565b61071c565b6040516102199190612f55565b60405180910390f35b34801561022e57600080fd5b50610237610796565b6040516102449190612f55565b60405180910390f35b34801561025957600080fd5b506102626107a9565b005b34801561027057600080fd5b506102796107e3565b6040516102869190612f70565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612ab6565b610875565b6040516102c39190612eee565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906129a6565b6108bb565b005b6102fd6109d3565b005b34801561030b57600080fd5b50610326600480360381019061032191906129e6565b610ad6565b005b34801561033457600080fd5b5061033d610afb565b60405161034a9190612f55565b60405180910390f35b34801561035f57600080fd5b50610368610b0e565b6040516103759190613232565b60405180910390f35b34801561038a57600080fd5b50610393610b1b565b6040516103a09190613232565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612890565b610b21565b005b3480156103de57600080fd5b506103f960048036038101906103f491906129a6565b610b81565b6040516104069190613232565b60405180910390f35b34801561041b57600080fd5b50610424610c26565b005b34801561043257600080fd5b5061044d60048036038101906104489190612890565b610cf0565b005b34801561045b57600080fd5b5061047660048036038101906104719190612ab6565b610d10565b6040516104839190613232565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612a6d565b610d81565b005b6104bd610da3565b005b3480156104cb57600080fd5b506104d4610f02565b6040516104e19190613232565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612ab6565b610f08565b60405161051e9190612eee565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612823565b610fba565b60405161055b9190613232565b60405180910390f35b34801561057057600080fd5b50610579611072565b6040516105869190613232565b60405180910390f35b34801561059b57600080fd5b506105a4611078565b005b3480156105b257600080fd5b506105bb61108c565b6040516105c89190612eee565b60405180910390f35b3480156105dd57600080fd5b506105e66110b6565b6040516105f39190612f70565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190612966565b611148565b005b34801561063157600080fd5b5061064c600480360381019061064791906128e3565b61115e565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ab6565b6111c0565b6040516106829190612f70565b60405180910390f35b34801561069757600080fd5b506106a0611228565b6040516106ad9190613232565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612850565b61122e565b6040516106ea9190612f55565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612823565b6112c2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078f575061078e82611346565b5b9050919050565b601060149054906101000a900460ff1681565b6107b1611428565b6001601060146101000a81548160ff02191690831515021790555062015180426107db9190613322565b601181905550565b6060600080546107f290613493565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90613493565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000610880826114a6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c682610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906131b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109566114f1565b73ffffffffffffffffffffffffffffffffffffffff16148061098557506109848161097f6114f1565b61122e565b5b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613112565b60405180910390fd5b6109ce83836114f9565b505050565b600d60009054906101000a900460ff1615610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90613172565b60405180910390fd5b600e54600f5410610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090612ff2565b60405180910390fd5b600c54341015610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906131d2565b60405180910390fd5b6001600f6000828254610ac19190613322565b92505081905550610ad433600f546115b2565b565b610ade611428565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000600880549050905090565b600c5481565b610b32610b2c6114f1565b826115d0565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613212565b60405180910390fd5b610b7c838383611665565b505050565b6000610b8c83610fba565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490612f92565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611428565b6000610c3861108c565b9050600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610c6590612ed9565b60006040518083038185875af1925050503d8060008114610ca2576040519150601f19603f3d011682016040523d82523d6000602084013e610ca7565b606091505b5050905080610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613092565b60405180910390fd5b505050565b610d0b8383836040518060200160405280600081525061115e565b505050565b6000610d1a610b0e565b8210610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d52906131f2565b60405180910390fd5b60088281548110610d6f57610d6e61362c565b5b90600052602060002001549050919050565b610d89611428565b80600b9080519060200190610d9f929190612637565b5050565b600d60009054906101000a900460ff1615610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613172565b60405180910390fd5b601060149054906101000a900460ff168015610e10575060115442105b610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690613072565b60405180910390fd5b600e54600f5410610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613032565b60405180910390fd5b600c54341015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906131d2565b60405180910390fd5b6001600f6000828254610eed9190613322565b92505081905550610f0033600f546115b2565b565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613192565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611022906130f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b611080611428565b61108a60006118cc565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110c590613493565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190613493565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b61115a6111536114f1565b8383611992565b5050565b61116f6111696114f1565b836115d0565b6111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613212565b60405180910390fd5b6111ba84848484611aff565b50505050565b60606111cb826114a6565b60006111d5611b5b565b905060008151116111f55760405180602001604052806000815250611220565b806111ff84611bed565b604051602001611210929190612eb5565b6040516020818303038152906040525b915050919050565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112ca611428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190612fd2565b60405180910390fd5b611343816118cc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061141157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611421575061142082611d4e565b5b9050919050565b6114306114f1565b73ffffffffffffffffffffffffffffffffffffffff1661144e61108c565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613152565b60405180910390fd5b565b6114af81611db8565b6114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613192565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156c83610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115cc828260405180602001604052806000815250611e24565b5050565b6000806115dc83610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061161e575061161d818561122e565b5b8061165c57508373ffffffffffffffffffffffffffffffffffffffff1661164484610875565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168582610f08565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906130b2565b60405180910390fd5b611756838383611e7f565b6117616000826114f9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b191906133a9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118089190613322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c7838383611f93565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906130d2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af29190612f55565b60405180910390a3505050565b611b0a848484611665565b611b1684848484611f98565b611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90612fb2565b60405180910390fd5b50505050565b6060600b8054611b6a90613493565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9690613493565b8015611be35780601f10611bb857610100808354040283529160200191611be3565b820191906000526020600020905b815481529060010190602001808311611bc657829003601f168201915b5050505050905090565b60606000821415611c35576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d49565b600082905060005b60008214611c67578080611c50906134f6565b915050600a82611c609190613378565b9150611c3d565b60008167ffffffffffffffff811115611c8357611c8261365b565b5b6040519080825280601f01601f191660200182016040528015611cb55781602001600182028036833780820191505090505b5090505b60008514611d4257600182611cce91906133a9565b9150600a85611cdd919061353f565b6030611ce99190613322565b60f81b818381518110611cff57611cfe61362c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d3b9190613378565b9450611cb9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611e2e838361212f565b611e3b6000848484611f98565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190612fb2565b60405180910390fd5b505050565b611e8a838383612309565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ecd57611ec88161230e565b611f0c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0b57611f0a8382612357565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4f57611f4a816124c4565b611f8e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f8d57611f8c8282612595565b5b5b505050565b505050565b6000611fb98473ffffffffffffffffffffffffffffffffffffffff16612614565b15612122578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe26114f1565b8786866040518563ffffffff1660e01b81526004016120049493929190612f09565b602060405180830381600087803b15801561201e57600080fd5b505af192505050801561204f57506040513d601f19601f8201168201806040525081019061204c9190612a40565b60015b6120d2573d806000811461207f576040519150601f19603f3d011682016040523d82523d6000602084013e612084565b606091505b506000815114156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190612fb2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612127565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613132565b60405180910390fd5b6121a881611db8565b156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613052565b60405180910390fd5b6121f460008383611e7f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122449190613322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230560008383611f93565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161236484610fba565b61236e91906133a9565b9050600060076000848152602001908152602001600020549050818114612453576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124d891906133a9565b90506000600960008481526020019081526020016000205490506000600883815481106125085761250761362c565b5b90600052602060002001549050806008838154811061252a5761252961362c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612579576125786135fd565b5b6001900381819060005260206000200160009055905550505050565b60006125a083610fba565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461264390613493565b90600052602060002090601f01602090048101928261266557600085556126ac565b82601f1061267e57805160ff19168380011785556126ac565b828001600101855582156126ac579182015b828111156126ab578251825591602001919060010190612690565b5b5090506126b991906126bd565b5090565b5b808211156126d65760008160009055506001016126be565b5090565b60006126ed6126e884613272565b61324d565b9050828152602081018484840111156127095761270861368f565b5b612714848285613451565b509392505050565b600061272f61272a846132a3565b61324d565b90508281526020810184848401111561274b5761274a61368f565b5b612756848285613451565b509392505050565b60008135905061276d81613bd7565b92915050565b60008135905061278281613bee565b92915050565b60008135905061279781613c05565b92915050565b6000815190506127ac81613c05565b92915050565b600082601f8301126127c7576127c661368a565b5b81356127d78482602086016126da565b91505092915050565b600082601f8301126127f5576127f461368a565b5b813561280584826020860161271c565b91505092915050565b60008135905061281d81613c1c565b92915050565b60006020828403121561283957612838613699565b5b60006128478482850161275e565b91505092915050565b6000806040838503121561286757612866613699565b5b60006128758582860161275e565b92505060206128868582860161275e565b9150509250929050565b6000806000606084860312156128a9576128a8613699565b5b60006128b78682870161275e565b93505060206128c88682870161275e565b92505060406128d98682870161280e565b9150509250925092565b600080600080608085870312156128fd576128fc613699565b5b600061290b8782880161275e565b945050602061291c8782880161275e565b935050604061292d8782880161280e565b925050606085013567ffffffffffffffff81111561294e5761294d613694565b5b61295a878288016127b2565b91505092959194509250565b6000806040838503121561297d5761297c613699565b5b600061298b8582860161275e565b925050602061299c85828601612773565b9150509250929050565b600080604083850312156129bd576129bc613699565b5b60006129cb8582860161275e565b92505060206129dc8582860161280e565b9150509250929050565b6000602082840312156129fc576129fb613699565b5b6000612a0a84828501612773565b91505092915050565b600060208284031215612a2957612a28613699565b5b6000612a3784828501612788565b91505092915050565b600060208284031215612a5657612a55613699565b5b6000612a648482850161279d565b91505092915050565b600060208284031215612a8357612a82613699565b5b600082013567ffffffffffffffff811115612aa157612aa0613694565b5b612aad848285016127e0565b91505092915050565b600060208284031215612acc57612acb613699565b5b6000612ada8482850161280e565b91505092915050565b612aec816133dd565b82525050565b612afb816133ef565b82525050565b6000612b0c826132d4565b612b1681856132ea565b9350612b26818560208601613460565b612b2f8161369e565b840191505092915050565b6000612b45826132df565b612b4f8185613306565b9350612b5f818560208601613460565b612b688161369e565b840191505092915050565b6000612b7e826132df565b612b888185613317565b9350612b98818560208601613460565b80840191505092915050565b6000612bb1602b83613306565b9150612bbc826136af565b604082019050919050565b6000612bd4603283613306565b9150612bdf826136fe565b604082019050919050565b6000612bf7602683613306565b9150612c028261374d565b604082019050919050565b6000612c1a602183613306565b9150612c258261379c565b604082019050919050565b6000612c3d602583613306565b9150612c48826137eb565b604082019050919050565b6000612c60602383613306565b9150612c6b8261383a565b604082019050919050565b6000612c83601c83613306565b9150612c8e82613889565b602082019050919050565b6000612ca6601683613306565b9150612cb1826138b2565b602082019050919050565b6000612cc9601483613306565b9150612cd4826138db565b602082019050919050565b6000612cec602483613306565b9150612cf782613904565b604082019050919050565b6000612d0f601983613306565b9150612d1a82613953565b602082019050919050565b6000612d32602983613306565b9150612d3d8261397c565b604082019050919050565b6000612d55603e83613306565b9150612d60826139cb565b604082019050919050565b6000612d78602083613306565b9150612d8382613a1a565b602082019050919050565b6000612d9b602083613306565b9150612da682613a43565b602082019050919050565b6000612dbe601983613306565b9150612dc982613a6c565b602082019050919050565b6000612de1601883613306565b9150612dec82613a95565b602082019050919050565b6000612e04602183613306565b9150612e0f82613abe565b604082019050919050565b6000612e27601983613306565b9150612e3282613b0d565b602082019050919050565b6000612e4a6000836132fb565b9150612e5582613b36565b600082019050919050565b6000612e6d602c83613306565b9150612e7882613b39565b604082019050919050565b6000612e90602e83613306565b9150612e9b82613b88565b604082019050919050565b612eaf81613447565b82525050565b6000612ec18285612b73565b9150612ecd8284612b73565b91508190509392505050565b6000612ee482612e3d565b9150819050919050565b6000602082019050612f036000830184612ae3565b92915050565b6000608082019050612f1e6000830187612ae3565b612f2b6020830186612ae3565b612f386040830185612ea6565b8181036060830152612f4a8184612b01565b905095945050505050565b6000602082019050612f6a6000830184612af2565b92915050565b60006020820190508181036000830152612f8a8184612b3a565b905092915050565b60006020820190508181036000830152612fab81612ba4565b9050919050565b60006020820190508181036000830152612fcb81612bc7565b9050919050565b60006020820190508181036000830152612feb81612bea565b9050919050565b6000602082019050818103600083015261300b81612c0d565b9050919050565b6000602082019050818103600083015261302b81612c30565b9050919050565b6000602082019050818103600083015261304b81612c53565b9050919050565b6000602082019050818103600083015261306b81612c76565b9050919050565b6000602082019050818103600083015261308b81612c99565b9050919050565b600060208201905081810360008301526130ab81612cbc565b9050919050565b600060208201905081810360008301526130cb81612cdf565b9050919050565b600060208201905081810360008301526130eb81612d02565b9050919050565b6000602082019050818103600083015261310b81612d25565b9050919050565b6000602082019050818103600083015261312b81612d48565b9050919050565b6000602082019050818103600083015261314b81612d6b565b9050919050565b6000602082019050818103600083015261316b81612d8e565b9050919050565b6000602082019050818103600083015261318b81612db1565b9050919050565b600060208201905081810360008301526131ab81612dd4565b9050919050565b600060208201905081810360008301526131cb81612df7565b9050919050565b600060208201905081810360008301526131eb81612e1a565b9050919050565b6000602082019050818103600083015261320b81612e60565b9050919050565b6000602082019050818103600083015261322b81612e83565b9050919050565b60006020820190506132476000830184612ea6565b92915050565b6000613257613268565b905061326382826134c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561328d5761328c61365b565b5b6132968261369e565b9050602081019050919050565b600067ffffffffffffffff8211156132be576132bd61365b565b5b6132c78261369e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061332d82613447565b915061333883613447565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336d5761336c613570565b5b828201905092915050565b600061338382613447565b915061338e83613447565b92508261339e5761339d61359f565b5b828204905092915050565b60006133b482613447565b91506133bf83613447565b9250828210156133d2576133d1613570565b5b828203905092915050565b60006133e882613427565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561347e578082015181840152602081019050613463565b8381111561348d576000848401525b50505050565b600060028204905060018216806134ab57607f821691505b602082108114156134bf576134be6135ce565b5b50919050565b6134ce8261369e565b810181811067ffffffffffffffff821117156134ed576134ec61365b565b5b80604052505050565b600061350182613447565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353457613533613570565b5b600182019050919050565b600061354a82613447565b915061355583613447565b9250826135655761356461359f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d2043727970746f204465767320737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178696d756d2043727970746f20446576732073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c65206973206e6f742072756e6e696e6700000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e74726163742063757272656e746c792070617573656400000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613be0816133dd565b8114613beb57600080fd5b50565b613bf7816133ef565b8114613c0257600080fd5b50565b613c0e816133fb565b8114613c1957600080fd5b50565b613c2581613447565b8114613c3057600080fd5b5056fea2646970667358221220a2f13166c96a296e9b4e94faffbc1ddd5ae6ef28f8c732771810687b2ea906e564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000010f852d9b4cdb1c1983760eb42b6c885f3d7441c0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5132504372383147665a4541754661375839477262423974414758376734584b415139596e69474e594e71362f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmQ2PCr81GfZEAuFa7X9GrbB9tAGX7g4XKAQ9YniGNYNq6/
Arg [1] : whitelistContract (address): 0x10f852D9B4CDb1c1983760Eb42b6c885f3D7441c

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000010f852d9b4cdb1c1983760eb42b6c885f3d7441c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5132504372383147665a45417546613758394772624239
Arg [4] : 74414758376734584b415139596e69474e594e71362f00000000000000000000


Deployed Bytecode Sourcemap

46407:2120:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40169:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46653:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47044:137;;;;;;;;;;;;;:::i;:::-;;26903:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28416:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27933:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47609:272;;;:::i;:::-;;48129:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46531:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40809:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46488:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29116:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40477:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48215:234;;;;;;;;;;;;;:::i;:::-;;29523:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40999:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48011:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47189:412;;;:::i;:::-;;46557:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26614:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26345:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46596:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5432:103;;;;;;;;;;;;;:::i;:::-;;4784:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27072:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28659:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29779:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27247:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46686:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28885:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5690:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40169:224;40271:4;40310:35;40295:50;;;:11;:50;;;;:90;;;;40349:36;40373:11;40349:23;:36::i;:::-;40295:90;40288:97;;40169:224;;;:::o;46653:26::-;;;;;;;;;;;;;:::o;47044:137::-;4670:13;:11;:13::i;:::-;47113:4:::1;47096:14;;:21;;;;;;;;;;;;;;;;;;47161:12;47143:15;:30;;;;:::i;:::-;47128:12;:45;;;;47044:137::o:0;26903:100::-;26957:13;26990:5;26983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26903:100;:::o;28416:171::-;28492:7;28512:23;28527:7;28512:14;:23::i;:::-;28555:15;:24;28571:7;28555:24;;;;;;;;;;;;;;;;;;;;;28548:31;;28416:171;;;:::o;27933:417::-;28014:13;28030:23;28045:7;28030:14;:23::i;:::-;28014:39;;28078:5;28072:11;;:2;:11;;;;28064:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28172:5;28156:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28181:37;28198:5;28205:12;:10;:12::i;:::-;28181:16;:37::i;:::-;28156:62;28134:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28321:21;28330:2;28334:7;28321:8;:21::i;:::-;28003:347;27933:417;;:::o;47609:272::-;46771:7;;;;;;;;;;;46770:8;46762:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47688:11:::1;;47677:8;;:22;47669:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47769:6;;47756:9;:19;;47748:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47828:1;47816:8;;:13;;;;;;;:::i;:::-;;;;;;;;47842:31;47852:10;47864:8;;47842:9;:31::i;:::-;47609:272::o:0;48129:78::-;4670:13;:11;:13::i;:::-;48196:3:::1;48186:7;;:13;;;;;;;;;;;;;;;;;;48129:78:::0;:::o;46531:19::-;;;;;;;;;;;;;:::o;40809:113::-;40870:7;40897:10;:17;;;;40890:24;;40809:113;:::o;46488:36::-;;;;:::o;29116:336::-;29311:41;29330:12;:10;:12::i;:::-;29344:7;29311:18;:41::i;:::-;29303:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29116:336;;;:::o;40477:256::-;40574:7;40610:23;40627:5;40610:16;:23::i;:::-;40602:5;:31;40594:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40699:12;:19;40712:5;40699:19;;;;;;;;;;;;;;;:26;40719:5;40699:26;;;;;;;;;;;;40692:33;;40477:256;;;;:::o;48215:234::-;4670:13;:11;:13::i;:::-;48263:14:::1;48280:7;:5;:7::i;:::-;48263:24;;48298:14;48315:21;48298:38;;48348:9;48363:6;:11;;48382:6;48363:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48347:46;;;48412:4;48404:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;48252:197;;;48215:234::o:0;29523:185::-;29661:39;29678:4;29684:2;29688:7;29661:39;;;;;;;;;;;;:16;:39::i;:::-;29523:185;;;:::o;40999:233::-;41074:7;41110:30;:28;:30::i;:::-;41102:5;:38;41094:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41207:10;41218:5;41207:17;;;;;;;;:::i;:::-;;;;;;;;;;41200:24;;40999:233;;;:::o;48011:110::-;4670:13;:11;:13::i;:::-;48102:11:::1;48086:13;:27;;;;;;;;;;;;:::i;:::-;;48011:110:::0;:::o;47189:412::-;46771:7;;;;;;;;;;;46770:8;46762:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47278:14:::1;;;;;;;;;;;:48;;;;;47314:12;;47296:15;:30;47278:48;47256:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;47406:11;;47395:8;;:22;47387:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47489:6;;47476:9;:19;;47468:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47548:1;47536:8;;:13;;;;;;;:::i;:::-;;;;;;;;47562:31;47572:10;47584:8;;47562:9;:31::i;:::-;47189:412::o:0;46557:32::-;;;;:::o;26614:222::-;26686:7;26706:13;26722:7;:16;26730:7;26722:16;;;;;;;;;;;;;;;;;;;;;26706:32;;26774:1;26757:19;;:5;:19;;;;26749:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26823:5;26816:12;;;26614:222;;;:::o;26345:207::-;26417:7;26462:1;26445:19;;:5;:19;;;;26437:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26528:9;:16;26538:5;26528:16;;;;;;;;;;;;;;;;26521:23;;26345:207;;;:::o;46596:23::-;;;;:::o;5432:103::-;4670:13;:11;:13::i;:::-;5497:30:::1;5524:1;5497:18;:30::i;:::-;5432:103::o:0;4784:87::-;4830:7;4857:6;;;;;;;;;;;4850:13;;4784:87;:::o;27072:104::-;27128:13;27161:7;27154:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27072:104;:::o;28659:155::-;28754:52;28773:12;:10;:12::i;:::-;28787:8;28797;28754:18;:52::i;:::-;28659:155;;:::o;29779:323::-;29953:41;29972:12;:10;:12::i;:::-;29986:7;29953:18;:41::i;:::-;29945:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30056:38;30070:4;30076:2;30080:7;30089:4;30056:13;:38::i;:::-;29779:323;;;;:::o;27247:281::-;27320:13;27346:23;27361:7;27346:14;:23::i;:::-;27382:21;27406:10;:8;:10::i;:::-;27382:34;;27458:1;27440:7;27434:21;:25;:86;;;;;;;;;;;;;;;;;27486:7;27495:18;:7;:16;:18::i;:::-;27469:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27434:86;27427:93;;;27247:281;;;:::o;46686:27::-;;;;:::o;28885:164::-;28982:4;29006:18;:25;29025:5;29006:25;;;;;;;;;;;;;;;:35;29032:8;29006:35;;;;;;;;;;;;;;;;;;;;;;;;;28999:42;;28885:164;;;;:::o;5690:201::-;4670:13;:11;:13::i;:::-;5799:1:::1;5779:22;;:8;:22;;;;5771:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5855:28;5874:8;5855:18;:28::i;:::-;5690:201:::0;:::o;25976:305::-;26078:4;26130:25;26115:40;;;:11;:40;;;;:105;;;;26187:33;26172:48;;;:11;:48;;;;26115:105;:158;;;;26237:36;26261:11;26237:23;:36::i;:::-;26115:158;26095:178;;25976:305;;;:::o;4949:132::-;5024:12;:10;:12::i;:::-;5013:23;;:7;:5;:7::i;:::-;:23;;;5005:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:132::o;36391:135::-;36473:16;36481:7;36473;:16::i;:::-;36465:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36391:135;:::o;3335:98::-;3388:7;3415:10;3408:17;;3335:98;:::o;35670:174::-;35772:2;35745:15;:24;35761:7;35745:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35828:7;35824:2;35790:46;;35799:23;35814:7;35799:14;:23::i;:::-;35790:46;;;;;;;;;;;;35670:174;;:::o;32509:110::-;32585:26;32595:2;32599:7;32585:26;;;;;;;;;;;;:9;:26::i;:::-;32509:110;;:::o;31903:264::-;31996:4;32013:13;32029:23;32044:7;32029:14;:23::i;:::-;32013:39;;32082:5;32071:16;;:7;:16;;;:52;;;;32091:32;32108:5;32115:7;32091:16;:32::i;:::-;32071:52;:87;;;;32151:7;32127:31;;:20;32139:7;32127:11;:20::i;:::-;:31;;;32071:87;32063:96;;;31903:264;;;;:::o;34926:625::-;35085:4;35058:31;;:23;35073:7;35058:14;:23::i;:::-;:31;;;35050:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35164:1;35150:16;;:2;:16;;;;35142:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35220:39;35241:4;35247:2;35251:7;35220:20;:39::i;:::-;35324:29;35341:1;35345:7;35324:8;:29::i;:::-;35385:1;35366:9;:15;35376:4;35366:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35414:1;35397:9;:13;35407:2;35397:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35445:2;35426:7;:16;35434:7;35426:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35484:7;35480:2;35465:27;;35474:4;35465:27;;;;;;;;;;;;35505:38;35525:4;35531:2;35535:7;35505:19;:38::i;:::-;34926:625;;;:::o;6051:191::-;6125:16;6144:6;;;;;;;;;;;6125:25;;6170:8;6161:6;;:17;;;;;;;;;;;;;;;;;;6225:8;6194:40;;6215:8;6194:40;;;;;;;;;;;;6114:128;6051:191;:::o;35987:315::-;36142:8;36133:17;;:5;:17;;;;36125:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36229:8;36191:18;:25;36210:5;36191:25;;;;;;;;;;;;;;;:35;36217:8;36191:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36275:8;36253:41;;36268:5;36253:41;;;36285:8;36253:41;;;;;;:::i;:::-;;;;;;;;35987:315;;;:::o;30983:313::-;31139:28;31149:4;31155:2;31159:7;31139:9;:28::i;:::-;31186:47;31209:4;31215:2;31219:7;31228:4;31186:22;:47::i;:::-;31178:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30983:313;;;;:::o;47889:114::-;47949:13;47982;47975:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47889:114;:::o;589:723::-;645:13;875:1;866:5;:10;862:53;;;893:10;;;;;;;;;;;;;;;;;;;;;862:53;925:12;940:5;925:20;;956:14;981:78;996:1;988:4;:9;981:78;;1014:8;;;;;:::i;:::-;;;;1045:2;1037:10;;;;;:::i;:::-;;;981:78;;;1069:19;1101:6;1091:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069:39;;1119:154;1135:1;1126:5;:10;1119:154;;1163:1;1153:11;;;;;:::i;:::-;;;1230:2;1222:5;:10;;;;:::i;:::-;1209:2;:24;;;;:::i;:::-;1196:39;;1179:6;1186;1179:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1259:2;1250:11;;;;;:::i;:::-;;;1119:154;;;1297:6;1283:21;;;;;589:723;;;;:::o;17638:157::-;17723:4;17762:25;17747:40;;;:11;:40;;;;17740:47;;17638:157;;;:::o;31609:127::-;31674:4;31726:1;31698:30;;:7;:16;31706:7;31698:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31691:37;;31609:127;;;:::o;32846:319::-;32975:18;32981:2;32985:7;32975:5;:18::i;:::-;33026:53;33057:1;33061:2;33065:7;33074:4;33026:22;:53::i;:::-;33004:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32846:319;;;:::o;41845:589::-;41989:45;42016:4;42022:2;42026:7;41989:26;:45::i;:::-;42067:1;42051:18;;:4;:18;;;42047:187;;;42086:40;42118:7;42086:31;:40::i;:::-;42047:187;;;42156:2;42148:10;;:4;:10;;;42144:90;;42175:47;42208:4;42214:7;42175:32;:47::i;:::-;42144:90;42047:187;42262:1;42248:16;;:2;:16;;;42244:183;;;42281:45;42318:7;42281:36;:45::i;:::-;42244:183;;;42354:4;42348:10;;:2;:10;;;42344:83;;42375:40;42403:2;42407:7;42375:27;:40::i;:::-;42344:83;42244:183;41845:589;;;:::o;39026:125::-;;;;:::o;37090:853::-;37244:4;37265:15;:2;:13;;;:15::i;:::-;37261:675;;;37317:2;37301:36;;;37338:12;:10;:12::i;:::-;37352:4;37358:7;37367:4;37301:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37297:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37559:1;37542:6;:13;:18;37538:328;;;37585:60;;;;;;;;;;:::i;:::-;;;;;;;;37538:328;37816:6;37810:13;37801:6;37797:2;37793:15;37786:38;37297:584;37433:41;;;37423:51;;;:6;:51;;;;37416:58;;;;;37261:675;37920:4;37913:11;;37090:853;;;;;;;:::o;33501:439::-;33595:1;33581:16;;:2;:16;;;;33573:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33654:16;33662:7;33654;:16::i;:::-;33653:17;33645:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33716:45;33745:1;33749:2;33753:7;33716:20;:45::i;:::-;33791:1;33774:9;:13;33784:2;33774:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33822:2;33803:7;:16;33811:7;33803:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33867:7;33863:2;33842:33;;33859:1;33842:33;;;;;;;;;;;;33888:44;33916:1;33920:2;33924:7;33888:19;:44::i;:::-;33501:439;;:::o;38515:126::-;;;;:::o;43157:164::-;43261:10;:17;;;;43234:15;:24;43250:7;43234:24;;;;;;;;;;;:44;;;;43289:10;43305:7;43289:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43157:164;:::o;43948:988::-;44214:22;44264:1;44239:22;44256:4;44239:16;:22::i;:::-;:26;;;;:::i;:::-;44214:51;;44276:18;44297:17;:26;44315:7;44297:26;;;;;;;;;;;;44276:47;;44444:14;44430:10;:28;44426:328;;44475:19;44497:12;:18;44510:4;44497:18;;;;;;;;;;;;;;;:34;44516:14;44497:34;;;;;;;;;;;;44475:56;;44581:11;44548:12;:18;44561:4;44548:18;;;;;;;;;;;;;;;:30;44567:10;44548:30;;;;;;;;;;;:44;;;;44698:10;44665:17;:30;44683:11;44665:30;;;;;;;;;;;:43;;;;44460:294;44426:328;44850:17;:26;44868:7;44850:26;;;;;;;;;;;44843:33;;;44894:12;:18;44907:4;44894:18;;;;;;;;;;;;;;;:34;44913:14;44894:34;;;;;;;;;;;44887:41;;;44029:907;;43948:988;;:::o;45231:1079::-;45484:22;45529:1;45509:10;:17;;;;:21;;;;:::i;:::-;45484:46;;45541:18;45562:15;:24;45578:7;45562:24;;;;;;;;;;;;45541:45;;45913:19;45935:10;45946:14;45935:26;;;;;;;;:::i;:::-;;;;;;;;;;45913:48;;45999:11;45974:10;45985;45974:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46110:10;46079:15;:28;46095:11;46079:28;;;;;;;;;;;:41;;;;46251:15;:24;46267:7;46251:24;;;;;;;;;;;46244:31;;;46286:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45302:1008;;;45231:1079;:::o;42735:221::-;42820:14;42837:20;42854:2;42837:16;:20::i;:::-;42820:37;;42895:7;42868:12;:16;42881:2;42868:16;;;;;;;;;;;;;;;:24;42885:6;42868:24;;;;;;;;;;;:34;;;;42942:6;42913:17;:26;42931:7;42913:26;;;;;;;;;;;:35;;;;42809:147;42735:221;;:::o;7482:326::-;7542:4;7799:1;7777:7;:19;;;:23;7770:30;;7482:326;;;:::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:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:::-;13079:3;13100:67;13164:2;13159:3;13100:67;:::i;:::-;13093:74;;13176:93;13265:3;13176:93;:::i;:::-;13294:2;13289:3;13285:12;13278:19;;12937:366;;;:::o;13309:::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:::-;13823:3;13844:67;13908:2;13903:3;13844:67;:::i;:::-;13837:74;;13920:93;14009:3;13920:93;:::i;:::-;14038:2;14033:3;14029:12;14022:19;;13681:366;;;:::o;14053:::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:::-;14567:3;14588:67;14652:2;14647:3;14588:67;:::i;:::-;14581:74;;14664:93;14753:3;14664:93;:::i;:::-;14782:2;14777:3;14773:12;14766:19;;14425:366;;;:::o;14797:::-;14939:3;14960:67;15024:2;15019:3;14960:67;:::i;:::-;14953:74;;15036:93;15125:3;15036:93;:::i;:::-;15154:2;15149:3;15145:12;15138:19;;14797:366;;;:::o;15169:::-;15311:3;15332:67;15396:2;15391:3;15332:67;:::i;:::-;15325:74;;15408:93;15497:3;15408:93;:::i;:::-;15526:2;15521:3;15517:12;15510:19;;15169:366;;;:::o;15541:::-;15683:3;15704:67;15768:2;15763:3;15704:67;:::i;:::-;15697:74;;15780:93;15869:3;15780:93;:::i;:::-;15898:2;15893:3;15889:12;15882:19;;15541:366;;;:::o;15913:398::-;16072:3;16093:83;16174:1;16169:3;16093:83;:::i;:::-;16086:90;;16185:93;16274:3;16185:93;:::i;:::-;16303:1;16298:3;16294:11;16287:18;;15913:398;;;:::o;16317:366::-;16459:3;16480:67;16544:2;16539:3;16480:67;:::i;:::-;16473:74;;16556:93;16645:3;16556:93;:::i;:::-;16674:2;16669:3;16665:12;16658:19;;16317:366;;;:::o;16689:::-;16831:3;16852:67;16916:2;16911:3;16852:67;:::i;:::-;16845:74;;16928:93;17017:3;16928:93;:::i;:::-;17046:2;17041:3;17037:12;17030:19;;16689:366;;;:::o;17061:118::-;17148:24;17166:5;17148:24;:::i;:::-;17143:3;17136:37;17061:118;;:::o;17185:435::-;17365:3;17387:95;17478:3;17469:6;17387:95;:::i;:::-;17380:102;;17499:95;17590:3;17581:6;17499:95;:::i;:::-;17492:102;;17611:3;17604:10;;17185:435;;;;;:::o;17626:379::-;17810:3;17832:147;17975:3;17832:147;:::i;:::-;17825:154;;17996:3;17989:10;;17626:379;;;:::o;18011:222::-;18104:4;18142:2;18131:9;18127:18;18119:26;;18155:71;18223:1;18212:9;18208:17;18199:6;18155:71;:::i;:::-;18011:222;;;;:::o;18239:640::-;18434:4;18472:3;18461:9;18457:19;18449:27;;18486:71;18554:1;18543:9;18539:17;18530:6;18486:71;:::i;:::-;18567:72;18635:2;18624:9;18620:18;18611:6;18567:72;:::i;:::-;18649;18717:2;18706:9;18702:18;18693:6;18649:72;:::i;:::-;18768:9;18762:4;18758:20;18753:2;18742:9;18738:18;18731:48;18796:76;18867:4;18858:6;18796:76;:::i;:::-;18788:84;;18239:640;;;;;;;:::o;18885:210::-;18972:4;19010:2;18999:9;18995:18;18987:26;;19023:65;19085:1;19074:9;19070:17;19061:6;19023:65;:::i;:::-;18885:210;;;;:::o;19101:313::-;19214:4;19252:2;19241:9;19237:18;19229:26;;19301:9;19295:4;19291:20;19287:1;19276:9;19272:17;19265:47;19329:78;19402:4;19393:6;19329:78;:::i;:::-;19321:86;;19101:313;;;;:::o;19420:419::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19673:9;19667:4;19663:20;19659:1;19648:9;19644:17;19637:47;19701:131;19827:4;19701:131;:::i;:::-;19693:139;;19420:419;;;:::o;19845:::-;20011:4;20049:2;20038:9;20034:18;20026:26;;20098:9;20092:4;20088:20;20084:1;20073:9;20069:17;20062:47;20126:131;20252:4;20126:131;:::i;:::-;20118:139;;19845:419;;;:::o;20270:::-;20436:4;20474:2;20463:9;20459:18;20451:26;;20523:9;20517:4;20513:20;20509:1;20498:9;20494:17;20487:47;20551:131;20677:4;20551:131;:::i;:::-;20543:139;;20270:419;;;:::o;20695:::-;20861:4;20899:2;20888:9;20884:18;20876:26;;20948:9;20942:4;20938:20;20934:1;20923:9;20919:17;20912:47;20976:131;21102:4;20976:131;:::i;:::-;20968:139;;20695:419;;;:::o;21120:::-;21286:4;21324:2;21313:9;21309:18;21301:26;;21373:9;21367:4;21363:20;21359:1;21348:9;21344:17;21337:47;21401:131;21527:4;21401:131;:::i;:::-;21393:139;;21120:419;;;:::o;21545:::-;21711:4;21749:2;21738:9;21734:18;21726:26;;21798:9;21792:4;21788:20;21784:1;21773:9;21769:17;21762:47;21826:131;21952:4;21826:131;:::i;:::-;21818:139;;21545:419;;;:::o;21970:::-;22136:4;22174:2;22163:9;22159:18;22151:26;;22223:9;22217:4;22213:20;22209:1;22198:9;22194:17;22187:47;22251:131;22377:4;22251:131;:::i;:::-;22243:139;;21970:419;;;:::o;22395:::-;22561:4;22599:2;22588:9;22584:18;22576:26;;22648:9;22642:4;22638:20;22634:1;22623:9;22619:17;22612:47;22676:131;22802:4;22676:131;:::i;:::-;22668:139;;22395:419;;;:::o;22820:::-;22986:4;23024:2;23013:9;23009:18;23001:26;;23073:9;23067:4;23063:20;23059:1;23048:9;23044:17;23037:47;23101:131;23227:4;23101:131;:::i;:::-;23093:139;;22820:419;;;:::o;23245:::-;23411:4;23449:2;23438:9;23434:18;23426:26;;23498:9;23492:4;23488:20;23484:1;23473:9;23469:17;23462:47;23526:131;23652:4;23526:131;:::i;:::-;23518:139;;23245:419;;;:::o;23670:::-;23836:4;23874:2;23863:9;23859:18;23851:26;;23923:9;23917:4;23913:20;23909:1;23898:9;23894:17;23887:47;23951:131;24077:4;23951:131;:::i;:::-;23943:139;;23670:419;;;:::o;24095:::-;24261:4;24299:2;24288:9;24284:18;24276:26;;24348:9;24342:4;24338:20;24334:1;24323:9;24319:17;24312:47;24376:131;24502:4;24376:131;:::i;:::-;24368:139;;24095:419;;;:::o;24520:::-;24686:4;24724:2;24713:9;24709:18;24701:26;;24773:9;24767:4;24763:20;24759:1;24748:9;24744:17;24737:47;24801:131;24927:4;24801:131;:::i;:::-;24793:139;;24520:419;;;:::o;24945:::-;25111:4;25149:2;25138:9;25134:18;25126:26;;25198:9;25192:4;25188:20;25184:1;25173:9;25169:17;25162:47;25226:131;25352:4;25226:131;:::i;:::-;25218:139;;24945:419;;;:::o;25370:::-;25536:4;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25370:419;;;:::o;25795:::-;25961:4;25999:2;25988:9;25984:18;25976:26;;26048:9;26042:4;26038:20;26034:1;26023:9;26019:17;26012:47;26076:131;26202:4;26076:131;:::i;:::-;26068:139;;25795:419;;;:::o;26220:::-;26386:4;26424:2;26413:9;26409:18;26401:26;;26473:9;26467:4;26463:20;26459:1;26448:9;26444:17;26437:47;26501:131;26627:4;26501:131;:::i;:::-;26493:139;;26220:419;;;:::o;26645:::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26645:419;;;:::o;27070:::-;27236:4;27274:2;27263:9;27259:18;27251:26;;27323:9;27317:4;27313:20;27309:1;27298:9;27294:17;27287:47;27351:131;27477:4;27351:131;:::i;:::-;27343:139;;27070:419;;;:::o;27495:::-;27661:4;27699:2;27688:9;27684:18;27676:26;;27748:9;27742:4;27738:20;27734:1;27723:9;27719:17;27712:47;27776:131;27902:4;27776:131;:::i;:::-;27768:139;;27495:419;;;:::o;27920:::-;28086:4;28124:2;28113:9;28109:18;28101:26;;28173:9;28167:4;28163:20;28159:1;28148:9;28144:17;28137:47;28201:131;28327:4;28201:131;:::i;:::-;28193:139;;27920:419;;;:::o;28345:222::-;28438:4;28476:2;28465:9;28461:18;28453:26;;28489:71;28557:1;28546:9;28542:17;28533:6;28489:71;:::i;:::-;28345:222;;;;:::o;28573:129::-;28607:6;28634:20;;:::i;:::-;28624:30;;28663:33;28691:4;28683:6;28663:33;:::i;:::-;28573:129;;;:::o;28708:75::-;28741:6;28774:2;28768:9;28758:19;;28708:75;:::o;28789:307::-;28850:4;28940:18;28932:6;28929:30;28926:56;;;28962:18;;:::i;:::-;28926:56;29000:29;29022:6;29000:29;:::i;:::-;28992:37;;29084:4;29078;29074:15;29066:23;;28789:307;;;:::o;29102:308::-;29164:4;29254:18;29246:6;29243:30;29240:56;;;29276:18;;:::i;:::-;29240:56;29314:29;29336:6;29314:29;:::i;:::-;29306:37;;29398:4;29392;29388:15;29380:23;;29102:308;;;:::o;29416:98::-;29467:6;29501:5;29495:12;29485:22;;29416:98;;;:::o;29520:99::-;29572:6;29606:5;29600:12;29590:22;;29520:99;;;:::o;29625:168::-;29708:11;29742:6;29737:3;29730:19;29782:4;29777:3;29773:14;29758:29;;29625:168;;;;:::o;29799:147::-;29900:11;29937:3;29922:18;;29799:147;;;;:::o;29952:169::-;30036:11;30070:6;30065:3;30058:19;30110:4;30105:3;30101:14;30086:29;;29952:169;;;;:::o;30127:148::-;30229:11;30266:3;30251:18;;30127:148;;;;:::o;30281:305::-;30321:3;30340:20;30358:1;30340:20;:::i;:::-;30335:25;;30374:20;30392:1;30374:20;:::i;:::-;30369:25;;30528:1;30460:66;30456:74;30453:1;30450:81;30447:107;;;30534:18;;:::i;:::-;30447:107;30578:1;30575;30571:9;30564:16;;30281:305;;;;:::o;30592:185::-;30632:1;30649:20;30667:1;30649:20;:::i;:::-;30644:25;;30683:20;30701:1;30683:20;:::i;:::-;30678:25;;30722:1;30712:35;;30727:18;;:::i;:::-;30712:35;30769:1;30766;30762:9;30757:14;;30592:185;;;;:::o;30783:191::-;30823:4;30843:20;30861:1;30843:20;:::i;:::-;30838:25;;30877:20;30895:1;30877:20;:::i;:::-;30872:25;;30916:1;30913;30910:8;30907:34;;;30921:18;;:::i;:::-;30907:34;30966:1;30963;30959:9;30951:17;;30783:191;;;;:::o;30980:96::-;31017:7;31046:24;31064:5;31046:24;:::i;:::-;31035:35;;30980:96;;;:::o;31082:90::-;31116:7;31159:5;31152:13;31145:21;31134:32;;31082:90;;;:::o;31178:149::-;31214:7;31254:66;31247:5;31243:78;31232:89;;31178:149;;;:::o;31333:126::-;31370:7;31410:42;31403:5;31399:54;31388:65;;31333:126;;;:::o;31465:77::-;31502:7;31531:5;31520:16;;31465:77;;;:::o;31548:154::-;31632:6;31627:3;31622;31609:30;31694:1;31685:6;31680:3;31676:16;31669:27;31548:154;;;:::o;31708:307::-;31776:1;31786:113;31800:6;31797:1;31794:13;31786:113;;;31885:1;31880:3;31876:11;31870:18;31866:1;31861:3;31857:11;31850:39;31822:2;31819:1;31815:10;31810:15;;31786:113;;;31917:6;31914:1;31911:13;31908:101;;;31997:1;31988:6;31983:3;31979:16;31972:27;31908:101;31757:258;31708:307;;;:::o;32021:320::-;32065:6;32102:1;32096:4;32092:12;32082:22;;32149:1;32143:4;32139:12;32170:18;32160:81;;32226:4;32218:6;32214:17;32204:27;;32160:81;32288:2;32280:6;32277:14;32257:18;32254:38;32251:84;;;32307:18;;:::i;:::-;32251:84;32072:269;32021:320;;;:::o;32347:281::-;32430:27;32452:4;32430:27;:::i;:::-;32422:6;32418:40;32560:6;32548:10;32545:22;32524:18;32512:10;32509:34;32506:62;32503:88;;;32571:18;;:::i;:::-;32503:88;32611:10;32607:2;32600:22;32390:238;32347:281;;:::o;32634:233::-;32673:3;32696:24;32714:5;32696:24;:::i;:::-;32687:33;;32742:66;32735:5;32732:77;32729:103;;;32812:18;;:::i;:::-;32729:103;32859:1;32852:5;32848:13;32841:20;;32634:233;;;:::o;32873:176::-;32905:1;32922:20;32940:1;32922:20;:::i;:::-;32917:25;;32956:20;32974:1;32956:20;:::i;:::-;32951:25;;32995:1;32985:35;;33000:18;;:::i;:::-;32985:35;33041:1;33038;33034:9;33029:14;;32873:176;;;;:::o;33055:180::-;33103:77;33100:1;33093:88;33200:4;33197:1;33190:15;33224:4;33221:1;33214:15;33241:180;33289:77;33286:1;33279:88;33386:4;33383:1;33376:15;33410:4;33407:1;33400:15;33427:180;33475:77;33472:1;33465:88;33572:4;33569:1;33562:15;33596:4;33593:1;33586:15;33613:180;33661:77;33658:1;33651:88;33758:4;33755:1;33748:15;33782:4;33779:1;33772:15;33799:180;33847:77;33844:1;33837:88;33944:4;33941:1;33934:15;33968:4;33965:1;33958:15;33985:180;34033:77;34030:1;34023:88;34130:4;34127:1;34120:15;34154:4;34151:1;34144:15;34171:117;34280:1;34277;34270:12;34294:117;34403:1;34400;34393:12;34417:117;34526:1;34523;34516:12;34540:117;34649:1;34646;34639:12;34663:102;34704:6;34755:2;34751:7;34746:2;34739:5;34735:14;34731:28;34721:38;;34663:102;;;:::o;34771:230::-;34911:34;34907:1;34899:6;34895:14;34888:58;34980:13;34975:2;34967:6;34963:15;34956:38;34771:230;:::o;35007:237::-;35147:34;35143:1;35135:6;35131:14;35124:58;35216:20;35211:2;35203:6;35199:15;35192:45;35007:237;:::o;35250:225::-;35390:34;35386:1;35378:6;35374:14;35367:58;35459:8;35454:2;35446:6;35442:15;35435:33;35250:225;:::o;35481:220::-;35621:34;35617:1;35609:6;35605:14;35598:58;35690:3;35685:2;35677:6;35673:15;35666:28;35481:220;:::o;35707:224::-;35847:34;35843:1;35835:6;35831:14;35824:58;35916:7;35911:2;35903:6;35899:15;35892:32;35707:224;:::o;35937:222::-;36077:34;36073:1;36065:6;36061:14;36054:58;36146:5;36141:2;36133:6;36129:15;36122:30;35937:222;:::o;36165:178::-;36305:30;36301:1;36293:6;36289:14;36282:54;36165:178;:::o;36349:172::-;36489:24;36485:1;36477:6;36473:14;36466:48;36349:172;:::o;36527:170::-;36667:22;36663:1;36655:6;36651:14;36644:46;36527:170;:::o;36703:223::-;36843:34;36839:1;36831:6;36827:14;36820:58;36912:6;36907:2;36899:6;36895:15;36888:31;36703:223;:::o;36932:175::-;37072:27;37068:1;37060:6;37056:14;37049:51;36932:175;:::o;37113:228::-;37253:34;37249:1;37241:6;37237:14;37230:58;37322:11;37317:2;37309:6;37305:15;37298:36;37113:228;:::o;37347:249::-;37487:34;37483:1;37475:6;37471:14;37464:58;37556:32;37551:2;37543:6;37539:15;37532:57;37347:249;:::o;37602:182::-;37742:34;37738:1;37730:6;37726:14;37719:58;37602:182;:::o;37790:::-;37930:34;37926:1;37918:6;37914:14;37907:58;37790:182;:::o;37978:175::-;38118:27;38114:1;38106:6;38102:14;38095:51;37978:175;:::o;38159:174::-;38299:26;38295:1;38287:6;38283:14;38276:50;38159:174;:::o;38339:220::-;38479:34;38475:1;38467:6;38463:14;38456:58;38548:3;38543:2;38535:6;38531:15;38524:28;38339:220;:::o;38565:175::-;38705:27;38701:1;38693:6;38689:14;38682:51;38565:175;:::o;38746:114::-;;:::o;38866:231::-;39006:34;39002:1;38994:6;38990:14;38983:58;39075:14;39070:2;39062:6;39058:15;39051:39;38866:231;:::o;39103:233::-;39243:34;39239:1;39231:6;39227:14;39220:58;39312:16;39307:2;39299:6;39295:15;39288:41;39103:233;:::o;39342:122::-;39415:24;39433:5;39415:24;:::i;:::-;39408:5;39405:35;39395:63;;39454:1;39451;39444:12;39395:63;39342:122;:::o;39470:116::-;39540:21;39555:5;39540:21;:::i;:::-;39533:5;39530:32;39520:60;;39576:1;39573;39566:12;39520:60;39470:116;:::o;39592:120::-;39664:23;39681:5;39664:23;:::i;:::-;39657:5;39654:34;39644:62;;39702:1;39699;39692:12;39644:62;39592:120;:::o;39718:122::-;39791:24;39809:5;39791:24;:::i;:::-;39784:5;39781:35;39771:63;;39830:1;39827;39820:12;39771:63;39718:122;:::o

Swarm Source

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