ETH Price: $3,347.01 (+0.35%)
 

Overview

Max Total Supply

1,111 APP

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
greenbeen.eth
Balance
4 APP
0x10e576c461c939a1Bf33BAB19e03cE9eEb71E3Ab
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:
JobApplication

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/application.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 contracts/application.sol


contract JobApplication is ERC721A, Ownable {

    string public baseURI = "ipfs://QmaF8o6Uc1RmLFEj5FqCfVwpaPAPPHvtFxLmaK35NYNyjm/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant MAX_SUPPLY = 1111;
    uint256 public price = 0.01 ether;

    bool public paused = false;
    bool public revealed = false;

    constructor() ERC721A("Job Application", "APP") {}

    function mint(uint256 _amount) external payable 
    {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              revealed ? Strings.toString(_tokenId) : "unrevealed",
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":"MintedQueryForZeroAddress","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620042b560369139600990805190602001906200003592919062000238565b50662386f26fc10000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600f81526020017f4a6f62204170706c69636174696f6e00000000000000000000000000000000008152506040518060400160405280600381526020017f415050000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000238565b5080600390805190602001906200012292919062000238565b50620001336200016160201b60201c565b60008190555050506200015b6200014f6200016a60201b60201c565b6200017260201b60201c565b6200034d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620002e8565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b600060028204905060018216806200030157607f821691505b602082108114156200031857620003176200031e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f58806200035d6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060b578063a22cb46514610627578063b88d4fde14610650578063c668286214610679576101ee565b806391b7f5ed116100dc57806391b7f5ed14610563578063940cd05b1461058c57806395d89b41146105b5578063a035b1fe146105e0576101ee565b80636c0360eb146104b957806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146104115780635c975abb1461043a5780636352211e14610465578063698982ba146104a2576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806351830227146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613226565b61079d565b60405161022791906136a0565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906131f9565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b91906136bb565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906132f6565b6109aa565b6040516102b89190613639565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131b9565b610a26565b005b3480156102f657600080fd5b506102ff610b31565b60405161030c919061381d565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613036565b610b48565b604051610349919061381d565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906130a3565b610b5a565b005b34801561038757600080fd5b50610390610b6a565b60405161039d919061381d565b60405180910390f35b3480156103b257600080fd5b506103bb610b70565b005b3480156103c957600080fd5b506103e460048036038101906103df91906130a3565b610ca8565b005b3480156103f257600080fd5b506103fb610cc8565b60405161040891906136a0565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906132ad565b610cdb565b005b34801561044657600080fd5b5061044f610d71565b60405161045c91906136a0565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906132f6565b610d84565b6040516104999190613639565b60405180910390f35b3480156104ae57600080fd5b506104b7610d9a565b005b3480156104c557600080fd5b506104ce610e2a565b6040516104db91906136bb565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613036565b610eb8565b604051610518919061381d565b60405180910390f35b34801561052d57600080fd5b50610536610f88565b005b34801561054457600080fd5b5061054d611010565b60405161055a9190613639565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906132f6565b61103a565b005b34801561059857600080fd5b506105b360048036038101906105ae91906131f9565b6110c0565b005b3480156105c157600080fd5b506105ca611159565b6040516105d791906136bb565b60405180910390f35b3480156105ec57600080fd5b506105f56111eb565b604051610602919061381d565b60405180910390f35b610625600480360381019061062091906132f6565b6111f1565b005b34801561063357600080fd5b5061064e60048036038101906106499190613179565b6113f6565b005b34801561065c57600080fd5b50610677600480360381019061067291906130f6565b61156e565b005b34801561068557600080fd5b5061068e6115ea565b60405161069b91906136bb565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906132f6565b611623565b6040516106d891906136bb565b60405180910390f35b3480156106ed57600080fd5b506106f6611752565b6040516107039190613639565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613063565b61176a565b60405161074091906136a0565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613036565b61185e565b005b34801561077e57600080fd5b50610787611956565b604051610794919061381d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087857506108778261195b565b5b9050919050565b6108876119c5565b73ffffffffffffffffffffffffffffffffffffffff166108a5611010565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f29061379d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461092790613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613aff565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b5826119cd565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab86119c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aea5750610ae881610ae36119c5565b61176a565b155b15610b21576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c838383611a1b565b505050565b6000610b3b611acd565b6001546000540303905090565b6000610b5382611ad6565b9050919050565b610b65838383611ba6565b505050565b61045781565b610b786119c5565b73ffffffffffffffffffffffffffffffffffffffff16610b96611010565b73ffffffffffffffffffffffffffffffffffffffff1614610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be39061379d565b60405180910390fd5b60004790506000610bfb6119c5565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1e90613624565b60006040518083038185875af1925050503d8060008114610c5b576040519150601f19603f3d011682016040523d82523d6000602084013e610c60565b606091505b5050905080610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906137dd565b60405180910390fd5b5050565b610cc38383836040518060200160405280600081525061156e565b505050565b600b60019054906101000a900460ff1681565b610ce36119c5565b73ffffffffffffffffffffffffffffffffffffffff16610d01611010565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061379d565b60405180910390fd5b8060099080519060200190610d6d929190612df2565b5050565b600b60009054906101000a900460ff1681565b6000610d8f82612097565b600001519050919050565b610da26119c5565b73ffffffffffffffffffffffffffffffffffffffff16610dc0611010565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061379d565b60405180910390fd5b610e28610e216119c5565b6001612326565b565b60098054610e3790613aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390613aff565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f906119c5565b73ffffffffffffffffffffffffffffffffffffffff16610fae611010565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061379d565b60405180910390fd5b61100e6000612344565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110426119c5565b73ffffffffffffffffffffffffffffffffffffffff16611060611010565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061379d565b60405180910390fd5b80600a8190555050565b6110c86119c5565b73ffffffffffffffffffffffffffffffffffffffff166110e6611010565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111339061379d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461116890613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461119490613aff565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b5050505050905090565b600a5481565b60006111fb6119c5565b9050600b60009054906101000a900460ff161561124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611244906136dd565b60405180910390fd5b81611256610b31565b6112609190613922565b61045710156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061375d565b60405180910390fd5b600082116112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de9061373d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906137fd565b60405180910390fd5b8160141015611399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113909061371d565b60405180910390fd5b34600a54836113a891906139a9565b146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906137bd565b60405180910390fd5b6113f28183612326565b5050565b6113fe6119c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114706119c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151d6119c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156291906136a0565b60405180910390a35050565b611579848484611ba6565b6115988373ffffffffffffffffffffffffffffffffffffffff1661240a565b80156115ad57506115ab8484848461242d565b155b156115e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061162e826119cd565b61166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116649061377d565b60405180910390fd5b60006009805461167c90613aff565b905011611698576040518060200160405280600081525061174b565b6009600b60019054906101000a900460ff166116e9576040518060400160405280600a81526020017f756e72657665616c6564000000000000000000000000000000000000000000008152506116f3565b6116f28361258d565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161173b939291906135f3565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117d49190613639565b60206040518083038186803b1580156117ec57600080fd5b505afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190613280565b73ffffffffffffffffffffffffffffffffffffffff16141561184a576001915050611858565b61185484846126ee565b9150505b92915050565b6118666119c5565b73ffffffffffffffffffffffffffffffffffffffff16611884611010565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906136fd565b60405180910390fd5b61195381612344565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119d8611acd565b111580156119e7575060005482105b8015611a14575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611bb182612097565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd86119c5565b73ffffffffffffffffffffffffffffffffffffffff161480611c0b5750611c0a8260000151611c056119c5565b61176a565b5b80611c505750611c196119c5565b73ffffffffffffffffffffffffffffffffffffffff16611c38846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d668585856001612782565b611d766000848460000151611a1b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612027576000548110156120265782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120908585856001612788565b5050505050565b61209f612e78565b6000829050806120ad611acd565b111580156120bc575060005481105b156122ef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ed57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d1578092505050612321565b5b6001156122ec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e7578092505050612321565b6121d2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61234082826040518060200160405280600081525061278e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124536119c5565b8786866040518563ffffffff1660e01b81526004016124759493929190613654565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd9190613253565b60015b61253a573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b50600081511415612532576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e9565b600082905060005b600082146126075780806125f090613b62565b915050600a826126009190613978565b91506125dd565b60008167ffffffffffffffff81111561262357612622613c98565b5b6040519080825280601f01601f1916602001820160405280156126555781602001600182028036833780820191505090505b5090505b600085146126e25760018261266e9190613a03565b9150600a8561267d9190613bab565b60306126899190613922565b60f81b81838151811061269f5761269e613c69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126db9190613978565b9450612659565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61279b83838360016127a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612848576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128556000868387612782565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128e25750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061292c575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129765750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129c0575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a0a5750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a54575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a9e575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612ad957600080600090505b615ecd811015612ad6578180612ac090613b62565b9250508080612ace90613b62565b915050612aab565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ca35750612ca28773ffffffffffffffffffffffffffffffffffffffff1661240a565b5b15612d69575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d18600088848060010195508861242d565b612d4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ca9578260005414612d6457600080fd5b612dd5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d6a575b816000819055505050612deb6000868387612788565b5050505050565b828054612dfe90613aff565b90600052602060002090601f016020900481019282612e205760008555612e67565b82601f10612e3957805160ff1916838001178555612e67565b82800160010185558215612e67579182015b82811115612e66578251825591602001919060010190612e4b565b5b509050612e749190612ebb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ed4576000816000905550600101612ebc565b5090565b6000612eeb612ee68461385d565b613838565b905082815260208101848484011115612f0757612f06613ccc565b5b612f12848285613abd565b509392505050565b6000612f2d612f288461388e565b613838565b905082815260208101848484011115612f4957612f48613ccc565b5b612f54848285613abd565b509392505050565b600081359050612f6b81613eaf565b92915050565b600081359050612f8081613ec6565b92915050565b600081359050612f9581613edd565b92915050565b600081519050612faa81613edd565b92915050565b600082601f830112612fc557612fc4613cc7565b5b8135612fd5848260208601612ed8565b91505092915050565b600081519050612fed81613ef4565b92915050565b600082601f83011261300857613007613cc7565b5b8135613018848260208601612f1a565b91505092915050565b60008135905061303081613f0b565b92915050565b60006020828403121561304c5761304b613cd6565b5b600061305a84828501612f5c565b91505092915050565b6000806040838503121561307a57613079613cd6565b5b600061308885828601612f5c565b925050602061309985828601612f5c565b9150509250929050565b6000806000606084860312156130bc576130bb613cd6565b5b60006130ca86828701612f5c565b93505060206130db86828701612f5c565b92505060406130ec86828701613021565b9150509250925092565b600080600080608085870312156131105761310f613cd6565b5b600061311e87828801612f5c565b945050602061312f87828801612f5c565b935050604061314087828801613021565b925050606085013567ffffffffffffffff81111561316157613160613cd1565b5b61316d87828801612fb0565b91505092959194509250565b600080604083850312156131905761318f613cd6565b5b600061319e85828601612f5c565b92505060206131af85828601612f71565b9150509250929050565b600080604083850312156131d0576131cf613cd6565b5b60006131de85828601612f5c565b92505060206131ef85828601613021565b9150509250929050565b60006020828403121561320f5761320e613cd6565b5b600061321d84828501612f71565b91505092915050565b60006020828403121561323c5761323b613cd6565b5b600061324a84828501612f86565b91505092915050565b60006020828403121561326957613268613cd6565b5b600061327784828501612f9b565b91505092915050565b60006020828403121561329657613295613cd6565b5b60006132a484828501612fde565b91505092915050565b6000602082840312156132c3576132c2613cd6565b5b600082013567ffffffffffffffff8111156132e1576132e0613cd1565b5b6132ed84828501612ff3565b91505092915050565b60006020828403121561330c5761330b613cd6565b5b600061331a84828501613021565b91505092915050565b61332c81613a37565b82525050565b61333b81613a49565b82525050565b600061334c826138d4565b61335681856138ea565b9350613366818560208601613acc565b61336f81613cdb565b840191505092915050565b6000613385826138df565b61338f8185613906565b935061339f818560208601613acc565b6133a881613cdb565b840191505092915050565b60006133be826138df565b6133c88185613917565b93506133d8818560208601613acc565b80840191505092915050565b600081546133f181613aff565b6133fb8186613917565b9450600182166000811461341657600181146134275761345a565b60ff1983168652818601935061345a565b613430856138bf565b60005b8381101561345257815481890152600182019150602081019050613433565b838801955050505b50505092915050565b6000613470600683613906565b915061347b82613cec565b602082019050919050565b6000613493602683613906565b915061349e82613d15565b604082019050919050565b60006134b6601183613906565b91506134c182613d64565b602082019050919050565b60006134d9600a83613906565b91506134e482613d8d565b602082019050919050565b60006134fc601283613906565b915061350782613db6565b602082019050919050565b600061351f601583613906565b915061352a82613ddf565b602082019050919050565b6000613542602083613906565b915061354d82613e08565b602082019050919050565b6000613565601683613906565b915061357082613e31565b602082019050919050565b60006135886000836138fb565b915061359382613e5a565b600082019050919050565b60006135ab600e83613906565b91506135b682613e5d565b602082019050919050565b60006135ce600c83613906565b91506135d982613e86565b602082019050919050565b6135ed81613ab3565b82525050565b60006135ff82866133e4565b915061360b82856133b3565b915061361782846133b3565b9150819050949350505050565b600061362f8261357b565b9150819050919050565b600060208201905061364e6000830184613323565b92915050565b60006080820190506136696000830187613323565b6136766020830186613323565b61368360408301856135e4565b81810360608301526136958184613341565b905095945050505050565b60006020820190506136b56000830184613332565b92915050565b600060208201905081810360008301526136d5818461337a565b905092915050565b600060208201905081810360008301526136f681613463565b9050919050565b6000602082019050818103600083015261371681613486565b9050919050565b60006020820190508181036000830152613736816134a9565b9050919050565b60006020820190508181036000830152613756816134cc565b9050919050565b60006020820190508181036000830152613776816134ef565b9050919050565b6000602082019050818103600083015261379681613512565b9050919050565b600060208201905081810360008301526137b681613535565b9050919050565b600060208201905081810360008301526137d681613558565b9050919050565b600060208201905081810360008301526137f68161359e565b9050919050565b60006020820190508181036000830152613816816135c1565b9050919050565b600060208201905061383260008301846135e4565b92915050565b6000613842613853565b905061384e8282613b31565b919050565b6000604051905090565b600067ffffffffffffffff82111561387857613877613c98565b5b61388182613cdb565b9050602081019050919050565b600067ffffffffffffffff8211156138a9576138a8613c98565b5b6138b282613cdb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061392d82613ab3565b915061393883613ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396d5761396c613bdc565b5b828201905092915050565b600061398382613ab3565b915061398e83613ab3565b92508261399e5761399d613c0b565b5b828204905092915050565b60006139b482613ab3565b91506139bf83613ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f8576139f7613bdc565b5b828202905092915050565b6000613a0e82613ab3565b9150613a1983613ab3565b925082821015613a2c57613a2b613bdc565b5b828203905092915050565b6000613a4282613a93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a8c82613a37565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aea578082015181840152602081019050613acf565b83811115613af9576000848401525b50505050565b60006002820490506001821680613b1757607f821691505b60208210811415613b2b57613b2a613c3a565b5b50919050565b613b3a82613cdb565b810181811067ffffffffffffffff82111715613b5957613b58613c98565b5b80604052505050565b6000613b6d82613ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba057613b9f613bdc565b5b600182019050919050565b6000613bb682613ab3565b9150613bc183613ab3565b925082613bd157613bd0613c0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613eb881613a37565b8114613ec357600080fd5b50565b613ecf81613a49565b8114613eda57600080fd5b50565b613ee681613a55565b8114613ef157600080fd5b50565b613efd81613a81565b8114613f0857600080fd5b50565b613f1481613ab3565b8114613f1f57600080fd5b5056fea264697066735822122002f6bad65f8a3e403f97963ad1b71adb19150f6c3655b9a22252450ebbd8cc1464736f6c63430008070033697066733a2f2f516d6146386f36556331526d4c46456a3546714366567770615041505048767446784c6d614b33354e594e796a6d2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060b578063a22cb46514610627578063b88d4fde14610650578063c668286214610679576101ee565b806391b7f5ed116100dc57806391b7f5ed14610563578063940cd05b1461058c57806395d89b41146105b5578063a035b1fe146105e0576101ee565b80636c0360eb146104b957806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146104115780635c975abb1461043a5780636352211e14610465578063698982ba146104a2576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806351830227146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613226565b61079d565b60405161022791906136a0565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906131f9565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b91906136bb565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906132f6565b6109aa565b6040516102b89190613639565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131b9565b610a26565b005b3480156102f657600080fd5b506102ff610b31565b60405161030c919061381d565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613036565b610b48565b604051610349919061381d565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906130a3565b610b5a565b005b34801561038757600080fd5b50610390610b6a565b60405161039d919061381d565b60405180910390f35b3480156103b257600080fd5b506103bb610b70565b005b3480156103c957600080fd5b506103e460048036038101906103df91906130a3565b610ca8565b005b3480156103f257600080fd5b506103fb610cc8565b60405161040891906136a0565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906132ad565b610cdb565b005b34801561044657600080fd5b5061044f610d71565b60405161045c91906136a0565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906132f6565b610d84565b6040516104999190613639565b60405180910390f35b3480156104ae57600080fd5b506104b7610d9a565b005b3480156104c557600080fd5b506104ce610e2a565b6040516104db91906136bb565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613036565b610eb8565b604051610518919061381d565b60405180910390f35b34801561052d57600080fd5b50610536610f88565b005b34801561054457600080fd5b5061054d611010565b60405161055a9190613639565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906132f6565b61103a565b005b34801561059857600080fd5b506105b360048036038101906105ae91906131f9565b6110c0565b005b3480156105c157600080fd5b506105ca611159565b6040516105d791906136bb565b60405180910390f35b3480156105ec57600080fd5b506105f56111eb565b604051610602919061381d565b60405180910390f35b610625600480360381019061062091906132f6565b6111f1565b005b34801561063357600080fd5b5061064e60048036038101906106499190613179565b6113f6565b005b34801561065c57600080fd5b50610677600480360381019061067291906130f6565b61156e565b005b34801561068557600080fd5b5061068e6115ea565b60405161069b91906136bb565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906132f6565b611623565b6040516106d891906136bb565b60405180910390f35b3480156106ed57600080fd5b506106f6611752565b6040516107039190613639565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613063565b61176a565b60405161074091906136a0565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613036565b61185e565b005b34801561077e57600080fd5b50610787611956565b604051610794919061381d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087857506108778261195b565b5b9050919050565b6108876119c5565b73ffffffffffffffffffffffffffffffffffffffff166108a5611010565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f29061379d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461092790613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613aff565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b5826119cd565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab86119c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aea5750610ae881610ae36119c5565b61176a565b155b15610b21576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c838383611a1b565b505050565b6000610b3b611acd565b6001546000540303905090565b6000610b5382611ad6565b9050919050565b610b65838383611ba6565b505050565b61045781565b610b786119c5565b73ffffffffffffffffffffffffffffffffffffffff16610b96611010565b73ffffffffffffffffffffffffffffffffffffffff1614610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be39061379d565b60405180910390fd5b60004790506000610bfb6119c5565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1e90613624565b60006040518083038185875af1925050503d8060008114610c5b576040519150601f19603f3d011682016040523d82523d6000602084013e610c60565b606091505b5050905080610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906137dd565b60405180910390fd5b5050565b610cc38383836040518060200160405280600081525061156e565b505050565b600b60019054906101000a900460ff1681565b610ce36119c5565b73ffffffffffffffffffffffffffffffffffffffff16610d01611010565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061379d565b60405180910390fd5b8060099080519060200190610d6d929190612df2565b5050565b600b60009054906101000a900460ff1681565b6000610d8f82612097565b600001519050919050565b610da26119c5565b73ffffffffffffffffffffffffffffffffffffffff16610dc0611010565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061379d565b60405180910390fd5b610e28610e216119c5565b6001612326565b565b60098054610e3790613aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390613aff565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f20576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f906119c5565b73ffffffffffffffffffffffffffffffffffffffff16610fae611010565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061379d565b60405180910390fd5b61100e6000612344565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110426119c5565b73ffffffffffffffffffffffffffffffffffffffff16611060611010565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061379d565b60405180910390fd5b80600a8190555050565b6110c86119c5565b73ffffffffffffffffffffffffffffffffffffffff166110e6611010565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111339061379d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461116890613aff565b80601f016020809104026020016040519081016040528092919081815260200182805461119490613aff565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b5050505050905090565b600a5481565b60006111fb6119c5565b9050600b60009054906101000a900460ff161561124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611244906136dd565b60405180910390fd5b81611256610b31565b6112609190613922565b61045710156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061375d565b60405180910390fd5b600082116112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de9061373d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906137fd565b60405180910390fd5b8160141015611399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113909061371d565b60405180910390fd5b34600a54836113a891906139a9565b146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906137bd565b60405180910390fd5b6113f28183612326565b5050565b6113fe6119c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114706119c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151d6119c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156291906136a0565b60405180910390a35050565b611579848484611ba6565b6115988373ffffffffffffffffffffffffffffffffffffffff1661240a565b80156115ad57506115ab8484848461242d565b155b156115e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061162e826119cd565b61166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116649061377d565b60405180910390fd5b60006009805461167c90613aff565b905011611698576040518060200160405280600081525061174b565b6009600b60019054906101000a900460ff166116e9576040518060400160405280600a81526020017f756e72657665616c6564000000000000000000000000000000000000000000008152506116f3565b6116f28361258d565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161173b939291906135f3565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117d49190613639565b60206040518083038186803b1580156117ec57600080fd5b505afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190613280565b73ffffffffffffffffffffffffffffffffffffffff16141561184a576001915050611858565b61185484846126ee565b9150505b92915050565b6118666119c5565b73ffffffffffffffffffffffffffffffffffffffff16611884611010565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906136fd565b60405180910390fd5b61195381612344565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119d8611acd565b111580156119e7575060005482105b8015611a14575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611bb182612097565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd86119c5565b73ffffffffffffffffffffffffffffffffffffffff161480611c0b5750611c0a8260000151611c056119c5565b61176a565b5b80611c505750611c196119c5565b73ffffffffffffffffffffffffffffffffffffffff16611c38846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d668585856001612782565b611d766000848460000151611a1b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612027576000548110156120265782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120908585856001612788565b5050505050565b61209f612e78565b6000829050806120ad611acd565b111580156120bc575060005481105b156122ef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ed57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d1578092505050612321565b5b6001156122ec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e7578092505050612321565b6121d2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61234082826040518060200160405280600081525061278e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124536119c5565b8786866040518563ffffffff1660e01b81526004016124759493929190613654565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd9190613253565b60015b61253a573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b50600081511415612532576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e9565b600082905060005b600082146126075780806125f090613b62565b915050600a826126009190613978565b91506125dd565b60008167ffffffffffffffff81111561262357612622613c98565b5b6040519080825280601f01601f1916602001820160405280156126555781602001600182028036833780820191505090505b5090505b600085146126e25760018261266e9190613a03565b9150600a8561267d9190613bab565b60306126899190613922565b60f81b81838151811061269f5761269e613c69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126db9190613978565b9450612659565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61279b83838360016127a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612848576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128556000868387612782565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128e25750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061292c575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129765750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129c0575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a0a5750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a54575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a9e575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612ad957600080600090505b615ecd811015612ad6578180612ac090613b62565b9250508080612ace90613b62565b915050612aab565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ca35750612ca28773ffffffffffffffffffffffffffffffffffffffff1661240a565b5b15612d69575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d18600088848060010195508861242d565b612d4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ca9578260005414612d6457600080fd5b612dd5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d6a575b816000819055505050612deb6000868387612788565b5050505050565b828054612dfe90613aff565b90600052602060002090601f016020900481019282612e205760008555612e67565b82601f10612e3957805160ff1916838001178555612e67565b82800160010185558215612e67579182015b82811115612e66578251825591602001919060010190612e4b565b5b509050612e749190612ebb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ed4576000816000905550600101612ebc565b5090565b6000612eeb612ee68461385d565b613838565b905082815260208101848484011115612f0757612f06613ccc565b5b612f12848285613abd565b509392505050565b6000612f2d612f288461388e565b613838565b905082815260208101848484011115612f4957612f48613ccc565b5b612f54848285613abd565b509392505050565b600081359050612f6b81613eaf565b92915050565b600081359050612f8081613ec6565b92915050565b600081359050612f9581613edd565b92915050565b600081519050612faa81613edd565b92915050565b600082601f830112612fc557612fc4613cc7565b5b8135612fd5848260208601612ed8565b91505092915050565b600081519050612fed81613ef4565b92915050565b600082601f83011261300857613007613cc7565b5b8135613018848260208601612f1a565b91505092915050565b60008135905061303081613f0b565b92915050565b60006020828403121561304c5761304b613cd6565b5b600061305a84828501612f5c565b91505092915050565b6000806040838503121561307a57613079613cd6565b5b600061308885828601612f5c565b925050602061309985828601612f5c565b9150509250929050565b6000806000606084860312156130bc576130bb613cd6565b5b60006130ca86828701612f5c565b93505060206130db86828701612f5c565b92505060406130ec86828701613021565b9150509250925092565b600080600080608085870312156131105761310f613cd6565b5b600061311e87828801612f5c565b945050602061312f87828801612f5c565b935050604061314087828801613021565b925050606085013567ffffffffffffffff81111561316157613160613cd1565b5b61316d87828801612fb0565b91505092959194509250565b600080604083850312156131905761318f613cd6565b5b600061319e85828601612f5c565b92505060206131af85828601612f71565b9150509250929050565b600080604083850312156131d0576131cf613cd6565b5b60006131de85828601612f5c565b92505060206131ef85828601613021565b9150509250929050565b60006020828403121561320f5761320e613cd6565b5b600061321d84828501612f71565b91505092915050565b60006020828403121561323c5761323b613cd6565b5b600061324a84828501612f86565b91505092915050565b60006020828403121561326957613268613cd6565b5b600061327784828501612f9b565b91505092915050565b60006020828403121561329657613295613cd6565b5b60006132a484828501612fde565b91505092915050565b6000602082840312156132c3576132c2613cd6565b5b600082013567ffffffffffffffff8111156132e1576132e0613cd1565b5b6132ed84828501612ff3565b91505092915050565b60006020828403121561330c5761330b613cd6565b5b600061331a84828501613021565b91505092915050565b61332c81613a37565b82525050565b61333b81613a49565b82525050565b600061334c826138d4565b61335681856138ea565b9350613366818560208601613acc565b61336f81613cdb565b840191505092915050565b6000613385826138df565b61338f8185613906565b935061339f818560208601613acc565b6133a881613cdb565b840191505092915050565b60006133be826138df565b6133c88185613917565b93506133d8818560208601613acc565b80840191505092915050565b600081546133f181613aff565b6133fb8186613917565b9450600182166000811461341657600181146134275761345a565b60ff1983168652818601935061345a565b613430856138bf565b60005b8381101561345257815481890152600182019150602081019050613433565b838801955050505b50505092915050565b6000613470600683613906565b915061347b82613cec565b602082019050919050565b6000613493602683613906565b915061349e82613d15565b604082019050919050565b60006134b6601183613906565b91506134c182613d64565b602082019050919050565b60006134d9600a83613906565b91506134e482613d8d565b602082019050919050565b60006134fc601283613906565b915061350782613db6565b602082019050919050565b600061351f601583613906565b915061352a82613ddf565b602082019050919050565b6000613542602083613906565b915061354d82613e08565b602082019050919050565b6000613565601683613906565b915061357082613e31565b602082019050919050565b60006135886000836138fb565b915061359382613e5a565b600082019050919050565b60006135ab600e83613906565b91506135b682613e5d565b602082019050919050565b60006135ce600c83613906565b91506135d982613e86565b602082019050919050565b6135ed81613ab3565b82525050565b60006135ff82866133e4565b915061360b82856133b3565b915061361782846133b3565b9150819050949350505050565b600061362f8261357b565b9150819050919050565b600060208201905061364e6000830184613323565b92915050565b60006080820190506136696000830187613323565b6136766020830186613323565b61368360408301856135e4565b81810360608301526136958184613341565b905095945050505050565b60006020820190506136b56000830184613332565b92915050565b600060208201905081810360008301526136d5818461337a565b905092915050565b600060208201905081810360008301526136f681613463565b9050919050565b6000602082019050818103600083015261371681613486565b9050919050565b60006020820190508181036000830152613736816134a9565b9050919050565b60006020820190508181036000830152613756816134cc565b9050919050565b60006020820190508181036000830152613776816134ef565b9050919050565b6000602082019050818103600083015261379681613512565b9050919050565b600060208201905081810360008301526137b681613535565b9050919050565b600060208201905081810360008301526137d681613558565b9050919050565b600060208201905081810360008301526137f68161359e565b9050919050565b60006020820190508181036000830152613816816135c1565b9050919050565b600060208201905061383260008301846135e4565b92915050565b6000613842613853565b905061384e8282613b31565b919050565b6000604051905090565b600067ffffffffffffffff82111561387857613877613c98565b5b61388182613cdb565b9050602081019050919050565b600067ffffffffffffffff8211156138a9576138a8613c98565b5b6138b282613cdb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061392d82613ab3565b915061393883613ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396d5761396c613bdc565b5b828201905092915050565b600061398382613ab3565b915061398e83613ab3565b92508261399e5761399d613c0b565b5b828204905092915050565b60006139b482613ab3565b91506139bf83613ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f8576139f7613bdc565b5b828202905092915050565b6000613a0e82613ab3565b9150613a1983613ab3565b925082821015613a2c57613a2b613bdc565b5b828203905092915050565b6000613a4282613a93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a8c82613a37565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aea578082015181840152602081019050613acf565b83811115613af9576000848401525b50505050565b60006002820490506001821680613b1757607f821691505b60208210811415613b2b57613b2a613c3a565b5b50919050565b613b3a82613cdb565b810181811067ffffffffffffffff82111715613b5957613b58613c98565b5b80604052505050565b6000613b6d82613ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba057613b9f613bdc565b5b600182019050919050565b6000613bb682613ab3565b9150613bc183613ab3565b925082613bd157613bd0613c0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613eb881613a37565b8114613ec357600080fd5b50565b613ecf81613a49565b8114613eda57600080fd5b50565b613ee681613a55565b8114613ef157600080fd5b50565b613efd81613a81565b8114613f0857600080fd5b50565b613f1481613ab3565b8114613f1f57600080fd5b5056fea264697066735822122002f6bad65f8a3e403f97963ad1b71adb19150f6c3655b9a22252450ebbd8cc1464736f6c63430008070033

Deployed Bytecode Sourcemap

46430:2821:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28221:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48571:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31606:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32672:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27470:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48052:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33966:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46767:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48169:209;;;;;;;;;;;;;:::i;:::-;;34207:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46890:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48752:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46857:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31415:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48386:83;;;;;;;;;;;;;:::i;:::-;;46483:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28590:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2695:103;;;;;;;;;;;;;:::i;:::-;;2044:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48477:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48660:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31775:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46815:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46985:497;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33385:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34463:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46570:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48860:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46623:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47599:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2953:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46721:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28221:305;28323:4;28375:25;28360:40;;;:11;:40;;;;:105;;;;28432:33;28417:48;;;:11;:48;;;;28360:105;:158;;;;28482:36;28506:11;28482:23;:36::i;:::-;28360:158;28340:178;;28221:305;;;:::o;48571:81::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48638:6:::1;48629;;:15;;;;;;;;;;;;;;;;;;48571:81:::0;:::o;31606:100::-;31660:13;31693:5;31686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31606:100;:::o;33109:204::-;33177:7;33202:16;33210:7;33202;:16::i;:::-;33197:64;;33227:34;;;;;;;;;;;;;;33197:64;33281:15;:24;33297:7;33281:24;;;;;;;;;;;;;;;;;;;;;33274:31;;33109:204;;;:::o;32672:371::-;32745:13;32761:24;32777:7;32761:15;:24::i;:::-;32745:40;;32806:5;32800:11;;:2;:11;;;32796:48;;;32820:24;;;;;;;;;;;;;;32796:48;32877:5;32861:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32887:37;32904:5;32911:12;:10;:12::i;:::-;32887:16;:37::i;:::-;32886:38;32861:63;32857:138;;;32948:35;;;;;;;;;;;;;;32857:138;33007:28;33016:2;33020:7;33029:5;33007:8;:28::i;:::-;32734:309;32672:371;;:::o;27470:303::-;27514:7;27739:15;:13;:15::i;:::-;27724:12;;27708:13;;:28;:46;27701:53;;27470:303;:::o;48052:109::-;48105:7;48132:21;48146:6;48132:13;:21::i;:::-;48125:28;;48052:109;;;:::o;33966:170::-;34100:28;34110:4;34116:2;34120:7;34100:9;:28::i;:::-;33966:170;;;:::o;46767:41::-;46804:4;46767:41;:::o;48169:209::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48219:15:::1;48237:21;48219:39;;48270:12;48288;:10;:12::i;:::-;:17;;48313:7;48288:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48269:56;;;48344:7;48336:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48208:170;;48169:209::o:0;34207:185::-;34345:39;34362:4;34368:2;34372:7;34345:39;;;;;;;;;;;;:16;:39::i;:::-;34207:185;;;:::o;46890:28::-;;;;;;;;;;;;;:::o;48752:100::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48836:8:::1;48826:7;:18;;;;;;;;;;;;:::i;:::-;;48752:100:::0;:::o;46857:26::-;;;;;;;;;;;;;:::o;31415:124::-;31479:7;31506:20;31518:7;31506:11;:20::i;:::-;:25;;;31499:32;;31415:124;;;:::o;48386:83::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48435:26:::1;48445:12;:10;:12::i;:::-;48459:1;48435:9;:26::i;:::-;48386:83::o:0;46483:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28590:206::-;28654:7;28695:1;28678:19;;:5;:19;;;28674:60;;;28706:28;;;;;;;;;;;;;;28674:60;28760:12;:19;28773:5;28760:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28752:36;;28745:43;;28590:206;;;:::o;2695:103::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2760:30:::1;2787:1;2760:18;:30::i;:::-;2695:103::o:0;2044:87::-;2090:7;2117:6;;;;;;;;;;;2110:13;;2044:87;:::o;48477:86::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48549:6:::1;48541:5;:14;;;;48477:86:::0;:::o;48660:84::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48730:6:::1;48719:8;;:17;;;;;;;;;;;;;;;;;;48660:84:::0;:::o;31775:104::-;31831:13;31864:7;31857:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31775:104;:::o;46815:33::-;;;;:::o;46985:497::-;47050:15;47068:12;:10;:12::i;:::-;47050:30;;47100:6;;;;;;;;;;;47099:7;47091:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47166:7;47150:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46804:4;47136:37;;47128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47225:1;47215:7;:11;47207:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47273:7;47260:20;;:9;:20;;;47252:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47330:7;46758:2;47316:21;;47308:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47398:9;47389:5;;47379:7;:15;;;;:::i;:::-;:28;47371:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47447:27;47457:7;47466;47447:9;:27::i;:::-;47039:443;46985:497;:::o;33385:279::-;33488:12;:10;:12::i;:::-;33476:24;;:8;:24;;;33472:54;;;33509:17;;;;;;;;;;;;;;33472:54;33584:8;33539:18;:32;33558:12;:10;:12::i;:::-;33539:32;;;;;;;;;;;;;;;:42;33572:8;33539:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33637:8;33608:48;;33623:12;:10;:12::i;:::-;33608:48;;;33647:8;33608:48;;;;;;:::i;:::-;;;;;;;;33385:279;;:::o;34463:369::-;34630:28;34640:4;34646:2;34650:7;34630:9;:28::i;:::-;34673:15;:2;:13;;;:15::i;:::-;:76;;;;;34693:56;34724:4;34730:2;34734:7;34743:5;34693:30;:56::i;:::-;34692:57;34673:76;34669:156;;;34773:40;;;;;;;;;;;;;;34669:156;34463:369;;;;:::o;46570:46::-;;;;;;;;;;;;;;;;;;;:::o;48860:388::-;48926:13;48960:17;48968:8;48960:7;:17::i;:::-;48952:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49045:1;49027:7;49021:21;;;;;:::i;:::-;;;:25;:219;;;;;;;;;;;;;;;;;49103:7;49127:8;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;;;;;49138:26;49155:8;49138:16;:26::i;:::-;49127:52;49196:13;;;;;;;;;;;;;;;;;49070:154;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49021:219;49014:226;;48860:388;;;:::o;46623:89::-;46670:42;46623:89;:::o;47599:445::-;47724:4;47809:27;46670:42;47809:65;;47930:8;47889:49;;47897:13;:21;;;47919:5;47897:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47889:49;;;47885:93;;;47962:4;47955:11;;;;;47885:93;47997:39;48020:5;48027:8;47997:22;:39::i;:::-;47990:46;;;47599:445;;;;;:::o;2953:201::-;2275:12;:10;:12::i;:::-;2264:23;;:7;:5;:7::i;:::-;:23;;;2256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:1:::1;3042:22;;:8;:22;;;;3034:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3118:28;3137:8;3118:18;:28::i;:::-;2953:201:::0;:::o;46721:39::-;46758:2;46721:39;:::o;23602:157::-;23687:4;23726:25;23711:40;;;:11;:40;;;;23704:47;;23602:157;;;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;35087:187::-;35144:4;35187:7;35168:15;:13;:15::i;:::-;:26;;:53;;;;;35208:13;;35198:7;:23;35168:53;:98;;;;;35239:11;:20;35251:7;35239:20;;;;;;;;;;;:27;;;;;;;;;;;;35238:28;35168:98;35161:105;;35087:187;;;:::o;43403:196::-;43545:2;43518:15;:24;43534:7;43518:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43583:7;43579:2;43563:28;;43572:5;43563:28;;;;;;;;;;;;43403:196;;;:::o;47490:101::-;47555:7;47582:1;47575:8;;47490:101;:::o;28878:207::-;28939:7;28980:1;28963:19;;:5;:19;;;28959:59;;;28991:27;;;;;;;;;;;;;;28959:59;29044:12;:19;29057:5;29044:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29036:41;;29029:48;;28878:207;;;:::o;38905:2112::-;39020:35;39058:20;39070:7;39058:11;:20::i;:::-;39020:58;;39091:22;39133:13;:18;;;39117:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39168:50;39185:13;:18;;;39205:12;:10;:12::i;:::-;39168:16;:50::i;:::-;39117:101;:154;;;;39259:12;:10;:12::i;:::-;39235:36;;:20;39247:7;39235:11;:20::i;:::-;:36;;;39117:154;39091:181;;39290:17;39285:66;;39316:35;;;;;;;;;;;;;;39285:66;39388:4;39366:26;;:13;:18;;;:26;;;39362:67;;39401:28;;;;;;;;;;;;;;39362:67;39458:1;39444:16;;:2;:16;;;39440:52;;;39469:23;;;;;;;;;;;;;;39440:52;39505:43;39527:4;39533:2;39537:7;39546:1;39505:21;:43::i;:::-;39613:49;39630:1;39634:7;39643:13;:18;;;39613:8;:49::i;:::-;39988:1;39958:12;:18;39971:4;39958:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40032:1;40004:12;:16;40017:2;40004:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40078:2;40050:11;:20;40062:7;40050:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40140:15;40095:11;:20;40107:7;40095:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40408:19;40440:1;40430:7;:11;40408:33;;40501:1;40460:43;;:11;:24;40472:11;40460:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40456:445;;;40685:13;;40671:11;:27;40667:219;;;40755:13;:18;;;40723:11;:24;40735:11;40723:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40838:13;:28;;;40796:11;:24;40808:11;40796:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40667:219;40456:445;39933:979;40948:7;40944:2;40929:27;;40938:4;40929:27;;;;;;;;;;;;40967:42;40988:4;40994:2;40998:7;41007:1;40967:20;:42::i;:::-;39009:2008;;38905:2112;;;:::o;30245:1108::-;30306:21;;:::i;:::-;30340:12;30355:7;30340:22;;30423:4;30404:15;:13;:15::i;:::-;:23;;:47;;;;;30438:13;;30431:4;:20;30404:47;30400:886;;;30472:31;30506:11;:17;30518:4;30506:17;;;;;;;;;;;30472:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30547:9;:16;;;30542:729;;30618:1;30592:28;;:9;:14;;;:28;;;30588:101;;30656:9;30649:16;;;;;;30588:101;30991:261;30998:4;30991:261;;;31031:6;;;;;;;;31076:11;:17;31088:4;31076:17;;;;;;;;;;;31064:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31150:1;31124:28;;:9;:14;;;:28;;;31120:109;;31192:9;31185:16;;;;;;31120:109;30991:261;;;30542:729;30453:833;30400:886;31314:31;;;;;;;;;;;;;;30245:1108;;;;:::o;35282:104::-;35351:27;35361:2;35365:8;35351:27;;;;;;;;;;;;:9;:27::i;:::-;35282:104;;:::o;3314:191::-;3388:16;3407:6;;;;;;;;;;;3388:25;;3433:8;3424:6;;:17;;;;;;;;;;;;;;;;;;3488:8;3457:40;;3478:8;3457:40;;;;;;;;;;;;3377:128;3314:191;:::o;13375:326::-;13435:4;13692:1;13670:7;:19;;;:23;13663:30;;13375:326;;;:::o;44091:667::-;44254:4;44291:2;44275:36;;;44312:12;:10;:12::i;:::-;44326:4;44332:7;44341:5;44275:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44271:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44526:1;44509:6;:13;:18;44505:235;;;44555:40;;;;;;;;;;;;;;44505:235;44698:6;44692:13;44683:6;44679:2;44675:15;44668:38;44271:480;44404:45;;;44394:55;;;:6;:55;;;;44387:62;;;44091:667;;;;;;:::o;20995:723::-;21051:13;21281:1;21272:5;:10;21268:53;;;21299:10;;;;;;;;;;;;;;;;;;;;;21268:53;21331:12;21346:5;21331:20;;21362:14;21387:78;21402:1;21394:4;:9;21387:78;;21420:8;;;;;:::i;:::-;;;;21451:2;21443:10;;;;;:::i;:::-;;;21387:78;;;21475:19;21507:6;21497:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21475:39;;21525:154;21541:1;21532:5;:10;21525:154;;21569:1;21559:11;;;;;:::i;:::-;;;21636:2;21628:5;:10;;;;:::i;:::-;21615:2;:24;;;;:::i;:::-;21602:39;;21585:6;21592;21585:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21665:2;21656:11;;;;;:::i;:::-;;;21525:154;;;21703:6;21689:21;;;;;20995:723;;;;:::o;33735:164::-;33832:4;33856:18;:25;33875:5;33856:25;;;;;;;;;;;;;;;:35;33882:8;33856:35;;;;;;;;;;;;;;;;;;;;;;;;;33849:42;;33735:164;;;;:::o;45406:159::-;;;;;:::o;46224:158::-;;;;;:::o;35749:163::-;35872:32;35878:2;35882:8;35892:5;35899:4;35872:5;:32::i;:::-;35749:163;;;:::o;36171:2480::-;36310:20;36333:13;;36310:36;;36375:1;36361:16;;:2;:16;;;36357:48;;;36386:19;;;;;;;;;;;;;;36357:48;36432:1;36420:8;:13;36416:44;;;36442:18;;;;;;;;;;;;;;36416:44;36473:61;36503:1;36507:2;36511:12;36525:8;36473:21;:61::i;:::-;36600:42;36594:48;;:2;:48;;;:113;;;;36665:42;36659:48;;:2;:48;;;36594:113;:178;;;;36730:42;36724:48;;:2;:48;;;36594:178;:243;;;;36795:42;36789:48;;:2;:48;;;36594:243;:308;;;;36860:42;36854:48;;:2;:48;;;36594:308;:373;;;;36925:42;36919:48;;:2;:48;;;36594:373;:438;;;;36990:42;36984:48;;:2;:48;;;36594:438;:503;;;;37055:42;37049:48;;:2;:48;;;36594:503;36577:663;;;37123:15;37158:6;37167:1;37158:10;;37153:76;37174:5;37170:1;:9;37153:76;;;37204:9;;;;;:::i;:::-;;;;37181:3;;;;;:::i;:::-;;;;37153:76;;;;37108:132;36577:663;37551:8;37516:12;:16;37529:2;37516:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37615:8;37575:12;:16;37588:2;37575:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37674:2;37641:11;:25;37653:12;37641:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37741:15;37691:11;:25;37703:12;37691:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37774:20;37797:12;37774:35;;37824:11;37853:8;37838:12;:23;37824:37;;37882:4;:23;;;;;37890:15;:2;:13;;;:15::i;:::-;37882:23;37878:641;;;37926:314;37982:12;37978:2;37957:38;;37974:1;37957:38;;;;;;;;;;;;38023:69;38062:1;38066:2;38070:14;;;;;;38086:5;38023:30;:69::i;:::-;38018:174;;38128:40;;;;;;;;;;;;;;38018:174;38235:3;38219:12;:19;;37926:314;;38321:12;38304:13;;:29;38300:43;;38335:8;;;38300:43;37878:641;;;38384:120;38440:14;;;;;;38436:2;38415:40;;38432:1;38415:40;;;;;;;;;;;;38499:3;38483:12;:19;;38384:120;;37878:641;38549:12;38533:13;:28;;;;37491:1082;;38583:60;38612:1;38616:2;38620:12;38634:8;38583:20;:60::i;:::-;36299:2352;36171:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:398::-;13476:3;13497:83;13578:1;13573:3;13497:83;:::i;:::-;13490:90;;13589:93;13678:3;13589:93;:::i;:::-;13707:1;13702:3;13698:11;13691:18;;13317:398;;;:::o;13721:366::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:118::-;14552:24;14570:5;14552:24;:::i;:::-;14547:3;14540:37;14465:118;;:::o;14589:589::-;14814:3;14836:92;14924:3;14915:6;14836:92;:::i;:::-;14829:99;;14945:95;15036:3;15027:6;14945:95;:::i;:::-;14938:102;;15057:95;15148:3;15139:6;15057:95;:::i;:::-;15050:102;;15169:3;15162:10;;14589:589;;;;;;:::o;15184:379::-;15368:3;15390:147;15533:3;15390:147;:::i;:::-;15383:154;;15554:3;15547:10;;15184:379;;;:::o;15569:222::-;15662:4;15700:2;15689:9;15685:18;15677:26;;15713:71;15781:1;15770:9;15766:17;15757:6;15713:71;:::i;:::-;15569:222;;;;:::o;15797:640::-;15992:4;16030:3;16019:9;16015:19;16007:27;;16044:71;16112:1;16101:9;16097:17;16088:6;16044:71;:::i;:::-;16125:72;16193:2;16182:9;16178:18;16169:6;16125:72;:::i;:::-;16207;16275:2;16264:9;16260:18;16251:6;16207:72;:::i;:::-;16326:9;16320:4;16316:20;16311:2;16300:9;16296:18;16289:48;16354:76;16425:4;16416:6;16354:76;:::i;:::-;16346:84;;15797:640;;;;;;;:::o;16443:210::-;16530:4;16568:2;16557:9;16553:18;16545:26;;16581:65;16643:1;16632:9;16628:17;16619:6;16581:65;:::i;:::-;16443:210;;;;:::o;16659:313::-;16772:4;16810:2;16799:9;16795:18;16787:26;;16859:9;16853:4;16849:20;16845:1;16834:9;16830:17;16823:47;16887:78;16960:4;16951:6;16887:78;:::i;:::-;16879:86;;16659:313;;;;:::o;16978:419::-;17144:4;17182:2;17171:9;17167:18;17159:26;;17231:9;17225:4;17221:20;17217:1;17206:9;17202:17;17195:47;17259:131;17385:4;17259:131;:::i;:::-;17251:139;;16978:419;;;:::o;17403:::-;17569:4;17607:2;17596:9;17592:18;17584:26;;17656:9;17650:4;17646:20;17642:1;17631:9;17627:17;17620:47;17684:131;17810:4;17684:131;:::i;:::-;17676:139;;17403:419;;;:::o;17828:::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17828:419;;;:::o;18253:::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18506:9;18500:4;18496:20;18492:1;18481:9;18477:17;18470:47;18534:131;18660:4;18534:131;:::i;:::-;18526:139;;18253:419;;;:::o;18678:::-;18844:4;18882:2;18871:9;18867:18;18859:26;;18931:9;18925:4;18921:20;18917:1;18906:9;18902:17;18895:47;18959:131;19085:4;18959:131;:::i;:::-;18951:139;;18678:419;;;:::o;19103:::-;19269:4;19307:2;19296:9;19292:18;19284:26;;19356:9;19350:4;19346:20;19342:1;19331:9;19327:17;19320:47;19384:131;19510:4;19384:131;:::i;:::-;19376:139;;19103:419;;;:::o;19528:::-;19694:4;19732:2;19721:9;19717:18;19709:26;;19781:9;19775:4;19771:20;19767:1;19756:9;19752:17;19745:47;19809:131;19935:4;19809:131;:::i;:::-;19801:139;;19528:419;;;:::o;19953:::-;20119:4;20157:2;20146:9;20142:18;20134:26;;20206:9;20200:4;20196:20;20192:1;20181:9;20177:17;20170:47;20234:131;20360:4;20234:131;:::i;:::-;20226:139;;19953:419;;;:::o;20378:::-;20544:4;20582:2;20571:9;20567:18;20559:26;;20631:9;20625:4;20621:20;20617:1;20606:9;20602:17;20595:47;20659:131;20785:4;20659:131;:::i;:::-;20651:139;;20378:419;;;:::o;20803:::-;20969:4;21007:2;20996:9;20992:18;20984:26;;21056:9;21050:4;21046:20;21042:1;21031:9;21027:17;21020:47;21084:131;21210:4;21084:131;:::i;:::-;21076:139;;20803:419;;;:::o;21228:222::-;21321:4;21359:2;21348:9;21344:18;21336:26;;21372:71;21440:1;21429:9;21425:17;21416:6;21372:71;:::i;:::-;21228:222;;;;:::o;21456:129::-;21490:6;21517:20;;:::i;:::-;21507:30;;21546:33;21574:4;21566:6;21546:33;:::i;:::-;21456:129;;;:::o;21591:75::-;21624:6;21657:2;21651:9;21641:19;;21591:75;:::o;21672:307::-;21733:4;21823:18;21815:6;21812:30;21809:56;;;21845:18;;:::i;:::-;21809:56;21883:29;21905:6;21883:29;:::i;:::-;21875:37;;21967:4;21961;21957:15;21949:23;;21672:307;;;:::o;21985:308::-;22047:4;22137:18;22129:6;22126:30;22123:56;;;22159:18;;:::i;:::-;22123:56;22197:29;22219:6;22197:29;:::i;:::-;22189:37;;22281:4;22275;22271:15;22263:23;;21985:308;;;:::o;22299:141::-;22348:4;22371:3;22363:11;;22394:3;22391:1;22384:14;22428:4;22425:1;22415:18;22407:26;;22299:141;;;:::o;22446:98::-;22497:6;22531:5;22525:12;22515:22;;22446:98;;;:::o;22550:99::-;22602:6;22636:5;22630:12;22620:22;;22550:99;;;:::o;22655:168::-;22738:11;22772:6;22767:3;22760:19;22812:4;22807:3;22803:14;22788:29;;22655:168;;;;:::o;22829:147::-;22930:11;22967:3;22952:18;;22829:147;;;;:::o;22982:169::-;23066:11;23100:6;23095:3;23088:19;23140:4;23135:3;23131:14;23116:29;;22982:169;;;;:::o;23157:148::-;23259:11;23296:3;23281:18;;23157:148;;;;:::o;23311:305::-;23351:3;23370:20;23388:1;23370:20;:::i;:::-;23365:25;;23404:20;23422:1;23404:20;:::i;:::-;23399:25;;23558:1;23490:66;23486:74;23483:1;23480:81;23477:107;;;23564:18;;:::i;:::-;23477:107;23608:1;23605;23601:9;23594:16;;23311:305;;;;:::o;23622:185::-;23662:1;23679:20;23697:1;23679:20;:::i;:::-;23674:25;;23713:20;23731:1;23713:20;:::i;:::-;23708:25;;23752:1;23742:35;;23757:18;;:::i;:::-;23742:35;23799:1;23796;23792:9;23787:14;;23622:185;;;;:::o;23813:348::-;23853:7;23876:20;23894:1;23876:20;:::i;:::-;23871:25;;23910:20;23928:1;23910:20;:::i;:::-;23905:25;;24098:1;24030:66;24026:74;24023:1;24020:81;24015:1;24008:9;24001:17;23997:105;23994:131;;;24105:18;;:::i;:::-;23994:131;24153:1;24150;24146:9;24135:20;;23813:348;;;;:::o;24167:191::-;24207:4;24227:20;24245:1;24227:20;:::i;:::-;24222:25;;24261:20;24279:1;24261:20;:::i;:::-;24256:25;;24300:1;24297;24294:8;24291:34;;;24305:18;;:::i;:::-;24291:34;24350:1;24347;24343:9;24335:17;;24167:191;;;;:::o;24364:96::-;24401:7;24430:24;24448:5;24430:24;:::i;:::-;24419:35;;24364:96;;;:::o;24466:90::-;24500:7;24543:5;24536:13;24529:21;24518:32;;24466:90;;;:::o;24562:149::-;24598:7;24638:66;24631:5;24627:78;24616:89;;24562:149;;;:::o;24717:125::-;24783:7;24812:24;24830:5;24812:24;:::i;:::-;24801:35;;24717:125;;;:::o;24848:126::-;24885:7;24925:42;24918:5;24914:54;24903:65;;24848:126;;;:::o;24980:77::-;25017:7;25046:5;25035:16;;24980:77;;;:::o;25063:154::-;25147:6;25142:3;25137;25124:30;25209:1;25200:6;25195:3;25191:16;25184:27;25063:154;;;:::o;25223:307::-;25291:1;25301:113;25315:6;25312:1;25309:13;25301:113;;;25400:1;25395:3;25391:11;25385:18;25381:1;25376:3;25372:11;25365:39;25337:2;25334:1;25330:10;25325:15;;25301:113;;;25432:6;25429:1;25426:13;25423:101;;;25512:1;25503:6;25498:3;25494:16;25487:27;25423:101;25272:258;25223:307;;;:::o;25536:320::-;25580:6;25617:1;25611:4;25607:12;25597:22;;25664:1;25658:4;25654:12;25685:18;25675:81;;25741:4;25733:6;25729:17;25719:27;;25675:81;25803:2;25795:6;25792:14;25772:18;25769:38;25766:84;;;25822:18;;:::i;:::-;25766:84;25587:269;25536:320;;;:::o;25862:281::-;25945:27;25967:4;25945:27;:::i;:::-;25937:6;25933:40;26075:6;26063:10;26060:22;26039:18;26027:10;26024:34;26021:62;26018:88;;;26086:18;;:::i;:::-;26018:88;26126:10;26122:2;26115:22;25905:238;25862:281;;:::o;26149:233::-;26188:3;26211:24;26229:5;26211:24;:::i;:::-;26202:33;;26257:66;26250:5;26247:77;26244:103;;;26327:18;;:::i;:::-;26244:103;26374:1;26367:5;26363:13;26356:20;;26149:233;;;:::o;26388:176::-;26420:1;26437:20;26455:1;26437:20;:::i;:::-;26432:25;;26471:20;26489:1;26471:20;:::i;:::-;26466:25;;26510:1;26500:35;;26515:18;;:::i;:::-;26500:35;26556:1;26553;26549:9;26544:14;;26388:176;;;;:::o;26570:180::-;26618:77;26615:1;26608:88;26715:4;26712:1;26705:15;26739:4;26736:1;26729:15;26756:180;26804:77;26801:1;26794:88;26901:4;26898:1;26891:15;26925:4;26922:1;26915:15;26942:180;26990:77;26987:1;26980:88;27087:4;27084:1;27077:15;27111:4;27108:1;27101:15;27128:180;27176:77;27173:1;27166:88;27273:4;27270:1;27263:15;27297:4;27294:1;27287:15;27314:180;27362:77;27359:1;27352:88;27459:4;27456:1;27449:15;27483:4;27480:1;27473:15;27500:117;27609:1;27606;27599:12;27623:117;27732:1;27729;27722:12;27746:117;27855:1;27852;27845:12;27869:117;27978:1;27975;27968:12;27992:102;28033:6;28084:2;28080:7;28075:2;28068:5;28064:14;28060:28;28050:38;;27992:102;;;:::o;28100:156::-;28240:8;28236:1;28228:6;28224:14;28217:32;28100:156;:::o;28262:225::-;28402:34;28398:1;28390:6;28386:14;28379:58;28471:8;28466:2;28458:6;28454:15;28447:33;28262:225;:::o;28493:167::-;28633:19;28629:1;28621:6;28617:14;28610:43;28493:167;:::o;28666:160::-;28806:12;28802:1;28794:6;28790:14;28783:36;28666:160;:::o;28832:168::-;28972:20;28968:1;28960:6;28956:14;28949:44;28832:168;:::o;29006:171::-;29146:23;29142:1;29134:6;29130:14;29123:47;29006:171;:::o;29183:182::-;29323:34;29319:1;29311:6;29307:14;29300:58;29183:182;:::o;29371:172::-;29511:24;29507:1;29499:6;29495:14;29488:48;29371:172;:::o;29549:114::-;;:::o;29669:164::-;29809:16;29805:1;29797:6;29793:14;29786:40;29669:164;:::o;29839:162::-;29979:14;29975:1;29967:6;29963:14;29956:38;29839:162;:::o;30007:122::-;30080:24;30098:5;30080:24;:::i;:::-;30073:5;30070:35;30060:63;;30119:1;30116;30109:12;30060:63;30007:122;:::o;30135:116::-;30205:21;30220:5;30205:21;:::i;:::-;30198:5;30195:32;30185:60;;30241:1;30238;30231:12;30185:60;30135:116;:::o;30257:120::-;30329:23;30346:5;30329:23;:::i;:::-;30322:5;30319:34;30309:62;;30367:1;30364;30357:12;30309:62;30257:120;:::o;30383:180::-;30485:53;30532:5;30485:53;:::i;:::-;30478:5;30475:64;30465:92;;30553:1;30550;30543:12;30465:92;30383:180;:::o;30569:122::-;30642:24;30660:5;30642:24;:::i;:::-;30635:5;30632:35;30622:63;;30681:1;30678;30671:12;30622:63;30569:122;:::o

Swarm Source

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