ETH Price: $2,616.83 (-6.03%)

Token

FatGoblin (FG)
 

Overview

Max Total Supply

268 FG

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FG
0xbb9bbc146b1118c4ac074a3708a456bbf5e9e141
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:
FatGoblin

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

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

pragma solidity 0.8.10;

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

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

/**
 * @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);
}


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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @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);
}


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


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

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


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

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

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

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

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

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

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

/**
 * @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);
    }
}


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

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


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract FatGoblin is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    string public baseURI = "https://nftservice.s3.amazonaws.com/fatgoblin/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 20;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = false;

    uint public maxFreePerUser = 1;

    mapping (address => uint256) addressToUserFreeMinted;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor(        
    ) ERC721A("FatGoblin", "FG") {
        _setDefaultRoyalty(msg.sender, 200);
        _safeMint(msg.sender, 100);
    }

    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint256 userMinted;
        uint256 userFreeMinted;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            userMinted: uint256(_numberMinted(minter)),
            userFreeMinted : addressToUserFreeMinted[minter]
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Request would exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintToken(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active to mint token");
        require(numberOfTokens <= maxTokensPerTx, "The number of tokens per transaction exceeds the allowed number");
        require(numberOfTokens > 0, "You must mint at least one token");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens");

        uint256 minted = _numberMinted(msg.sender);
        bool hasFreeToken = false;
        if ( maxFreePerUser <= addressToUserFreeMinted[msg.sender] || maxFreePerUser <= minted) {
            require(msg.value >= numberOfTokens * tokenPrice, "Ether value sent is not correct");
        } else {
            require(msg.value >= (numberOfTokens - 1) * tokenPrice, "Ether value sent is not correct");
            hasFreeToken= true;
        }
        
        _safeMint(msg.sender, numberOfTokens);

        if(hasFreeToken){
            addressToUserFreeMinted[msg.sender] = addressToUserFreeMinted[msg.sender] + 1;
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    } 
    
    function numberFreeMinted(address owner) public view returns (uint256) {
        return addressToUserFreeMinted[owner];
    } 

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) external onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxFreePerUser(uint _maxFreePerUser) external onlyOwner{
        maxFreePerUser = _maxFreePerUser;
    }

    /**
    @notice Sets the contract-wide royalty info.
     */
    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"userFreeMinted","type":"uint256"}],"internalType":"struct FatGoblin.HelperState","name":"","type":"tuple"}],"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":"flipSaleState","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":[],"name":"maxFreePerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"}],"name":"setMaxFreePerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602e8152602001620058b8602e9139600c908051906020019062000035929190620009d9565b506611c37937e08000600d556014600e556122b8600f556000601060006101000a81548160ff02191690831515021790555060016011556000601360006101000a81548160ff0219169083600181111562000095576200009462000a89565b5b0217905550348015620000a757600080fd5b506040518060400160405280600981526020017f466174476f626c696e00000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464700000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012c929190620009d9565b50806003908051906020019062000145929190620009d9565b5062000156620001b260201b60201c565b60008190555050506200017e62000172620001b760201b60201c565b620001bf60201b60201c565b6001600b81905550620001993360c86200028560201b60201c565b620001ac3360646200042960201b60201c565b62000e24565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002956200044f60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed9062000b3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003609062000bb1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6200044b8282604051806020016040528060008152506200045960201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000503576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200051860008583866200084860201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006e68673ffffffffffffffffffffffffffffffffffffffff166200084e60201b620020d51760201c565b15620007b8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200076460008784806001019550876200087160201b60201c565b6200079b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006ed578260005414620007b257600080fd5b62000824565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620007b9575b816000819055505050620008426000858386620009d360201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200089f620001b760201b60201c565b8786866040518563ffffffff1660e01b8152600401620008c3949392919062000cd7565b6020604051808303816000875af19250505080156200090257506040513d601f19601f82011682018060405250810190620008ff919062000d8d565b60015b62000980573d806000811462000935576040519150601f19603f3d011682016040523d82523d6000602084013e6200093a565b606091505b5060008151141562000978576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009e79062000dee565b90600052602060002090601f01602090048101928262000a0b576000855562000a57565b82601f1062000a2657805160ff191683800117855562000a57565b8280016001018555821562000a57579182015b8281111562000a5657825182559160200191906001019062000a39565b5b50905062000a66919062000a6a565b5090565b5b8082111562000a8557600081600090555060010162000a6b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b27602a8362000ab8565b915062000b348262000ac9565b604082019050919050565b6000602082019050818103600083015262000b5a8162000b18565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b9960198362000ab8565b915062000ba68262000b61565b602082019050919050565b6000602082019050818103600083015262000bcc8162000b8a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b82525050565b6000819050919050565b62000c2d8162000c18565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c6f57808201518184015260208101905062000c52565b8381111562000c7f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ca38262000c33565b62000caf818562000c3e565b935062000cc181856020860162000c4f565b62000ccc8162000c85565b840191505092915050565b600060808201905062000cee600083018762000c07565b62000cfd602083018662000c07565b62000d0c604083018562000c22565b818103606083015262000d20818462000c96565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d678162000d30565b811462000d7357600080fd5b50565b60008151905062000d878162000d5c565b92915050565b60006020828403121562000da65762000da562000d2b565b5b600062000db68482850162000d76565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0757607f821691505b6020821081141562000e1e5762000e1d62000dbf565b5b50919050565b614a848062000e346000396000f3fe6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220022931438431f34de632aee4de1ac55c73f1cd51a7d2b8c02917e11845008c6a64736f6c634300080a003368747470733a2f2f6e6674736572766963652e73332e616d617a6f6e6177732e636f6d2f666174676f626c696e2f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636f8b44b01161012e578063b88d4fde116100ab578063e5a519521161006f578063e5a5195214610815578063e985e9c514610852578063eb8d24441461088f578063f2fde38b146108ba578063f47c84c5146108e357610230565b8063b88d4fde1461072d578063b9bed05e14610756578063c634d0321461077f578063c87b56dd1461079b578063dc33e681146107d857610230565b80637ff9b596116100f25780637ff9b5961461065a5780638da5cb5b14610685578063900c71f5146106b057806395d89b41146106d9578063a22cb4651461070457610230565b80636f8b44b01461058b57806370a08231146105b4578063715018a6146105f157806378cf19e914610608578063790750ce1461063157610230565b80632a55205a116101bc57806355f804b31161018057806355f804b3146104a65780635e307a48146104cf5780636352211e146104fa5780636a61e5fc146105375780636c0360eb1461056057610230565b80632a55205a146103d457806334918dfd146104125780633ccfd60b1461042957806342842e0e146104405780634df8bb451461046957610230565b8063095ea7b311610203578063095ea7b3146103035780630f2663511461032c57806318160ddd14610357578063205c28781461038257806323b872dd146103ab57610230565b806301ffc9a71461023557806302fa7c471461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613669565b61090e565b60405161026991906136b1565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061376e565b610920565b005b3480156102a757600080fd5b506102b06109aa565b6040516102bd9190613847565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e8919061389f565b610a3c565b6040516102fa91906138db565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906138f6565b610ab8565b005b34801561033857600080fd5b50610341610bbd565b60405161034e9190613945565b60405180910390f35b34801561036357600080fd5b5061036c610bc3565b6040516103799190613945565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906138f6565b610bda565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613960565b610ce4565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906139b3565b610cf4565b6040516104099291906139f3565b60405180910390f35b34801561041e57600080fd5b50610427610edf565b005b34801561043557600080fd5b5061043e610f87565b005b34801561044c57600080fd5b5061046760048036038101906104629190613960565b611052565b005b34801561047557600080fd5b50610490600480360381019061048b9190613a1c565b611072565b60405161049d9190613af5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613c45565b611119565b005b3480156104db57600080fd5b506104e46111af565b6040516104f19190613945565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061389f565b6111b5565b60405161052e91906138db565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061389f565b6111cb565b005b34801561056c57600080fd5b50610575611251565b6040516105829190613847565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061389f565b6112df565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613a1c565b611365565b6040516105e89190613945565b60405180910390f35b3480156105fd57600080fd5b50610606611435565b005b34801561061457600080fd5b5061062f600480360381019061062a91906138f6565b6114bd565b005b34801561063d57600080fd5b506106586004803603810190610653919061389f565b6115a5565b005b34801561066657600080fd5b5061066f61162b565b60405161067c9190613945565b60405180910390f35b34801561069157600080fd5b5061069a611631565b6040516106a791906138db565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061389f565b61165b565b005b3480156106e557600080fd5b506106ee61173f565b6040516106fb9190613847565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613cba565b6117d1565b005b34801561073957600080fd5b50610754600480360381019061074f9190613d9b565b611949565b005b34801561076257600080fd5b5061077d6004803603810190610778919061389f565b6119c1565b005b6107996004803603810190610794919061389f565b611a47565b005b3480156107a757600080fd5b506107c260048036038101906107bd919061389f565b611d93565b6040516107cf9190613847565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613a1c565b611ed5565b60405161080c9190613945565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190613a1c565b611ee7565b6040516108499190613945565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613e1e565b611f30565b60405161088691906136b1565b60405180910390f35b34801561089b57600080fd5b506108a4611fc4565b6040516108b191906136b1565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613a1c565b611fd7565b005b3480156108ef57600080fd5b506108f86120cf565b6040516109059190613945565b60405180910390f35b6000610919826120f8565b9050919050565b610928612172565b73ffffffffffffffffffffffffffffffffffffffff16610946611631565b73ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390613eaa565b60405180910390fd5b6109a6828261217a565b5050565b6060600280546109b990613ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590613ef9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a4782612310565b610a7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac3826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4a612172565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71612172565b611f30565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bb883838361235e565b505050565b60115481565b6000610bcd612410565b6001546000540303905090565b610be2612172565b73ffffffffffffffffffffffffffffffffffffffff16610c00611631565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613eaa565b60405180910390fd5b47811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090613f9d565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdf573d6000803e3d6000fd5b505050565b610cef838383612415565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e8a5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e946128cb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ec09190613fec565b610eca9190614075565b90508160000151819350935050509250929050565b610ee7612172565b73ffffffffffffffffffffffffffffffffffffffff16610f05611631565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613eaa565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610f8f612172565b73ffffffffffffffffffffffffffffffffffffffff16610fad611631565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613eaa565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104e573d6000803e3d6000fd5b5050565b61106d83838360405180602001604052806000815250611949565b505050565b61107a6134d8565b6040518060e00160405280600d548152602001600e548152602001600f548152602001601060009054906101000a900460ff16151581526020016110bc610bc3565b81526020016110ca846128d5565b8152602001601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152509050919050565b611121612172565b73ffffffffffffffffffffffffffffffffffffffff1661113f611631565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613eaa565b60405180910390fd5b80600c90805190602001906111ab929190613517565b5050565b600e5481565b60006111c08261293f565b600001519050919050565b6111d3612172565b73ffffffffffffffffffffffffffffffffffffffff166111f1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613eaa565b60405180910390fd5b80600d8190555050565b600c805461125e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461128a90613ef9565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b6112e7612172565b73ffffffffffffffffffffffffffffffffffffffff16611305611631565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613eaa565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143d612172565b73ffffffffffffffffffffffffffffffffffffffff1661145b611631565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613eaa565b60405180910390fd5b6114bb6000612bca565b565b6114c5612172565b73ffffffffffffffffffffffffffffffffffffffff166114e3611631565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613eaa565b60405180910390fd5b600f5461155682611548610bc3565b612c9090919063ffffffff16565b1115611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614118565b60405180910390fd5b6115a18282612cee565b5050565b6115ad612172565b73ffffffffffffffffffffffffffffffffffffffff166115cb611631565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613eaa565b60405180910390fd5b8060118190555050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611663612172565b73ffffffffffffffffffffffffffffffffffffffff16611681611631565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613eaa565b60405180910390fd5b6002811415611710576001601360006101000a81548160ff0219169083600181111561170657611705614138565b5b021790555061173c565b6000601360006101000a81548160ff0219169083600181111561173657611735614138565b5b02179055505b50565b60606003805461174e90613ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461177a90613ef9565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b5050505050905090565b6117d9612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061184b612172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f8612172565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193d91906136b1565b60405180910390a35050565b611954848484612415565b6119738373ffffffffffffffffffffffffffffffffffffffff166120d5565b156119bb5761198484848484612d0c565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9612172565b73ffffffffffffffffffffffffffffffffffffffff166119e7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613eaa565b60405180910390fd5b80600e8190555050565b6002600b541415611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a84906141b3565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff16611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614245565b60405180910390fd5b600e54811115611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906142d7565b60405180910390fd5b60008111611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614343565b60405180910390fd5b600f54611b8982611b7b610bc3565b612c9090919063ffffffff16565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143d5565b60405180910390fd5b6000611bd5336128d5565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154111580611c2b57508160115411155b15611c8557600d5483611c3e9190613fec565b341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614441565b60405180910390fd5b611ce6565b600d54600184611c959190614461565b611c9f9190613fec565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614441565b60405180910390fd5b600190505b611cf03384612cee565b8015611d86576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d429190614495565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50506001600b8190555050565b6060611d9e82612310565b611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614537565b60405180910390fd5b600180811115611df057611def614138565b5b601360009054906101000a900460ff166001811115611e1257611e11614138565b5b1415611e76576000600c8054611e2790613ef9565b905011611e435760405180602001604052806000815250611e6f565b600c611e4e83612e5d565b604051602001611e5f929190614627565b6040516020818303038152906040525b9050611ed0565b6000600c8054611e8590613ef9565b905011611ea15760405180602001604052806000815250611ecd565b600c611eac83612e5d565b604051602001611ebd929190614697565b6040516020818303038152906040525b90505b919050565b6000611ee0826128d5565b9050919050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611fdf612172565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611631565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613eaa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614738565b60405180910390fd5b6120cc81612bca565b50565b600f5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216b575061216a82612fbe565b5b9050919050565b600033905090565b6121826128cb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614836565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008161231b612410565b1115801561232a575060005482105b8015612357575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124208261293f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ac612172565b73ffffffffffffffffffffffffffffffffffffffff1614806124db57506124da856124d5612172565b611f30565b5b8061252057506124e9612172565b73ffffffffffffffffffffffffffffffffffffffff1661250884610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612559576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cd85858560016130a0565b6125d96000848761235e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285957600054821461285857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c485858560016130a6565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61294761359d565b600082905080612955612410565b11612b9357600054811015612b92576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b9057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a74578092505050612bc5565b5b600115612b8f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b8a578092505050612bc5565b612a75565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808284612c9f9190614495565b905083811015612ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdb906148a2565b60405180910390fd5b8091505092915050565b612d088282604051806020016040528060008152506130ac565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d32612172565b8786866040518563ffffffff1660e01b8152600401612d549493929190614917565b6020604051808303816000875af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d9190614978565b60015b612e0a573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906149a5565b915050600a82612ed09190614075565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef2613b1a565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e9190614461565b9150600a85612f4d91906149ee565b6030612f599190614495565b60f81b818381518110612f6f57612f6e614a1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab9190614075565b9450612f29565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061308957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061309957506130988261346e565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613119576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613154576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316160008583866130a0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133228673ffffffffffffffffffffffffffffffffffffffff166120d5565b156133e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133976000878480600101955087612d0c565b6133cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133285782600054146133e257600080fd5b613452565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106133e8575b81600081905550505061346860008583866130a6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6040518060e001604052806000815260200160008152602001600081526020016000151581526020016000815260200160008152602001600081525090565b82805461352390613ef9565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57805160ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578251825591602001919060010190613570565b5b50905061359991906135e0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f95760008160009055506001016135e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364681613611565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b60006020828403121561367f5761367e613607565b5b600061368d84828501613654565b91505092915050565b60008115159050919050565b6136ab81613696565b82525050565b60006020820190506136c660008301846136a2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f7826136cc565b9050919050565b613707816136ec565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61374b8161372a565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613607565b5b600061379385828601613715565b92505060206137a485828601613759565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e85780820151818401526020810190506137cd565b838111156137f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613819826137ae565b61382381856137b9565b93506138338185602086016137ca565b61383c816137fd565b840191505092915050565b60006020820190508181036000830152613861818461380e565b905092915050565b6000819050919050565b61387c81613869565b811461388757600080fd5b50565b60008135905061389981613873565b92915050565b6000602082840312156138b5576138b4613607565b5b60006138c38482850161388a565b91505092915050565b6138d5816136ec565b82525050565b60006020820190506138f060008301846138cc565b92915050565b6000806040838503121561390d5761390c613607565b5b600061391b85828601613715565b925050602061392c8582860161388a565b9150509250929050565b61393f81613869565b82525050565b600060208201905061395a6000830184613936565b92915050565b60008060006060848603121561397957613978613607565b5b600061398786828701613715565b935050602061399886828701613715565b92505060406139a98682870161388a565b9150509250925092565b600080604083850312156139ca576139c9613607565b5b60006139d88582860161388a565b92505060206139e98582860161388a565b9150509250929050565b6000604082019050613a0860008301856138cc565b613a156020830184613936565b9392505050565b600060208284031215613a3257613a31613607565b5b6000613a4084828501613715565b91505092915050565b613a5281613869565b82525050565b613a6181613696565b82525050565b60e082016000820151613a7d6000850182613a49565b506020820151613a906020850182613a49565b506040820151613aa36040850182613a49565b506060820151613ab66060850182613a58565b506080820151613ac96080850182613a49565b5060a0820151613adc60a0850182613a49565b5060c0820151613aef60c0850182613a49565b50505050565b600060e082019050613b0a6000830184613a67565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b52826137fd565b810181811067ffffffffffffffff82111715613b7157613b70613b1a565b5b80604052505050565b6000613b846135fd565b9050613b908282613b49565b919050565b600067ffffffffffffffff821115613bb057613baf613b1a565b5b613bb9826137fd565b9050602081019050919050565b82818337600083830152505050565b6000613be8613be384613b95565b613b7a565b905082815260208101848484011115613c0457613c03613b15565b5b613c0f848285613bc6565b509392505050565b600082601f830112613c2c57613c2b613b10565b5b8135613c3c848260208601613bd5565b91505092915050565b600060208284031215613c5b57613c5a613607565b5b600082013567ffffffffffffffff811115613c7957613c7861360c565b5b613c8584828501613c17565b91505092915050565b613c9781613696565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613607565b5b6000613cdf85828601613715565b9250506020613cf085828601613ca5565b9150509250929050565b600067ffffffffffffffff821115613d1557613d14613b1a565b5b613d1e826137fd565b9050602081019050919050565b6000613d3e613d3984613cfa565b613b7a565b905082815260208101848484011115613d5a57613d59613b15565b5b613d65848285613bc6565b509392505050565b600082601f830112613d8257613d81613b10565b5b8135613d92848260208601613d2b565b91505092915050565b60008060008060808587031215613db557613db4613607565b5b6000613dc387828801613715565b9450506020613dd487828801613715565b9350506040613de58782880161388a565b925050606085013567ffffffffffffffff811115613e0657613e0561360c565b5b613e1287828801613d6d565b91505092959194509250565b60008060408385031215613e3557613e34613607565b5b6000613e4385828601613715565b9250506020613e5485828601613715565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e946020836137b9565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1157607f821691505b60208210811415613f2557613f24613eca565b5b50919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613f87602d836137b9565b9150613f9282613f2b565b604082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ff782613869565b915061400283613869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403b5761403a613fbd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408082613869565b915061408b83613869565b92508261409b5761409a614046565b5b828204905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b60006141026029836137b9565b915061410d826140a6565b604082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061419d601f836137b9565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f6021836137b9565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f546865206e756d626572206f6620746f6b656e7320706572207472616e73616360008201527f74696f6e20657863656564732074686520616c6c6f776564206e756d62657200602082015250565b60006142c1603f836137b9565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b600061432d6020836137b9565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143bf602a836137b9565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061442b601f836137b9565b9150614436826143f5565b602082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b600061446c82613869565b915061447783613869565b92508282101561448a57614489613fbd565b5b828203905092915050565b60006144a082613869565b91506144ab83613869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e0576144df613fbd565b5b828201905092915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006145216015836137b9565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461458481613ef9565b61458e8186614557565b945060018216600081146145a957600181146145ba576145ed565b60ff198316865281860193506145ed565b6145c385614562565b60005b838110156145e5578154818901526001820191506020810190506145c6565b838801955050505b50505092915050565b6000614601826137ae565b61460b8185614557565b935061461b8185602086016137ca565b80840191505092915050565b60006146338285614577565b915061463f82846145f6565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614681600583614557565b915061468c8261464b565b600582019050919050565b60006146a38285614577565b91506146af82846145f6565b91506146ba82614674565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147226026836137b9565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b4602a836137b9565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006148206019836137b9565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061488c601b836137b9565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148e9826148c2565b6148f381856148cd565b93506149038185602086016137ca565b61490c816137fd565b840191505092915050565b600060808201905061492c60008301876138cc565b61493960208301866138cc565b6149466040830185613936565b818103606083015261495881846148de565b905095945050505050565b6000815190506149728161363d565b92915050565b60006020828403121561498e5761498d613607565b5b600061499c84828501614963565b91505092915050565b60006149b082613869565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2613fbd565b5b600182019050919050565b60006149f982613869565b9150614a0483613869565b925082614a1457614a13614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220022931438431f34de632aee4de1ac55c73f1cd51a7d2b8c02917e11845008c6a64736f6c634300080a0033

