ETH Price: $3,048.98 (+2.89%)
Gas: 1 Gwei

Token

Papa Okay Bears (POB)
 

Overview

Max Total Supply

3,333 POB

Holders

989

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 POB
0xAfC6f259b238FCB10E58ad61aE8599BA51e2239E
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:
PapaOkayBears

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // 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 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 && 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 && !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() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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 This is 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 {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/POB.sol

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity 0.8.12;



contract NotOkayBears {
	function balanceOf(address owner) public view returns (uint256 balance){}
}

contract MamaOkayBears {
	function balanceOf(address owner) public view returns (uint256 balance){}
}

contract BabyOkayBears {
	function balanceOf(address owner) public view returns (uint256 balance){}
}
contract OkayBearsYacht {
	function balanceOf(address owner) public view returns (uint256 balance){}
}

contract PapaOkayBears is ERC721A, Ownable {

	uint public constant MAX_TOKENS = 3333;
	
	uint public CURR_MINT_COST = 0.0042 ether;
	
	//---- Round based supplies
	string private CURR_ROUND_NAME = "Okay Bears";
	uint private CURR_ROUND_SUPPLY = 3333;
	uint private CURR_ROUND_TIME = 0;
	uint private maxMintAmount = 5;
	uint private nftPerAddressLimit = 50;

	bool public hasSaleStarted = true;
	
	string public baseURI;
	
	mapping (address => uint) claimedTokens;

	NotOkayBears nob;
	MamaOkayBears mob;
	BabyOkayBears bob;
	OkayBearsYacht oby;


	constructor() ERC721A("Papa Okay Bears", "POB") {
		setBaseURI("http://api.mamaokaybears.com/pob/");
		nob = NotOkayBears(0x76B3AF5F0f9B89CA5a4f9fe6C58421dbE567062d);
		mob = MamaOkayBears(0x9548052b0428EBC1cbF52C7e3085C3664dA0C764);
		bob = BabyOkayBears(0x02d4CCfB596AC2a8b1878D3bf8A390730F42bba7);
		oby = OkayBearsYacht(0x4BEcbdf97747413A18C5a2a53321D09198d3a100);
	}


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

	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	function mintNFT(uint _mintAmount) external payable {
		require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
		require((_mintAmount  + balanceOf(msg.sender)) <= nftPerAddressLimit, "Max NFT per address exceeded");

		CURR_ROUND_SUPPLY -= _mintAmount;
		_safeMint(msg.sender, _mintAmount);
	}

	function claimFreeMints() external {
		require(hasSaleStarted == true, "Sale hasn't started");
		uint freeMints = determineFreeMints(msg.sender);
		require(freeMints > 0, "No claimable tokens available");
		require(freeMints <= CURR_ROUND_SUPPLY, "We're at max supply!");
		claimedTokens[msg.sender] += freeMints;
		
		CURR_ROUND_SUPPLY -= freeMints;
		_safeMint(msg.sender,freeMints);
	}

	function determineFreeMints(address owner) public view returns (uint)
	{
		uint freeMints = 0;
		uint bobBalance = bob.balanceOf(owner);
		uint mobBalance = mob.balanceOf(owner);
		uint nobBalance = nob.balanceOf(owner);
		uint obyBalance = oby.balanceOf(owner);

		if(bobBalance > 0)
			freeMints += 1;
		
		if(mobBalance > 0)
			freeMints += (mobBalance * 1);

		if(nobBalance > 0)
			freeMints += 1;

		if(obyBalance > 0)
			freeMints += 1;

		return freeMints - claimedTokens[owner];

	}
	

	function getInformations() external view returns (string memory, uint, uint, uint, uint,uint,uint, bool,bool)
	{
		return (CURR_ROUND_NAME,CURR_ROUND_SUPPLY,CURR_ROUND_TIME,CURR_MINT_COST,maxMintAmount,nftPerAddressLimit, totalSupply(), hasSaleStarted,false);
	}

	
	//only owner functions
	


	function setNewRound(uint _supply, uint cost, string memory name, uint perTransactionLimit, uint perAddressLimit, uint theTime, bool saleState) external onlyOwner {
		require(_supply <= (MAX_TOKENS - totalSupply()), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST = cost;
		CURR_ROUND_NAME = name;
		maxMintAmount = perTransactionLimit;
		nftPerAddressLimit = perAddressLimit;
		CURR_ROUND_TIME = theTime;
		hasSaleStarted = saleState;
	}

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

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((totalSupply() + numTokens) <= MAX_TOKENS, "Exceeded supply");
		CURR_ROUND_SUPPLY -= numTokens;
		_safeMint(recipient, numTokens);
	}

	function withdraw(uint amount) public onlyOwner {
		require(payable(msg.sender).send(amount));
	}
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}

	function setContractAddresses(address _mob, address _nob, address _bob, address _oby) external onlyOwner
	{
		mob = MamaOkayBears(_mob);
		nob = NotOkayBears(_nob);
		bob = BabyOkayBears(_bob);
		oby = OkayBearsYacht (_oby);
	}
	
}

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":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"determineFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mob","type":"address"},{"internalType":"address","name":"_nob","type":"address"},{"internalType":"address","name":"_bob","type":"address"},{"internalType":"address","name":"_oby","type":"address"}],"name":"setContractAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"perTransactionLimit","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"bool","name":"saleState","type":"bool"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660eebe0b40e80006009556040518060400160405280600a81526020017f4f6b617920426561727300000000000000000000000000000000000000000000815250600a90805190602001906200005c929190620004a1565b50610d05600b556000600c556005600d556032600e556001600f60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600f81526020017f50617061204f6b617920426561727300000000000000000000000000000000008152506040518060400160405280600381526020017f504f42000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011f929190620004a1565b50806003908051906020019062000138929190620004a1565b5062000149620002f560201b60201c565b60008190555050506200017162000165620002fe60201b60201c565b6200030660201b60201c565b6200019b6040518060600160405280602181526020016200485960219139620003cc60201b60201c565b7376b3af5f0f9b89ca5a4f9fe6c58421dbe567062d601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739548052b0428ebc1cbf52c7e3085c3664da0c764601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507302d4ccfb596ac2a8b1878d3bf8a390730f42bba7601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734becbdf97747413a18c5a2a53321d09198d3a100601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000639565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003dc620002fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004026200047760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200045b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045290620005b2565b60405180910390fd5b806010908051906020019062000473929190620004a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004af9062000603565b90600052602060002090601f016020900481019282620004d357600085556200051f565b82601f10620004ee57805160ff19168380011785556200051f565b828001600101855582156200051f579182015b828111156200051e57825182559160200191906001019062000501565b5b5090506200052e919062000532565b5090565b5b808211156200054d57600081600090555060010162000533565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200059a60208362000551565b9150620005a78262000562565b602082019050919050565b60006020820190508181036000830152620005cd816200058b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061c57607f821691505b60208210811415620006335762000632620005d4565b5b50919050565b61421080620006496000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063aaa6877711610095578063cc0b8d1511610064578063cc0b8d151461068f578063e985e9c5146106b8578063f2fde38b146106f5578063f47c84c51461071e576101d8565b8063aaa68777146105d5578063b88d4fde146105fe578063c342784414610627578063c87b56dd14610652576101d8565b806392642744116100d1578063926427441461053c57806395d89b4114610558578063a22cb46514610583578063a854ffba146105ac576101d8565b80636c0360eb1461049257806370a08231146104bd578063715018a6146104fa5780638da5cb5b14610511576101d8565b80631c8b232d1161017a5780633c5e310b116101495780633c5e310b146103d057806342842e0e1461040357806355f804b31461042c5780636352211e14610455576101d8565b80631c8b232d146103165780631e5c9d261461034157806323b872dd1461037e5780632e1a7d4d146103a7576101d8565b8063095ea7b3116101b6578063095ea7b314610282578063122fede9146102ab57806316b9f099146102d457806318160ddd146102eb576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906130ed565b610749565b6040516102119190613135565b60405180910390f35b34801561022657600080fd5b5061022f61082b565b60405161023c91906131e9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613241565b6108bd565b60405161027991906132af565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906132f6565b610939565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190613497565b610a44565b005b3480156102e057600080fd5b506102e9610b74565b005b3480156102f757600080fd5b50610300610cdb565b60405161030d9190613564565b60405180910390f35b34801561032257600080fd5b5061032b610cf2565b6040516103389190613135565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061357f565b610d05565b6040516103759190613564565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906135ac565b611052565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190613241565b611062565b005b3480156103dc57600080fd5b506103e561111f565b6040516103fa999897969594939291906135ff565b60405180910390f35b34801561040f57600080fd5b5061042a600480360381019061042591906135ac565b611201565b005b34801561043857600080fd5b50610453600480360381019061044e9190613693565b611221565b005b34801561046157600080fd5b5061047c60048036038101906104779190613241565b6112b7565b60405161048991906132af565b60405180910390f35b34801561049e57600080fd5b506104a76112cd565b6040516104b491906131e9565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df919061357f565b61135b565b6040516104f19190613564565b60405180910390f35b34801561050657600080fd5b5061050f61142b565b005b34801561051d57600080fd5b506105266114b3565b60405161053391906132af565b60405180910390f35b61055660048036038101906105519190613241565b6114dd565b005b34801561056457600080fd5b5061056d6116ce565b60405161057a91906131e9565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906136dc565b611760565b005b3480156105b857600080fd5b506105d360048036038101906105ce919061371c565b6118d8565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613749565b611971565b005b34801561060a57600080fd5b5061062560048036038101906106209190613851565b611af7565b005b34801561063357600080fd5b5061063c611b73565b6040516106499190613564565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190613241565b611b79565b60405161068691906131e9565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906138d4565b611c18565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613914565b611d12565b6040516106ec9190613135565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061357f565b611da6565b005b34801561072a57600080fd5b50610733611e9e565b6040516107409190613564565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610824575061082382611ea4565b5b9050919050565b60606002805461083a90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461086690613983565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611f0e565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610944826112b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ac576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109cb611f5c565b73ffffffffffffffffffffffffffffffffffffffff16141580156109fd57506109fb816109f6611f5c565b611d12565b155b15610a34576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3f838383611f64565b505050565b610a4c611f5c565b73ffffffffffffffffffffffffffffffffffffffff16610a6a6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790613a01565b60405180910390fd5b610ac8610cdb565b610d05610ad59190613a50565b871115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613ad0565b60405180910390fd5b86600b819055508560098190555084600a9080519060200190610b3b929190612f9b565b5083600d8190555082600e8190555081600c8190555080600f60006101000a81548160ff02191690831515021790555050505050505050565b60011515600f60009054906101000a900460ff16151514610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613b3c565b60405180910390fd5b6000610bd533610d05565b905060008111610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190613ba8565b60405180910390fd5b600b54811115610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613c14565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cae9190613c34565b9250508190555080600b6000828254610cc79190613a50565b92505081905550610cd83382612016565b50565b6000610ce5612034565b6001546000540303905090565b600f60009054906101000a900460ff1681565b600080600090506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610d6991906132af565b602060405180830381865afa158015610d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610daa9190613c9f565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401610e0991906132af565b602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190613c9f565b90506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401610ea991906132af565b602060405180830381865afa158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eea9190613c9f565b90506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401610f4991906132af565b602060405180830381865afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190613c9f565b90506000841115610fa557600185610fa29190613c34565b94505b6000831115610fc957600183610fbb9190613ccc565b85610fc69190613c34565b94505b6000821115610fe257600185610fdf9190613c34565b94505b6000811115610ffb57600185610ff89190613c34565b94505b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856110469190613a50565b95505050505050919050565b61105d83838361203d565b505050565b61106a611f5c565b73ffffffffffffffffffffffffffffffffffffffff166110886114b3565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613a01565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061111c57600080fd5b50565b6060600080600080600080600080600a600b54600c54600954600d54600e54611146610cdb565b600f60009054906101000a900460ff16600088805461116490613983565b80601f016020809104026020016040519081016040528092919081815260200182805461119090613983565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b61121c83838360405180602001604052806000815250611af7565b505050565b611229611f5c565b73ffffffffffffffffffffffffffffffffffffffff166112476114b3565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613a01565b60405180910390fd5b80601090805190602001906112b3929190612f9b565b5050565b60006112c2826124f3565b600001519050919050565b601080546112da90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613983565b80156113535780601f1061132857610100808354040283529160200191611353565b820191906000526020600020905b81548152906001019060200180831161133657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611433611f5c565b73ffffffffffffffffffffffffffffffffffffffff166114516114b3565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613a01565b60405180910390fd5b6114b16000612782565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b806009546114eb9190613ccc565b34101561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613d72565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613b3c565b60405180910390fd5b600081116115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613dde565b60405180910390fd5b600d5481111561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613e70565b60405180910390fd5b600b54811115611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613c14565b60405180910390fd5b600e5461165c3361135b565b826116679190613c34565b11156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90613edc565b60405180910390fd5b80600b60008282546116ba9190613a50565b925050819055506116cb3382612016565b50565b6060600380546116dd90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461170990613983565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b5050505050905090565b611768611f5c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117da611f5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611887611f5c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cc9190613135565b60405180910390a35050565b6118e0611f5c565b73ffffffffffffffffffffffffffffffffffffffff166118fe6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90613a01565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611979611f5c565b73ffffffffffffffffffffffffffffffffffffffff166119976114b3565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613a01565b60405180910390fd5b83601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b611b0284848461203d565b611b218373ffffffffffffffffffffffffffffffffffffffff16612848565b8015611b365750611b348484848461286b565b155b15611b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611b8482611f0e565b611bba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bc46129bc565b9050600081511415611be55760405180602001604052806000815250611c10565b80611bef84612a4e565b604051602001611c00929190613f38565b6040516020818303038152906040525b915050919050565b611c20611f5c565b73ffffffffffffffffffffffffffffffffffffffff16611c3e6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613a01565b60405180910390fd5b610d0582611ca0610cdb565b611caa9190613c34565b1115611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613ad0565b60405180910390fd5b81600b6000828254611cfd9190613a50565b92505081905550611d0e8183612016565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dae611f5c565b73ffffffffffffffffffffffffffffffffffffffff16611dcc6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613fce565b60405180910390fd5b611e9b81612782565b50565b610d0581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f19612034565b11158015611f28575060005482105b8015611f55575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612030828260405180602001604052806000815250612baf565b5050565b60006001905090565b6000612048826124f3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120d4611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614806121035750612102856120fd611f5c565b611d12565b5b806121485750612111611f5c565b73ffffffffffffffffffffffffffffffffffffffff16612130846108bd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612181576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f58585856001612bc1565b61220160008487611f64565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248157600054821461248057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ec8585856001612bc7565b5050505050565b6124fb613021565b600082905080612509612034565b11158015612518575060005481105b1561274b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161274957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262d57809250505061277d565b5b60011561274857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461274357809250505061277d565b61262e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612891611f5c565b8786866040518563ffffffff1660e01b81526004016128b39493929190614043565b6020604051808303816000875af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906140a4565b60015b612969573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b50600081511415612961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546129cb90613983565b80601f01602080910402602001604051908101604052809291908181526020018280546129f790613983565b8015612a445780601f10612a1957610100808354040283529160200191612a44565b820191906000526020600020905b815481529060010190602001808311612a2757829003601f168201915b5050505050905090565b60606000821415612a96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612baa565b600082905060005b60008214612ac8578080612ab1906140d1565b915050600a82612ac19190614149565b9150612a9e565b60008167ffffffffffffffff811115612ae457612ae3613340565b5b6040519080825280601f01601f191660200182016040528015612b165781602001600182028036833780820191505090505b5090505b60008514612ba357600182612b2f9190613a50565b9150600a85612b3e919061417a565b6030612b4a9190613c34565b60f81b818381518110612b6057612b5f6141ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b9c9190614149565b9450612b1a565b8093505050505b919050565b612bbc8383836001612bcd565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c826000868387612bc1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e4c5750612e4b8773ffffffffffffffffffffffffffffffffffffffff16612848565b5b15612f12575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec1600088848060010195508861286b565b612ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e52578260005414612f0d57600080fd5b612f7e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f13575b816000819055505050612f946000868387612bc7565b5050505050565b828054612fa790613983565b90600052602060002090601f016020900481019282612fc95760008555613010565b82601f10612fe257805160ff1916838001178555613010565b82800160010185558215613010579182015b8281111561300f578251825591602001919060010190612ff4565b5b50905061301d9190613064565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561307d576000816000905550600101613065565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ca81613095565b81146130d557600080fd5b50565b6000813590506130e7816130c1565b92915050565b6000602082840312156131035761310261308b565b5b6000613111848285016130d8565b91505092915050565b60008115159050919050565b61312f8161311a565b82525050565b600060208201905061314a6000830184613126565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561318a57808201518184015260208101905061316f565b83811115613199576000848401525b50505050565b6000601f19601f8301169050919050565b60006131bb82613150565b6131c5818561315b565b93506131d581856020860161316c565b6131de8161319f565b840191505092915050565b6000602082019050818103600083015261320381846131b0565b905092915050565b6000819050919050565b61321e8161320b565b811461322957600080fd5b50565b60008135905061323b81613215565b92915050565b6000602082840312156132575761325661308b565b5b60006132658482850161322c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132998261326e565b9050919050565b6132a98161328e565b82525050565b60006020820190506132c460008301846132a0565b92915050565b6132d38161328e565b81146132de57600080fd5b50565b6000813590506132f0816132ca565b92915050565b6000806040838503121561330d5761330c61308b565b5b600061331b858286016132e1565b925050602061332c8582860161322c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133788261319f565b810181811067ffffffffffffffff8211171561339757613396613340565b5b80604052505050565b60006133aa613081565b90506133b6828261336f565b919050565b600067ffffffffffffffff8211156133d6576133d5613340565b5b6133df8261319f565b9050602081019050919050565b82818337600083830152505050565b600061340e613409846133bb565b6133a0565b90508281526020810184848401111561342a5761342961333b565b5b6134358482856133ec565b509392505050565b600082601f83011261345257613451613336565b5b81356134628482602086016133fb565b91505092915050565b6134748161311a565b811461347f57600080fd5b50565b6000813590506134918161346b565b92915050565b600080600080600080600060e0888a0312156134b6576134b561308b565b5b60006134c48a828b0161322c565b97505060206134d58a828b0161322c565b965050604088013567ffffffffffffffff8111156134f6576134f5613090565b5b6135028a828b0161343d565b95505060606135138a828b0161322c565b94505060806135248a828b0161322c565b93505060a06135358a828b0161322c565b92505060c06135468a828b01613482565b91505092959891949750929550565b61355e8161320b565b82525050565b60006020820190506135796000830184613555565b92915050565b6000602082840312156135955761359461308b565b5b60006135a3848285016132e1565b91505092915050565b6000806000606084860312156135c5576135c461308b565b5b60006135d3868287016132e1565b93505060206135e4868287016132e1565b92505060406135f58682870161322c565b9150509250925092565b600061012082019050818103600083015261361a818c6131b0565b9050613629602083018b613555565b613636604083018a613555565b6136436060830189613555565b6136506080830188613555565b61365d60a0830187613555565b61366a60c0830186613555565b61367760e0830185613126565b613685610100830184613126565b9a9950505050505050505050565b6000602082840312156136a9576136a861308b565b5b600082013567ffffffffffffffff8111156136c7576136c6613090565b5b6136d38482850161343d565b91505092915050565b600080604083850312156136f3576136f261308b565b5b6000613701858286016132e1565b925050602061371285828601613482565b9150509250929050565b6000602082840312156137325761373161308b565b5b600061374084828501613482565b91505092915050565b600080600080608085870312156137635761376261308b565b5b6000613771878288016132e1565b9450506020613782878288016132e1565b9350506040613793878288016132e1565b92505060606137a4878288016132e1565b91505092959194509250565b600067ffffffffffffffff8211156137cb576137ca613340565b5b6137d48261319f565b9050602081019050919050565b60006137f46137ef846137b0565b6133a0565b9050828152602081018484840111156138105761380f61333b565b5b61381b8482856133ec565b509392505050565b600082601f83011261383857613837613336565b5b81356138488482602086016137e1565b91505092915050565b6000806000806080858703121561386b5761386a61308b565b5b6000613879878288016132e1565b945050602061388a878288016132e1565b935050604061389b8782880161322c565b925050606085013567ffffffffffffffff8111156138bc576138bb613090565b5b6138c887828801613823565b91505092959194509250565b600080604083850312156138eb576138ea61308b565b5b60006138f98582860161322c565b925050602061390a858286016132e1565b9150509250929050565b6000806040838503121561392b5761392a61308b565b5b6000613939858286016132e1565b925050602061394a858286016132e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061399b57607f821691505b602082108114156139af576139ae613954565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139eb60208361315b565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5b8261320b565b9150613a668361320b565b925082821015613a7957613a78613a21565b5b828203905092915050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b6000613aba600f8361315b565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b6000613b2660138361315b565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b7f4e6f20636c61696d61626c6520746f6b656e7320617661696c61626c65000000600082015250565b6000613b92601d8361315b565b9150613b9d82613b5c565b602082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b6000613bfe60148361315b565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f8261320b565b9150613c4a8361320b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7f57613c7e613a21565b5b828201905092915050565b600081519050613c9981613215565b92915050565b600060208284031215613cb557613cb461308b565b5b6000613cc384828501613c8a565b91505092915050565b6000613cd78261320b565b9150613ce28361320b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1b57613d1a613a21565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613d5c60128361315b565b9150613d6782613d26565b602082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613dc8601b8361315b565b9150613dd382613d92565b602082019050919050565b60006020820190508181036000830152613df781613dbb565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613e5a60288361315b565b9150613e6582613dfe565b604082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613ec6601c8361315b565b9150613ed182613e90565b602082019050919050565b60006020820190508181036000830152613ef581613eb9565b9050919050565b600081905092915050565b6000613f1282613150565b613f1c8185613efc565b9350613f2c81856020860161316c565b80840191505092915050565b6000613f448285613f07565b9150613f508284613f07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fb860268361315b565b9150613fc382613f5c565b604082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061401582613fee565b61401f8185613ff9565b935061402f81856020860161316c565b6140388161319f565b840191505092915050565b600060808201905061405860008301876132a0565b61406560208301866132a0565b6140726040830185613555565b8181036060830152614084818461400a565b905095945050505050565b60008151905061409e816130c1565b92915050565b6000602082840312156140ba576140b961308b565b5b60006140c88482850161408f565b91505092915050565b60006140dc8261320b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561410f5761410e613a21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141548261320b565b915061415f8361320b565b92508261416f5761416e61411a565b5b828204905092915050565b60006141858261320b565b91506141908361320b565b9250826141a05761419f61411a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e3b1d975c1571f892e32eab0651603003964e8b20086f317de817e94bd669a1164736f6c634300080c0033687474703a2f2f6170692e6d616d616f6b617962656172732e636f6d2f706f622f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063aaa6877711610095578063cc0b8d1511610064578063cc0b8d151461068f578063e985e9c5146106b8578063f2fde38b146106f5578063f47c84c51461071e576101d8565b8063aaa68777146105d5578063b88d4fde146105fe578063c342784414610627578063c87b56dd14610652576101d8565b806392642744116100d1578063926427441461053c57806395d89b4114610558578063a22cb46514610583578063a854ffba146105ac576101d8565b80636c0360eb1461049257806370a08231146104bd578063715018a6146104fa5780638da5cb5b14610511576101d8565b80631c8b232d1161017a5780633c5e310b116101495780633c5e310b146103d057806342842e0e1461040357806355f804b31461042c5780636352211e14610455576101d8565b80631c8b232d146103165780631e5c9d261461034157806323b872dd1461037e5780632e1a7d4d146103a7576101d8565b8063095ea7b3116101b6578063095ea7b314610282578063122fede9146102ab57806316b9f099146102d457806318160ddd146102eb576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906130ed565b610749565b6040516102119190613135565b60405180910390f35b34801561022657600080fd5b5061022f61082b565b60405161023c91906131e9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613241565b6108bd565b60405161027991906132af565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906132f6565b610939565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190613497565b610a44565b005b3480156102e057600080fd5b506102e9610b74565b005b3480156102f757600080fd5b50610300610cdb565b60405161030d9190613564565b60405180910390f35b34801561032257600080fd5b5061032b610cf2565b6040516103389190613135565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061357f565b610d05565b6040516103759190613564565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906135ac565b611052565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190613241565b611062565b005b3480156103dc57600080fd5b506103e561111f565b6040516103fa999897969594939291906135ff565b60405180910390f35b34801561040f57600080fd5b5061042a600480360381019061042591906135ac565b611201565b005b34801561043857600080fd5b50610453600480360381019061044e9190613693565b611221565b005b34801561046157600080fd5b5061047c60048036038101906104779190613241565b6112b7565b60405161048991906132af565b60405180910390f35b34801561049e57600080fd5b506104a76112cd565b6040516104b491906131e9565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df919061357f565b61135b565b6040516104f19190613564565b60405180910390f35b34801561050657600080fd5b5061050f61142b565b005b34801561051d57600080fd5b506105266114b3565b60405161053391906132af565b60405180910390f35b61055660048036038101906105519190613241565b6114dd565b005b34801561056457600080fd5b5061056d6116ce565b60405161057a91906131e9565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906136dc565b611760565b005b3480156105b857600080fd5b506105d360048036038101906105ce919061371c565b6118d8565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613749565b611971565b005b34801561060a57600080fd5b5061062560048036038101906106209190613851565b611af7565b005b34801561063357600080fd5b5061063c611b73565b6040516106499190613564565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190613241565b611b79565b60405161068691906131e9565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906138d4565b611c18565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613914565b611d12565b6040516106ec9190613135565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061357f565b611da6565b005b34801561072a57600080fd5b50610733611e9e565b6040516107409190613564565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610824575061082382611ea4565b5b9050919050565b60606002805461083a90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461086690613983565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611f0e565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610944826112b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ac576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109cb611f5c565b73ffffffffffffffffffffffffffffffffffffffff16141580156109fd57506109fb816109f6611f5c565b611d12565b155b15610a34576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3f838383611f64565b505050565b610a4c611f5c565b73ffffffffffffffffffffffffffffffffffffffff16610a6a6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790613a01565b60405180910390fd5b610ac8610cdb565b610d05610ad59190613a50565b871115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613ad0565b60405180910390fd5b86600b819055508560098190555084600a9080519060200190610b3b929190612f9b565b5083600d8190555082600e8190555081600c8190555080600f60006101000a81548160ff02191690831515021790555050505050505050565b60011515600f60009054906101000a900460ff16151514610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613b3c565b60405180910390fd5b6000610bd533610d05565b905060008111610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190613ba8565b60405180910390fd5b600b54811115610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613c14565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cae9190613c34565b9250508190555080600b6000828254610cc79190613a50565b92505081905550610cd83382612016565b50565b6000610ce5612034565b6001546000540303905090565b600f60009054906101000a900460ff1681565b600080600090506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610d6991906132af565b602060405180830381865afa158015610d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610daa9190613c9f565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401610e0991906132af565b602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190613c9f565b90506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401610ea991906132af565b602060405180830381865afa158015610ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eea9190613c9f565b90506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401610f4991906132af565b602060405180830381865afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190613c9f565b90506000841115610fa557600185610fa29190613c34565b94505b6000831115610fc957600183610fbb9190613ccc565b85610fc69190613c34565b94505b6000821115610fe257600185610fdf9190613c34565b94505b6000811115610ffb57600185610ff89190613c34565b94505b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856110469190613a50565b95505050505050919050565b61105d83838361203d565b505050565b61106a611f5c565b73ffffffffffffffffffffffffffffffffffffffff166110886114b3565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613a01565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061111c57600080fd5b50565b6060600080600080600080600080600a600b54600c54600954600d54600e54611146610cdb565b600f60009054906101000a900460ff16600088805461116490613983565b80601f016020809104026020016040519081016040528092919081815260200182805461119090613983565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b61121c83838360405180602001604052806000815250611af7565b505050565b611229611f5c565b73ffffffffffffffffffffffffffffffffffffffff166112476114b3565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613a01565b60405180910390fd5b80601090805190602001906112b3929190612f9b565b5050565b60006112c2826124f3565b600001519050919050565b601080546112da90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613983565b80156113535780601f1061132857610100808354040283529160200191611353565b820191906000526020600020905b81548152906001019060200180831161133657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611433611f5c565b73ffffffffffffffffffffffffffffffffffffffff166114516114b3565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613a01565b60405180910390fd5b6114b16000612782565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b806009546114eb9190613ccc565b34101561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613d72565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613b3c565b60405180910390fd5b600081116115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613dde565b60405180910390fd5b600d5481111561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613e70565b60405180910390fd5b600b54811115611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613c14565b60405180910390fd5b600e5461165c3361135b565b826116679190613c34565b11156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90613edc565b60405180910390fd5b80600b60008282546116ba9190613a50565b925050819055506116cb3382612016565b50565b6060600380546116dd90613983565b80601f016020809104026020016040519081016040528092919081815260200182805461170990613983565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b5050505050905090565b611768611f5c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117da611f5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611887611f5c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cc9190613135565b60405180910390a35050565b6118e0611f5c565b73ffffffffffffffffffffffffffffffffffffffff166118fe6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90613a01565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611979611f5c565b73ffffffffffffffffffffffffffffffffffffffff166119976114b3565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613a01565b60405180910390fd5b83601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b611b0284848461203d565b611b218373ffffffffffffffffffffffffffffffffffffffff16612848565b8015611b365750611b348484848461286b565b155b15611b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611b8482611f0e565b611bba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bc46129bc565b9050600081511415611be55760405180602001604052806000815250611c10565b80611bef84612a4e565b604051602001611c00929190613f38565b6040516020818303038152906040525b915050919050565b611c20611f5c565b73ffffffffffffffffffffffffffffffffffffffff16611c3e6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613a01565b60405180910390fd5b610d0582611ca0610cdb565b611caa9190613c34565b1115611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613ad0565b60405180910390fd5b81600b6000828254611cfd9190613a50565b92505081905550611d0e8183612016565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dae611f5c565b73ffffffffffffffffffffffffffffffffffffffff16611dcc6114b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613fce565b60405180910390fd5b611e9b81612782565b50565b610d0581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f19612034565b11158015611f28575060005482105b8015611f55575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612030828260405180602001604052806000815250612baf565b5050565b60006001905090565b6000612048826124f3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120d4611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614806121035750612102856120fd611f5c565b611d12565b5b806121485750612111611f5c565b73ffffffffffffffffffffffffffffffffffffffff16612130846108bd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612181576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f58585856001612bc1565b61220160008487611f64565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248157600054821461248057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ec8585856001612bc7565b5050505050565b6124fb613021565b600082905080612509612034565b11158015612518575060005481105b1561274b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161274957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262d57809250505061277d565b5b60011561274857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461274357809250505061277d565b61262e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612891611f5c565b8786866040518563ffffffff1660e01b81526004016128b39493929190614043565b6020604051808303816000875af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906140a4565b60015b612969573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b50600081511415612961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546129cb90613983565b80601f01602080910402602001604051908101604052809291908181526020018280546129f790613983565b8015612a445780601f10612a1957610100808354040283529160200191612a44565b820191906000526020600020905b815481529060010190602001808311612a2757829003601f168201915b5050505050905090565b60606000821415612a96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612baa565b600082905060005b60008214612ac8578080612ab1906140d1565b915050600a82612ac19190614149565b9150612a9e565b60008167ffffffffffffffff811115612ae457612ae3613340565b5b6040519080825280601f01601f191660200182016040528015612b165781602001600182028036833780820191505090505b5090505b60008514612ba357600182612b2f9190613a50565b9150600a85612b3e919061417a565b6030612b4a9190613c34565b60f81b818381518110612b6057612b5f6141ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b9c9190614149565b9450612b1a565b8093505050505b919050565b612bbc8383836001612bcd565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c826000868387612bc1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e4c5750612e4b8773ffffffffffffffffffffffffffffffffffffffff16612848565b5b15612f12575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec1600088848060010195508861286b565b612ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e52578260005414612f0d57600080fd5b612f7e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f13575b816000819055505050612f946000868387612bc7565b5050505050565b828054612fa790613983565b90600052602060002090601f016020900481019282612fc95760008555613010565b82601f10612fe257805160ff1916838001178555613010565b82800160010185558215613010579182015b8281111561300f578251825591602001919060010190612ff4565b5b50905061301d9190613064565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561307d576000816000905550600101613065565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ca81613095565b81146130d557600080fd5b50565b6000813590506130e7816130c1565b92915050565b6000602082840312156131035761310261308b565b5b6000613111848285016130d8565b91505092915050565b60008115159050919050565b61312f8161311a565b82525050565b600060208201905061314a6000830184613126565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561318a57808201518184015260208101905061316f565b83811115613199576000848401525b50505050565b6000601f19601f8301169050919050565b60006131bb82613150565b6131c5818561315b565b93506131d581856020860161316c565b6131de8161319f565b840191505092915050565b6000602082019050818103600083015261320381846131b0565b905092915050565b6000819050919050565b61321e8161320b565b811461322957600080fd5b50565b60008135905061323b81613215565b92915050565b6000602082840312156132575761325661308b565b5b60006132658482850161322c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132998261326e565b9050919050565b6132a98161328e565b82525050565b60006020820190506132c460008301846132a0565b92915050565b6132d38161328e565b81146132de57600080fd5b50565b6000813590506132f0816132ca565b92915050565b6000806040838503121561330d5761330c61308b565b5b600061331b858286016132e1565b925050602061332c8582860161322c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133788261319f565b810181811067ffffffffffffffff8211171561339757613396613340565b5b80604052505050565b60006133aa613081565b90506133b6828261336f565b919050565b600067ffffffffffffffff8211156133d6576133d5613340565b5b6133df8261319f565b9050602081019050919050565b82818337600083830152505050565b600061340e613409846133bb565b6133a0565b90508281526020810184848401111561342a5761342961333b565b5b6134358482856133ec565b509392505050565b600082601f83011261345257613451613336565b5b81356134628482602086016133fb565b91505092915050565b6134748161311a565b811461347f57600080fd5b50565b6000813590506134918161346b565b92915050565b600080600080600080600060e0888a0312156134b6576134b561308b565b5b60006134c48a828b0161322c565b97505060206134d58a828b0161322c565b965050604088013567ffffffffffffffff8111156134f6576134f5613090565b5b6135028a828b0161343d565b95505060606135138a828b0161322c565b94505060806135248a828b0161322c565b93505060a06135358a828b0161322c565b92505060c06135468a828b01613482565b91505092959891949750929550565b61355e8161320b565b82525050565b60006020820190506135796000830184613555565b92915050565b6000602082840312156135955761359461308b565b5b60006135a3848285016132e1565b91505092915050565b6000806000606084860312156135c5576135c461308b565b5b60006135d3868287016132e1565b93505060206135e4868287016132e1565b92505060406135f58682870161322c565b9150509250925092565b600061012082019050818103600083015261361a818c6131b0565b9050613629602083018b613555565b613636604083018a613555565b6136436060830189613555565b6136506080830188613555565b61365d60a0830187613555565b61366a60c0830186613555565b61367760e0830185613126565b613685610100830184613126565b9a9950505050505050505050565b6000602082840312156136a9576136a861308b565b5b600082013567ffffffffffffffff8111156136c7576136c6613090565b5b6136d38482850161343d565b91505092915050565b600080604083850312156136f3576136f261308b565b5b6000613701858286016132e1565b925050602061371285828601613482565b9150509250929050565b6000602082840312156137325761373161308b565b5b600061374084828501613482565b91505092915050565b600080600080608085870312156137635761376261308b565b5b6000613771878288016132e1565b9450506020613782878288016132e1565b9350506040613793878288016132e1565b92505060606137a4878288016132e1565b91505092959194509250565b600067ffffffffffffffff8211156137cb576137ca613340565b5b6137d48261319f565b9050602081019050919050565b60006137f46137ef846137b0565b6133a0565b9050828152602081018484840111156138105761380f61333b565b5b61381b8482856133ec565b509392505050565b600082601f83011261383857613837613336565b5b81356138488482602086016137e1565b91505092915050565b6000806000806080858703121561386b5761386a61308b565b5b6000613879878288016132e1565b945050602061388a878288016132e1565b935050604061389b8782880161322c565b925050606085013567ffffffffffffffff8111156138bc576138bb613090565b5b6138c887828801613823565b91505092959194509250565b600080604083850312156138eb576138ea61308b565b5b60006138f98582860161322c565b925050602061390a858286016132e1565b9150509250929050565b6000806040838503121561392b5761392a61308b565b5b6000613939858286016132e1565b925050602061394a858286016132e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061399b57607f821691505b602082108114156139af576139ae613954565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139eb60208361315b565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5b8261320b565b9150613a668361320b565b925082821015613a7957613a78613a21565b5b828203905092915050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b6000613aba600f8361315b565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b6000613b2660138361315b565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b7f4e6f20636c61696d61626c6520746f6b656e7320617661696c61626c65000000600082015250565b6000613b92601d8361315b565b9150613b9d82613b5c565b602082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b6000613bfe60148361315b565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f8261320b565b9150613c4a8361320b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7f57613c7e613a21565b5b828201905092915050565b600081519050613c9981613215565b92915050565b600060208284031215613cb557613cb461308b565b5b6000613cc384828501613c8a565b91505092915050565b6000613cd78261320b565b9150613ce28361320b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1b57613d1a613a21565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613d5c60128361315b565b9150613d6782613d26565b602082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613dc8601b8361315b565b9150613dd382613d92565b602082019050919050565b60006020820190508181036000830152613df781613dbb565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613e5a60288361315b565b9150613e6582613dfe565b604082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613ec6601c8361315b565b9150613ed182613e90565b602082019050919050565b60006020820190508181036000830152613ef581613eb9565b9050919050565b600081905092915050565b6000613f1282613150565b613f1c8185613efc565b9350613f2c81856020860161316c565b80840191505092915050565b6000613f448285613f07565b9150613f508284613f07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fb860268361315b565b9150613fc382613f5c565b604082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061401582613fee565b61401f8185613ff9565b935061402f81856020860161316c565b6140388161319f565b840191505092915050565b600060808201905061405860008301876132a0565b61406560208301866132a0565b6140726040830185613555565b8181036060830152614084818461400a565b905095945050505050565b60008151905061409e816130c1565b92915050565b6000602082840312156140ba576140b961308b565b5b60006140c88482850161408f565b91505092915050565b60006140dc8261320b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561410f5761410e613a21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141548261320b565b915061415f8361320b565b92508261416f5761416e61411a565b5b828204905092915050565b60006141858261320b565b91506141908361320b565b9250826141a05761419f61411a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e3b1d975c1571f892e32eab0651603003964e8b20086f317de817e94bd669a1164736f6c634300080c0033

