ETH Price: $3,337.36 (-1.11%)
Gas: 8 Gwei

Token

Gobby Gob (GOBBY)
 

Overview

Max Total Supply

173 GOBBY

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oceancyt.eth
Balance
1 GOBBY
0x891534968cb8930b5129d292548c984b24de382c
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:
Gobby

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-02-15
*/

/**
 * Gobby.sol
 *
 * ERC721 Contract for Gobby Gob
 *
 * Open Zeppelin ERC721 Implementation
 *
 * Includes:
 * -> Whitelisting
 * -> Minting
 */

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/Gobby.sol

pragma solidity >=0.7.0 <0.9.0;

contract Gobby is ERC721, Ownable {
    using Strings for uint256;

    // Total supply of tokens
    uint256 public totalSupply;

    // Maximum supply of tokens
    uint256 public constant MAX_SUPPLY = 2000;

    // Fee for minting 
    uint256 public constant MINTING_FEE = 0.07 ether; 

    // Per address limit for minting
    uint256 public constant MAX_MINT_QUANTITY = 3;

    // Used to enable/disable minting
    bool public mintingActive = false;

    // Limit for treasury minting
    uint256 public constant TREASURY_SUPPLY = 100;

    // Flag for treasury minting
    bool public treasuryMinted = false;

    // Minting balance of each whitelisted address
    mapping(address => uint256) public mintingAllowance;

    // Reference to metadata
    string public baseURI;

    // Extension for metadata
    string public constant BASE_EXTENSION = ".json";

    constructor() ERC721("Gobby Gob", "GOBBY") { }

    // Mint treasury tokens to owner 
    function mintTreasury() public onlyOwner {
        require(totalSupply + TREASURY_SUPPLY <= MAX_SUPPLY, "Intended mint amount exceeds maximum supply");
        require(!treasuryMinted, "Treasury already minted");

        for (uint256 i = 0; i < TREASURY_SUPPLY; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupply += TREASURY_SUPPLY;
        treasuryMinted = true;
    }

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

    // Minting 
    function mintTokens(uint256 _amount) public payable {
        uint256 unminted = mintingAllowance[msg.sender];
        require(mintingActive, "Minting is not available at this time");
        require(_amount <= unminted, "Intended mint amount exceeds allocation");
        require(totalSupply + _amount <= MAX_SUPPLY, "Intended mint amount exceeds maximum supply");
        require(MINTING_FEE * _amount == msg.value, "Incorrect minting fee");
        
        mintingAllowance[msg.sender] = unminted - _amount;

        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, totalSupply + i );
        }

        totalSupply += _amount;
    }

    // Whitelist
    function whitelistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            mintingAllowance[addresses[i]] = MAX_MINT_QUANTITY;
        }
    }

    // PUBLIC VIEWS

    // Get URI of token id
    function tokenURI(uint256 _id) public view virtual override returns (string memory) {
        require(_exists(_id), "ERC721Metadata: URI query for nonexistent token");

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

    // ONLY OWNER

    // To toggle minting state and allow/disallow minting
    function flipMintingState() public onlyOwner {
        mintingActive = !mintingActive;
    }

    // To update the base URI, will point to pre-reveal URI initially
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    // To withdraw funds 
    function withdraw(address _address) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_address).transfer(balance);
    }   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintingAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"_id","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":"treasuryMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600981526020017f476f62627920476f6200000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474f4242590000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cc929190620001dc565b508060019080519060200190620000e5929190620001dc565b50505062000108620000fc6200010e60201b60201c565b6200011660201b60201c565b620002f1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d2b80620003016000396000f3fe6080604052600436106101e35760003560e01c806375d0abfa11610102578063d642b4b111610095578063edec5f2711610064578063edec5f27146106d5578063f2fde38b146106fe578063f655ff2214610727578063fdd0f3ca1461073e576101e3565b8063d642b4b11461062b578063df3fdf0014610656578063e3e3506214610681578063e985e9c514610698576101e3565b806397304ced116100d157806397304ced14610580578063a22cb4651461059c578063b88d4fde146105c5578063c87b56dd146105ee576101e3565b806375d0abfa146104c257806381b97161146104ed5780638da5cb5b1461052a57806395d89b4114610555576101e3565b806342842e0e1161017a5780636c0360eb116101495780636c0360eb1461041857806370a082311461044357806371273bb714610480578063715018a6146104ab576101e3565b806342842e0e1461036057806351cff8d91461038957806355f804b3146103b25780636352211e146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806331f9c9191461030a57806332cb6b0c14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612a40565b610769565b60405161021c9190612f57565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190612f72565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ae3565b6108dd565b6040516102849190612ef0565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906129b7565b610962565b005b3480156102c257600080fd5b506102cb610a7a565b6040516102d89190613234565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906128a1565b610a80565b005b34801561031657600080fd5b5061031f610ae0565b60405161032c9190612f57565b60405180910390f35b34801561034157600080fd5b5061034a610af3565b6040516103579190613234565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906128a1565b610af9565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612834565b610b19565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612a9a565b610be5565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612ae3565b610c7b565b60405161040f9190612ef0565b60405180910390f35b34801561042457600080fd5b5061042d610d2d565b60405161043a9190612f72565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612834565b610dbb565b6040516104779190613234565b60405180910390f35b34801561048c57600080fd5b50610495610e73565b6040516104a29190613234565b60405180910390f35b3480156104b757600080fd5b506104c0610e78565b005b3480156104ce57600080fd5b506104d7610f00565b6040516104e49190613234565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612834565b610f05565b6040516105219190613234565b60405180910390f35b34801561053657600080fd5b5061053f610f1d565b60405161054c9190612ef0565b60405180910390f35b34801561056157600080fd5b5061056a610f47565b6040516105779190612f72565b60405180910390f35b61059a60048036038101906105959190612ae3565b610fd9565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612977565b6111f7565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906128f4565b611378565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612ae3565b6113da565b6040516106229190612f72565b60405180910390f35b34801561063757600080fd5b506106406114b8565b60405161064d9190613234565b60405180910390f35b34801561066257600080fd5b5061066b6114c3565b6040516106789190612f72565b60405180910390f35b34801561068d57600080fd5b506106966114fc565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612861565b611689565b6040516106cc9190612f57565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906129f7565b61171d565b005b34801561070a57600080fd5b5061072560048036038101906107209190612834565b61181b565b005b34801561073357600080fd5b5061073c611913565b005b34801561074a57600080fd5b506107536119bb565b6040516107609190612f57565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108445750610843826119ce565b5b9050919050565b60606000805461085a90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461088690613510565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611a38565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906130f4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610c7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613194565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd611aa4565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a26611aa4565b611689565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613074565b60405180910390fd5b610a758383611aac565b505050565b60075481565b610a91610a8b611aa4565b82611b65565b610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906131d4565b60405180910390fd5b610adb838383611c43565b505050565b600860009054906101000a900460ff1681565b6107d081565b610b1483838360405180602001604052806000815250611378565b505050565b610b21611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613114565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be0573d6000803e3d6000fd5b505050565b610bed611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610c0b610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890613114565b60405180910390fd5b80600a9080519060200190610c779291906125aa565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906130b4565b60405180910390fd5b80915050919050565b600a8054610d3a90613510565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6690613510565b8015610db35780601f10610d8857610100808354040283529160200191610db3565b820191906000526020600020905b815481529060010190602001808311610d9657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613094565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b610e80611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610e9e610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90613114565b60405180910390fd5b610efe6000611e9f565b565b606481565b60096020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5690613510565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8290613510565b8015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b5050505050905090565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600860009054906101000a900460ff1661106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612ff4565b60405180910390fd5b808211156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613134565b60405180910390fd5b6107d0826007546110c09190613345565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906131f4565b60405180910390fd5b348266f8b0a10e47000061111591906133cc565b14611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906131b4565b60405180910390fd5b81816111619190613426565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156111d9576111c633826007546111c19190613345565b611f65565b80806111d190613573565b9150506111a7565b5081600760008282546111ec9190613345565b925050819055505050565b6111ff611aa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613034565b60405180910390fd5b806005600061127a611aa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611327611aa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161136c9190612f57565b60405180910390a35050565b611389611383611aa4565b83611b65565b6113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf906131d4565b60405180910390fd5b6113d484848484611f83565b50505050565b60606113e582611a38565b611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613174565b60405180910390fd5b600061142e611fdf565b9050600081511161144e57604051806020016040528060008152506114b0565b8061145884612071565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016114a093929190612ebf565b6040516020818303038152906040525b915050919050565b66f8b0a10e47000081565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611504611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611522610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613114565b60405180910390fd5b6107d0606460075461158a9190613345565b11156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906131f4565b60405180910390fd5b600860019054906101000a900460ff161561161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613214565b60405180910390fd5b60005b60648110156116515761163e33826007546116399190613345565b611f65565b808061164990613573565b91505061161e565b506064600760008282546116659190613345565b925050819055506001600860016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611725611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611743610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613114565b60405180910390fd5b60005b8151811015611817576003600960008484815181106117be576117bd61367a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061180f90613573565b91505061179c565b5050565b611823611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611841610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613114565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612fb4565b60405180910390fd5b61191081611e9f565b50565b61191b611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611939610f1d565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613114565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1f83610c7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7082611a38565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613054565b60405180910390fd5b6000611bba83610c7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2957508373ffffffffffffffffffffffffffffffffffffffff16611c11846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3a5750611c398185611689565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c6382610c7b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613154565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613014565b60405180910390fd5b611d348383836121d2565b611d3f600082611aac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8f9190613426565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de69190613345565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f7f8282604051806020016040528060008152506121d7565b5050565b611f8e848484611c43565b611f9a84848484612232565b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090612f94565b60405180910390fd5b50505050565b6060600a8054611fee90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461201a90613510565b80156120675780601f1061203c57610100808354040283529160200191612067565b820191906000526020600020905b81548152906001019060200180831161204a57829003601f168201915b5050505050905090565b606060008214156120b9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cd565b600082905060005b600082146120eb5780806120d490613573565b915050600a826120e4919061339b565b91506120c1565b60008167ffffffffffffffff811115612107576121066136a9565b5b6040519080825280601f01601f1916602001820160405280156121395781602001600182028036833780820191505090505b5090505b600085146121c6576001826121529190613426565b9150600a8561216191906135bc565b603061216d9190613345565b60f81b8183815181106121835761218261367a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121bf919061339b565b945061213d565b8093505050505b919050565b505050565b6121e183836123c9565b6121ee6000848484612232565b61222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222490612f94565b60405180910390fd5b505050565b60006122538473ffffffffffffffffffffffffffffffffffffffff16612597565b156123bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261227c611aa4565b8786866040518563ffffffff1660e01b815260040161229e9493929190612f0b565b602060405180830381600087803b1580156122b857600080fd5b505af19250505080156122e957506040513d601f19601f820116820180604052508101906122e69190612a6d565b60015b61236c573d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b50600081511415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90612f94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612430906130d4565b60405180910390fd5b61244281611a38565b15612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990612fd4565b60405180910390fd5b61248e600083836121d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124de9190613345565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546125b690613510565b90600052602060002090601f0160209004810192826125d8576000855561261f565b82601f106125f157805160ff191683800117855561261f565b8280016001018555821561261f579182015b8281111561261e578251825591602001919060010190612603565b5b50905061262c9190612630565b5090565b5b80821115612649576000816000905550600101612631565b5090565b600061266061265b84613274565b61324f565b90508083825260208201905082856020860282011115612683576126826136dd565b5b60005b858110156126b357816126998882612741565b845260208401935060208301925050600181019050612686565b5050509392505050565b60006126d06126cb846132a0565b61324f565b9050828152602081018484840111156126ec576126eb6136e2565b5b6126f78482856134ce565b509392505050565b600061271261270d846132d1565b61324f565b90508281526020810184848401111561272e5761272d6136e2565b5b6127398482856134ce565b509392505050565b60008135905061275081613c99565b92915050565b600082601f83011261276b5761276a6136d8565b5b813561277b84826020860161264d565b91505092915050565b60008135905061279381613cb0565b92915050565b6000813590506127a881613cc7565b92915050565b6000815190506127bd81613cc7565b92915050565b600082601f8301126127d8576127d76136d8565b5b81356127e88482602086016126bd565b91505092915050565b600082601f830112612806576128056136d8565b5b81356128168482602086016126ff565b91505092915050565b60008135905061282e81613cde565b92915050565b60006020828403121561284a576128496136ec565b5b600061285884828501612741565b91505092915050565b60008060408385031215612878576128776136ec565b5b600061288685828601612741565b925050602061289785828601612741565b9150509250929050565b6000806000606084860312156128ba576128b96136ec565b5b60006128c886828701612741565b93505060206128d986828701612741565b92505060406128ea8682870161281f565b9150509250925092565b6000806000806080858703121561290e5761290d6136ec565b5b600061291c87828801612741565b945050602061292d87828801612741565b935050604061293e8782880161281f565b925050606085013567ffffffffffffffff81111561295f5761295e6136e7565b5b61296b878288016127c3565b91505092959194509250565b6000806040838503121561298e5761298d6136ec565b5b600061299c85828601612741565b92505060206129ad85828601612784565b9150509250929050565b600080604083850312156129ce576129cd6136ec565b5b60006129dc85828601612741565b92505060206129ed8582860161281f565b9150509250929050565b600060208284031215612a0d57612a0c6136ec565b5b600082013567ffffffffffffffff811115612a2b57612a2a6136e7565b5b612a3784828501612756565b91505092915050565b600060208284031215612a5657612a556136ec565b5b6000612a6484828501612799565b91505092915050565b600060208284031215612a8357612a826136ec565b5b6000612a91848285016127ae565b91505092915050565b600060208284031215612ab057612aaf6136ec565b5b600082013567ffffffffffffffff811115612ace57612acd6136e7565b5b612ada848285016127f1565b91505092915050565b600060208284031215612af957612af86136ec565b5b6000612b078482850161281f565b91505092915050565b612b198161345a565b82525050565b612b288161346c565b82525050565b6000612b3982613302565b612b438185613318565b9350612b538185602086016134dd565b612b5c816136f1565b840191505092915050565b6000612b728261330d565b612b7c8185613329565b9350612b8c8185602086016134dd565b612b95816136f1565b840191505092915050565b6000612bab8261330d565b612bb5818561333a565b9350612bc58185602086016134dd565b80840191505092915050565b6000612bde603283613329565b9150612be982613702565b604082019050919050565b6000612c01602683613329565b9150612c0c82613751565b604082019050919050565b6000612c24601c83613329565b9150612c2f826137a0565b602082019050919050565b6000612c47602583613329565b9150612c52826137c9565b604082019050919050565b6000612c6a602483613329565b9150612c7582613818565b604082019050919050565b6000612c8d601983613329565b9150612c9882613867565b602082019050919050565b6000612cb0602c83613329565b9150612cbb82613890565b604082019050919050565b6000612cd3603883613329565b9150612cde826138df565b604082019050919050565b6000612cf6602a83613329565b9150612d018261392e565b604082019050919050565b6000612d19602983613329565b9150612d248261397d565b604082019050919050565b6000612d3c602083613329565b9150612d47826139cc565b602082019050919050565b6000612d5f602c83613329565b9150612d6a826139f5565b604082019050919050565b6000612d82602083613329565b9150612d8d82613a44565b602082019050919050565b6000612da5602783613329565b9150612db082613a6d565b604082019050919050565b6000612dc8602983613329565b9150612dd382613abc565b604082019050919050565b6000612deb602f83613329565b9150612df682613b0b565b604082019050919050565b6000612e0e602183613329565b9150612e1982613b5a565b604082019050919050565b6000612e31601583613329565b9150612e3c82613ba9565b602082019050919050565b6000612e54603183613329565b9150612e5f82613bd2565b604082019050919050565b6000612e77602b83613329565b9150612e8282613c21565b604082019050919050565b6000612e9a601783613329565b9150612ea582613c70565b602082019050919050565b612eb9816134c4565b82525050565b6000612ecb8286612ba0565b9150612ed78285612ba0565b9150612ee38284612ba0565b9150819050949350505050565b6000602082019050612f056000830184612b10565b92915050565b6000608082019050612f206000830187612b10565b612f2d6020830186612b10565b612f3a6040830185612eb0565b8181036060830152612f4c8184612b2e565b905095945050505050565b6000602082019050612f6c6000830184612b1f565b92915050565b60006020820190508181036000830152612f8c8184612b67565b905092915050565b60006020820190508181036000830152612fad81612bd1565b9050919050565b60006020820190508181036000830152612fcd81612bf4565b9050919050565b60006020820190508181036000830152612fed81612c17565b9050919050565b6000602082019050818103600083015261300d81612c3a565b9050919050565b6000602082019050818103600083015261302d81612c5d565b9050919050565b6000602082019050818103600083015261304d81612c80565b9050919050565b6000602082019050818103600083015261306d81612ca3565b9050919050565b6000602082019050818103600083015261308d81612cc6565b9050919050565b600060208201905081810360008301526130ad81612ce9565b9050919050565b600060208201905081810360008301526130cd81612d0c565b9050919050565b600060208201905081810360008301526130ed81612d2f565b9050919050565b6000602082019050818103600083015261310d81612d52565b9050919050565b6000602082019050818103600083015261312d81612d75565b9050919050565b6000602082019050818103600083015261314d81612d98565b9050919050565b6000602082019050818103600083015261316d81612dbb565b9050919050565b6000602082019050818103600083015261318d81612dde565b9050919050565b600060208201905081810360008301526131ad81612e01565b9050919050565b600060208201905081810360008301526131cd81612e24565b9050919050565b600060208201905081810360008301526131ed81612e47565b9050919050565b6000602082019050818103600083015261320d81612e6a565b9050919050565b6000602082019050818103600083015261322d81612e8d565b9050919050565b60006020820190506132496000830184612eb0565b92915050565b600061325961326a565b90506132658282613542565b919050565b6000604051905090565b600067ffffffffffffffff82111561328f5761328e6136a9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132bb576132ba6136a9565b5b6132c4826136f1565b9050602081019050919050565b600067ffffffffffffffff8211156132ec576132eb6136a9565b5b6132f5826136f1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613350826134c4565b915061335b836134c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133905761338f6135ed565b5b828201905092915050565b60006133a6826134c4565b91506133b1836134c4565b9250826133c1576133c061361c565b5b828204905092915050565b60006133d7826134c4565b91506133e2836134c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561341b5761341a6135ed565b5b828202905092915050565b6000613431826134c4565b915061343c836134c4565b92508282101561344f5761344e6135ed565b5b828203905092915050565b6000613465826134a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134fb5780820151818401526020810190506134e0565b8381111561350a576000848401525b50505050565b6000600282049050600182168061352857607f821691505b6020821081141561353c5761353b61364b565b5b50919050565b61354b826136f1565b810181811067ffffffffffffffff8211171561356a576135696136a9565b5b80604052505050565b600061357e826134c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b1576135b06135ed565b5b600182019050919050565b60006135c7826134c4565b91506135d2836134c4565b9250826135e2576135e161361c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67206973206e6f7420617661696c61626c65206174207468697360008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e74656e646564206d696e7420616d6f756e74206578636565647320616c6c60008201527f6f636174696f6e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d696e74696e67206665650000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e74656e646564206d696e7420616d6f756e742065786365656473206d617860008201527f696d756d20737570706c79000000000000000000000000000000000000000000602082015250565b7f547265617375727920616c7265616479206d696e746564000000000000000000600082015250565b613ca28161345a565b8114613cad57600080fd5b50565b613cb98161346c565b8114613cc457600080fd5b50565b613cd081613478565b8114613cdb57600080fd5b50565b613ce7816134c4565b8114613cf257600080fd5b5056fea264697066735822122096a7800ad5a80124fce7964b8fa82a15258257e8f7722e9d06a86f5bf306c96f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806375d0abfa11610102578063d642b4b111610095578063edec5f2711610064578063edec5f27146106d5578063f2fde38b146106fe578063f655ff2214610727578063fdd0f3ca1461073e576101e3565b8063d642b4b11461062b578063df3fdf0014610656578063e3e3506214610681578063e985e9c514610698576101e3565b806397304ced116100d157806397304ced14610580578063a22cb4651461059c578063b88d4fde146105c5578063c87b56dd146105ee576101e3565b806375d0abfa146104c257806381b97161146104ed5780638da5cb5b1461052a57806395d89b4114610555576101e3565b806342842e0e1161017a5780636c0360eb116101495780636c0360eb1461041857806370a082311461044357806371273bb714610480578063715018a6146104ab576101e3565b806342842e0e1461036057806351cff8d91461038957806355f804b3146103b25780636352211e146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806331f9c9191461030a57806332cb6b0c14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612a40565b610769565b60405161021c9190612f57565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190612f72565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ae3565b6108dd565b6040516102849190612ef0565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906129b7565b610962565b005b3480156102c257600080fd5b506102cb610a7a565b6040516102d89190613234565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906128a1565b610a80565b005b34801561031657600080fd5b5061031f610ae0565b60405161032c9190612f57565b60405180910390f35b34801561034157600080fd5b5061034a610af3565b6040516103579190613234565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906128a1565b610af9565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612834565b610b19565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612a9a565b610be5565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612ae3565b610c7b565b60405161040f9190612ef0565b60405180910390f35b34801561042457600080fd5b5061042d610d2d565b60405161043a9190612f72565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612834565b610dbb565b6040516104779190613234565b60405180910390f35b34801561048c57600080fd5b50610495610e73565b6040516104a29190613234565b60405180910390f35b3480156104b757600080fd5b506104c0610e78565b005b3480156104ce57600080fd5b506104d7610f00565b6040516104e49190613234565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612834565b610f05565b6040516105219190613234565b60405180910390f35b34801561053657600080fd5b5061053f610f1d565b60405161054c9190612ef0565b60405180910390f35b34801561056157600080fd5b5061056a610f47565b6040516105779190612f72565b60405180910390f35b61059a60048036038101906105959190612ae3565b610fd9565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612977565b6111f7565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906128f4565b611378565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612ae3565b6113da565b6040516106229190612f72565b60405180910390f35b34801561063757600080fd5b506106406114b8565b60405161064d9190613234565b60405180910390f35b34801561066257600080fd5b5061066b6114c3565b6040516106789190612f72565b60405180910390f35b34801561068d57600080fd5b506106966114fc565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612861565b611689565b6040516106cc9190612f57565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906129f7565b61171d565b005b34801561070a57600080fd5b5061072560048036038101906107209190612834565b61181b565b005b34801561073357600080fd5b5061073c611913565b005b34801561074a57600080fd5b506107536119bb565b6040516107609190612f57565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108445750610843826119ce565b5b9050919050565b60606000805461085a90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461088690613510565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611a38565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906130f4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610c7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613194565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd611aa4565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a26611aa4565b611689565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613074565b60405180910390fd5b610a758383611aac565b505050565b60075481565b610a91610a8b611aa4565b82611b65565b610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906131d4565b60405180910390fd5b610adb838383611c43565b505050565b600860009054906101000a900460ff1681565b6107d081565b610b1483838360405180602001604052806000815250611378565b505050565b610b21611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613114565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be0573d6000803e3d6000fd5b505050565b610bed611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610c0b610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890613114565b60405180910390fd5b80600a9080519060200190610c779291906125aa565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906130b4565b60405180910390fd5b80915050919050565b600a8054610d3a90613510565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6690613510565b8015610db35780601f10610d8857610100808354040283529160200191610db3565b820191906000526020600020905b815481529060010190602001808311610d9657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613094565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b610e80611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610e9e610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90613114565b60405180910390fd5b610efe6000611e9f565b565b606481565b60096020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5690613510565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8290613510565b8015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b5050505050905090565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600860009054906101000a900460ff1661106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612ff4565b60405180910390fd5b808211156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613134565b60405180910390fd5b6107d0826007546110c09190613345565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906131f4565b60405180910390fd5b348266f8b0a10e47000061111591906133cc565b14611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906131b4565b60405180910390fd5b81816111619190613426565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156111d9576111c633826007546111c19190613345565b611f65565b80806111d190613573565b9150506111a7565b5081600760008282546111ec9190613345565b925050819055505050565b6111ff611aa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613034565b60405180910390fd5b806005600061127a611aa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611327611aa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161136c9190612f57565b60405180910390a35050565b611389611383611aa4565b83611b65565b6113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf906131d4565b60405180910390fd5b6113d484848484611f83565b50505050565b60606113e582611a38565b611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613174565b60405180910390fd5b600061142e611fdf565b9050600081511161144e57604051806020016040528060008152506114b0565b8061145884612071565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016114a093929190612ebf565b6040516020818303038152906040525b915050919050565b66f8b0a10e47000081565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611504611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611522610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613114565b60405180910390fd5b6107d0606460075461158a9190613345565b11156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906131f4565b60405180910390fd5b600860019054906101000a900460ff161561161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613214565b60405180910390fd5b60005b60648110156116515761163e33826007546116399190613345565b611f65565b808061164990613573565b91505061161e565b506064600760008282546116659190613345565b925050819055506001600860016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611725611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611743610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613114565b60405180910390fd5b60005b8151811015611817576003600960008484815181106117be576117bd61367a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061180f90613573565b91505061179c565b5050565b611823611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611841610f1d565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613114565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612fb4565b60405180910390fd5b61191081611e9f565b50565b61191b611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611939610f1d565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613114565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1f83610c7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7082611a38565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613054565b60405180910390fd5b6000611bba83610c7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2957508373ffffffffffffffffffffffffffffffffffffffff16611c11846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3a5750611c398185611689565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c6382610c7b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613154565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613014565b60405180910390fd5b611d348383836121d2565b611d3f600082611aac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8f9190613426565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de69190613345565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f7f8282604051806020016040528060008152506121d7565b5050565b611f8e848484611c43565b611f9a84848484612232565b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090612f94565b60405180910390fd5b50505050565b6060600a8054611fee90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461201a90613510565b80156120675780601f1061203c57610100808354040283529160200191612067565b820191906000526020600020905b81548152906001019060200180831161204a57829003601f168201915b5050505050905090565b606060008214156120b9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cd565b600082905060005b600082146120eb5780806120d490613573565b915050600a826120e4919061339b565b91506120c1565b60008167ffffffffffffffff811115612107576121066136a9565b5b6040519080825280601f01601f1916602001820160405280156121395781602001600182028036833780820191505090505b5090505b600085146121c6576001826121529190613426565b9150600a8561216191906135bc565b603061216d9190613345565b60f81b8183815181106121835761218261367a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121bf919061339b565b945061213d565b8093505050505b919050565b505050565b6121e183836123c9565b6121ee6000848484612232565b61222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222490612f94565b60405180910390fd5b505050565b60006122538473ffffffffffffffffffffffffffffffffffffffff16612597565b156123bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261227c611aa4565b8786866040518563ffffffff1660e01b815260040161229e9493929190612f0b565b602060405180830381600087803b1580156122b857600080fd5b505af19250505080156122e957506040513d601f19601f820116820180604052508101906122e69190612a6d565b60015b61236c573d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b50600081511415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90612f94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612430906130d4565b60405180910390fd5b61244281611a38565b15612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990612fd4565b60405180910390fd5b61248e600083836121d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124de9190613345565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546125b690613510565b90600052602060002090601f0160209004810192826125d8576000855561261f565b82601f106125f157805160ff191683800117855561261f565b8280016001018555821561261f579182015b8281111561261e578251825591602001919060010190612603565b5b50905061262c9190612630565b5090565b5b80821115612649576000816000905550600101612631565b5090565b600061266061265b84613274565b61324f565b90508083825260208201905082856020860282011115612683576126826136dd565b5b60005b858110156126b357816126998882612741565b845260208401935060208301925050600181019050612686565b5050509392505050565b60006126d06126cb846132a0565b61324f565b9050828152602081018484840111156126ec576126eb6136e2565b5b6126f78482856134ce565b509392505050565b600061271261270d846132d1565b61324f565b90508281526020810184848401111561272e5761272d6136e2565b5b6127398482856134ce565b509392505050565b60008135905061275081613c99565b92915050565b600082601f83011261276b5761276a6136d8565b5b813561277b84826020860161264d565b91505092915050565b60008135905061279381613cb0565b92915050565b6000813590506127a881613cc7565b92915050565b6000815190506127bd81613cc7565b92915050565b600082601f8301126127d8576127d76136d8565b5b81356127e88482602086016126bd565b91505092915050565b600082601f830112612806576128056136d8565b5b81356128168482602086016126ff565b91505092915050565b60008135905061282e81613cde565b92915050565b60006020828403121561284a576128496136ec565b5b600061285884828501612741565b91505092915050565b60008060408385031215612878576128776136ec565b5b600061288685828601612741565b925050602061289785828601612741565b9150509250929050565b6000806000606084860312156128ba576128b96136ec565b5b60006128c886828701612741565b93505060206128d986828701612741565b92505060406128ea8682870161281f565b9150509250925092565b6000806000806080858703121561290e5761290d6136ec565b5b600061291c87828801612741565b945050602061292d87828801612741565b935050604061293e8782880161281f565b925050606085013567ffffffffffffffff81111561295f5761295e6136e7565b5b61296b878288016127c3565b91505092959194509250565b6000806040838503121561298e5761298d6136ec565b5b600061299c85828601612741565b92505060206129ad85828601612784565b9150509250929050565b600080604083850312156129ce576129cd6136ec565b5b60006129dc85828601612741565b92505060206129ed8582860161281f565b9150509250929050565b600060208284031215612a0d57612a0c6136ec565b5b600082013567ffffffffffffffff811115612a2b57612a2a6136e7565b5b612a3784828501612756565b91505092915050565b600060208284031215612a5657612a556136ec565b5b6000612a6484828501612799565b91505092915050565b600060208284031215612a8357612a826136ec565b5b6000612a91848285016127ae565b91505092915050565b600060208284031215612ab057612aaf6136ec565b5b600082013567ffffffffffffffff811115612ace57612acd6136e7565b5b612ada848285016127f1565b91505092915050565b600060208284031215612af957612af86136ec565b5b6000612b078482850161281f565b91505092915050565b612b198161345a565b82525050565b612b288161346c565b82525050565b6000612b3982613302565b612b438185613318565b9350612b538185602086016134dd565b612b5c816136f1565b840191505092915050565b6000612b728261330d565b612b7c8185613329565b9350612b8c8185602086016134dd565b612b95816136f1565b840191505092915050565b6000612bab8261330d565b612bb5818561333a565b9350612bc58185602086016134dd565b80840191505092915050565b6000612bde603283613329565b9150612be982613702565b604082019050919050565b6000612c01602683613329565b9150612c0c82613751565b604082019050919050565b6000612c24601c83613329565b9150612c2f826137a0565b602082019050919050565b6000612c47602583613329565b9150612c52826137c9565b604082019050919050565b6000612c6a602483613329565b9150612c7582613818565b604082019050919050565b6000612c8d601983613329565b9150612c9882613867565b602082019050919050565b6000612cb0602c83613329565b9150612cbb82613890565b604082019050919050565b6000612cd3603883613329565b9150612cde826138df565b604082019050919050565b6000612cf6602a83613329565b9150612d018261392e565b604082019050919050565b6000612d19602983613329565b9150612d248261397d565b604082019050919050565b6000612d3c602083613329565b9150612d47826139cc565b602082019050919050565b6000612d5f602c83613329565b9150612d6a826139f5565b604082019050919050565b6000612d82602083613329565b9150612d8d82613a44565b602082019050919050565b6000612da5602783613329565b9150612db082613a6d565b604082019050919050565b6000612dc8602983613329565b9150612dd382613abc565b604082019050919050565b6000612deb602f83613329565b9150612df682613b0b565b604082019050919050565b6000612e0e602183613329565b9150612e1982613b5a565b604082019050919050565b6000612e31601583613329565b9150612e3c82613ba9565b602082019050919050565b6000612e54603183613329565b9150612e5f82613bd2565b604082019050919050565b6000612e77602b83613329565b9150612e8282613c21565b604082019050919050565b6000612e9a601783613329565b9150612ea582613c70565b602082019050919050565b612eb9816134c4565b82525050565b6000612ecb8286612ba0565b9150612ed78285612ba0565b9150612ee38284612ba0565b9150819050949350505050565b6000602082019050612f056000830184612b10565b92915050565b6000608082019050612f206000830187612b10565b612f2d6020830186612b10565b612f3a6040830185612eb0565b8181036060830152612f4c8184612b2e565b905095945050505050565b6000602082019050612f6c6000830184612b1f565b92915050565b60006020820190508181036000830152612f8c8184612b67565b905092915050565b60006020820190508181036000830152612fad81612bd1565b9050919050565b60006020820190508181036000830152612fcd81612bf4565b9050919050565b60006020820190508181036000830152612fed81612c17565b9050919050565b6000602082019050818103600083015261300d81612c3a565b9050919050565b6000602082019050818103600083015261302d81612c5d565b9050919050565b6000602082019050818103600083015261304d81612c80565b9050919050565b6000602082019050818103600083015261306d81612ca3565b9050919050565b6000602082019050818103600083015261308d81612cc6565b9050919050565b600060208201905081810360008301526130ad81612ce9565b9050919050565b600060208201905081810360008301526130cd81612d0c565b9050919050565b600060208201905081810360008301526130ed81612d2f565b9050919050565b6000602082019050818103600083015261310d81612d52565b9050919050565b6000602082019050818103600083015261312d81612d75565b9050919050565b6000602082019050818103600083015261314d81612d98565b9050919050565b6000602082019050818103600083015261316d81612dbb565b9050919050565b6000602082019050818103600083015261318d81612dde565b9050919050565b600060208201905081810360008301526131ad81612e01565b9050919050565b600060208201905081810360008301526131cd81612e24565b9050919050565b600060208201905081810360008301526131ed81612e47565b9050919050565b6000602082019050818103600083015261320d81612e6a565b9050919050565b6000602082019050818103600083015261322d81612e8d565b9050919050565b60006020820190506132496000830184612eb0565b92915050565b600061325961326a565b90506132658282613542565b919050565b6000604051905090565b600067ffffffffffffffff82111561328f5761328e6136a9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132bb576132ba6136a9565b5b6132c4826136f1565b9050602081019050919050565b600067ffffffffffffffff8211156132ec576132eb6136a9565b5b6132f5826136f1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613350826134c4565b915061335b836134c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133905761338f6135ed565b5b828201905092915050565b60006133a6826134c4565b91506133b1836134c4565b9250826133c1576133c061361c565b5b828204905092915050565b60006133d7826134c4565b91506133e2836134c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561341b5761341a6135ed565b5b828202905092915050565b6000613431826134c4565b915061343c836134c4565b92508282101561344f5761344e6135ed565b5b828203905092915050565b6000613465826134a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134fb5780820151818401526020810190506134e0565b8381111561350a576000848401525b50505050565b6000600282049050600182168061352857607f821691505b6020821081141561353c5761353b61364b565b5b50919050565b61354b826136f1565b810181811067ffffffffffffffff8211171561356a576135696136a9565b5b80604052505050565b600061357e826134c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b1576135b06135ed565b5b600182019050919050565b60006135c7826134c4565b91506135d2836134c4565b9250826135e2576135e161361c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67206973206e6f7420617661696c61626c65206174207468697360008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e74656e646564206d696e7420616d6f756e74206578636565647320616c6c60008201527f6f636174696f6e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d696e74696e67206665650000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e74656e646564206d696e7420616d6f756e742065786365656473206d617860008201527f696d756d20737570706c79000000000000000000000000000000000000000000602082015250565b7f547265617375727920616c7265616479206d696e746564000000000000000000600082015250565b613ca28161345a565b8114613cad57600080fd5b50565b613cb98161346c565b8114613cc457600080fd5b50565b613cd081613478565b8114613cdb57600080fd5b50565b613ce7816134c4565b8114613cf257600080fd5b5056fea264697066735822122096a7800ad5a80124fce7964b8fa82a15258257e8f7722e9d06a86f5bf306c96f64736f6c63430008070033