Deployed Bytecode Sourcemap

75856:5598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81247:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81069:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76231:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77480:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70596:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;78069:89;;;;;;;;;;;;;:::i;:::-;;77331:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76868:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77963:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76109:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79271:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75963:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80640:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;77701:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80875:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76044:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80028:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80749:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78166:1097;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79386:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80378:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80504:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76190:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76149:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81247:204;81378:4;81407:36;81431:11;81407:23;:36::i;:::-;81400:43;;81247:204;;;:::o;81069:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81187:44:::1;81206:8;81216:14;81187:18;:44::i;:::-;81069:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;76231:30::-;;;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;77480:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77574:21:::1;77564:6;:31;;77556:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;77664:2;77656:20;;:28;77677:6;77656:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77480:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;70596:494::-;70740:7;70749;70774:26;70803:17;:27;70821:8;70803:27;;;;;;;;;;;70774:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70875:1;70847:30;;:7;:16;;;:30;;;70843:92;;;70904:19;70894:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70843:92;70947:21;71012:17;:15;:17::i;:::-;70971:58;;70985:7;:23;;;70972:36;;:10;:36;;;;:::i;:::-;70971:58;;;;:::i;:::-;70947:82;;71050:7;:16;;;71068:13;71042:40;;;;;;70596:494;;;;;:::o;78069:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78138:12:::1;;;;;;;;;;;78137:13;78122:12;;:28;;;;;;;;;;;;;;;;;;78069:89::o:0;77331:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77379:12:::1;77394:21;77379:36;;77434:10;77426:28;;:37;77455:7;77426:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77368:103;77331:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;76868:455::-;76923:18;;:::i;:::-;76961:354;;;;;;;;77000:10;;76961:354;;;;77041:14;;76961:354;;;;77082:10;;76961:354;;;;77121:12;;;;;;;;;;;76961:354;;;;;;77169:13;:11;:13::i;:::-;76961:354;;;;77218:21;77232:6;77218:13;:21::i;:::-;76961:354;;;;77272:23;:31;77296:6;77272:31;;;;;;;;;;;;;;;;76961:354;;;76954:361;;76868:455;;;:::o;77963:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78043:6:::1;78033:7;:16;;;;;;;;;;;;:::i;:::-;;77963:94:::0;:::o;76109:31::-;;;;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;79271:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79357:13:::1;79344:10;:26;;;;79271:107:::0;:::o;75963:72::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80640:101::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80723:10:::1;80710;:23;;;;80640:101:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;77701:241::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77838:10:::1;;77801:33;77819:14;77801:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;77793:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;77905:29;77915:2;77919:14;77905:9;:29::i;:::-;77701:241:::0;;:::o;80875:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80970:15:::1;80953:14;:32;;;;80875:118:::0;:::o;76044:44::-;;;;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;80028:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80109:1:::1;80101:4;:9;80097:147;;;80142:21;80127:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80097:147;;;80211:21;80196:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;80097:147;80028:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;80749:118::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80844:15:::1;80827:14;:32;;;;80749:118:::0;:::o;78166:1097::-;74907:1;75505:7;;:19;;75497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;74907:1;75638:7;:18;;;;78253:12:::1;;;;;;;;;;;78245:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;78340:14;;78322;:32;;78314:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;78458:1;78441:14;:18;78433:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;78552:10;;78515:33;78533:14;78515:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;78507:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;78622:14;78639:25;78653:10;78639:13;:25::i;:::-;78622:42;;78675:17;78734:23;:35;78758:10;78734:35;;;;;;;;;;;;;;;;78716:14;;:53;;:81;;;;78791:6;78773:14;;:24;;78716:81;78711:355;;;78852:10;;78835:14;:27;;;;:::i;:::-;78822:9;:40;;78814:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78711:355;;;78975:10;;78970:1;78953:14;:18;;;;:::i;:::-;78952:33;;;;:::i;:::-;78939:9;:46;;78931:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;79050:4;79036:18;;78711:355;79086:37;79096:10;79108:14;79086:9;:37::i;:::-;79139:12;79136:120;;;79243:1;79205:23;:35;79229:10;79205:35;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;79167:23;:35;79191:10;79167:35;;;;;;;;;;;;;;;:77;;;;79136:120;78234:1029;;74863:1:::0;75817:7;:22;;;;78166:1097;:::o;79386:634::-;79452:13;79492:17;79500:8;79492:7;:17::i;:::-;79484:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;79566:21;79550:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;79546:467;;;79633:1;79615:7;79609:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;79691:7;79715:26;79732:8;79715:16;:26::i;:::-;79658:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79609:165;79602:172;;;;79546:467;79836:1;79818:7;79812:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;79894:7;79918:26;79935:8;79918:16;:26::i;:::-;79861:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79812:189;79805:196;;79386:634;;;;:::o;80378:113::-;80436:7;80463:20;80477:5;80463:13;:20::i;:::-;80456:27;;80378:113;;;:::o;80504:127::-;80566:7;80593:23;:30;80617:5;80593:30;;;;;;;;;;;;;;;;80586:37;;80504:127;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;76190:32::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;76149:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;70326:215::-;70428:4;70467:26;70452:41;;;:11;:41;;;;:81;;;;70497:36;70521:11;70497:23;:36::i;:::-;70452:81;70445:88;;70326:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;71740:332::-;71859:17;:15;:17::i;:::-;71843:33;;:12;:33;;;;71835:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71962:1;71942:22;;:8;:22;;;;71934:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72029:35;;;;;;;;72041:8;72029:35;;;;;;72051:12;72029:35;;;;;72007:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71740:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;71372:97::-;71430:6;71456:5;71449:12;;71372:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;63559:179::-;63617:7;63637:9;63653:1;63649;:5;;;;:::i;:::-;63637:17;;63678:1;63673;:6;;63665:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63729:1;63722:8;;;63559:179;;;;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:329::-;7654:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:119;;;7709:79;;:::i;:::-;7671:119;7829:1;7854:53;7899:7;7890:6;7879:9;7875:22;7854:53;:::i;:::-;7844:63;;7800:117;7595:329;;;;:::o;7930:108::-;8007:24;8025:5;8007:24;:::i;:::-;8002:3;7995:37;7930:108;;:::o;8044:99::-;8115:21;8130:5;8115:21;:::i;:::-;8110:3;8103:34;8044:99;;:::o;8217:1432::-;8372:4;8367:3;8363:14;8465:4;8458:5;8454:16;8448:23;8484:63;8541:4;8536:3;8532:14;8518:12;8484:63;:::i;:::-;8387:170;8649:4;8642:5;8638:16;8632:23;8668:63;8725:4;8720:3;8716:14;8702:12;8668:63;:::i;:::-;8567:174;8829:4;8822:5;8818:16;8812:23;8848:63;8905:4;8900:3;8896:14;8882:12;8848:63;:::i;:::-;8751:170;9011:4;9004:5;9000:16;8994:23;9030:57;9081:4;9076:3;9072:14;9058:12;9030:57;:::i;:::-;8931:166;9186:4;9179:5;9175:16;9169:23;9205:63;9262:4;9257:3;9253:14;9239:12;9205:63;:::i;:::-;9107:171;9366:4;9359:5;9355:16;9349:23;9385:63;9442:4;9437:3;9433:14;9419:12;9385:63;:::i;:::-;9288:170;9550:4;9543:5;9539:16;9533:23;9569:63;9626:4;9621:3;9617:14;9603:12;9569:63;:::i;:::-;9468:174;8341:1308;8217:1432;;:::o;9655:339::-;9806:4;9844:3;9833:9;9829:19;9821:27;;9858:129;9984:1;9973:9;9969:17;9960:6;9858:129;:::i;:::-;9655:339;;;;:::o;10000:117::-;10109:1;10106;10099:12;10123:117;10232:1;10229;10222:12;10246:180;10294:77;10291:1;10284:88;10391:4;10388:1;10381:15;10415:4;10412:1;10405:15;10432:281;10515:27;10537:4;10515:27;:::i;:::-;10507:6;10503:40;10645:6;10633:10;10630:22;10609:18;10597:10;10594:34;10591:62;10588:88;;;10656:18;;:::i;:::-;10588:88;10696:10;10692:2;10685:22;10475:238;10432:281;;:::o;10719:129::-;10753:6;10780:20;;:::i;:::-;10770:30;;10809:33;10837:4;10829:6;10809:33;:::i;:::-;10719:129;;;:::o;10854:308::-;10916:4;11006:18;10998:6;10995:30;10992:56;;;11028:18;;:::i;:::-;10992:56;11066:29;11088:6;11066:29;:::i;:::-;11058:37;;11150:4;11144;11140:15;11132:23;;10854:308;;;:::o;11168:154::-;11252:6;11247:3;11242;11229:30;11314:1;11305:6;11300:3;11296:16;11289:27;11168:154;;;:::o;11328:412::-;11406:5;11431:66;11447:49;11489:6;11447:49;:::i;:::-;11431:66;:::i;:::-;11422:75;;11520:6;11513:5;11506:21;11558:4;11551:5;11547:16;11596:3;11587:6;11582:3;11578:16;11575:25;11572:112;;;11603:79;;:::i;:::-;11572:112;11693:41;11727:6;11722:3;11717;11693:41;:::i;:::-;11412:328;11328:412;;;;;:::o;11760:340::-;11816:5;11865:3;11858:4;11850:6;11846:17;11842:27;11832:122;;11873:79;;:::i;:::-;11832:122;11990:6;11977:20;12015:79;12090:3;12082:6;12075:4;12067:6;12063:17;12015:79;:::i;:::-;12006:88;;11822:278;11760:340;;;;:::o;12106:509::-;12175:6;12224:2;12212:9;12203:7;12199:23;12195:32;12192:119;;;12230:79;;:::i;:::-;12192:119;12378:1;12367:9;12363:17;12350:31;12408:18;12400:6;12397:30;12394:117;;;12430:79;;:::i;:::-;12394:117;12535:63;12590:7;12581:6;12570:9;12566:22;12535:63;:::i;:::-;12525:73;;12321:287;12106:509;;;;:::o;12621:116::-;12691:21;12706:5;12691:21;:::i;:::-;12684:5;12681:32;12671:60;;12727:1;12724;12717:12;12671:60;12621:116;:::o;12743:133::-;12786:5;12824:6;12811:20;12802:29;;12840:30;12864:5;12840:30;:::i;:::-;12743:133;;;;:::o;12882:468::-;12947:6;12955;13004:2;12992:9;12983:7;12979:23;12975:32;12972:119;;;13010:79;;:::i;:::-;12972:119;13130:1;13155:53;13200:7;13191:6;13180:9;13176:22;13155:53;:::i;:::-;13145:63;;13101:117;13257:2;13283:50;13325:7;13316:6;13305:9;13301:22;13283:50;:::i;:::-;13273:60;;13228:115;12882:468;;;;;:::o;13356:307::-;13417:4;13507:18;13499:6;13496:30;13493:56;;;13529:18;;:::i;:::-;13493:56;13567:29;13589:6;13567:29;:::i;:::-;13559:37;;13651:4;13645;13641:15;13633:23;;13356:307;;;:::o;13669:410::-;13746:5;13771:65;13787:48;13828:6;13787:48;:::i;:::-;13771:65;:::i;:::-;13762:74;;13859:6;13852:5;13845:21;13897:4;13890:5;13886:16;13935:3;13926:6;13921:3;13917:16;13914:25;13911:112;;;13942:79;;:::i;:::-;13911:112;14032:41;14066:6;14061:3;14056;14032:41;:::i;:::-;13752:327;13669:410;;;;;:::o;14098:338::-;14153:5;14202:3;14195:4;14187:6;14183:17;14179:27;14169:122;;14210:79;;:::i;:::-;14169:122;14327:6;14314:20;14352:78;14426:3;14418:6;14411:4;14403:6;14399:17;14352:78;:::i;:::-;14343:87;;14159:277;14098:338;;;;:::o;14442:943::-;14537:6;14545;14553;14561;14610:3;14598:9;14589:7;14585:23;14581:33;14578:120;;;14617:79;;:::i;:::-;14578:120;14737:1;14762:53;14807:7;14798:6;14787:9;14783:22;14762:53;:::i;:::-;14752:63;;14708:117;14864:2;14890:53;14935:7;14926:6;14915:9;14911:22;14890:53;:::i;:::-;14880:63;;14835:118;14992:2;15018:53;15063:7;15054:6;15043:9;15039:22;15018:53;:::i;:::-;15008:63;;14963:118;15148:2;15137:9;15133:18;15120:32;15179:18;15171:6;15168:30;15165:117;;;15201:79;;:::i;:::-;15165:117;15306:62;15360:7;15351:6;15340:9;15336:22;15306:62;:::i;:::-;15296:72;;15091:287;14442:943;;;;;;;:::o;15391:474::-;15459:6;15467;15516:2;15504:9;15495:7;15491:23;15487:32;15484:119;;;15522:79;;:::i;:::-;15484:119;15642:1;15667:53;15712:7;15703:6;15692:9;15688:22;15667:53;:::i;:::-;15657:63;;15613:117;15769:2;15795:53;15840:7;15831:6;15820:9;15816:22;15795:53;:::i;:::-;15785:63;;15740:118;15391:474;;;;;:::o;15871:182::-;16011:34;16007:1;15999:6;15995:14;15988:58;15871:182;:::o;16059:366::-;16201:3;16222:67;16286:2;16281:3;16222:67;:::i;:::-;16215:74;;16298:93;16387:3;16298:93;:::i;:::-;16416:2;16411:3;16407:12;16400:19;;16059:366;;;:::o;16431:419::-;16597:4;16635:2;16624:9;16620:18;16612:26;;16684:9;16678:4;16674:20;16670:1;16659:9;16655:17;16648:47;16712:131;16838:4;16712:131;:::i;:::-;16704:139;;16431:419;;;:::o;16856:180::-;16904:77;16901:1;16894:88;17001:4;16998:1;16991:15;17025:4;17022:1;17015:15;17042:320;17086:6;17123:1;17117:4;17113:12;17103:22;;17170:1;17164:4;17160:12;17191:18;17181:81;;17247:4;17239:6;17235:17;17225:27;;17181:81;17309:2;17301:6;17298:14;17278:18;17275:38;17272:84;;;17328:18;;:::i;:::-;17272:84;17093:269;17042:320;;;:::o;17368:232::-;17508:34;17504:1;17496:6;17492:14;17485:58;17577:15;17572:2;17564:6;17560:15;17553:40;17368:232;:::o;17606:366::-;17748:3;17769:67;17833:2;17828:3;17769:67;:::i;:::-;17762:74;;17845:93;17934:3;17845:93;:::i;:::-;17963:2;17958:3;17954:12;17947:19;;17606:366;;;:::o;17978:419::-;18144:4;18182:2;18171:9;18167:18;18159:26;;18231:9;18225:4;18221:20;18217:1;18206:9;18202:17;18195:47;18259:131;18385:4;18259:131;:::i;:::-;18251:139;;17978:419;;;:::o;18403:180::-;18451:77;18448:1;18441:88;18548:4;18545:1;18538:15;18572:4;18569:1;18562:15;18589:348;18629:7;18652:20;18670:1;18652:20;:::i;:::-;18647:25;;18686:20;18704:1;18686:20;:::i;:::-;18681:25;;18874:1;18806:66;18802:74;18799:1;18796:81;18791:1;18784:9;18777:17;18773:105;18770:131;;;18881:18;;:::i;:::-;18770:131;18929:1;18926;18922:9;18911:20;;18589:348;;;;:::o;18943:180::-;18991:77;18988:1;18981:88;19088:4;19085:1;19078:15;19112:4;19109:1;19102:15;19129:185;19169:1;19186:20;19204:1;19186:20;:::i;:::-;19181:25;;19220:20;19238:1;19220:20;:::i;:::-;19215:25;;19259:1;19249:35;;19264:18;;:::i;:::-;19249:35;19306:1;19303;19299:9;19294:14;;19129:185;;;;:::o;19320:228::-;19460:34;19456:1;19448:6;19444:14;19437:58;19529:11;19524:2;19516:6;19512:15;19505:36;19320:228;:::o;19554:366::-;19696:3;19717:67;19781:2;19776:3;19717:67;:::i;:::-;19710:74;;19793:93;19882:3;19793:93;:::i;:::-;19911:2;19906:3;19902:12;19895:19;;19554:366;;;:::o;19926:419::-;20092:4;20130:2;20119:9;20115:18;20107:26;;20179:9;20173:4;20169:20;20165:1;20154:9;20150:17;20143:47;20207:131;20333:4;20207:131;:::i;:::-;20199:139;;19926:419;;;:::o;20351:180::-;20399:77;20396:1;20389:88;20496:4;20493:1;20486:15;20520:4;20517:1;20510:15;20537:181;20677:33;20673:1;20665:6;20661:14;20654:57;20537:181;:::o;20724:366::-;20866:3;20887:67;20951:2;20946:3;20887:67;:::i;:::-;20880:74;;20963:93;21052:3;20963:93;:::i;:::-;21081:2;21076:3;21072:12;21065:19;;20724:366;;;:::o;21096:419::-;21262:4;21300:2;21289:9;21285:18;21277:26;;21349:9;21343:4;21339:20;21335:1;21324:9;21320:17;21313:47;21377:131;21503:4;21377:131;:::i;:::-;21369:139;;21096:419;;;:::o;21521:220::-;21661:34;21657:1;21649:6;21645:14;21638:58;21730:3;21725:2;21717:6;21713:15;21706:28;21521:220;:::o;21747:366::-;21889:3;21910:67;21974:2;21969:3;21910:67;:::i;:::-;21903:74;;21986:93;22075:3;21986:93;:::i;:::-;22104:2;22099:3;22095:12;22088:19;;21747:366;;;:::o;22119:419::-;22285:4;22323:2;22312:9;22308:18;22300:26;;22372:9;22366:4;22362:20;22358:1;22347:9;22343:17;22336:47;22400:131;22526:4;22400:131;:::i;:::-;22392:139;;22119:419;;;:::o;22544:250::-;22684:34;22680:1;22672:6;22668:14;22661:58;22753:33;22748:2;22740:6;22736:15;22729:58;22544:250;:::o;22800:366::-;22942:3;22963:67;23027:2;23022:3;22963:67;:::i;:::-;22956:74;;23039:93;23128:3;23039:93;:::i;:::-;23157:2;23152:3;23148:12;23141:19;;22800:366;;;:::o;23172:419::-;23338:4;23376:2;23365:9;23361:18;23353:26;;23425:9;23419:4;23415:20;23411:1;23400:9;23396:17;23389:47;23453:131;23579:4;23453:131;:::i;:::-;23445:139;;23172:419;;;:::o;23597:182::-;23737:34;23733:1;23725:6;23721:14;23714:58;23597:182;:::o;23785:366::-;23927:3;23948:67;24012:2;24007:3;23948:67;:::i;:::-;23941:74;;24024:93;24113:3;24024:93;:::i;:::-;24142:2;24137:3;24133:12;24126:19;;23785:366;;;:::o;24157:419::-;24323:4;24361:2;24350:9;24346:18;24338:26;;24410:9;24404:4;24400:20;24396:1;24385:9;24381:17;24374:47;24438:131;24564:4;24438:131;:::i;:::-;24430:139;;24157:419;;;:::o;24582:229::-;24722:34;24718:1;24710:6;24706:14;24699:58;24791:12;24786:2;24778:6;24774:15;24767:37;24582:229;:::o;24817:366::-;24959:3;24980:67;25044:2;25039:3;24980:67;:::i;:::-;24973:74;;25056:93;25145:3;25056:93;:::i;:::-;25174:2;25169:3;25165:12;25158:19;;24817:366;;;:::o;25189:419::-;25355:4;25393:2;25382:9;25378:18;25370:26;;25442:9;25436:4;25432:20;25428:1;25417:9;25413:17;25406:47;25470:131;25596:4;25470:131;:::i;:::-;25462:139;;25189:419;;;:::o;25614:181::-;25754:33;25750:1;25742:6;25738:14;25731:57;25614:181;:::o;25801:366::-;25943:3;25964:67;26028:2;26023:3;25964:67;:::i;:::-;25957:74;;26040:93;26129:3;26040:93;:::i;:::-;26158:2;26153:3;26149:12;26142:19;;25801:366;;;:::o;26173:419::-;26339:4;26377:2;26366:9;26362:18;26354:26;;26426:9;26420:4;26416:20;26412:1;26401:9;26397:17;26390:47;26454:131;26580:4;26454:131;:::i;:::-;26446:139;;26173:419;;;:::o;26598:191::-;26638:4;26658:20;26676:1;26658:20;:::i;:::-;26653:25;;26692:20;26710:1;26692:20;:::i;:::-;26687:25;;26731:1;26728;26725:8;26722:34;;;26736:18;;:::i;:::-;26722:34;26781:1;26778;26774:9;26766:17;;26598:191;;;;:::o;26795:305::-;26835:3;26854:20;26872:1;26854:20;:::i;:::-;26849:25;;26888:20;26906:1;26888:20;:::i;:::-;26883:25;;27042:1;26974:66;26970:74;26967:1;26964:81;26961:107;;;27048:18;;:::i;:::-;26961:107;27092:1;27089;27085:9;27078:16;;26795:305;;;;:::o;27106:171::-;27246:23;27242:1;27234:6;27230:14;27223:47;27106:171;:::o;27283:366::-;27425:3;27446:67;27510:2;27505:3;27446:67;:::i;:::-;27439:74;;27522:93;27611:3;27522:93;:::i;:::-;27640:2;27635:3;27631:12;27624:19;;27283:366;;;:::o;27655:419::-;27821:4;27859:2;27848:9;27844:18;27836:26;;27908:9;27902:4;27898:20;27894:1;27883:9;27879:17;27872:47;27936:131;28062:4;27936:131;:::i;:::-;27928:139;;27655:419;;;:::o;28080:148::-;28182:11;28219:3;28204:18;;28080:148;;;;:::o;28234:141::-;28283:4;28306:3;28298:11;;28329:3;28326:1;28319:14;28363:4;28360:1;28350:18;28342:26;;28234:141;;;:::o;28405:845::-;28508:3;28545:5;28539:12;28574:36;28600:9;28574:36;:::i;:::-;28626:89;28708:6;28703:3;28626:89;:::i;:::-;28619:96;;28746:1;28735:9;28731:17;28762:1;28757:137;;;;28908:1;28903:341;;;;28724:520;;28757:137;28841:4;28837:9;28826;28822:25;28817:3;28810:38;28877:6;28872:3;28868:16;28861:23;;28757:137;;28903:341;28970:38;29002:5;28970:38;:::i;:::-;29030:1;29044:154;29058:6;29055:1;29052:13;29044:154;;;29132:7;29126:14;29122:1;29117:3;29113:11;29106:35;29182:1;29173:7;29169:15;29158:26;;29080:4;29077:1;29073:12;29068:17;;29044:154;;;29227:6;29222:3;29218:16;29211:23;;28910:334;;28724:520;;28512:738;;28405:845;;;;:::o;29256:377::-;29362:3;29390:39;29423:5;29390:39;:::i;:::-;29445:89;29527:6;29522:3;29445:89;:::i;:::-;29438:96;;29543:52;29588:6;29583:3;29576:4;29569:5;29565:16;29543:52;:::i;:::-;29620:6;29615:3;29611:16;29604:23;;29366:267;29256:377;;;;:::o;29639:429::-;29816:3;29838:92;29926:3;29917:6;29838:92;:::i;:::-;29831:99;;29947:95;30038:3;30029:6;29947:95;:::i;:::-;29940:102;;30059:3;30052:10;;29639:429;;;;;:::o;30074:155::-;30214:7;30210:1;30202:6;30198:14;30191:31;30074:155;:::o;30235:400::-;30395:3;30416:84;30498:1;30493:3;30416:84;:::i;:::-;30409:91;;30509:93;30598:3;30509:93;:::i;:::-;30627:1;30622:3;30618:11;30611:18;;30235:400;;;:::o;30641:695::-;30919:3;30941:92;31029:3;31020:6;30941:92;:::i;:::-;30934:99;;31050:95;31141:3;31132:6;31050:95;:::i;:::-;31043:102;;31162:148;31306:3;31162:148;:::i;:::-;31155:155;;31327:3;31320:10;;30641:695;;;;;:::o;31342:225::-;31482:34;31478:1;31470:6;31466:14;31459:58;31551:8;31546:2;31538:6;31534:15;31527:33;31342:225;:::o;31573:366::-;31715:3;31736:67;31800:2;31795:3;31736:67;:::i;:::-;31729:74;;31812:93;31901:3;31812:93;:::i;:::-;31930:2;31925:3;31921:12;31914:19;;31573:366;;;:::o;31945:419::-;32111:4;32149:2;32138:9;32134:18;32126:26;;32198:9;32192:4;32188:20;32184:1;32173:9;32169:17;32162:47;32226:131;32352:4;32226:131;:::i;:::-;32218:139;;31945:419;;;:::o;32370:229::-;32510:34;32506:1;32498:6;32494:14;32487:58;32579:12;32574:2;32566:6;32562:15;32555:37;32370:229;:::o;32605:366::-;32747:3;32768:67;32832:2;32827:3;32768:67;:::i;:::-;32761:74;;32844:93;32933:3;32844:93;:::i;:::-;32962:2;32957:3;32953:12;32946:19;;32605:366;;;:::o;32977:419::-;33143:4;33181:2;33170:9;33166:18;33158:26;;33230:9;33224:4;33220:20;33216:1;33205:9;33201:17;33194:47;33258:131;33384:4;33258:131;:::i;:::-;33250:139;;32977:419;;;:::o;33402:175::-;33542:27;33538:1;33530:6;33526:14;33519:51;33402:175;:::o;33583:366::-;33725:3;33746:67;33810:2;33805:3;33746:67;:::i;:::-;33739:74;;33822:93;33911:3;33822:93;:::i;:::-;33940:2;33935:3;33931:12;33924:19;;33583:366;;;:::o;33955:419::-;34121:4;34159:2;34148:9;34144:18;34136:26;;34208:9;34202:4;34198:20;34194:1;34183:9;34179:17;34172:47;34236:131;34362:4;34236:131;:::i;:::-;34228:139;;33955:419;;;:::o;34380:177::-;34520:29;34516:1;34508:6;34504:14;34497:53;34380:177;:::o;34563:366::-;34705:3;34726:67;34790:2;34785:3;34726:67;:::i;:::-;34719:74;;34802:93;34891:3;34802:93;:::i;:::-;34920:2;34915:3;34911:12;34904:19;;34563:366;;;:::o;34935:419::-;35101:4;35139:2;35128:9;35124:18;35116:26;;35188:9;35182:4;35178:20;35174:1;35163:9;35159:17;35152:47;35216:131;35342:4;35216:131;:::i;:::-;35208:139;;34935:419;;;:::o;35360:98::-;35411:6;35445:5;35439:12;35429:22;;35360:98;;;:::o;35464:168::-;35547:11;35581:6;35576:3;35569:19;35621:4;35616:3;35612:14;35597:29;;35464:168;;;;:::o;35638:360::-;35724:3;35752:38;35784:5;35752:38;:::i;:::-;35806:70;35869:6;35864:3;35806:70;:::i;:::-;35799:77;;35885:52;35930:6;35925:3;35918:4;35911:5;35907:16;35885:52;:::i;:::-;35962:29;35984:6;35962:29;:::i;:::-;35957:3;35953:39;35946:46;;35728:270;35638:360;;;;:::o;36004:640::-;36199:4;36237:3;36226:9;36222:19;36214:27;;36251:71;36319:1;36308:9;36304:17;36295:6;36251:71;:::i;:::-;36332:72;36400:2;36389:9;36385:18;36376:6;36332:72;:::i;:::-;36414;36482:2;36471:9;36467:18;36458:6;36414:72;:::i;:::-;36533:9;36527:4;36523:20;36518:2;36507:9;36503:18;36496:48;36561:76;36632:4;36623:6;36561:76;:::i;:::-;36553:84;;36004:640;;;;;;;:::o;36650:141::-;36706:5;36737:6;36731:13;36722:22;;36753:32;36779:5;36753:32;:::i;:::-;36650:141;;;;:::o;36797:349::-;36866:6;36915:2;36903:9;36894:7;36890:23;36886:32;36883:119;;;36921:79;;:::i;:::-;36883:119;37041:1;37066:63;37121:7;37112:6;37101:9;37097:22;37066:63;:::i;:::-;37056:73;;37012:127;36797:349;;;;:::o;37152:233::-;37191:3;37214:24;37232:5;37214:24;:::i;:::-;37205:33;;37260:66;37253:5;37250:77;37247:103;;;37330:18;;:::i;:::-;37247:103;37377:1;37370:5;37366:13;37359:20;;37152:233;;;:::o;37391:176::-;37423:1;37440:20;37458:1;37440:20;:::i;:::-;37435:25;;37474:20;37492:1;37474:20;:::i;:::-;37469:25;;37513:1;37503:35;;37518:18;;:::i;:::-;37503:35;37559:1;37556;37552:9;37547:14;;37391:176;;;;:::o;37573:180::-;37621:77;37618:1;37611:88;37718:4;37715:1;37708:15;37742:4;37739:1;37732:15

Swarm Source

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