Deployed Bytecode Sourcemap

45332:4220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29058:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28621:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48318:467;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47090:397;;;;;;;;;;;;;:::i;:::-;;23691:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45706:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47492:513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29923:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49116:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48013:265;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;30164:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48790:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27363:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45746:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24811:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43900:103;;;;;;;;;;;;;:::i;:::-;;43249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46492:593;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27724:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29334:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49221:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49313:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30420:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45426:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27899:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48890:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44158:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45381:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24442:305;24544:4;24596:25;24581:40;;;:11;:40;;;;:105;;;;24653:33;24638:48;;;:11;:48;;;;24581:105;:158;;;;24703:36;24727:11;24703:23;:36::i;:::-;24581:158;24561:178;;24442:305;;;:::o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;;;;;;;;;;;;;29146:64;29230:15;:24;29246:7;29230:24;;;;;;;;;;;;;;;;;;;;;29223:31;;29058:204;;;:::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;28749:11;;:2;:11;;;28745:48;;;28769:24;;;;;;;;;;;;;;28745:48;28826:5;28810:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28836:37;28853:5;28860:12;:10;:12::i;:::-;28836:16;:37::i;:::-;28835:38;28810:63;28806:138;;;28897:35;;;;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28683:309;28621:371;;:::o;48318:467::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48519:13:::1;:11;:13::i;:::-;45415:4;48506:26;;;;:::i;:::-;48494:7;:39;;48486:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48578:7;48558:17;:27;;;;48607:4;48590:14;:21;;;;48634:4;48616:15;:22;;;;;;;;;;;;:::i;:::-;;48659:19;48643:13;:35;;;;48704:15;48683:18;:36;;;;48742:7;48724:15;:25;;;;48771:9;48754:14;;:26;;;;;;;;;;;;;;;;;;48318:467:::0;;;;;;;:::o;47090:397::-;47156:4;47138:22;;:14;;;;;;;;;;;:22;;;47130:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;47189:14;47206:30;47225:10;47206:18;:30::i;:::-;47189:47;;47261:1;47249:9;:13;47241:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47322:17;;47309:9;:30;;47301:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47398:9;47369:13;:25;47383:10;47369:25;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;47437:9;47416:17;;:30;;;;;;;:::i;:::-;;;;;;;;47451:31;47461:10;47472:9;47451;:31::i;:::-;47125:362;47090:397::o;23691:303::-;23735:7;23960:15;:13;:15::i;:::-;23945:12;;23929:13;;:28;:46;23922:53;;23691:303;:::o;45706:33::-;;;;;;;;;;;;;:::o;47492:513::-;47556:4;47569:14;47586:1;47569:18;;47592:15;47610:3;;;;;;;;;;;:13;;;47624:5;47610:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47592:38;;47635:15;47653:3;;;;;;;;;;;:13;;;47667:5;47653:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47635:38;;47678:15;47696:3;;;;;;;;;;;:13;;;47710:5;47696:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47678:38;;47721:15;47739:3;;;;;;;;;;;:13;;;47753:5;47739:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47721:38;;47782:1;47769:10;:14;47766:37;;;47802:1;47789:14;;;;;:::i;:::-;;;47766:37;47828:1;47815:10;:14;47812:52;;;47862:1;47849:10;:14;;;;:::i;:::-;47835:29;;;;;:::i;:::-;;;47812:52;47887:1;47874:10;:14;47871:37;;;47907:1;47894:14;;;;;:::i;:::-;;;47871:37;47931:1;47918:10;:14;47915:37;;;47951:1;47938:14;;;;;:::i;:::-;;;47915:37;47978:13;:20;47992:5;47978:20;;;;;;;;;;;;;;;;47966:9;:32;;;;:::i;:::-;47959:39;;;;;;;47492:513;;;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;:::-;29923:170;;;:::o;49116:99::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49185:10:::1;49177:24;;:32;49202:6;49177:32;;;;;;;;;;;;;;;;;;;;;;;49169:41;;;::::0;::::1;;49116:99:::0;:::o;48013:265::-;48063:13;48078:4;48084;48090;48096;48101;48106;48112;48117;48138:15;48154:17;;48172:15;;48188:14;;48203:13;;48217:18;;48237:13;:11;:13::i;:::-;48252:14;;;;;;;;;;;48267:5;48130:143;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48013:265;;;;;;;;;:::o;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;:::-;30164:185;;;:::o;48790:95::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48869:11:::1;48859:7;:21;;;;;;;;;;;;:::i;:::-;;48790:95:::0;:::o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;;27447:33;;27363:125;;;:::o;45746:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24811:206::-;24875:7;24916:1;24899:19;;:5;:19;;;24895:60;;;24927:28;;;;;;;;;;;;;;24895:60;24981:12;:19;24994:5;24981:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24973:36;;24966:43;;24811:206;;;:::o;43900:103::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43965:30:::1;43992:1;43965:18;:30::i;:::-;43900:103::o:0;43249:87::-;43295:7;43322:6;;;;;;;;;;;43315:13;;43249:87;:::o;46492:593::-;46587:11;46570:14;;:28;;;;:::i;:::-;46557:9;:41;;46549:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46652:4;46634:22;;:14;;;;;;;;;;;:22;;;46626:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46707:1;46693:11;:15;46685:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46768:13;;46753:11;:28;;46745:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46854:17;;46839:11;:32;;46831:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46951:18;;46925:21;46935:10;46925:9;:21::i;:::-;46910:11;:36;;;;:::i;:::-;46909:60;;46901:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;47030:11;47009:17;;:32;;;;;;;:::i;:::-;;;;;;;;47046:34;47056:10;47068:11;47046:9;:34::i;:::-;46492:593;:::o;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:104;:::o;29334:287::-;29445:12;:10;:12::i;:::-;29433:24;;:8;:24;;;29429:54;;;29466:17;;;;;;;;;;;;;;29429:54;29541:8;29496:18;:32;29515:12;:10;:12::i;:::-;29496:32;;;;;;;;;;;;;;;:42;29529:8;29496:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29594:8;29565:48;;29580:12;:10;:12::i;:::-;29565:48;;;29604:8;29565:48;;;;;;:::i;:::-;;;;;;;;29334:287;;:::o;49221:87::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49297:6:::1;49280:14;;:23;;;;;;;;;;;;;;;;;;49221:87:::0;:::o;49313:233::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49445:4:::1;49425:3;;:25;;;;;;;;;;;;;;;;;;49474:4;49455:3;;:24;;;;;;;;;;;;;;;;;;49504:4;49484:3;;:25;;;;;;;;;;;;;;;;;;49536:4;49514:3;;:27;;;;;;;;;;;;;;;;;;49313:233:::0;;;;:::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;30630:15;:2;:13;;;:15::i;:::-;:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;;;;;;;;;;;;;30626:156;30420:369;;;;:::o;45426:41::-;;;;:::o;27899:318::-;27972:13;28003:16;28011:7;28003;:16::i;:::-;27998:59;;28028:29;;;;;;;;;;;;;;27998:59;28070:21;28094:10;:8;:10::i;:::-;28070:34;;28147:1;28128:7;28122:21;:26;;:87;;;;;;;;;;;;;;;;;28175:7;28184:18;:7;:16;:18::i;:::-;28158:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28122:87;28115:94;;;27899:318;;;:::o;48890:221::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45415:4:::1;48991:9;48975:13;:11;:13::i;:::-;:25;;;;:::i;:::-;48974:41;;48966:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49061:9;49040:17;;:30;;;;;;;:::i;:::-;;;;;;;;49075:31;49085:9;49096;49075;:31::i;:::-;48890:221:::0;;:::o;29692:164::-;29789:4;29813:18;:25;29832:5;29813:25;;;;;;;;;;;;;;;:35;29839:8;29813:35;;;;;;;;;;;;;;;;;;;;;;;;;29806:42;;29692:164;;;;:::o;44158:201::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44267:1:::1;44247:22;;:8;:22;;;;44239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44323:28;44342:8;44323:18;:28::i;:::-;44158:201:::0;:::o;45381:38::-;45415:4;45381:38;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;31044:174::-;31101:4;31144:7;31125:15;:13;:15::i;:::-;:26;;:53;;;;;31165:13;;31155:7;:23;31125:53;:85;;;;;31183:11;:20;31195:7;31183:20;;;;;;;;;;;:27;;;;;;;;;;;;31182:28;31125:85;31118:92;;31044:174;;;:::o;19958:98::-;20011:7;20038:10;20031:17;;19958:98;:::o;39201:196::-;39343:2;39316:15;:24;39332:7;39316:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39381:7;39377:2;39361:28;;39370:5;39361:28;;;;;;;;;;;;39201:196;;;:::o;31226:104::-;31295:27;31305:2;31309:8;31295:27;;;;;;;;;;;;:9;:27::i;:::-;31226:104;;:::o;46395:92::-;46460:7;46481:1;46474:8;;46395:92;:::o;34144:2130::-;34259:35;34297:21;34310:7;34297:12;:21::i;:::-;34259:59;;34357:4;34335:26;;:13;:18;;;:26;;;34331:67;;34370:28;;;;;;;;;;;;;;34331:67;34411:22;34453:4;34437:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34474:36;34491:4;34497:12;:10;:12::i;:::-;34474:16;:36::i;:::-;34437:73;:126;;;;34551:12;:10;:12::i;:::-;34527:36;;:20;34539:7;34527:11;:20::i;:::-;:36;;;34437:126;34411:153;;34582:17;34577:66;;34608:35;;;;;;;;;;;;;;34577:66;34672:1;34658:16;;:2;:16;;;34654:52;;;34683:23;;;;;;;;;;;;;;34654:52;34719:43;34741:4;34747:2;34751:7;34760:1;34719:21;:43::i;:::-;34827:35;34844:1;34848:7;34857:4;34827:8;:35::i;:::-;35188:1;35158:12;:18;35171:4;35158:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35232:1;35204:12;:16;35217:2;35204:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35250:31;35284:11;:20;35296:7;35284:20;;;;;;;;;;;35250:54;;35335:2;35319:8;:13;;;:18;;;;;;;;;;;;;;;;;;35385:15;35352:8;:23;;;:49;;;;;;;;;;;;;;;;;;35653:19;35685:1;35675:7;:11;35653:33;;35701:31;35735:11;:24;35747:11;35735:24;;;;;;;;;;;35701:58;;35803:1;35778:27;;:8;:13;;;;;;;;;;;;:27;;;35774:384;;;35988:13;;35973:11;:28;35969:174;;36042:4;36026:8;:13;;;:20;;;;;;;;;;;;;;;;;;36095:13;:28;;;36069:8;:23;;;:54;;;;;;;;;;;;;;;;;;35969:174;35774:384;35133:1036;;;36205:7;36201:2;36186:27;;36195:4;36186:27;;;;;;;;;;;;36224:42;36245:4;36251:2;36255:7;36264:1;36224:20;:42::i;:::-;34248:2026;;34144:2130;;;:::o;26192:1109::-;26254:21;;:::i;:::-;26288:12;26303:7;26288:22;;26371:4;26352:15;:13;:15::i;:::-;:23;;:47;;;;;26386:13;;26379:4;:20;26352:47;26348:886;;;26420:31;26454:11;:17;26466:4;26454:17;;;;;;;;;;;26420:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26495:9;:16;;;26490:729;;26566:1;26540:28;;:9;:14;;;:28;;;26536:101;;26604:9;26597:16;;;;;;26536:101;26939:261;26946:4;26939:261;;;26979:6;;;;;;;;27024:11;:17;27036:4;27024:17;;;;;;;;;;;27012:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27098:1;27072:28;;:9;:14;;;:28;;;27068:109;;27140:9;27133:16;;;;;;27068:109;26939:261;;;26490:729;26401:833;26348:886;27262:31;;;;;;;;;;;;;;26192:1109;;;;:::o;44519:191::-;44593:16;44612:6;;;;;;;;;;;44593:25;;44638:8;44629:6;;:17;;;;;;;;;;;;;;;;;;44693:8;44662:40;;44683:8;44662:40;;;;;;;;;;;;44582:128;44519:191;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;39889:667::-;40052:4;40089:2;40073:36;;;40110:12;:10;:12::i;:::-;40124:4;40130:7;40139:5;40073:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40069:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40324:1;40307:6;:13;:18;40303:235;;;40353:40;;;;;;;;;;;;;;40303:235;40496:6;40490:13;40481:6;40477:2;40473:15;40466:38;40069:480;40202:45;;;40192:55;;;:6;:55;;;;40185:62;;;39889:667;;;;;;:::o;46291:99::-;46351:13;46378:7;46371:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46291:99;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;31693:163::-;31816:32;31822:2;31826:8;31836:5;31843:4;31816:5;:32::i;:::-;31693:163;;;:::o;41204:159::-;;;;;:::o;42022:158::-;;;;;:::o;32115:1775::-;32254:20;32277:13;;32254:36;;32319:1;32305:16;;:2;:16;;;32301:48;;;32330:19;;;;;;;;;;;;;;32301:48;32376:1;32364:8;:13;32360:44;;;32386:18;;;;;;;;;;;;;;32360:44;32417:61;32447:1;32451:2;32455:12;32469:8;32417:21;:61::i;:::-;32790:8;32755:12;:16;32768:2;32755:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32854:8;32814:12;:16;32827:2;32814:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32913:2;32880:11;:25;32892:12;32880:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32980:15;32930:11;:25;32942:12;32930:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33013:20;33036:12;33013:35;;33063:11;33092:8;33077:12;:23;33063:37;;33121:4;:23;;;;;33129:15;:2;:13;;;:15::i;:::-;33121:23;33117:641;;;33165:314;33221:12;33217:2;33196:38;;33213:1;33196:38;;;;;;;;;;;;33262:69;33301:1;33305:2;33309:14;;;;;;33325:5;33262:30;:69::i;:::-;33257:174;;33367:40;;;;;;;;;;;;;;33257:174;33474:3;33458:12;:19;;33165:314;;33560:12;33543:13;;:29;33539:43;;33574:8;;;33539:43;33117:641;;;33623:120;33679:14;;;;;;33675:2;33654:40;;33671:1;33654:40;;;;;;;;;;;;33738:3;33722:12;:19;;33623:120;;33117:641;33788:12;33772:13;:28;;;;32730:1082;;33822:60;33851:1;33855:2;33859:12;33873:8;33822:20;:60::i;:::-;32243:1647;32115:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:116::-;7114:21;7129:5;7114:21;:::i;:::-;7107:5;7104:32;7094:60;;7150:1;7147;7140:12;7094:60;7044:116;:::o;7166:133::-;7209:5;7247:6;7234:20;7225:29;;7263:30;7287:5;7263:30;:::i;:::-;7166:133;;;;:::o;7305:1377::-;7425:6;7433;7441;7449;7457;7465;7473;7522:3;7510:9;7501:7;7497:23;7493:33;7490:120;;;7529:79;;:::i;:::-;7490:120;7649:1;7674:53;7719:7;7710:6;7699:9;7695:22;7674:53;:::i;:::-;7664:63;;7620:117;7776:2;7802:53;7847:7;7838:6;7827:9;7823:22;7802:53;:::i;:::-;7792:63;;7747:118;7932:2;7921:9;7917:18;7904:32;7963:18;7955:6;7952:30;7949:117;;;7985:79;;:::i;:::-;7949:117;8090:63;8145:7;8136:6;8125:9;8121:22;8090:63;:::i;:::-;8080:73;;7875:288;8202:2;8228:53;8273:7;8264:6;8253:9;8249:22;8228:53;:::i;:::-;8218:63;;8173:118;8330:3;8357:53;8402:7;8393:6;8382:9;8378:22;8357:53;:::i;:::-;8347:63;;8301:119;8459:3;8486:53;8531:7;8522:6;8511:9;8507:22;8486:53;:::i;:::-;8476:63;;8430:119;8588:3;8615:50;8657:7;8648:6;8637:9;8633:22;8615:50;:::i;:::-;8605:60;;8559:116;7305:1377;;;;;;;;;;:::o;8688:118::-;8775:24;8793:5;8775:24;:::i;:::-;8770:3;8763:37;8688:118;;:::o;8812:222::-;8905:4;8943:2;8932:9;8928:18;8920:26;;8956:71;9024:1;9013:9;9009:17;9000:6;8956:71;:::i;:::-;8812:222;;;;:::o;9040:329::-;9099:6;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9040:329;;;;:::o;9375:619::-;9452:6;9460;9468;9517:2;9505:9;9496:7;9492:23;9488:32;9485:119;;;9523:79;;:::i;:::-;9485:119;9643:1;9668:53;9713:7;9704:6;9693:9;9689:22;9668:53;:::i;:::-;9658:63;;9614:117;9770:2;9796:53;9841:7;9832:6;9821:9;9817:22;9796:53;:::i;:::-;9786:63;;9741:118;9898:2;9924:53;9969:7;9960:6;9949:9;9945:22;9924:53;:::i;:::-;9914:63;;9869:118;9375:619;;;;;:::o;10000:1175::-;10325:4;10363:3;10352:9;10348:19;10340:27;;10413:9;10407:4;10403:20;10399:1;10388:9;10384:17;10377:47;10441:78;10514:4;10505:6;10441:78;:::i;:::-;10433:86;;10529:72;10597:2;10586:9;10582:18;10573:6;10529:72;:::i;:::-;10611;10679:2;10668:9;10664:18;10655:6;10611:72;:::i;:::-;10693;10761:2;10750:9;10746:18;10737:6;10693:72;:::i;:::-;10775:73;10843:3;10832:9;10828:19;10819:6;10775:73;:::i;:::-;10858;10926:3;10915:9;10911:19;10902:6;10858:73;:::i;:::-;10941;11009:3;10998:9;10994:19;10985:6;10941:73;:::i;:::-;11024:67;11086:3;11075:9;11071:19;11062:6;11024:67;:::i;:::-;11101;11163:3;11152:9;11148:19;11139:6;11101:67;:::i;:::-;10000:1175;;;;;;;;;;;;:::o;11181:509::-;11250:6;11299:2;11287:9;11278:7;11274:23;11270:32;11267:119;;;11305:79;;:::i;:::-;11267:119;11453:1;11442:9;11438:17;11425:31;11483:18;11475:6;11472:30;11469:117;;;11505:79;;:::i;:::-;11469:117;11610:63;11665:7;11656:6;11645:9;11641:22;11610:63;:::i;:::-;11600:73;;11396:287;11181:509;;;;:::o;11696:468::-;11761:6;11769;11818:2;11806:9;11797:7;11793:23;11789:32;11786:119;;;11824:79;;:::i;:::-;11786:119;11944:1;11969:53;12014:7;12005:6;11994:9;11990:22;11969:53;:::i;:::-;11959:63;;11915:117;12071:2;12097:50;12139:7;12130:6;12119:9;12115:22;12097:50;:::i;:::-;12087:60;;12042:115;11696:468;;;;;:::o;12170:323::-;12226:6;12275:2;12263:9;12254:7;12250:23;12246:32;12243:119;;;12281:79;;:::i;:::-;12243:119;12401:1;12426:50;12468:7;12459:6;12448:9;12444:22;12426:50;:::i;:::-;12416:60;;12372:114;12170:323;;;;:::o;12499:765::-;12585:6;12593;12601;12609;12658:3;12646:9;12637:7;12633:23;12629:33;12626:120;;;12665:79;;:::i;:::-;12626:120;12785:1;12810:53;12855:7;12846:6;12835:9;12831:22;12810:53;:::i;:::-;12800:63;;12756:117;12912:2;12938:53;12983:7;12974:6;12963:9;12959:22;12938:53;:::i;:::-;12928:63;;12883:118;13040:2;13066:53;13111:7;13102:6;13091:9;13087:22;13066:53;:::i;:::-;13056:63;;13011:118;13168:2;13194:53;13239:7;13230:6;13219:9;13215:22;13194:53;:::i;:::-;13184:63;;13139:118;12499:765;;;;;;;:::o;13270:307::-;13331:4;13421:18;13413:6;13410:30;13407:56;;;13443:18;;:::i;:::-;13407:56;13481:29;13503:6;13481:29;:::i;:::-;13473:37;;13565:4;13559;13555:15;13547:23;;13270:307;;;:::o;13583:410::-;13660:5;13685:65;13701:48;13742:6;13701:48;:::i;:::-;13685:65;:::i;:::-;13676:74;;13773:6;13766:5;13759:21;13811:4;13804:5;13800:16;13849:3;13840:6;13835:3;13831:16;13828:25;13825:112;;;13856:79;;:::i;:::-;13825:112;13946:41;13980:6;13975:3;13970;13946:41;:::i;:::-;13666:327;13583:410;;;;;:::o;14012:338::-;14067:5;14116:3;14109:4;14101:6;14097:17;14093:27;14083:122;;14124:79;;:::i;:::-;14083:122;14241:6;14228:20;14266:78;14340:3;14332:6;14325:4;14317:6;14313:17;14266:78;:::i;:::-;14257:87;;14073:277;14012:338;;;;:::o;14356:943::-;14451:6;14459;14467;14475;14524:3;14512:9;14503:7;14499:23;14495:33;14492:120;;;14531:79;;:::i;:::-;14492:120;14651:1;14676:53;14721:7;14712:6;14701:9;14697:22;14676:53;:::i;:::-;14666:63;;14622:117;14778:2;14804:53;14849:7;14840:6;14829:9;14825:22;14804:53;:::i;:::-;14794:63;;14749:118;14906:2;14932:53;14977:7;14968:6;14957:9;14953:22;14932:53;:::i;:::-;14922:63;;14877:118;15062:2;15051:9;15047:18;15034:32;15093:18;15085:6;15082:30;15079:117;;;15115:79;;:::i;:::-;15079:117;15220:62;15274:7;15265:6;15254:9;15250:22;15220:62;:::i;:::-;15210:72;;15005:287;14356:943;;;;;;;:::o;15305:474::-;15373:6;15381;15430:2;15418:9;15409:7;15405:23;15401:32;15398:119;;;15436:79;;:::i;:::-;15398:119;15556:1;15581:53;15626:7;15617:6;15606:9;15602:22;15581:53;:::i;:::-;15571:63;;15527:117;15683:2;15709:53;15754:7;15745:6;15734:9;15730:22;15709:53;:::i;:::-;15699:63;;15654:118;15305:474;;;;;:::o;15785:::-;15853:6;15861;15910:2;15898:9;15889:7;15885:23;15881:32;15878:119;;;15916:79;;:::i;:::-;15878:119;16036:1;16061:53;16106:7;16097:6;16086:9;16082:22;16061:53;:::i;:::-;16051:63;;16007:117;16163:2;16189:53;16234:7;16225:6;16214:9;16210:22;16189:53;:::i;:::-;16179:63;;16134:118;15785:474;;;;;:::o;16265:180::-;16313:77;16310:1;16303:88;16410:4;16407:1;16400:15;16434:4;16431:1;16424:15;16451:320;16495:6;16532:1;16526:4;16522:12;16512:22;;16579:1;16573:4;16569:12;16600:18;16590:81;;16656:4;16648:6;16644:17;16634:27;;16590:81;16718:2;16710:6;16707:14;16687:18;16684:38;16681:84;;;16737:18;;:::i;:::-;16681:84;16502:269;16451:320;;;:::o;16777:182::-;16917:34;16913:1;16905:6;16901:14;16894:58;16777:182;:::o;16965:366::-;17107:3;17128:67;17192:2;17187:3;17128:67;:::i;:::-;17121:74;;17204:93;17293:3;17204:93;:::i;:::-;17322:2;17317:3;17313:12;17306:19;;16965:366;;;:::o;17337:419::-;17503:4;17541:2;17530:9;17526:18;17518:26;;17590:9;17584:4;17580:20;17576:1;17565:9;17561:17;17554:47;17618:131;17744:4;17618:131;:::i;:::-;17610:139;;17337:419;;;:::o;17762:180::-;17810:77;17807:1;17800:88;17907:4;17904:1;17897:15;17931:4;17928:1;17921:15;17948:191;17988:4;18008:20;18026:1;18008:20;:::i;:::-;18003:25;;18042:20;18060:1;18042:20;:::i;:::-;18037:25;;18081:1;18078;18075:8;18072:34;;;18086:18;;:::i;:::-;18072:34;18131:1;18128;18124:9;18116:17;;17948:191;;;;:::o;18145:165::-;18285:17;18281:1;18273:6;18269:14;18262:41;18145:165;:::o;18316:366::-;18458:3;18479:67;18543:2;18538:3;18479:67;:::i;:::-;18472:74;;18555:93;18644:3;18555:93;:::i;:::-;18673:2;18668:3;18664:12;18657:19;;18316:366;;;:::o;18688:419::-;18854:4;18892:2;18881:9;18877:18;18869:26;;18941:9;18935:4;18931:20;18927:1;18916:9;18912:17;18905:47;18969:131;19095:4;18969:131;:::i;:::-;18961:139;;18688:419;;;:::o;19113:169::-;19253:21;19249:1;19241:6;19237:14;19230:45;19113:169;:::o;19288:366::-;19430:3;19451:67;19515:2;19510:3;19451:67;:::i;:::-;19444:74;;19527:93;19616:3;19527:93;:::i;:::-;19645:2;19640:3;19636:12;19629:19;;19288:366;;;:::o;19660:419::-;19826:4;19864:2;19853:9;19849:18;19841:26;;19913:9;19907:4;19903:20;19899:1;19888:9;19884:17;19877:47;19941:131;20067:4;19941:131;:::i;:::-;19933:139;;19660:419;;;:::o;20085:179::-;20225:31;20221:1;20213:6;20209:14;20202:55;20085:179;:::o;20270:366::-;20412:3;20433:67;20497:2;20492:3;20433:67;:::i;:::-;20426:74;;20509:93;20598:3;20509:93;:::i;:::-;20627:2;20622:3;20618:12;20611:19;;20270:366;;;:::o;20642:419::-;20808:4;20846:2;20835:9;20831:18;20823:26;;20895:9;20889:4;20885:20;20881:1;20870:9;20866:17;20859:47;20923:131;21049:4;20923:131;:::i;:::-;20915:139;;20642:419;;;:::o;21067:170::-;21207:22;21203:1;21195:6;21191:14;21184:46;21067:170;:::o;21243:366::-;21385:3;21406:67;21470:2;21465:3;21406:67;:::i;:::-;21399:74;;21482:93;21571:3;21482:93;:::i;:::-;21600:2;21595:3;21591:12;21584:19;;21243:366;;;:::o;21615:419::-;21781:4;21819:2;21808:9;21804:18;21796:26;;21868:9;21862:4;21858:20;21854:1;21843:9;21839:17;21832:47;21896:131;22022:4;21896:131;:::i;:::-;21888:139;;21615:419;;;:::o;22040:305::-;22080:3;22099:20;22117:1;22099:20;:::i;:::-;22094:25;;22133:20;22151:1;22133:20;:::i;:::-;22128:25;;22287:1;22219:66;22215:74;22212:1;22209:81;22206:107;;;22293:18;;:::i;:::-;22206:107;22337:1;22334;22330:9;22323:16;;22040:305;;;;:::o;22351:143::-;22408:5;22439:6;22433:13;22424:22;;22455:33;22482:5;22455:33;:::i;:::-;22351:143;;;;:::o;22500:351::-;22570:6;22619:2;22607:9;22598:7;22594:23;22590:32;22587:119;;;22625:79;;:::i;:::-;22587:119;22745:1;22770:64;22826:7;22817:6;22806:9;22802:22;22770:64;:::i;:::-;22760:74;;22716:128;22500:351;;;;:::o;22857:348::-;22897:7;22920:20;22938:1;22920:20;:::i;:::-;22915:25;;22954:20;22972:1;22954:20;:::i;:::-;22949:25;;23142:1;23074:66;23070:74;23067:1;23064:81;23059:1;23052:9;23045:17;23041:105;23038:131;;;23149:18;;:::i;:::-;23038:131;23197:1;23194;23190:9;23179:20;;22857:348;;;;:::o;23211:168::-;23351:20;23347:1;23339:6;23335:14;23328:44;23211:168;:::o;23385:366::-;23527:3;23548:67;23612:2;23607:3;23548:67;:::i;:::-;23541:74;;23624:93;23713:3;23624:93;:::i;:::-;23742:2;23737:3;23733:12;23726:19;;23385:366;;;:::o;23757:419::-;23923:4;23961:2;23950:9;23946:18;23938:26;;24010:9;24004:4;24000:20;23996:1;23985:9;23981:17;23974:47;24038:131;24164:4;24038:131;:::i;:::-;24030:139;;23757:419;;;:::o;24182:177::-;24322:29;24318:1;24310:6;24306:14;24299:53;24182:177;:::o;24365:366::-;24507:3;24528:67;24592:2;24587:3;24528:67;:::i;:::-;24521:74;;24604:93;24693:3;24604:93;:::i;:::-;24722:2;24717:3;24713:12;24706:19;;24365:366;;;:::o;24737:419::-;24903:4;24941:2;24930:9;24926:18;24918:26;;24990:9;24984:4;24980:20;24976:1;24965:9;24961:17;24954:47;25018:131;25144:4;25018:131;:::i;:::-;25010:139;;24737:419;;;:::o;25162:227::-;25302:34;25298:1;25290:6;25286:14;25279:58;25371:10;25366:2;25358:6;25354:15;25347:35;25162:227;:::o;25395:366::-;25537:3;25558:67;25622:2;25617:3;25558:67;:::i;:::-;25551:74;;25634:93;25723:3;25634:93;:::i;:::-;25752:2;25747:3;25743:12;25736:19;;25395:366;;;:::o;25767:419::-;25933:4;25971:2;25960:9;25956:18;25948:26;;26020:9;26014:4;26010:20;26006:1;25995:9;25991:17;25984:47;26048:131;26174:4;26048:131;:::i;:::-;26040:139;;25767:419;;;:::o;26192:178::-;26332:30;26328:1;26320:6;26316:14;26309:54;26192:178;:::o;26376:366::-;26518:3;26539:67;26603:2;26598:3;26539:67;:::i;:::-;26532:74;;26615:93;26704:3;26615:93;:::i;:::-;26733:2;26728:3;26724:12;26717:19;;26376:366;;;:::o;26748:419::-;26914:4;26952:2;26941:9;26937:18;26929:26;;27001:9;26995:4;26991:20;26987:1;26976:9;26972:17;26965:47;27029:131;27155:4;27029:131;:::i;:::-;27021:139;;26748:419;;;:::o;27173:148::-;27275:11;27312:3;27297:18;;27173:148;;;;:::o;27327:377::-;27433:3;27461:39;27494:5;27461:39;:::i;:::-;27516:89;27598:6;27593:3;27516:89;:::i;:::-;27509:96;;27614:52;27659:6;27654:3;27647:4;27640:5;27636:16;27614:52;:::i;:::-;27691:6;27686:3;27682:16;27675:23;;27437:267;27327:377;;;;:::o;27710:435::-;27890:3;27912:95;28003:3;27994:6;27912:95;:::i;:::-;27905:102;;28024:95;28115:3;28106:6;28024:95;:::i;:::-;28017:102;;28136:3;28129:10;;27710:435;;;;;:::o;28151:225::-;28291:34;28287:1;28279:6;28275:14;28268:58;28360:8;28355:2;28347:6;28343:15;28336:33;28151:225;:::o;28382:366::-;28524:3;28545:67;28609:2;28604:3;28545:67;:::i;:::-;28538:74;;28621:93;28710:3;28621:93;:::i;:::-;28739:2;28734:3;28730:12;28723:19;;28382:366;;;:::o;28754:419::-;28920:4;28958:2;28947:9;28943:18;28935:26;;29007:9;29001:4;28997:20;28993:1;28982:9;28978:17;28971:47;29035:131;29161:4;29035:131;:::i;:::-;29027:139;;28754:419;;;:::o;29179:98::-;29230:6;29264:5;29258:12;29248:22;;29179:98;;;:::o;29283:168::-;29366:11;29400:6;29395:3;29388:19;29440:4;29435:3;29431:14;29416:29;;29283:168;;;;:::o;29457:360::-;29543:3;29571:38;29603:5;29571:38;:::i;:::-;29625:70;29688:6;29683:3;29625:70;:::i;:::-;29618:77;;29704:52;29749:6;29744:3;29737:4;29730:5;29726:16;29704:52;:::i;:::-;29781:29;29803:6;29781:29;:::i;:::-;29776:3;29772:39;29765:46;;29547:270;29457:360;;;;:::o;29823:640::-;30018:4;30056:3;30045:9;30041:19;30033:27;;30070:71;30138:1;30127:9;30123:17;30114:6;30070:71;:::i;:::-;30151:72;30219:2;30208:9;30204:18;30195:6;30151:72;:::i;:::-;30233;30301:2;30290:9;30286:18;30277:6;30233:72;:::i;:::-;30352:9;30346:4;30342:20;30337:2;30326:9;30322:18;30315:48;30380:76;30451:4;30442:6;30380:76;:::i;:::-;30372:84;;29823:640;;;;;;;:::o;30469:141::-;30525:5;30556:6;30550:13;30541:22;;30572:32;30598:5;30572:32;:::i;:::-;30469:141;;;;:::o;30616:349::-;30685:6;30734:2;30722:9;30713:7;30709:23;30705:32;30702:119;;;30740:79;;:::i;:::-;30702:119;30860:1;30885:63;30940:7;30931:6;30920:9;30916:22;30885:63;:::i;:::-;30875:73;;30831:127;30616:349;;;;:::o;30971:233::-;31010:3;31033:24;31051:5;31033:24;:::i;:::-;31024:33;;31079:66;31072:5;31069:77;31066:103;;;31149:18;;:::i;:::-;31066:103;31196:1;31189:5;31185:13;31178:20;;30971:233;;;:::o;31210:180::-;31258:77;31255:1;31248:88;31355:4;31352:1;31345:15;31379:4;31376:1;31369:15;31396:185;31436:1;31453:20;31471:1;31453:20;:::i;:::-;31448:25;;31487:20;31505:1;31487:20;:::i;:::-;31482:25;;31526:1;31516:35;;31531:18;;:::i;:::-;31516:35;31573:1;31570;31566:9;31561:14;;31396:185;;;;:::o;31587:176::-;31619:1;31636:20;31654:1;31636:20;:::i;:::-;31631:25;;31670:20;31688:1;31670:20;:::i;:::-;31665:25;;31709:1;31699:35;;31714:18;;:::i;:::-;31699:35;31755:1;31752;31748:9;31743:14;;31587:176;;;;:::o;31769:180::-;31817:77;31814:1;31807:88;31914:4;31911:1;31904:15;31938:4;31935:1;31928:15

Swarm Source

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