Deployed Bytecode Sourcemap

36232:3499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20785:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21730:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23289:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22812:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36338:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24179:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36670:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36406:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24589:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39568:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39429:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21424:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37020:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21154:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36577:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35536:94;;;;;;;;;;;;;:::i;:::-;;36747:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36930:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34885:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21899:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37816:671;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23582:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24845:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38783:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36481:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37081:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37230:417;;;;;;;;;;;;;:::i;:::-;;23948:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38513:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35785:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39256:94;;;;;;;;;;;;;:::i;:::-;;36835:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20785:305;20887:4;20939:25;20924:40;;;:11;:40;;;;:105;;;;20996:33;20981:48;;;:11;:48;;;;20924:105;:158;;;;21046:36;21070:11;21046:23;:36::i;:::-;20924:158;20904:178;;20785:305;;;:::o;21730:100::-;21784:13;21817:5;21810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21730:100;:::o;23289:221::-;23365:7;23393:16;23401:7;23393;:16::i;:::-;23385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23478:15;:24;23494:7;23478:24;;;;;;;;;;;;;;;;;;;;;23471:31;;23289:221;;;:::o;22812:411::-;22893:13;22909:23;22924:7;22909:14;:23::i;:::-;22893:39;;22957:5;22951:11;;:2;:11;;;;22943:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23051:5;23035:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23060:37;23077:5;23084:12;:10;:12::i;:::-;23060:16;:37::i;:::-;23035:62;23013:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23194:21;23203:2;23207:7;23194:8;:21::i;:::-;22882:341;22812:411;;:::o;36338:26::-;;;;:::o;24179:339::-;24374:41;24393:12;:10;:12::i;:::-;24407:7;24374:18;:41::i;:::-;24366:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24482:28;24492:4;24498:2;24502:7;24482:9;:28::i;:::-;24179:339;;;:::o;36670:33::-;;;;;;;;;;;;;:::o;36406:41::-;36443:4;36406:41;:::o;24589:185::-;24727:39;24744:4;24750:2;24754:7;24727:39;;;;;;;;;;;;:16;:39::i;:::-;24589:185;;;:::o;39568:157::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39632:15:::1;39650:21;39632:39;;39690:8;39682:26;;:35;39709:7;39682:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39621:104;39568:157:::0;:::o;39429:104::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39514:11:::1;39504:7;:21;;;;;;;;;;;;:::i;:::-;;39429:104:::0;:::o;21424:239::-;21496:7;21516:13;21532:7;:16;21540:7;21532:16;;;;;;;;;;;;;;;;;;;;;21516:32;;21584:1;21567:19;;:5;:19;;;;21559:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21650:5;21643:12;;;21424:239;;;:::o;37020:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21154:208::-;21226:7;21271:1;21254:19;;:5;:19;;;;21246:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21338:9;:16;21348:5;21338:16;;;;;;;;;;;;;;;;21331:23;;21154:208;;;:::o;36577:45::-;36621:1;36577:45;:::o;35536:94::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35601:21:::1;35619:1;35601:9;:21::i;:::-;35536:94::o:0;36747:45::-;36789:3;36747:45;:::o;36930:51::-;;;;;;;;;;;;;;;;;:::o;34885:87::-;34931:7;34958:6;;;;;;;;;;;34951:13;;34885:87;:::o;21899:104::-;21955:13;21988:7;21981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21899:104;:::o;37816:671::-;37879:16;37898;:28;37915:10;37898:28;;;;;;;;;;;;;;;;37879:47;;37945:13;;;;;;;;;;;37937:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38030:8;38019:7;:19;;38011:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36443:4;38115:7;38101:11;;:21;;;;:::i;:::-;:35;;38093:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;38228:9;38217:7;36519:10;38203:21;;;;:::i;:::-;:34;38195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38326:7;38315:8;:18;;;;:::i;:::-;38284:16;:28;38301:10;38284:28;;;;;;;;;;;;;;;:49;;;;38350:9;38346:99;38365:7;38361:1;:11;38346:99;;;38393:40;38404:10;38430:1;38416:11;;:15;;;;:::i;:::-;38393:9;:40::i;:::-;38374:3;;;;;:::i;:::-;;;;38346:99;;;;38472:7;38457:11;;:22;;;;;;;:::i;:::-;;;;;;;;37868:619;37816:671;:::o;23582:295::-;23697:12;:10;:12::i;:::-;23685:24;;:8;:24;;;;23677:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23797:8;23752:18;:32;23771:12;:10;:12::i;:::-;23752:32;;;;;;;;;;;;;;;:42;23785:8;23752:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23850:8;23821:48;;23836:12;:10;:12::i;:::-;23821:48;;;23860:8;23821:48;;;;;;:::i;:::-;;;;;;;;23582:295;;:::o;24845:328::-;25020:41;25039:12;:10;:12::i;:::-;25053:7;25020:18;:41::i;:::-;25012:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25126:39;25140:4;25146:2;25150:7;25159:5;25126:13;:39::i;:::-;24845:328;;;;:::o;38783:385::-;38852:13;38886:12;38894:3;38886:7;:12::i;:::-;38878:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;38963:28;38994:10;:8;:10::i;:::-;38963:41;;39053:1;39028:14;39022:28;:32;:138;;;;;;;;;;;;;;;;;39094:14;39110;:3;:12;:14::i;:::-;39126;;;;;;;;;;;;;;;;;39077:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39022:138;39015:145;;;38783:385;;;:::o;36481:48::-;36519:10;36481:48;:::o;37081:47::-;;;;;;;;;;;;;;;;;;;:::o;37230:417::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36443:4:::1;36789:3;37290:11;;:29;;;;:::i;:::-;:43;;37282:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;37401:14;;;;;;;;;;;37400:15;37392:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;37461:9;37456:111;36789:3;37476:1;:19;37456:111;;;37517:38;37527:10;37553:1;37539:11;;:15;;;;:::i;:::-;37517:9;:38::i;:::-;37497:3;;;;;:::i;:::-;;;;37456:111;;;;36789:3;37577:11;;:30;;;;;;;:::i;:::-;;;;;;;;37635:4;37618:14;;:21;;;;;;;;;;;;;;;;;;37230:417::o:0;23948:164::-;24045:4;24069:18;:25;24088:5;24069:25;;;;;;;;;;;;;;;:35;24095:8;24069:35;;;;;;;;;;;;;;;;;;;;;;;;;24062:42;;23948:164;;;;:::o;38513:211::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38598:9:::1;38593:124;38617:9;:16;38613:1;:20;38593:124;;;36621:1;38655:16;:30;38672:9;38682:1;38672:12;;;;;;;;:::i;:::-;;;;;;;;38655:30;;;;;;;;;;;;;;;:50;;;;38635:3;;;;;:::i;:::-;;;;38593:124;;;;38513:211:::0;:::o;35785:192::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35894:1:::1;35874:22;;:8;:22;;;;35866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35950:19;35960:8;35950:9;:19::i;:::-;35785:192:::0;:::o;39256:94::-;35116:12;:10;:12::i;:::-;35105:23;;:7;:5;:7::i;:::-;:23;;;35097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39329:13:::1;;;;;;;;;;;39328:14;39312:13;;:30;;;;;;;;;;;;;;;;;;39256:94::o:0;36835:34::-;;;;;;;;;;;;;:::o;19307:157::-;19392:4;19431:25;19416:40;;;:11;:40;;;;19409:47;;19307:157;;;:::o;26683:127::-;26748:4;26800:1;26772:30;;:7;:16;26780:7;26772:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26765:37;;26683:127;;;:::o;16235:98::-;16288:7;16315:10;16308:17;;16235:98;:::o;30665:174::-;30767:2;30740:15;:24;30756:7;30740:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30823:7;30819:2;30785:46;;30794:23;30809:7;30794:14;:23::i;:::-;30785:46;;;;;;;;;;;;30665:174;;:::o;26977:348::-;27070:4;27095:16;27103:7;27095;:16::i;:::-;27087:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27171:13;27187:23;27202:7;27187:14;:23::i;:::-;27171:39;;27240:5;27229:16;;:7;:16;;;:51;;;;27273:7;27249:31;;:20;27261:7;27249:11;:20::i;:::-;:31;;;27229:51;:87;;;;27284:32;27301:5;27308:7;27284:16;:32::i;:::-;27229:87;27221:96;;;26977:348;;;;:::o;29969:578::-;30128:4;30101:31;;:23;30116:7;30101:14;:23::i;:::-;:31;;;30093:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30211:1;30197:16;;:2;:16;;;;30189:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30267:39;30288:4;30294:2;30298:7;30267:20;:39::i;:::-;30371:29;30388:1;30392:7;30371:8;:29::i;:::-;30432:1;30413:9;:15;30423:4;30413:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30461:1;30444:9;:13;30454:2;30444:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30492:2;30473:7;:16;30481:7;30473:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30531:7;30527:2;30512:27;;30521:4;30512:27;;;;;;;;;;;;29969:578;;;:::o;35985:173::-;36041:16;36060:6;;;;;;;;;;;36041:25;;36086:8;36077:6;;:17;;;;;;;;;;;;;;;;;;36141:8;36110:40;;36131:8;36110:40;;;;;;;;;;;;36030:128;35985:173;:::o;27667:110::-;27743:26;27753:2;27757:7;27743:26;;;;;;;;;;;;:9;:26::i;:::-;27667:110;;:::o;26055:315::-;26212:28;26222:4;26228:2;26232:7;26212:9;:28::i;:::-;26259:48;26282:4;26288:2;26292:7;26301:5;26259:22;:48::i;:::-;26251:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26055:315;;;;:::o;37683:108::-;37743:13;37776:7;37769:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37683:108;:::o;16756:723::-;16812:13;17042:1;17033:5;:10;17029:53;;;17060:10;;;;;;;;;;;;;;;;;;;;;17029:53;17092:12;17107:5;17092:20;;17123:14;17148:78;17163:1;17155:4;:9;17148:78;;17181:8;;;;;:::i;:::-;;;;17212:2;17204:10;;;;;:::i;:::-;;;17148:78;;;17236:19;17268:6;17258:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17236:39;;17286:154;17302:1;17293:5;:10;17286:154;;17330:1;17320:11;;;;;:::i;:::-;;;17397:2;17389:5;:10;;;;:::i;:::-;17376:2;:24;;;;:::i;:::-;17363:39;;17346:6;17353;17346:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17426:2;17417:11;;;;;:::i;:::-;;;17286:154;;;17464:6;17450:21;;;;;16756:723;;;;:::o;32775:126::-;;;;:::o;28004:321::-;28134:18;28140:2;28144:7;28134:5;:18::i;:::-;28185:54;28216:1;28220:2;28224:7;28233:5;28185:22;:54::i;:::-;28163:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28004:321;;;:::o;31404:799::-;31559:4;31580:15;:2;:13;;;:15::i;:::-;31576:620;;;31632:2;31616:36;;;31653:12;:10;:12::i;:::-;31667:4;31673:7;31682:5;31616:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31612:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31875:1;31858:6;:13;:18;31854:272;;;31901:60;;;;;;;;;;:::i;:::-;;;;;;;;31854:272;32076:6;32070:13;32061:6;32057:2;32053:15;32046:38;31612:529;31749:41;;;31739:51;;;:6;:51;;;;31732:58;;;;;31576:620;32180:4;32173:11;;31404:799;;;;;;;:::o;28661:382::-;28755:1;28741:16;;:2;:16;;;;28733:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28814:16;28822:7;28814;:16::i;:::-;28813:17;28805:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28876:45;28905:1;28909:2;28913:7;28876:20;:45::i;:::-;28951:1;28934:9;:13;28944:2;28934:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28982:2;28963:7;:16;28971:7;28963:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29027:7;29023:2;29002:33;;29019:1;29002:33;;;;;;;;;;;;28661:382;;:::o;8283:387::-;8343:4;8551:12;8618:7;8606:20;8598:28;;8661:1;8654:4;:8;8647:15;;;8283:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:327::-;7361:6;7410:2;7398:9;7389:7;7385:23;7381:32;7378:119;;;7416:79;;:::i;:::-;7378:119;7536:1;7561:52;7605:7;7596:6;7585:9;7581:22;7561:52;:::i;:::-;7551:62;;7507:116;7303:327;;;;:::o;7636:349::-;7705:6;7754:2;7742:9;7733:7;7729:23;7725:32;7722:119;;;7760:79;;:::i;:::-;7722:119;7880:1;7905:63;7960:7;7951:6;7940:9;7936:22;7905:63;:::i;:::-;7895:73;;7851:127;7636:349;;;;:::o;7991:509::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8263:1;8252:9;8248:17;8235:31;8293:18;8285:6;8282:30;8279:117;;;8315:79;;:::i;:::-;8279:117;8420:63;8475:7;8466:6;8455:9;8451:22;8420:63;:::i;:::-;8410:73;;8206:287;7991:509;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:118::-;8928:24;8946:5;8928:24;:::i;:::-;8923:3;8916:37;8841:118;;:::o;8965:109::-;9046:21;9061:5;9046:21;:::i;:::-;9041:3;9034:34;8965:109;;:::o;9080:360::-;9166:3;9194:38;9226:5;9194:38;:::i;:::-;9248:70;9311:6;9306:3;9248:70;:::i;:::-;9241:77;;9327:52;9372:6;9367:3;9360:4;9353:5;9349:16;9327:52;:::i;:::-;9404:29;9426:6;9404:29;:::i;:::-;9399:3;9395:39;9388:46;;9170:270;9080:360;;;;:::o;9446:364::-;9534:3;9562:39;9595:5;9562:39;:::i;:::-;9617:71;9681:6;9676:3;9617:71;:::i;:::-;9610:78;;9697:52;9742:6;9737:3;9730:4;9723:5;9719:16;9697:52;:::i;:::-;9774:29;9796:6;9774:29;:::i;:::-;9769:3;9765:39;9758:46;;9538:272;9446:364;;;;:::o;9816:377::-;9922:3;9950:39;9983:5;9950:39;:::i;:::-;10005:89;10087:6;10082:3;10005:89;:::i;:::-;9998:96;;10103:52;10148:6;10143:3;10136:4;10129:5;10125:16;10103:52;:::i;:::-;10180:6;10175:3;10171:16;10164:23;;9926:267;9816:377;;;;:::o;10199:366::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:::-;12945:3;12966:67;13030:2;13025:3;12966:67;:::i;:::-;12959:74;;13042:93;13131:3;13042:93;:::i;:::-;13160:2;13155:3;13151:12;13144:19;;12803:366;;;:::o;13175:::-;13317:3;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13175:366;;;:::o;13547:::-;13689:3;13710:67;13774:2;13769:3;13710:67;:::i;:::-;13703:74;;13786:93;13875:3;13786:93;:::i;:::-;13904:2;13899:3;13895:12;13888:19;;13547:366;;;:::o;13919:::-;14061:3;14082:67;14146:2;14141:3;14082:67;:::i;:::-;14075:74;;14158:93;14247:3;14158:93;:::i;:::-;14276:2;14271:3;14267:12;14260:19;;13919:366;;;:::o;14291:::-;14433:3;14454:67;14518:2;14513:3;14454:67;:::i;:::-;14447:74;;14530:93;14619:3;14530:93;:::i;:::-;14648:2;14643:3;14639:12;14632:19;;14291:366;;;:::o;14663:::-;14805:3;14826:67;14890:2;14885:3;14826:67;:::i;:::-;14819:74;;14902:93;14991:3;14902:93;:::i;:::-;15020:2;15015:3;15011:12;15004:19;;14663:366;;;:::o;15035:::-;15177:3;15198:67;15262:2;15257:3;15198:67;:::i;:::-;15191:74;;15274:93;15363:3;15274:93;:::i;:::-;15392:2;15387:3;15383:12;15376:19;;15035:366;;;:::o;15407:::-;15549:3;15570:67;15634:2;15629:3;15570:67;:::i;:::-;15563:74;;15646:93;15735:3;15646:93;:::i;:::-;15764:2;15759:3;15755:12;15748:19;;15407:366;;;:::o;15779:::-;15921:3;15942:67;16006:2;16001:3;15942:67;:::i;:::-;15935:74;;16018:93;16107:3;16018:93;:::i;:::-;16136:2;16131:3;16127:12;16120:19;;15779:366;;;:::o;16151:::-;16293:3;16314:67;16378:2;16373:3;16314:67;:::i;:::-;16307:74;;16390:93;16479:3;16390:93;:::i;:::-;16508:2;16503:3;16499:12;16492:19;;16151:366;;;:::o;16523:::-;16665:3;16686:67;16750:2;16745:3;16686:67;:::i;:::-;16679:74;;16762:93;16851:3;16762:93;:::i;:::-;16880:2;16875:3;16871:12;16864:19;;16523:366;;;:::o;16895:::-;17037:3;17058:67;17122:2;17117:3;17058:67;:::i;:::-;17051:74;;17134:93;17223:3;17134:93;:::i;:::-;17252:2;17247:3;17243:12;17236:19;;16895:366;;;:::o;17267:::-;17409:3;17430:67;17494:2;17489:3;17430:67;:::i;:::-;17423:74;;17506:93;17595:3;17506:93;:::i;:::-;17624:2;17619:3;17615:12;17608:19;;17267:366;;;:::o;17639:::-;17781:3;17802:67;17866:2;17861:3;17802:67;:::i;:::-;17795:74;;17878:93;17967:3;17878:93;:::i;:::-;17996:2;17991:3;17987:12;17980:19;;17639:366;;;:::o;18011:118::-;18098:24;18116:5;18098:24;:::i;:::-;18093:3;18086:37;18011:118;;:::o;18135:595::-;18363:3;18385:95;18476:3;18467:6;18385:95;:::i;:::-;18378:102;;18497:95;18588:3;18579:6;18497:95;:::i;:::-;18490:102;;18609:95;18700:3;18691:6;18609:95;:::i;:::-;18602:102;;18721:3;18714:10;;18135:595;;;;;;:::o;18736:222::-;18829:4;18867:2;18856:9;18852:18;18844:26;;18880:71;18948:1;18937:9;18933:17;18924:6;18880:71;:::i;:::-;18736:222;;;;:::o;18964:640::-;19159:4;19197:3;19186:9;19182:19;19174:27;;19211:71;19279:1;19268:9;19264:17;19255:6;19211:71;:::i;:::-;19292:72;19360:2;19349:9;19345:18;19336:6;19292:72;:::i;:::-;19374;19442:2;19431:9;19427:18;19418:6;19374:72;:::i;:::-;19493:9;19487:4;19483:20;19478:2;19467:9;19463:18;19456:48;19521:76;19592:4;19583:6;19521:76;:::i;:::-;19513:84;;18964:640;;;;;;;:::o;19610:210::-;19697:4;19735:2;19724:9;19720:18;19712:26;;19748:65;19810:1;19799:9;19795:17;19786:6;19748:65;:::i;:::-;19610:210;;;;:::o;19826:313::-;19939:4;19977:2;19966:9;19962:18;19954:26;;20026:9;20020:4;20016:20;20012:1;20001:9;19997:17;19990:47;20054:78;20127:4;20118:6;20054:78;:::i;:::-;20046:86;;19826:313;;;;:::o;20145:419::-;20311:4;20349:2;20338:9;20334:18;20326:26;;20398:9;20392:4;20388:20;20384:1;20373:9;20369:17;20362:47;20426:131;20552:4;20426:131;:::i;:::-;20418:139;;20145:419;;;:::o;20570:::-;20736:4;20774:2;20763:9;20759:18;20751:26;;20823:9;20817:4;20813:20;20809:1;20798:9;20794:17;20787:47;20851:131;20977:4;20851:131;:::i;:::-;20843:139;;20570:419;;;:::o;20995:::-;21161:4;21199:2;21188:9;21184:18;21176:26;;21248:9;21242:4;21238:20;21234:1;21223:9;21219:17;21212:47;21276:131;21402:4;21276:131;:::i;:::-;21268:139;;20995:419;;;:::o;21420:::-;21586:4;21624:2;21613:9;21609:18;21601:26;;21673:9;21667:4;21663:20;21659:1;21648:9;21644:17;21637:47;21701:131;21827:4;21701:131;:::i;:::-;21693:139;;21420:419;;;:::o;21845:::-;22011:4;22049:2;22038:9;22034:18;22026:26;;22098:9;22092:4;22088:20;22084:1;22073:9;22069:17;22062:47;22126:131;22252:4;22126:131;:::i;:::-;22118:139;;21845:419;;;:::o;22270:::-;22436:4;22474:2;22463:9;22459:18;22451:26;;22523:9;22517:4;22513:20;22509:1;22498:9;22494:17;22487:47;22551:131;22677:4;22551:131;:::i;:::-;22543:139;;22270:419;;;:::o;22695:::-;22861:4;22899:2;22888:9;22884:18;22876:26;;22948:9;22942:4;22938:20;22934:1;22923:9;22919:17;22912:47;22976:131;23102:4;22976:131;:::i;:::-;22968:139;;22695:419;;;:::o;23120:::-;23286:4;23324:2;23313:9;23309:18;23301:26;;23373:9;23367:4;23363:20;23359:1;23348:9;23344:17;23337:47;23401:131;23527:4;23401:131;:::i;:::-;23393:139;;23120:419;;;:::o;23545:::-;23711:4;23749:2;23738:9;23734:18;23726:26;;23798:9;23792:4;23788:20;23784:1;23773:9;23769:17;23762:47;23826:131;23952:4;23826:131;:::i;:::-;23818:139;;23545:419;;;:::o;23970:::-;24136:4;24174:2;24163:9;24159:18;24151:26;;24223:9;24217:4;24213:20;24209:1;24198:9;24194:17;24187:47;24251:131;24377:4;24251:131;:::i;:::-;24243:139;;23970:419;;;:::o;24395:::-;24561:4;24599:2;24588:9;24584:18;24576:26;;24648:9;24642:4;24638:20;24634:1;24623:9;24619:17;24612:47;24676:131;24802:4;24676:131;:::i;:::-;24668:139;;24395:419;;;:::o;24820:::-;24986:4;25024:2;25013:9;25009:18;25001:26;;25073:9;25067:4;25063:20;25059:1;25048:9;25044:17;25037:47;25101:131;25227:4;25101:131;:::i;:::-;25093:139;;24820:419;;;:::o;25245:::-;25411:4;25449:2;25438:9;25434:18;25426:26;;25498:9;25492:4;25488:20;25484:1;25473:9;25469:17;25462:47;25526:131;25652:4;25526:131;:::i;:::-;25518:139;;25245:419;;;:::o;25670:::-;25836:4;25874:2;25863:9;25859:18;25851:26;;25923:9;25917:4;25913:20;25909:1;25898:9;25894:17;25887:47;25951:131;26077:4;25951:131;:::i;:::-;25943:139;;25670:419;;;:::o;26095:::-;26261:4;26299:2;26288:9;26284:18;26276:26;;26348:9;26342:4;26338:20;26334:1;26323:9;26319:17;26312:47;26376:131;26502:4;26376:131;:::i;:::-;26368:139;;26095:419;;;:::o;26520:::-;26686:4;26724:2;26713:9;26709:18;26701:26;;26773:9;26767:4;26763:20;26759:1;26748:9;26744:17;26737:47;26801:131;26927:4;26801:131;:::i;:::-;26793:139;;26520:419;;;:::o;26945:::-;27111:4;27149:2;27138:9;27134:18;27126:26;;27198:9;27192:4;27188:20;27184:1;27173:9;27169:17;27162:47;27226:131;27352:4;27226:131;:::i;:::-;27218:139;;26945:419;;;:::o;27370:::-;27536:4;27574:2;27563:9;27559:18;27551:26;;27623:9;27617:4;27613:20;27609:1;27598:9;27594:17;27587:47;27651:131;27777:4;27651:131;:::i;:::-;27643:139;;27370:419;;;:::o;27795:::-;27961:4;27999:2;27988:9;27984:18;27976:26;;28048:9;28042:4;28038:20;28034:1;28023:9;28019:17;28012:47;28076:131;28202:4;28076:131;:::i;:::-;28068:139;;27795:419;;;:::o;28220:::-;28386:4;28424:2;28413:9;28409:18;28401:26;;28473:9;28467:4;28463:20;28459:1;28448:9;28444:17;28437:47;28501:131;28627:4;28501:131;:::i;:::-;28493:139;;28220:419;;;:::o;28645:::-;28811:4;28849:2;28838:9;28834:18;28826:26;;28898:9;28892:4;28888:20;28884:1;28873:9;28869:17;28862:47;28926:131;29052:4;28926:131;:::i;:::-;28918:139;;28645:419;;;:::o;29070:222::-;29163:4;29201:2;29190:9;29186:18;29178:26;;29214:71;29282:1;29271:9;29267:17;29258:6;29214:71;:::i;:::-;29070:222;;;;:::o;29298:129::-;29332:6;29359:20;;:::i;:::-;29349:30;;29388:33;29416:4;29408:6;29388:33;:::i;:::-;29298:129;;;:::o;29433:75::-;29466:6;29499:2;29493:9;29483:19;;29433:75;:::o;29514:311::-;29591:4;29681:18;29673:6;29670:30;29667:56;;;29703:18;;:::i;:::-;29667:56;29753:4;29745:6;29741:17;29733:25;;29813:4;29807;29803:15;29795:23;;29514:311;;;:::o;29831:307::-;29892:4;29982:18;29974:6;29971:30;29968:56;;;30004:18;;:::i;:::-;29968:56;30042:29;30064:6;30042:29;:::i;:::-;30034:37;;30126:4;30120;30116:15;30108:23;;29831:307;;;:::o;30144:308::-;30206:4;30296:18;30288:6;30285:30;30282:56;;;30318:18;;:::i;:::-;30282:56;30356:29;30378:6;30356:29;:::i;:::-;30348:37;;30440:4;30434;30430:15;30422:23;;30144:308;;;:::o;30458:98::-;30509:6;30543:5;30537:12;30527:22;;30458:98;;;:::o;30562:99::-;30614:6;30648:5;30642:12;30632:22;;30562:99;;;:::o;30667:168::-;30750:11;30784:6;30779:3;30772:19;30824:4;30819:3;30815:14;30800:29;;30667:168;;;;:::o;30841:169::-;30925:11;30959:6;30954:3;30947:19;30999:4;30994:3;30990:14;30975:29;;30841:169;;;;:::o;31016:148::-;31118:11;31155:3;31140:18;;31016:148;;;;:::o;31170:305::-;31210:3;31229:20;31247:1;31229:20;:::i;:::-;31224:25;;31263:20;31281:1;31263:20;:::i;:::-;31258:25;;31417:1;31349:66;31345:74;31342:1;31339:81;31336:107;;;31423:18;;:::i;:::-;31336:107;31467:1;31464;31460:9;31453:16;;31170:305;;;;:::o;31481:185::-;31521:1;31538:20;31556:1;31538:20;:::i;:::-;31533:25;;31572:20;31590:1;31572:20;:::i;:::-;31567:25;;31611:1;31601:35;;31616:18;;:::i;:::-;31601:35;31658:1;31655;31651:9;31646:14;;31481:185;;;;:::o;31672:348::-;31712:7;31735:20;31753:1;31735:20;:::i;:::-;31730:25;;31769:20;31787:1;31769:20;:::i;:::-;31764:25;;31957:1;31889:66;31885:74;31882:1;31879:81;31874:1;31867:9;31860:17;31856:105;31853:131;;;31964:18;;:::i;:::-;31853:131;32012:1;32009;32005:9;31994:20;;31672:348;;;;:::o;32026:191::-;32066:4;32086:20;32104:1;32086:20;:::i;:::-;32081:25;;32120:20;32138:1;32120:20;:::i;:::-;32115:25;;32159:1;32156;32153:8;32150:34;;;32164:18;;:::i;:::-;32150:34;32209:1;32206;32202:9;32194:17;;32026:191;;;;:::o;32223:96::-;32260:7;32289:24;32307:5;32289:24;:::i;:::-;32278:35;;32223:96;;;:::o;32325:90::-;32359:7;32402:5;32395:13;32388:21;32377:32;;32325:90;;;:::o;32421:149::-;32457:7;32497:66;32490:5;32486:78;32475:89;;32421:149;;;:::o;32576:126::-;32613:7;32653:42;32646:5;32642:54;32631:65;;32576:126;;;:::o;32708:77::-;32745:7;32774:5;32763:16;;32708:77;;;:::o;32791:154::-;32875:6;32870:3;32865;32852:30;32937:1;32928:6;32923:3;32919:16;32912:27;32791:154;;;:::o;32951:307::-;33019:1;33029:113;33043:6;33040:1;33037:13;33029:113;;;33128:1;33123:3;33119:11;33113:18;33109:1;33104:3;33100:11;33093:39;33065:2;33062:1;33058:10;33053:15;;33029:113;;;33160:6;33157:1;33154:13;33151:101;;;33240:1;33231:6;33226:3;33222:16;33215:27;33151:101;33000:258;32951:307;;;:::o;33264:320::-;33308:6;33345:1;33339:4;33335:12;33325:22;;33392:1;33386:4;33382:12;33413:18;33403:81;;33469:4;33461:6;33457:17;33447:27;;33403:81;33531:2;33523:6;33520:14;33500:18;33497:38;33494:84;;;33550:18;;:::i;:::-;33494:84;33315:269;33264:320;;;:::o;33590:281::-;33673:27;33695:4;33673:27;:::i;:::-;33665:6;33661:40;33803:6;33791:10;33788:22;33767:18;33755:10;33752:34;33749:62;33746:88;;;33814:18;;:::i;:::-;33746:88;33854:10;33850:2;33843:22;33633:238;33590:281;;:::o;33877:233::-;33916:3;33939:24;33957:5;33939:24;:::i;:::-;33930:33;;33985:66;33978:5;33975:77;33972:103;;;34055:18;;:::i;:::-;33972:103;34102:1;34095:5;34091:13;34084:20;;33877:233;;;:::o;34116:176::-;34148:1;34165:20;34183:1;34165:20;:::i;:::-;34160:25;;34199:20;34217:1;34199:20;:::i;:::-;34194:25;;34238:1;34228:35;;34243:18;;:::i;:::-;34228:35;34284:1;34281;34277:9;34272:14;;34116:176;;;;:::o;34298:180::-;34346:77;34343:1;34336:88;34443:4;34440:1;34433:15;34467:4;34464:1;34457:15;34484:180;34532:77;34529:1;34522:88;34629:4;34626:1;34619:15;34653:4;34650:1;34643:15;34670:180;34718:77;34715:1;34708:88;34815:4;34812:1;34805:15;34839:4;34836:1;34829:15;34856:180;34904:77;34901:1;34894:88;35001:4;34998:1;34991:15;35025:4;35022:1;35015:15;35042:180;35090:77;35087:1;35080:88;35187:4;35184:1;35177:15;35211:4;35208:1;35201:15;35228:117;35337:1;35334;35327:12;35351:117;35460:1;35457;35450:12;35474:117;35583:1;35580;35573:12;35597:117;35706:1;35703;35696:12;35720:117;35829:1;35826;35819:12;35843:102;35884:6;35935:2;35931:7;35926:2;35919:5;35915:14;35911:28;35901:38;;35843:102;;;:::o;35951:237::-;36091:34;36087:1;36079:6;36075:14;36068:58;36160:20;36155:2;36147:6;36143:15;36136:45;35951:237;:::o;36194:225::-;36334:34;36330:1;36322:6;36318:14;36311:58;36403:8;36398:2;36390:6;36386:15;36379:33;36194:225;:::o;36425:178::-;36565:30;36561:1;36553:6;36549:14;36542:54;36425:178;:::o;36609:224::-;36749:34;36745:1;36737:6;36733:14;36726:58;36818:7;36813:2;36805:6;36801:15;36794:32;36609:224;:::o;36839:223::-;36979:34;36975:1;36967:6;36963:14;36956:58;37048:6;37043:2;37035:6;37031:15;37024:31;36839:223;:::o;37068:175::-;37208:27;37204:1;37196:6;37192:14;37185:51;37068:175;:::o;37249:231::-;37389:34;37385:1;37377:6;37373:14;37366:58;37458:14;37453:2;37445:6;37441:15;37434:39;37249:231;:::o;37486:243::-;37626:34;37622:1;37614:6;37610:14;37603:58;37695:26;37690:2;37682:6;37678:15;37671:51;37486:243;:::o;37735:229::-;37875:34;37871:1;37863:6;37859:14;37852:58;37944:12;37939:2;37931:6;37927:15;37920:37;37735:229;:::o;37970:228::-;38110:34;38106:1;38098:6;38094:14;38087:58;38179:11;38174:2;38166:6;38162:15;38155:36;37970:228;:::o;38204:182::-;38344:34;38340:1;38332:6;38328:14;38321:58;38204:182;:::o;38392:231::-;38532:34;38528:1;38520:6;38516:14;38509:58;38601:14;38596:2;38588:6;38584:15;38577:39;38392:231;:::o;38629:182::-;38769:34;38765:1;38757:6;38753:14;38746:58;38629:182;:::o;38817:226::-;38957:34;38953:1;38945:6;38941:14;38934:58;39026:9;39021:2;39013:6;39009:15;39002:34;38817:226;:::o;39049:228::-;39189:34;39185:1;39177:6;39173:14;39166:58;39258:11;39253:2;39245:6;39241:15;39234:36;39049:228;:::o;39283:234::-;39423:34;39419:1;39411:6;39407:14;39400:58;39492:17;39487:2;39479:6;39475:15;39468:42;39283:234;:::o;39523:220::-;39663:34;39659:1;39651:6;39647:14;39640:58;39732:3;39727:2;39719:6;39715:15;39708:28;39523:220;:::o;39749:171::-;39889:23;39885:1;39877:6;39873:14;39866:47;39749:171;:::o;39926:236::-;40066:34;40062:1;40054:6;40050:14;40043:58;40135:19;40130:2;40122:6;40118:15;40111:44;39926:236;:::o;40168:230::-;40308:34;40304:1;40296:6;40292:14;40285:58;40377:13;40372:2;40364:6;40360:15;40353:38;40168:230;:::o;40404:173::-;40544:25;40540:1;40532:6;40528:14;40521:49;40404:173;:::o;40583:122::-;40656:24;40674:5;40656:24;:::i;:::-;40649:5;40646:35;40636:63;;40695:1;40692;40685:12;40636:63;40583:122;:::o;40711:116::-;40781:21;40796:5;40781:21;:::i;:::-;40774:5;40771:32;40761:60;;40817:1;40814;40807:12;40761:60;40711:116;:::o;40833:120::-;40905:23;40922:5;40905:23;:::i;:::-;40898:5;40895:34;40885:62;;40943:1;40940;40933:12;40885:62;40833:120;:::o;40959:122::-;41032:24;41050:5;41032:24;:::i;:::-;41025:5;41022:35;41012:63;;41071:1;41068;41061:12;41012:63;40959:122;:::o

Swarm Source

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