ETH Price: $3,093.15 (-0.32%)
Gas: 2 Gwei

Token

Rekt Dawgs (REKTDAWG)
 

Overview

Max Total Supply

1,531 REKTDAWG

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 REKTDAWG
0x0c2d8def28cd4053aa2c191b02243f06d23dba12
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:
RektDawg

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: rektdawg.sol


pragma solidity ^0.8.4;




contract RektDawg is ERC721A, Ownable {
    uint256 public NUM_FREE_MINTS = 1500;
    uint256 public MAX_FREE_PER_WALLET = 5;

    uint256 public MAX_PER_TX = 10;
    uint256 public MAX_PUBLIC_PER_WALLET = 20;
    uint256 public publicMintPrice = 0.0025 ether;

    uint256 public maxSupply = 6969;
    
    mapping(address => uint256) private freeMintCounts;
    mapping(address => uint256) private publicMintCounts;

    // reveal config
    bool public revealed = false;
    string public baseURI = "";

    bool public isMintEnabled = false;

    constructor() ERC721A("Rekt Dawgs", "REKTDAWG") {}

    function devMint(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }

    function freeMint(uint256 quantity) external payable {
        require(isMintEnabled, "Minting has not started yet");
        require(totalSupply() + quantity <= NUM_FREE_MINTS, "All free mints gone");
        require(quantity <= MAX_FREE_PER_WALLET, "Cannot mint more than max free per wallet");
        require(freeMintCounts[msg.sender] + quantity <= MAX_FREE_PER_WALLET,
            "Reached free mints limit on the wallet");
        
        _safeMint(msg.sender, quantity);
        freeMintCounts[msg.sender] += quantity;
    }

    function mint(uint256 quantity) external payable {
        require(isMintEnabled, "Minting has not started yet");
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");
        require(quantity <= MAX_PER_TX, "Cannot mint more than max mint per transaction");
        require(publicMintCounts[msg.sender] + quantity <= MAX_PUBLIC_PER_WALLET,
            "Reached public mints limit on the wallet");
        require(msg.value >= (publicMintPrice * quantity), "Not enough ether sent");
        
        _safeMint(msg.sender, quantity);
        publicMintCounts[msg.sender] += quantity;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setRevealStatus(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPublicMintPrice(uint256 _price) public onlyOwner {
        publicMintPrice = _price;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _baseURI = baseURI;
        if (revealed) {
            return bytes(_baseURI).length != 0 ? string(abi.encodePacked(_baseURI, Strings.toString(tokenId))) : '';
        } else {
            return string(abi.encodePacked(_baseURI, "hidden.json"));
        }
    }

    function toggleMintStatus() public onlyOwner {
        isMintEnabled = !isMintEnabled;
    }

    function getBalance() public view returns(uint) {
        return address(this).balance;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintStatus","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526105dc6009556005600a55600a600b556014600c556608e1bc9bf04000600d55611b39600e556000601160006101000a81548160ff02191690831515021790555060405180602001604052806000815250601290805190602001906200006c92919062000245565b506000601360006101000a81548160ff0219169083151502179055503480156200009557600080fd5b506040518060400160405280600a81526020017f52656b74204461776773000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f52454b544441574700000000000000000000000000000000000000000000000081525081600290805190602001906200011a92919062000245565b5080600390805190602001906200013392919062000245565b50620001446200017260201b60201c565b60008190555050506200016c620001606200017760201b60201c565b6200017f60201b60201c565b6200035a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025390620002f5565b90600052602060002090601f016020900481019282620002775760008555620002c3565b82601f106200029257805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c2578251825591602001919060010190620002a5565b5b509050620002d29190620002d6565b5090565b5b80821115620002f1576000816000905550600101620002d7565b5090565b600060028204905060018216806200030e57607f821691505b602082108114156200032557620003246200032b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e06806200036a6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d8cfb9991161006f578063d8cfb99914610749578063dc53fd9214610760578063e985e9c51461078b578063f2fde38b146107c8578063f43a22dc146107f15761020f565b8063a22cb4651461068f578063b88d4fde146106b8578063c87b56dd146106e1578063d5abeb011461071e5761020f565b80638da5cb5b116100e75780638da5cb5b146105c757806395d89b41146105f2578063982d669e1461061d57806398710d1e14610648578063a0712d68146106735761020f565b806370a082311461052e578063715018a61461056b5780637c928fe91461058257806384c99fb41461059e5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461044b5780635d82cf6e146104745780636352211e1461049d5780636c0360eb146104da5780636f8b44b0146105055761020f565b80633ccfd60b146103b557806342842e0e146103cc5780634e26d1af146103f557806351830227146104205761020f565b806312065fe0116101e257806312065fe0146102e257806318160ddd1461030d57806323b872dd14610338578063346de50a14610361578063375a069a1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613079565b61081c565b604051610248919061346a565b60405180910390f35b34801561025d57600080fd5b506102666108fe565b6040516102739190613485565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061311c565b610990565b6040516102b09190613403565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061300c565b610a0c565b005b3480156102ee57600080fd5b506102f7610b17565b6040516103049190613607565b60405180910390f35b34801561031957600080fd5b50610322610b1f565b60405161032f9190613607565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612ef6565b610b36565b005b34801561036d57600080fd5b50610376610b46565b604051610383919061346a565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061311c565b610b59565b005b3480156103c157600080fd5b506103ca610c39565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612ef6565b610d05565b005b34801561040157600080fd5b5061040a610d25565b6040516104179190613607565b60405180910390f35b34801561042c57600080fd5b50610435610d2b565b604051610442919061346a565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906130d3565b610d3e565b005b34801561048057600080fd5b5061049b6004803603810190610496919061311c565b610dd4565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061311c565b610e5a565b6040516104d19190613403565b60405180910390f35b3480156104e657600080fd5b506104ef610e70565b6040516104fc9190613485565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061311c565b610efe565b005b34801561053a57600080fd5b5061055560048036038101906105509190612e89565b610f84565b6040516105629190613607565b60405180910390f35b34801561057757600080fd5b50610580611054565b005b61059c6004803603810190610597919061311c565b6110dc565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061304c565b6112b9565b005b3480156105d357600080fd5b506105dc611352565b6040516105e99190613403565b60405180910390f35b3480156105fe57600080fd5b5061060761137c565b6040516106149190613485565b60405180910390f35b34801561062957600080fd5b5061063261140e565b60405161063f9190613607565b60405180910390f35b34801561065457600080fd5b5061065d611414565b60405161066a9190613607565b60405180910390f35b61068d6004803603810190610688919061311c565b61141a565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fcc565b611647565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612f49565b6117bf565b005b3480156106ed57600080fd5b506107086004803603810190610703919061311c565b61183b565b6040516107159190613485565b60405180910390f35b34801561072a57600080fd5b506107336119a4565b6040516107409190613607565b60405180910390f35b34801561075557600080fd5b5061075e6119aa565b005b34801561076c57600080fd5b50610775611a52565b6040516107829190613607565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190612eb6565b611a58565b6040516107bf919061346a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612e89565b611aec565b005b3480156107fd57600080fd5b50610806611be4565b6040516108139190613607565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611bea565b5b9050919050565b60606002805461090d906138b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610939906138b7565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611c54565b6109d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1782610e5a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9e611ca2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ad05750610ace81610ac9611ca2565b611a58565b155b15610b07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b12838383611caa565b505050565b600047905090565b6000610b29611d5c565b6001546000540303905090565b610b41838383611d61565b505050565b601360009054906101000a900460ff1681565b610b61611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610b7f611352565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90613567565b60405180910390fd5b600e5481610be1610b1f565b610beb91906136ec565b1115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613547565b60405180910390fd5b610c363382612217565b50565b610c41611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610c5f611352565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90613567565b60405180910390fd5b610cbd611352565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d02573d6000803e3d6000fd5b50565b610d20838383604051806020016040528060008152506117bf565b505050565b600c5481565b601160009054906101000a900460ff1681565b610d46611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610d64611352565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613567565b60405180910390fd5b8060129080519060200190610dd0929190612c5a565b5050565b610ddc611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611352565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613567565b60405180910390fd5b80600d8190555050565b6000610e6582612235565b600001519050919050565b60128054610e7d906138b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea9906138b7565b8015610ef65780601f10610ecb57610100808354040283529160200191610ef6565b820191906000526020600020905b815481529060010190602001808311610ed957829003601f168201915b505050505081565b610f06611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610f24611352565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613567565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61105c611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661107a611352565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613567565b60405180910390fd5b6110da60006124c4565b565b601360009054906101000a900460ff1661112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906134a7565b60405180910390fd5b60095481611137610b1f565b61114191906136ec565b1115611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906135e7565b60405180910390fd5b600a548111156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906134e7565b60405180910390fd5b600a5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121591906136ec565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613507565b60405180910390fd5b6112603382612217565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112af91906136ec565b9250508190555050565b6112c1611ca2565b73ffffffffffffffffffffffffffffffffffffffff166112df611352565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613567565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138b906138b7565b80601f01602080910402602001604051908101604052809291908181526020018280546113b7906138b7565b80156114045780601f106113d957610100808354040283529160200191611404565b820191906000526020600020905b8154815290600101906020018083116113e757829003601f168201915b5050505050905090565b60095481565b600a5481565b601360009054906101000a900460ff16611469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611460906134a7565b60405180910390fd5b600e5481611475610b1f565b61147f91906136ec565b11156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613547565b60405180910390fd5b600b54811115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906135c7565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461155391906136ec565b1115611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613527565b60405180910390fd5b80600d546115a29190613773565b3410156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906135a7565b60405180910390fd5b6115ee3382612217565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163d91906136ec565b9250508190555050565b61164f611ca2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c1611ca2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176e611ca2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b3919061346a565b60405180910390a35050565b6117ca848484611d61565b6117e98373ffffffffffffffffffffffffffffffffffffffff1661258a565b80156117fe57506117fc848484846125ad565b155b15611835576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061184682611c54565b611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613587565b60405180910390fd5b600060128054611894906138b7565b80601f01602080910402602001604051908101604052809291908181526020018280546118c0906138b7565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050601160009054906101000a900460ff161561197b576000815114156119485760405180602001604052806000815250611973565b806119528461270d565b6040516020016119639291906133bd565b6040516020818303038152906040525b91505061199f565b8060405160200161198c91906133e1565b6040516020818303038152906040529150505b919050565b600e5481565b6119b2611ca2565b73ffffffffffffffffffffffffffffffffffffffff166119d0611352565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613567565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af4611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611b12611352565b73ffffffffffffffffffffffffffffffffffffffff1614611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906134c7565b60405180910390fd5b611be1816124c4565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c5f611d5c565b11158015611c6e575060005482105b8015611c9b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611d6c82612235565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611df8611ca2565b73ffffffffffffffffffffffffffffffffffffffff161480611e275750611e2685611e21611ca2565b611a58565b5b80611e6c5750611e35611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611e5484610990565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ea5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f19858585600161286e565b611f2560008487611caa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121a55760005482146121a457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122108585856001612874565b5050505050565b61223182826040518060200160405280600081525061287a565b5050565b61223d612ce0565b60008290508061224b611d5c565b1115801561225a575060005481105b1561248d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236f5780925050506124bf565b5b60011561248a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124855780925050506124bf565b612370565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d3611ca2565b8786866040518563ffffffff1660e01b81526004016125f5949392919061341e565b602060405180830381600087803b15801561260f57600080fd5b505af192505050801561264057506040513d601f19601f8201168201806040525081019061263d91906130a6565b60015b6126ba573d8060008114612670576040519150601f19603f3d011682016040523d82523d6000602084013e612675565b606091505b506000815114156126b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612755576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612869565b600082905060005b600082146127875780806127709061391a565b915050600a826127809190613742565b915061275d565b60008167ffffffffffffffff8111156127a3576127a2613a50565b5b6040519080825280601f01601f1916602001820160405280156127d55781602001600182028036833780820191505090505b5090505b60008514612862576001826127ee91906137cd565b9150600a856127fd9190613963565b603061280991906136ec565b60f81b81838151811061281f5761281e613a21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285b9190613742565b94506127d9565b8093505050505b919050565b50505050565b50505050565b612887838383600161288c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612934576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612941600086838761286e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b0b5750612b0a8773ffffffffffffffffffffffffffffffffffffffff1661258a565b5b15612bd1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8060008884806001019550886125ad565b612bb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b11578260005414612bcc57600080fd5b612c3d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bd2575b816000819055505050612c536000868387612874565b5050505050565b828054612c66906138b7565b90600052602060002090601f016020900481019282612c885760008555612ccf565b82601f10612ca157805160ff1916838001178555612ccf565b82800160010185558215612ccf579182015b82811115612cce578251825591602001919060010190612cb3565b5b509050612cdc9190612d23565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d3c576000816000905550600101612d24565b5090565b6000612d53612d4e84613647565b613622565b905082815260208101848484011115612d6f57612d6e613a84565b5b612d7a848285613875565b509392505050565b6000612d95612d9084613678565b613622565b905082815260208101848484011115612db157612db0613a84565b5b612dbc848285613875565b509392505050565b600081359050612dd381613d74565b92915050565b600081359050612de881613d8b565b92915050565b600081359050612dfd81613da2565b92915050565b600081519050612e1281613da2565b92915050565b600082601f830112612e2d57612e2c613a7f565b5b8135612e3d848260208601612d40565b91505092915050565b600082601f830112612e5b57612e5a613a7f565b5b8135612e6b848260208601612d82565b91505092915050565b600081359050612e8381613db9565b92915050565b600060208284031215612e9f57612e9e613a8e565b5b6000612ead84828501612dc4565b91505092915050565b60008060408385031215612ecd57612ecc613a8e565b5b6000612edb85828601612dc4565b9250506020612eec85828601612dc4565b9150509250929050565b600080600060608486031215612f0f57612f0e613a8e565b5b6000612f1d86828701612dc4565b9350506020612f2e86828701612dc4565b9250506040612f3f86828701612e74565b9150509250925092565b60008060008060808587031215612f6357612f62613a8e565b5b6000612f7187828801612dc4565b9450506020612f8287828801612dc4565b9350506040612f9387828801612e74565b925050606085013567ffffffffffffffff811115612fb457612fb3613a89565b5b612fc087828801612e18565b91505092959194509250565b60008060408385031215612fe357612fe2613a8e565b5b6000612ff185828601612dc4565b925050602061300285828601612dd9565b9150509250929050565b6000806040838503121561302357613022613a8e565b5b600061303185828601612dc4565b925050602061304285828601612e74565b9150509250929050565b60006020828403121561306257613061613a8e565b5b600061307084828501612dd9565b91505092915050565b60006020828403121561308f5761308e613a8e565b5b600061309d84828501612dee565b91505092915050565b6000602082840312156130bc576130bb613a8e565b5b60006130ca84828501612e03565b91505092915050565b6000602082840312156130e9576130e8613a8e565b5b600082013567ffffffffffffffff81111561310757613106613a89565b5b61311384828501612e46565b91505092915050565b60006020828403121561313257613131613a8e565b5b600061314084828501612e74565b91505092915050565b61315281613801565b82525050565b61316181613813565b82525050565b6000613172826136a9565b61317c81856136bf565b935061318c818560208601613884565b61319581613a93565b840191505092915050565b60006131ab826136b4565b6131b581856136d0565b93506131c5818560208601613884565b6131ce81613a93565b840191505092915050565b60006131e4826136b4565b6131ee81856136e1565b93506131fe818560208601613884565b80840191505092915050565b6000613217601b836136d0565b915061322282613aa4565b602082019050919050565b600061323a6026836136d0565b915061324582613acd565b604082019050919050565b600061325d6029836136d0565b915061326882613b1c565b604082019050919050565b6000613280600b836136e1565b915061328b82613b6b565b600b82019050919050565b60006132a36026836136d0565b91506132ae82613b94565b604082019050919050565b60006132c66028836136d0565b91506132d182613be3565b604082019050919050565b60006132e96016836136d0565b91506132f482613c32565b602082019050919050565b600061330c6020836136d0565b915061331782613c5b565b602082019050919050565b600061332f602f836136d0565b915061333a82613c84565b604082019050919050565b60006133526015836136d0565b915061335d82613cd3565b602082019050919050565b6000613375602e836136d0565b915061338082613cfc565b604082019050919050565b60006133986013836136d0565b91506133a382613d4b565b602082019050919050565b6133b78161386b565b82525050565b60006133c982856131d9565b91506133d582846131d9565b91508190509392505050565b60006133ed82846131d9565b91506133f882613273565b915081905092915050565b60006020820190506134186000830184613149565b92915050565b60006080820190506134336000830187613149565b6134406020830186613149565b61344d60408301856133ae565b818103606083015261345f8184613167565b905095945050505050565b600060208201905061347f6000830184613158565b92915050565b6000602082019050818103600083015261349f81846131a0565b905092915050565b600060208201905081810360008301526134c08161320a565b9050919050565b600060208201905081810360008301526134e08161322d565b9050919050565b6000602082019050818103600083015261350081613250565b9050919050565b6000602082019050818103600083015261352081613296565b9050919050565b60006020820190508181036000830152613540816132b9565b9050919050565b60006020820190508181036000830152613560816132dc565b9050919050565b60006020820190508181036000830152613580816132ff565b9050919050565b600060208201905081810360008301526135a081613322565b9050919050565b600060208201905081810360008301526135c081613345565b9050919050565b600060208201905081810360008301526135e081613368565b9050919050565b600060208201905081810360008301526136008161338b565b9050919050565b600060208201905061361c60008301846133ae565b92915050565b600061362c61363d565b905061363882826138e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561366257613661613a50565b5b61366b82613a93565b9050602081019050919050565b600067ffffffffffffffff82111561369357613692613a50565b5b61369c82613a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f78261386b565b91506137028361386b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373757613736613994565b5b828201905092915050565b600061374d8261386b565b91506137588361386b565b925082613768576137676139c3565b5b828204905092915050565b600061377e8261386b565b91506137898361386b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c2576137c1613994565b5b828202905092915050565b60006137d88261386b565b91506137e38361386b565b9250828210156137f6576137f5613994565b5b828203905092915050565b600061380c8261384b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a2578082015181840152602081019050613887565b838111156138b1576000848401525b50505050565b600060028204905060018216806138cf57607f821691505b602082108114156138e3576138e26139f2565b5b50919050565b6138f282613a93565b810181811067ffffffffffffffff8211171561391157613910613a50565b5b80604052505050565b60006139258261386b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395857613957613994565b5b600182019050919050565b600061396e8261386b565b91506139798361386b565b925082613989576139886139c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d61782066726565207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b7f526561636865642066726565206d696e7473206c696d6974206f6e207468652060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564207075626c6963206d696e7473206c696d6974206f6e20746860008201527f652077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f416c6c2066726565206d696e747320676f6e6500000000000000000000000000600082015250565b613d7d81613801565b8114613d8857600080fd5b50565b613d9481613813565b8114613d9f57600080fd5b50565b613dab8161381f565b8114613db657600080fd5b50565b613dc28161386b565b8114613dcd57600080fd5b5056fea2646970667358221220640e09dfd1c9af047b20afce4a9e469264ca88c1cdf56acd8f6e1e4008d0668364736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d8cfb9991161006f578063d8cfb99914610749578063dc53fd9214610760578063e985e9c51461078b578063f2fde38b146107c8578063f43a22dc146107f15761020f565b8063a22cb4651461068f578063b88d4fde146106b8578063c87b56dd146106e1578063d5abeb011461071e5761020f565b80638da5cb5b116100e75780638da5cb5b146105c757806395d89b41146105f2578063982d669e1461061d57806398710d1e14610648578063a0712d68146106735761020f565b806370a082311461052e578063715018a61461056b5780637c928fe91461058257806384c99fb41461059e5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461044b5780635d82cf6e146104745780636352211e1461049d5780636c0360eb146104da5780636f8b44b0146105055761020f565b80633ccfd60b146103b557806342842e0e146103cc5780634e26d1af146103f557806351830227146104205761020f565b806312065fe0116101e257806312065fe0146102e257806318160ddd1461030d57806323b872dd14610338578063346de50a14610361578063375a069a1461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613079565b61081c565b604051610248919061346a565b60405180910390f35b34801561025d57600080fd5b506102666108fe565b6040516102739190613485565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061311c565b610990565b6040516102b09190613403565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061300c565b610a0c565b005b3480156102ee57600080fd5b506102f7610b17565b6040516103049190613607565b60405180910390f35b34801561031957600080fd5b50610322610b1f565b60405161032f9190613607565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612ef6565b610b36565b005b34801561036d57600080fd5b50610376610b46565b604051610383919061346a565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061311c565b610b59565b005b3480156103c157600080fd5b506103ca610c39565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612ef6565b610d05565b005b34801561040157600080fd5b5061040a610d25565b6040516104179190613607565b60405180910390f35b34801561042c57600080fd5b50610435610d2b565b604051610442919061346a565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906130d3565b610d3e565b005b34801561048057600080fd5b5061049b6004803603810190610496919061311c565b610dd4565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061311c565b610e5a565b6040516104d19190613403565b60405180910390f35b3480156104e657600080fd5b506104ef610e70565b6040516104fc9190613485565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061311c565b610efe565b005b34801561053a57600080fd5b5061055560048036038101906105509190612e89565b610f84565b6040516105629190613607565b60405180910390f35b34801561057757600080fd5b50610580611054565b005b61059c6004803603810190610597919061311c565b6110dc565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061304c565b6112b9565b005b3480156105d357600080fd5b506105dc611352565b6040516105e99190613403565b60405180910390f35b3480156105fe57600080fd5b5061060761137c565b6040516106149190613485565b60405180910390f35b34801561062957600080fd5b5061063261140e565b60405161063f9190613607565b60405180910390f35b34801561065457600080fd5b5061065d611414565b60405161066a9190613607565b60405180910390f35b61068d6004803603810190610688919061311c565b61141a565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fcc565b611647565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612f49565b6117bf565b005b3480156106ed57600080fd5b506107086004803603810190610703919061311c565b61183b565b6040516107159190613485565b60405180910390f35b34801561072a57600080fd5b506107336119a4565b6040516107409190613607565b60405180910390f35b34801561075557600080fd5b5061075e6119aa565b005b34801561076c57600080fd5b50610775611a52565b6040516107829190613607565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190612eb6565b611a58565b6040516107bf919061346a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612e89565b611aec565b005b3480156107fd57600080fd5b50610806611be4565b6040516108139190613607565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611bea565b5b9050919050565b60606002805461090d906138b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610939906138b7565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611c54565b6109d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1782610e5a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9e611ca2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ad05750610ace81610ac9611ca2565b611a58565b155b15610b07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b12838383611caa565b505050565b600047905090565b6000610b29611d5c565b6001546000540303905090565b610b41838383611d61565b505050565b601360009054906101000a900460ff1681565b610b61611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610b7f611352565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90613567565b60405180910390fd5b600e5481610be1610b1f565b610beb91906136ec565b1115610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613547565b60405180910390fd5b610c363382612217565b50565b610c41611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610c5f611352565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90613567565b60405180910390fd5b610cbd611352565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d02573d6000803e3d6000fd5b50565b610d20838383604051806020016040528060008152506117bf565b505050565b600c5481565b601160009054906101000a900460ff1681565b610d46611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610d64611352565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613567565b60405180910390fd5b8060129080519060200190610dd0929190612c5a565b5050565b610ddc611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611352565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613567565b60405180910390fd5b80600d8190555050565b6000610e6582612235565b600001519050919050565b60128054610e7d906138b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea9906138b7565b8015610ef65780601f10610ecb57610100808354040283529160200191610ef6565b820191906000526020600020905b815481529060010190602001808311610ed957829003601f168201915b505050505081565b610f06611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610f24611352565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613567565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61105c611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661107a611352565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613567565b60405180910390fd5b6110da60006124c4565b565b601360009054906101000a900460ff1661112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906134a7565b60405180910390fd5b60095481611137610b1f565b61114191906136ec565b1115611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906135e7565b60405180910390fd5b600a548111156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906134e7565b60405180910390fd5b600a5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121591906136ec565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613507565b60405180910390fd5b6112603382612217565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112af91906136ec565b9250508190555050565b6112c1611ca2565b73ffffffffffffffffffffffffffffffffffffffff166112df611352565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613567565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138b906138b7565b80601f01602080910402602001604051908101604052809291908181526020018280546113b7906138b7565b80156114045780601f106113d957610100808354040283529160200191611404565b820191906000526020600020905b8154815290600101906020018083116113e757829003601f168201915b5050505050905090565b60095481565b600a5481565b601360009054906101000a900460ff16611469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611460906134a7565b60405180910390fd5b600e5481611475610b1f565b61147f91906136ec565b11156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613547565b60405180910390fd5b600b54811115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906135c7565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461155391906136ec565b1115611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613527565b60405180910390fd5b80600d546115a29190613773565b3410156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906135a7565b60405180910390fd5b6115ee3382612217565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163d91906136ec565b9250508190555050565b61164f611ca2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c1611ca2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176e611ca2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b3919061346a565b60405180910390a35050565b6117ca848484611d61565b6117e98373ffffffffffffffffffffffffffffffffffffffff1661258a565b80156117fe57506117fc848484846125ad565b155b15611835576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061184682611c54565b611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613587565b60405180910390fd5b600060128054611894906138b7565b80601f01602080910402602001604051908101604052809291908181526020018280546118c0906138b7565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050601160009054906101000a900460ff161561197b576000815114156119485760405180602001604052806000815250611973565b806119528461270d565b6040516020016119639291906133bd565b6040516020818303038152906040525b91505061199f565b8060405160200161198c91906133e1565b6040516020818303038152906040529150505b919050565b600e5481565b6119b2611ca2565b73ffffffffffffffffffffffffffffffffffffffff166119d0611352565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613567565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af4611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611b12611352565b73ffffffffffffffffffffffffffffffffffffffff1614611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906134c7565b60405180910390fd5b611be1816124c4565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c5f611d5c565b11158015611c6e575060005482105b8015611c9b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611d6c82612235565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611df8611ca2565b73ffffffffffffffffffffffffffffffffffffffff161480611e275750611e2685611e21611ca2565b611a58565b5b80611e6c5750611e35611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611e5484610990565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ea5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f19858585600161286e565b611f2560008487611caa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121a55760005482146121a457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122108585856001612874565b5050505050565b61223182826040518060200160405280600081525061287a565b5050565b61223d612ce0565b60008290508061224b611d5c565b1115801561225a575060005481105b1561248d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236f5780925050506124bf565b5b60011561248a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124855780925050506124bf565b612370565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d3611ca2565b8786866040518563ffffffff1660e01b81526004016125f5949392919061341e565b602060405180830381600087803b15801561260f57600080fd5b505af192505050801561264057506040513d601f19601f8201168201806040525081019061263d91906130a6565b60015b6126ba573d8060008114612670576040519150601f19603f3d011682016040523d82523d6000602084013e612675565b606091505b506000815114156126b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612755576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612869565b600082905060005b600082146127875780806127709061391a565b915050600a826127809190613742565b915061275d565b60008167ffffffffffffffff8111156127a3576127a2613a50565b5b6040519080825280601f01601f1916602001820160405280156127d55781602001600182028036833780820191505090505b5090505b60008514612862576001826127ee91906137cd565b9150600a856127fd9190613963565b603061280991906136ec565b60f81b81838151811061281f5761281e613a21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285b9190613742565b94506127d9565b8093505050505b919050565b50505050565b50505050565b612887838383600161288c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612934576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612941600086838761286e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b0b5750612b0a8773ffffffffffffffffffffffffffffffffffffffff1661258a565b5b15612bd1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8060008884806001019550886125ad565b612bb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b11578260005414612bcc57600080fd5b612c3d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bd2575b816000819055505050612c536000868387612874565b5050505050565b828054612c66906138b7565b90600052602060002090601f016020900481019282612c885760008555612ccf565b82601f10612ca157805160ff1916838001178555612ccf565b82800160010185558215612ccf579182015b82811115612cce578251825591602001919060010190612cb3565b5b509050612cdc9190612d23565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d3c576000816000905550600101612d24565b5090565b6000612d53612d4e84613647565b613622565b905082815260208101848484011115612d6f57612d6e613a84565b5b612d7a848285613875565b509392505050565b6000612d95612d9084613678565b613622565b905082815260208101848484011115612db157612db0613a84565b5b612dbc848285613875565b509392505050565b600081359050612dd381613d74565b92915050565b600081359050612de881613d8b565b92915050565b600081359050612dfd81613da2565b92915050565b600081519050612e1281613da2565b92915050565b600082601f830112612e2d57612e2c613a7f565b5b8135612e3d848260208601612d40565b91505092915050565b600082601f830112612e5b57612e5a613a7f565b5b8135612e6b848260208601612d82565b91505092915050565b600081359050612e8381613db9565b92915050565b600060208284031215612e9f57612e9e613a8e565b5b6000612ead84828501612dc4565b91505092915050565b60008060408385031215612ecd57612ecc613a8e565b5b6000612edb85828601612dc4565b9250506020612eec85828601612dc4565b9150509250929050565b600080600060608486031215612f0f57612f0e613a8e565b5b6000612f1d86828701612dc4565b9350506020612f2e86828701612dc4565b9250506040612f3f86828701612e74565b9150509250925092565b60008060008060808587031215612f6357612f62613a8e565b5b6000612f7187828801612dc4565b9450506020612f8287828801612dc4565b9350506040612f9387828801612e74565b925050606085013567ffffffffffffffff811115612fb457612fb3613a89565b5b612fc087828801612e18565b91505092959194509250565b60008060408385031215612fe357612fe2613a8e565b5b6000612ff185828601612dc4565b925050602061300285828601612dd9565b9150509250929050565b6000806040838503121561302357613022613a8e565b5b600061303185828601612dc4565b925050602061304285828601612e74565b9150509250929050565b60006020828403121561306257613061613a8e565b5b600061307084828501612dd9565b91505092915050565b60006020828403121561308f5761308e613a8e565b5b600061309d84828501612dee565b91505092915050565b6000602082840312156130bc576130bb613a8e565b5b60006130ca84828501612e03565b91505092915050565b6000602082840312156130e9576130e8613a8e565b5b600082013567ffffffffffffffff81111561310757613106613a89565b5b61311384828501612e46565b91505092915050565b60006020828403121561313257613131613a8e565b5b600061314084828501612e74565b91505092915050565b61315281613801565b82525050565b61316181613813565b82525050565b6000613172826136a9565b61317c81856136bf565b935061318c818560208601613884565b61319581613a93565b840191505092915050565b60006131ab826136b4565b6131b581856136d0565b93506131c5818560208601613884565b6131ce81613a93565b840191505092915050565b60006131e4826136b4565b6131ee81856136e1565b93506131fe818560208601613884565b80840191505092915050565b6000613217601b836136d0565b915061322282613aa4565b602082019050919050565b600061323a6026836136d0565b915061324582613acd565b604082019050919050565b600061325d6029836136d0565b915061326882613b1c565b604082019050919050565b6000613280600b836136e1565b915061328b82613b6b565b600b82019050919050565b60006132a36026836136d0565b91506132ae82613b94565b604082019050919050565b60006132c66028836136d0565b91506132d182613be3565b604082019050919050565b60006132e96016836136d0565b91506132f482613c32565b602082019050919050565b600061330c6020836136d0565b915061331782613c5b565b602082019050919050565b600061332f602f836136d0565b915061333a82613c84565b604082019050919050565b60006133526015836136d0565b915061335d82613cd3565b602082019050919050565b6000613375602e836136d0565b915061338082613cfc565b604082019050919050565b60006133986013836136d0565b91506133a382613d4b565b602082019050919050565b6133b78161386b565b82525050565b60006133c982856131d9565b91506133d582846131d9565b91508190509392505050565b60006133ed82846131d9565b91506133f882613273565b915081905092915050565b60006020820190506134186000830184613149565b92915050565b60006080820190506134336000830187613149565b6134406020830186613149565b61344d60408301856133ae565b818103606083015261345f8184613167565b905095945050505050565b600060208201905061347f6000830184613158565b92915050565b6000602082019050818103600083015261349f81846131a0565b905092915050565b600060208201905081810360008301526134c08161320a565b9050919050565b600060208201905081810360008301526134e08161322d565b9050919050565b6000602082019050818103600083015261350081613250565b9050919050565b6000602082019050818103600083015261352081613296565b9050919050565b60006020820190508181036000830152613540816132b9565b9050919050565b60006020820190508181036000830152613560816132dc565b9050919050565b60006020820190508181036000830152613580816132ff565b9050919050565b600060208201905081810360008301526135a081613322565b9050919050565b600060208201905081810360008301526135c081613345565b9050919050565b600060208201905081810360008301526135e081613368565b9050919050565b600060208201905081810360008301526136008161338b565b9050919050565b600060208201905061361c60008301846133ae565b92915050565b600061362c61363d565b905061363882826138e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561366257613661613a50565b5b61366b82613a93565b9050602081019050919050565b600067ffffffffffffffff82111561369357613692613a50565b5b61369c82613a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f78261386b565b91506137028361386b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373757613736613994565b5b828201905092915050565b600061374d8261386b565b91506137588361386b565b925082613768576137676139c3565b5b828204905092915050565b600061377e8261386b565b91506137898361386b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c2576137c1613994565b5b828202905092915050565b60006137d88261386b565b91506137e38361386b565b9250828210156137f6576137f5613994565b5b828203905092915050565b600061380c8261384b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a2578082015181840152602081019050613887565b838111156138b1576000848401525b50505050565b600060028204905060018216806138cf57607f821691505b602082108114156138e3576138e26139f2565b5b50919050565b6138f282613a93565b810181811067ffffffffffffffff8211171561391157613910613a50565b5b80604052505050565b60006139258261386b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395857613957613994565b5b600182019050919050565b600061396e8261386b565b91506139798361386b565b925082613989576139886139c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d61782066726565207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b7f526561636865642066726565206d696e7473206c696d6974206f6e207468652060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564207075626c6963206d696e7473206c696d6974206f6e20746860008201527f652077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f416c6c2066726565206d696e747320676f6e6500000000000000000000000000600082015250565b613d7d81613801565b8114613d8857600080fd5b50565b613d9481613813565b8114613d9f57600080fd5b50565b613dab8161381f565b8114613db657600080fd5b50565b613dc28161386b565b8114613dcd57600080fd5b5056fea2646970667358221220640e09dfd1c9af047b20afce4a9e469264ca88c1cdf56acd8f6e1e4008d0668364736f6c63430008070033

Deployed Bytecode Sourcemap

44777:3223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31588:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31151:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47902:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26221:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32453:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45305:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45405:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46784:106;;;;;;;;;;;;;:::i;:::-;;32694:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44949:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45235:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46898:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47217:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29893:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45270:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47109:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27341:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;45600:542;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47004:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30254:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44822:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44865:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46150:626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31864:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32950:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47329:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45051:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47800:94;;;;;;;;;;;;;:::i;:::-;;44997:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32222:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44912:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26972:305;27074:4;27126:25;27111:40;;;:11;:40;;;;:105;;;;27183:33;27168:48;;;:11;:48;;;;27111:105;:158;;;;27233:36;27257:11;27233:23;:36::i;:::-;27111:158;27091:178;;26972:305;;;:::o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;;;;;;;;;;;;;31676:64;31760:15;:24;31776:7;31760:24;;;;;;;;;;;;;;;;;;;;;31753:31;;31588:204;;;:::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;31279:11;;:2;:11;;;31275:48;;;31299:24;;;;;;;;;;;;;;31275:48;31356:5;31340:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31366:37;31383:5;31390:12;:10;:12::i;:::-;31366:16;:37::i;:::-;31365:38;31340:63;31336:138;;;31427:35;;;;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;47902:95::-;47944:4;47968:21;47961:28;;47902:95;:::o;26221:303::-;26265:7;26490:15;:13;:15::i;:::-;26475:12;;26459:13;;:28;:46;26452:53;;26221:303;:::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;:::-;32453:170;;;:::o;45305:33::-;;;;;;;;;;;;;:::o;45405:187::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45506:9:::1;;45494:8;45478:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;45470:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45553:31;45563:10;45575:8;45553:9;:31::i;:::-;45405:187:::0;:::o;46784:106::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46842:7:::1;:5;:7::i;:::-;46834:25;;:48;46860:21;46834:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46784:106::o:0;32694:185::-;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;:::-;32694:185;;;:::o;44949:41::-;;;;:::o;45235:28::-;;;;;;;;;;;;;:::o;46898:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46980:8:::1;46970:7;:18;;;;;;;;;;;;:::i;:::-;;46898:98:::0;:::o;47217:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47307:6:::1;47289:15;:24;;;;47217:104:::0;:::o;29893:125::-;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;;29977:33;;29893:125;;;:::o;45270:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47109:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47191:10:::1;47179:9;:22;;;;47109:100:::0;:::o;27341:206::-;27405:7;27446:1;27429:19;;:5;:19;;;27425:60;;;27457:28;;;;;;;;;;;;;;27425:60;27511:12;:19;27524:5;27511:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27503:36;;27496:43;;27341:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45600:542::-;45672:13;;;;;;;;;;;45664:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45764:14;;45752:8;45736:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;45728:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45833:19;;45821:8;:31;;45813:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45958:19;;45946:8;45917:14;:26;45932:10;45917:26;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;45909:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;46054:31;46064:10;46076:8;46054:9;:31::i;:::-;46126:8;46096:14;:26;46111:10;46096:26;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45600:542;:::o;47004:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47084:9:::1;47073:8;;:20;;;;;;;;;;;;;;;;;;47004:97:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30254:104;:::o;44822:36::-;;;;:::o;44865:38::-;;;;:::o;46150:626::-;46218:13;;;;;;;;;;;46210:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46310:9;;46298:8;46282:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;46274:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46377:10;;46365:8;:22;;46357:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46500:21;;46488:8;46457:16;:28;46474:10;46457:28;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:64;;46449:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;46630:8;46612:15;;:26;;;;:::i;:::-;46598:9;:41;;46590:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46686:31;46696:10;46708:8;46686:9;:31::i;:::-;46760:8;46728:16;:28;46745:10;46728:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;46150:626;:::o;31864:287::-;31975:12;:10;:12::i;:::-;31963:24;;:8;:24;;;31959:54;;;31996:17;;;;;;;;;;;;;;31959:54;32071:8;32026:18;:32;32045:12;:10;:12::i;:::-;32026:32;;;;;;;;;;;;;;;:42;32059:8;32026:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32124:8;32095:48;;32110:12;:10;:12::i;:::-;32095:48;;;32134:8;32095:48;;;;;;:::i;:::-;;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;33160:15;:2;:13;;;:15::i;:::-;:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;;;;;;;;;;;;;33156:156;32950:369;;;;:::o;47329:463::-;47394:13;47428:16;47436:7;47428;:16::i;:::-;47420:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47509:22;47534:7;47509:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47556:8;;;;;;;;;;;47552:233;;;47614:1;47594:8;47588:22;:27;;:96;;;;;;;;;;;;;;;;;47642:8;47652:25;47669:7;47652:16;:25::i;:::-;47625:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47588:96;47581:103;;;;;47552:233;47748:8;47731:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;47717:56;;;47329:463;;;;:::o;45051:31::-;;;;:::o;47800:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47873:13:::1;;;;;;;;;;;47872:14;47856:13;;:30;;;;;;;;;;;;;;;;;;47800:94::o:0;44997:45::-;;;;:::o;32222:164::-;32319:4;32343:18;:25;32362:5;32343:25;;;;;;;;;;;;;;;:35;32369:8;32343:35;;;;;;;;;;;;;;;;;;;;;;;;;32336:42;;32222:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44912:30::-;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;33574:174::-;33631:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:53;;;;;33695:13;;33685:7;:23;33655:53;:85;;;;;33713:11;:20;33725:7;33713:20;;;;;;;;;;;:27;;;;;;;;;;;;33712:28;33655:85;33648:92;;33574:174;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;41731:196::-;41873:2;41846:15;:24;41862:7;41846:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41911:7;41907:2;41891:28;;41900:5;41891:28;;;;;;;;;;;;41731:196;;;:::o;25995:92::-;26051:7;25995:92;:::o;36674:2130::-;36789:35;36827:21;36840:7;36827:12;:21::i;:::-;36789:59;;36887:4;36865:26;;:13;:18;;;:26;;;36861:67;;36900:28;;;;;;;;;;;;;;36861:67;36941:22;36983:4;36967:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37004:36;37021:4;37027:12;:10;:12::i;:::-;37004:16;:36::i;:::-;36967:73;:126;;;;37081:12;:10;:12::i;:::-;37057:36;;:20;37069:7;37057:11;:20::i;:::-;:36;;;36967:126;36941:153;;37112:17;37107:66;;37138:35;;;;;;;;;;;;;;37107:66;37202:1;37188:16;;:2;:16;;;37184:52;;;37213:23;;;;;;;;;;;;;;37184:52;37249:43;37271:4;37277:2;37281:7;37290:1;37249:21;:43::i;:::-;37357:35;37374:1;37378:7;37387:4;37357:8;:35::i;:::-;37718:1;37688:12;:18;37701:4;37688:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:1;37734:12;:16;37747:2;37734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37780:31;37814:11;:20;37826:7;37814:20;;;;;;;;;;;37780:54;;37865:2;37849:8;:13;;;:18;;;;;;;;;;;;;;;;;;37915:15;37882:8;:23;;;:49;;;;;;;;;;;;;;;;;;38183:19;38215:1;38205:7;:11;38183:33;;38231:31;38265:11;:24;38277:11;38265:24;;;;;;;;;;;38231:58;;38333:1;38308:27;;:8;:13;;;;;;;;;;;;:27;;;38304:384;;;38518:13;;38503:11;:28;38499:174;;38572:4;38556:8;:13;;;:20;;;;;;;;;;;;;;;;;;38625:13;:28;;;38599:8;:23;;;:54;;;;;;;;;;;;;;;;;;38499:174;38304:384;37663:1036;;;38735:7;38731:2;38716:27;;38725:4;38716:27;;;;;;;;;;;;38754:42;38775:4;38781:2;38785:7;38794:1;38754:20;:42::i;:::-;36778:2026;;36674:2130;;;:::o;33756:104::-;33825:27;33835:2;33839:8;33825:27;;;;;;;;;;;;:9;:27::i;:::-;33756:104;;:::o;28722:1109::-;28784:21;;:::i;:::-;28818:12;28833:7;28818:22;;28901:4;28882:15;:13;:15::i;:::-;:23;;:47;;;;;28916:13;;28909:4;:20;28882:47;28878:886;;;28950:31;28984:11;:17;28996:4;28984:17;;;;;;;;;;;28950:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29025:9;:16;;;29020:729;;29096:1;29070:28;;:9;:14;;;:28;;;29066:101;;29134:9;29127:16;;;;;;29066:101;29469:261;29476:4;29469:261;;;29509:6;;;;;;;;29554:11;:17;29566:4;29554:17;;;;;;;;;;;29542:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29628:1;29602:28;;:9;:14;;;:28;;;29598:109;;29670:9;29663:16;;;;;;29598:109;29469:261;;;29020:729;28931:833;28878:886;29792:31;;;;;;;;;;;;;;28722:1109;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;42419:667::-;42582:4;42619:2;42603:36;;;42640:12;:10;:12::i;:::-;42654:4;42660:7;42669:5;42603:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42599:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42854:1;42837:6;:13;:18;42833:235;;;42883:40;;;;;;;;;;;;;;42833:235;43026:6;43020:13;43011:6;43007:2;43003:15;42996:38;42599:480;42732:45;;;42722:55;;;:6;:55;;;;42715:62;;;42419:667;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;43734:159::-;;;;;:::o;44552:158::-;;;;;:::o;34223:163::-;34346:32;34352:2;34356:8;34366:5;34373:4;34346:5;:32::i;:::-;34223:163;;;:::o;34645:1775::-;34784:20;34807:13;;34784:36;;34849:1;34835:16;;:2;:16;;;34831:48;;;34860:19;;;;;;;;;;;;;;34831:48;34906:1;34894:8;:13;34890:44;;;34916:18;;;;;;;;;;;;;;34890:44;34947:61;34977:1;34981:2;34985:12;34999:8;34947:21;:61::i;:::-;35320:8;35285:12;:16;35298:2;35285:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35384:8;35344:12;:16;35357:2;35344:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35443:2;35410:11;:25;35422:12;35410:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35510:15;35460:11;:25;35472:12;35460:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35543:20;35566:12;35543:35;;35593:11;35622:8;35607:12;:23;35593:37;;35651:4;:23;;;;;35659:15;:2;:13;;;:15::i;:::-;35651:23;35647:641;;;35695:314;35751:12;35747:2;35726:38;;35743:1;35726:38;;;;;;;;;;;;35792:69;35831:1;35835:2;35839:14;;;;;;35855:5;35792:30;:69::i;:::-;35787:174;;35897:40;;;;;;;;;;;;;;35787:174;36004:3;35988:12;:19;;35695:314;;36090:12;36073:13;;:29;36069:43;;36104:8;;;36069:43;35647:641;;;36153:120;36209:14;;;;;;36205:2;36184:40;;36201:1;36184:40;;;;;;;;;;;;36268:3;36252:12;:19;;36153:120;;35647:641;36318:12;36302:13;:28;;;;35260:1082;;36352:60;36381:1;36385:2;36389:12;36403:8;36352:20;:60::i;:::-;34773:1647;34645:1775;;;;:::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;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:402::-;10121:3;10142:85;10224:2;10219:3;10142:85;:::i;:::-;10135:92;;10236:93;10325:3;10236:93;:::i;:::-;10354:2;10349:3;10345:12;10338:19;;9961:402;;;:::o;10369:366::-;10511:3;10532:67;10596:2;10591:3;10532:67;:::i;:::-;10525:74;;10608:93;10697:3;10608:93;:::i;:::-;10726:2;10721:3;10717:12;10710:19;;10369:366;;;:::o;10741:::-;10883:3;10904:67;10968:2;10963:3;10904:67;:::i;:::-;10897:74;;10980:93;11069:3;10980:93;:::i;:::-;11098:2;11093:3;11089:12;11082:19;;10741:366;;;:::o;11113:::-;11255:3;11276:67;11340:2;11335:3;11276:67;:::i;:::-;11269:74;;11352:93;11441:3;11352:93;:::i;:::-;11470:2;11465:3;11461:12;11454:19;;11113:366;;;:::o;11485:::-;11627:3;11648:67;11712:2;11707:3;11648:67;:::i;:::-;11641:74;;11724:93;11813:3;11724:93;:::i;:::-;11842:2;11837:3;11833:12;11826:19;;11485:366;;;:::o;11857:::-;11999:3;12020:67;12084:2;12079:3;12020:67;:::i;:::-;12013:74;;12096:93;12185:3;12096:93;:::i;:::-;12214:2;12209:3;12205:12;12198:19;;11857:366;;;:::o;12229:::-;12371:3;12392:67;12456:2;12451:3;12392:67;:::i;:::-;12385:74;;12468:93;12557:3;12468:93;:::i;:::-;12586:2;12581:3;12577:12;12570:19;;12229:366;;;:::o;12601:::-;12743:3;12764:67;12828:2;12823:3;12764:67;:::i;:::-;12757:74;;12840:93;12929:3;12840:93;:::i;:::-;12958:2;12953:3;12949:12;12942:19;;12601:366;;;:::o;12973:::-;13115:3;13136:67;13200:2;13195:3;13136:67;:::i;:::-;13129:74;;13212:93;13301:3;13212:93;:::i;:::-;13330:2;13325:3;13321:12;13314:19;;12973:366;;;:::o;13345:118::-;13432:24;13450:5;13432:24;:::i;:::-;13427:3;13420:37;13345:118;;:::o;13469:435::-;13649:3;13671:95;13762:3;13753:6;13671:95;:::i;:::-;13664:102;;13783:95;13874:3;13865:6;13783:95;:::i;:::-;13776:102;;13895:3;13888:10;;13469:435;;;;;:::o;13910:541::-;14143:3;14165:95;14256:3;14247:6;14165:95;:::i;:::-;14158:102;;14277:148;14421:3;14277:148;:::i;:::-;14270:155;;14442:3;14435:10;;13910:541;;;;:::o;14457:222::-;14550:4;14588:2;14577:9;14573:18;14565:26;;14601:71;14669:1;14658:9;14654:17;14645:6;14601:71;:::i;:::-;14457:222;;;;:::o;14685:640::-;14880:4;14918:3;14907:9;14903:19;14895:27;;14932:71;15000:1;14989:9;14985:17;14976:6;14932:71;:::i;:::-;15013:72;15081:2;15070:9;15066:18;15057:6;15013:72;:::i;:::-;15095;15163:2;15152:9;15148:18;15139:6;15095:72;:::i;:::-;15214:9;15208:4;15204:20;15199:2;15188:9;15184:18;15177:48;15242:76;15313:4;15304:6;15242:76;:::i;:::-;15234:84;;14685:640;;;;;;;:::o;15331:210::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15469:65;15531:1;15520:9;15516:17;15507:6;15469:65;:::i;:::-;15331:210;;;;:::o;15547:313::-;15660:4;15698:2;15687:9;15683:18;15675:26;;15747:9;15741:4;15737:20;15733:1;15722:9;15718:17;15711:47;15775:78;15848:4;15839:6;15775:78;:::i;:::-;15767:86;;15547:313;;;;:::o;15866:419::-;16032:4;16070:2;16059:9;16055:18;16047:26;;16119:9;16113:4;16109:20;16105:1;16094:9;16090:17;16083:47;16147:131;16273:4;16147:131;:::i;:::-;16139:139;;15866:419;;;:::o;16291:::-;16457:4;16495:2;16484:9;16480:18;16472:26;;16544:9;16538:4;16534:20;16530:1;16519:9;16515:17;16508:47;16572:131;16698:4;16572:131;:::i;:::-;16564:139;;16291:419;;;:::o;16716:::-;16882:4;16920:2;16909:9;16905:18;16897:26;;16969:9;16963:4;16959:20;16955:1;16944:9;16940:17;16933:47;16997:131;17123:4;16997:131;:::i;:::-;16989:139;;16716:419;;;:::o;17141:::-;17307:4;17345:2;17334:9;17330:18;17322:26;;17394:9;17388:4;17384:20;17380:1;17369:9;17365:17;17358:47;17422:131;17548:4;17422:131;:::i;:::-;17414:139;;17141:419;;;:::o;17566:::-;17732:4;17770:2;17759:9;17755:18;17747:26;;17819:9;17813:4;17809:20;17805:1;17794:9;17790:17;17783:47;17847:131;17973:4;17847:131;:::i;:::-;17839:139;;17566:419;;;:::o;17991:::-;18157:4;18195:2;18184:9;18180:18;18172:26;;18244:9;18238:4;18234:20;18230:1;18219:9;18215:17;18208:47;18272:131;18398:4;18272:131;:::i;:::-;18264:139;;17991:419;;;:::o;18416:::-;18582:4;18620:2;18609:9;18605:18;18597:26;;18669:9;18663:4;18659:20;18655:1;18644:9;18640:17;18633:47;18697:131;18823:4;18697:131;:::i;:::-;18689:139;;18416:419;;;:::o;18841:::-;19007:4;19045:2;19034:9;19030:18;19022:26;;19094:9;19088:4;19084:20;19080:1;19069:9;19065:17;19058:47;19122:131;19248:4;19122:131;:::i;:::-;19114:139;;18841:419;;;:::o;19266:::-;19432:4;19470:2;19459:9;19455:18;19447:26;;19519:9;19513:4;19509:20;19505:1;19494:9;19490:17;19483:47;19547:131;19673:4;19547:131;:::i;:::-;19539:139;;19266:419;;;:::o;19691:::-;19857:4;19895:2;19884:9;19880:18;19872:26;;19944:9;19938:4;19934:20;19930:1;19919:9;19915:17;19908:47;19972:131;20098:4;19972:131;:::i;:::-;19964:139;;19691:419;;;:::o;20116:::-;20282:4;20320:2;20309:9;20305:18;20297:26;;20369:9;20363:4;20359:20;20355:1;20344:9;20340:17;20333:47;20397:131;20523:4;20397:131;:::i;:::-;20389:139;;20116:419;;;:::o;20541:222::-;20634:4;20672:2;20661:9;20657:18;20649:26;;20685:71;20753:1;20742:9;20738:17;20729:6;20685:71;:::i;:::-;20541:222;;;;:::o;20769:129::-;20803:6;20830:20;;:::i;:::-;20820:30;;20859:33;20887:4;20879:6;20859:33;:::i;:::-;20769:129;;;:::o;20904:75::-;20937:6;20970:2;20964:9;20954:19;;20904:75;:::o;20985:307::-;21046:4;21136:18;21128:6;21125:30;21122:56;;;21158:18;;:::i;:::-;21122:56;21196:29;21218:6;21196:29;:::i;:::-;21188:37;;21280:4;21274;21270:15;21262:23;;20985:307;;;:::o;21298:308::-;21360:4;21450:18;21442:6;21439:30;21436:56;;;21472:18;;:::i;:::-;21436:56;21510:29;21532:6;21510:29;:::i;:::-;21502:37;;21594:4;21588;21584:15;21576:23;;21298:308;;;:::o;21612:98::-;21663:6;21697:5;21691:12;21681:22;;21612:98;;;:::o;21716:99::-;21768:6;21802:5;21796:12;21786:22;;21716:99;;;:::o;21821:168::-;21904:11;21938:6;21933:3;21926:19;21978:4;21973:3;21969:14;21954:29;;21821:168;;;;:::o;21995:169::-;22079:11;22113:6;22108:3;22101:19;22153:4;22148:3;22144:14;22129:29;;21995:169;;;;:::o;22170:148::-;22272:11;22309:3;22294:18;;22170:148;;;;:::o;22324:305::-;22364:3;22383:20;22401:1;22383:20;:::i;:::-;22378:25;;22417:20;22435:1;22417:20;:::i;:::-;22412:25;;22571:1;22503:66;22499:74;22496:1;22493:81;22490:107;;;22577:18;;:::i;:::-;22490:107;22621:1;22618;22614:9;22607:16;;22324:305;;;;:::o;22635:185::-;22675:1;22692:20;22710:1;22692:20;:::i;:::-;22687:25;;22726:20;22744:1;22726:20;:::i;:::-;22721:25;;22765:1;22755:35;;22770:18;;:::i;:::-;22755:35;22812:1;22809;22805:9;22800:14;;22635:185;;;;:::o;22826:348::-;22866:7;22889:20;22907:1;22889:20;:::i;:::-;22884:25;;22923:20;22941:1;22923:20;:::i;:::-;22918:25;;23111:1;23043:66;23039:74;23036:1;23033:81;23028:1;23021:9;23014:17;23010:105;23007:131;;;23118:18;;:::i;:::-;23007:131;23166:1;23163;23159:9;23148:20;;22826:348;;;;:::o;23180:191::-;23220:4;23240:20;23258:1;23240:20;:::i;:::-;23235:25;;23274:20;23292:1;23274:20;:::i;:::-;23269:25;;23313:1;23310;23307:8;23304:34;;;23318:18;;:::i;:::-;23304:34;23363:1;23360;23356:9;23348:17;;23180:191;;;;:::o;23377:96::-;23414:7;23443:24;23461:5;23443:24;:::i;:::-;23432:35;;23377:96;;;:::o;23479:90::-;23513:7;23556:5;23549:13;23542:21;23531:32;;23479:90;;;:::o;23575:149::-;23611:7;23651:66;23644:5;23640:78;23629:89;;23575:149;;;:::o;23730:126::-;23767:7;23807:42;23800:5;23796:54;23785:65;;23730:126;;;:::o;23862:77::-;23899:7;23928:5;23917:16;;23862:77;;;:::o;23945:154::-;24029:6;24024:3;24019;24006:30;24091:1;24082:6;24077:3;24073:16;24066:27;23945:154;;;:::o;24105:307::-;24173:1;24183:113;24197:6;24194:1;24191:13;24183:113;;;24282:1;24277:3;24273:11;24267:18;24263:1;24258:3;24254:11;24247:39;24219:2;24216:1;24212:10;24207:15;;24183:113;;;24314:6;24311:1;24308:13;24305:101;;;24394:1;24385:6;24380:3;24376:16;24369:27;24305:101;24154:258;24105:307;;;:::o;24418:320::-;24462:6;24499:1;24493:4;24489:12;24479:22;;24546:1;24540:4;24536:12;24567:18;24557:81;;24623:4;24615:6;24611:17;24601:27;;24557:81;24685:2;24677:6;24674:14;24654:18;24651:38;24648:84;;;24704:18;;:::i;:::-;24648:84;24469:269;24418:320;;;:::o;24744:281::-;24827:27;24849:4;24827:27;:::i;:::-;24819:6;24815:40;24957:6;24945:10;24942:22;24921:18;24909:10;24906:34;24903:62;24900:88;;;24968:18;;:::i;:::-;24900:88;25008:10;25004:2;24997:22;24787:238;24744:281;;:::o;25031:233::-;25070:3;25093:24;25111:5;25093:24;:::i;:::-;25084:33;;25139:66;25132:5;25129:77;25126:103;;;25209:18;;:::i;:::-;25126:103;25256:1;25249:5;25245:13;25238:20;;25031:233;;;:::o;25270:176::-;25302:1;25319:20;25337:1;25319:20;:::i;:::-;25314:25;;25353:20;25371:1;25353:20;:::i;:::-;25348:25;;25392:1;25382:35;;25397:18;;:::i;:::-;25382:35;25438:1;25435;25431:9;25426:14;;25270:176;;;;:::o;25452:180::-;25500:77;25497:1;25490:88;25597:4;25594:1;25587:15;25621:4;25618:1;25611:15;25638:180;25686:77;25683:1;25676:88;25783:4;25780:1;25773:15;25807:4;25804:1;25797:15;25824:180;25872:77;25869:1;25862:88;25969:4;25966:1;25959:15;25993:4;25990:1;25983:15;26010:180;26058:77;26055:1;26048:88;26155:4;26152:1;26145:15;26179:4;26176:1;26169:15;26196:180;26244:77;26241:1;26234:88;26341:4;26338:1;26331:15;26365:4;26362:1;26355:15;26382:117;26491:1;26488;26481:12;26505:117;26614:1;26611;26604:12;26628:117;26737:1;26734;26727:12;26751:117;26860:1;26857;26850:12;26874:102;26915:6;26966:2;26962:7;26957:2;26950:5;26946:14;26942:28;26932:38;;26874:102;;;:::o;26982:177::-;27122:29;27118:1;27110:6;27106:14;27099:53;26982:177;:::o;27165:225::-;27305:34;27301:1;27293:6;27289:14;27282:58;27374:8;27369:2;27361:6;27357:15;27350:33;27165:225;:::o;27396:228::-;27536:34;27532:1;27524:6;27520:14;27513:58;27605:11;27600:2;27592:6;27588:15;27581:36;27396:228;:::o;27630:161::-;27770:13;27766:1;27758:6;27754:14;27747:37;27630:161;:::o;27797:225::-;27937:34;27933:1;27925:6;27921:14;27914:58;28006:8;28001:2;27993:6;27989:15;27982:33;27797:225;:::o;28028:227::-;28168:34;28164:1;28156:6;28152:14;28145:58;28237:10;28232:2;28224:6;28220:15;28213:35;28028:227;:::o;28261:172::-;28401:24;28397:1;28389:6;28385:14;28378:48;28261:172;:::o;28439:182::-;28579:34;28575:1;28567:6;28563:14;28556:58;28439:182;:::o;28627:234::-;28767:34;28763:1;28755:6;28751:14;28744:58;28836:17;28831:2;28823:6;28819:15;28812:42;28627:234;:::o;28867:171::-;29007:23;29003:1;28995:6;28991:14;28984:47;28867:171;:::o;29044:233::-;29184:34;29180:1;29172:6;29168:14;29161:58;29253:16;29248:2;29240:6;29236:15;29229:41;29044:233;:::o;29283:169::-;29423:21;29419:1;29411:6;29407:14;29400:45;29283:169;:::o;29458:122::-;29531:24;29549:5;29531:24;:::i;:::-;29524:5;29521:35;29511:63;;29570:1;29567;29560:12;29511:63;29458:122;:::o;29586:116::-;29656:21;29671:5;29656:21;:::i;:::-;29649:5;29646:32;29636:60;;29692:1;29689;29682:12;29636:60;29586:116;:::o;29708:120::-;29780:23;29797:5;29780:23;:::i;:::-;29773:5;29770:34;29760:62;;29818:1;29815;29808:12;29760:62;29708:120;:::o;29834:122::-;29907:24;29925:5;29907:24;:::i;:::-;29900:5;29897:35;29887:63;;29946:1;29943;29936:12;29887:63;29834:122;:::o

Swarm Source

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