ETH Price: $3,391.11 (+1.18%)
Gas: 9 Gwei

Token

C1PH3R5 (SKULLIES)
 

Overview

Max Total Supply

5,000 SKULLIES

Holders

3,565

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SKULLIES
0x1c00b0ce73211c1bedbf26b941d83a454b1a2b22
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:
C1PH3R5

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-12
*/

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


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

// SPDX-License-Identifier: MIT

//          CCCCCCCCCCCCC  1111111   PPPPPPPPPPPPPPPPP   HHHHHHHHH     HHHHHHHHH 333333333333333   RRRRRRRRRRRRRRRRR   555555555555555555 
//       CCC::::::::::::C 1::::::1   P::::::::::::::::P  H:::::::H     H:::::::H3:::::::::::::::33 R::::::::::::::::R  5::::::::::::::::5 
//     CC:::::::::::::::C1:::::::1   P::::::PPPPPP:::::P H:::::::H     H:::::::H3::::::33333::::::3R::::::RRRRRR:::::R 5::::::::::::::::5 
//    C:::::CCCCCCCC::::C111:::::1   PP:::::P     P:::::PHH::::::H     H::::::HH3333333     3:::::3RR:::::R     R:::::R5:::::555555555555 
//   C:::::C       CCCCCC   1::::1     P::::P     P:::::P  H:::::H     H:::::H              3:::::3  R::::R     R:::::R5:::::5            
//  C:::::C                 1::::1     P::::P     P:::::P  H:::::H     H:::::H              3:::::3  R::::R     R:::::R5:::::5            
//  C:::::C                 1::::1     P::::PPPPPP:::::P   H::::::HHHHH::::::H      33333333:::::3   R::::RRRRRR:::::R 5:::::5555555555   
//  C:::::C                 1::::l     P:::::::::::::PP    H:::::::::::::::::H      3:::::::::::3    R:::::::::::::RR  5:::::::::::::::5  
//  C:::::C                 1::::l     P::::PPPPPPPPP      H:::::::::::::::::H      33333333:::::3   R::::RRRRRR:::::R 555555555555:::::5 
//  C:::::C                 1::::l     P::::P              H::::::HHHHH::::::H              3:::::3  R::::R     R:::::R            5:::::5
//  C:::::C                 1::::l     P::::P              H:::::H     H:::::H              3:::::3  R::::R     R:::::R            5:::::5
//   C:::::C       CCCCCC   1::::l     P::::P              H:::::H     H:::::H              3:::::3  R::::R     R:::::R5555555     5:::::5
//    C:::::CCCCCCCC::::C111::::::111PP::::::PP          HH::::::H     H::::::HH3333333     3:::::3RR:::::R     R:::::R5::::::55555::::::5
//     CC:::::::::::::::C1::::::::::1P::::::::P          H:::::::H     H:::::::H3::::::33333::::::3R::::::R     R:::::R 55:::::::::::::55 
//       CCC::::::::::::C1::::::::::1P::::::::P          H:::::::H     H:::::::H3:::::::::::::::33 R::::::R     R:::::R   55:::::::::55   
//          CCCCCCCCCCCCC111111111111PPPPPPPPPP          HHHHHHHHH     HHHHHHHHH 333333333333333   RRRRRRRR     RRRRRRR     555555555

// C1PHL0RD                                          

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.1;


/**
 * @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: https://github.com/chiru-labs/ERC721A/blob/v3.1.0/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: contract.sol


pragma solidity 0.8.4;



contract C1PH3R5 is ERC721A, Ownable {
    uint16 public constant MAX_SUPPLY = 5000;
    uint8 public constant MAX_PER_WALLET = 50;

    string private baseUri = "https://cf-ipfs.com/ipfs/QmQXkG7sW6DyL91N58jwAh8iEXQgtwURsGeD9rsxX4nx6E/";
    uint96 private royaltyBasisPoints = 750;
    mapping (address => bool) private _mintedFree;
    uint256 public cost = 0.005 ether;

    constructor() ERC721A("C1PH3R5", "SKULLIES") {}

    function soldOut() external view returns (bool) {
        return totalSupply() == MAX_SUPPLY;
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function numberMinted(address owner) external view returns (uint256) {
        return _numberMinted(owner);
    }

    function mint(uint256 _quantity) external payable {
        require(_quantity > 0, "INCORRECT_QUANTITY");
        require(_numberMinted(msg.sender) + _quantity <= MAX_PER_WALLET, "INCORRECT_QUANTITY");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED");
        require(msg.value >= cost * _quantity, "INCORRECT_ETH_AMOUNT");

        _safeMint(msg.sender, _quantity);
    }

    function claim() external {
        require(_numberMinted(msg.sender) + 1 <= MAX_PER_WALLET, "INCORRECT_QUANTITY");
        require(totalSupply() + 1 <= MAX_SUPPLY, "SALE_MAXED");
        require(_mintedFree[msg.sender] == false, "ALREADY_CLAIMED");
        _mintedFree[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function devMint(uint256 _quantity) external onlyOwner {
        require(_quantity > 0, "INCORRECT_QUANTITY");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED");
        
        _safeMint(msg.sender, _quantity);
    }

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

    function setBaseUri(string calldata _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory filename = Strings.toString(tokenId);
        return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : '';
    }

    function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner {
        royaltyBasisPoints = _royaltyBasisPoints;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        require(_exists(_tokenId), "Cannot query non-existent token");
        return (owner(), (_salePrice * royaltyBasisPoints) / 10000);
    }

    function transferFunds() external onlyOwner {
        payable(owner()).transfer(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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806048815260200162003cbd60489139600990805190602001906200003592919062000235565b506102ee600a60006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506611c37937e08000600c553480156200008157600080fd5b506040518060400160405280600781526020017f43315048335235000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f534b554c4c49455300000000000000000000000000000000000000000000000081525081600290805190602001906200010692919062000235565b5080600390805190602001906200011f92919062000235565b50620001306200015e60201b60201c565b6000819055505050620001586200014c6200016760201b60201c565b6200016f60201b60201c565b6200034a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613963806200035a6000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0bcfc7f11610095578063cac9266911610064578063cac9266914610642578063dc33e6811461066b578063e985e9c5146106a8578063f2fde38b146106e5576101cd565b8063a0bcfc7f1461058a578063a22cb465146105b3578063b88d4fde146105dc578063c87b56dd14610605576101cd565b8063893da6c9116100d1578063893da6c9146104ed5780638da5cb5b1461051857806395d89b4114610543578063a0712d681461056e576101cd565b80636352211e1461045c57806370a0823114610499578063715018a6146104d6576101cd565b806323b872dd1161016f5780633c68eb811161013e5780633c68eb81146103dc57806342842e0e146103f357806344a0d68a1461041c5780634e71d92d14610445576101cd565b806323b872dd146103215780632a55205a1461034a57806332cb6b0c14610388578063375a069a146103b3576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c146102a057806313faede6146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d1f565b61070e565b6040516102069190613188565b60405180910390f35b34801561021b57600080fd5b506102246107f0565b60405161023191906131a3565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612db6565b610882565b60405161026e91906130f8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ce3565b6108fe565b005b3480156102ac57600080fd5b506102b5610a09565b6040516102c291906132db565b60405180910390f35b3480156102d757600080fd5b506102e0610a0e565b6040516102ed91906132c0565b60405180910390f35b34801561030257600080fd5b5061030b610a14565b60405161031891906132c0565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612bdd565b610a2b565b005b34801561035657600080fd5b50610371600480360381019061036c9190612ddf565b610a3b565b60405161037f92919061315f565b60405180910390f35b34801561039457600080fd5b5061039d610ada565b6040516103aa91906132a5565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612db6565b610ae0565b005b3480156103e857600080fd5b506103f1610c07565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612bdd565b610cd3565b005b34801561042857600080fd5b50610443600480360381019061043e9190612db6565b610cf3565b005b34801561045157600080fd5b5061045a610d79565b005b34801561046857600080fd5b50610483600480360381019061047e9190612db6565b610f28565b60405161049091906130f8565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612b78565b610f3e565b6040516104cd91906132c0565b60405180910390f35b3480156104e257600080fd5b506104eb61100e565b005b3480156104f957600080fd5b50610502611096565b60405161050f9190613188565b60405180910390f35b34801561052457600080fd5b5061052d6110ad565b60405161053a91906130f8565b60405180910390f35b34801561054f57600080fd5b506105586110d7565b60405161056591906131a3565b60405180910390f35b61058860048036038101906105839190612db6565b611169565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612d71565b6112be565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612ca7565b611350565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612c2c565b6114c8565b005b34801561061157600080fd5b5061062c60048036038101906106279190612db6565b611544565b60405161063991906131a3565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612e1b565b6115ea565b005b34801561067757600080fd5b50610692600480360381019061068d9190612b78565b61169a565b60405161069f91906132c0565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ba1565b6116ac565b6040516106dc9190613188565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190612b78565b611740565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e957506107e882611838565b5b9050919050565b6060600280546107ff906135a2565b80601f016020809104026020016040519081016040528092919081815260200182805461082b906135a2565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b600061088d826118a2565b6108c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610971576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109906118f0565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c257506109c0816109bb6118f0565b6116ac565b155b156109f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a048383836118f8565b505050565b603281565b600c5481565b6000610a1e6119aa565b6001546000540303905090565b610a368383836119b3565b505050565b600080610a47846118a2565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613245565b60405180910390fd5b610a8e6110ad565b612710600a60009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1685610ac5919061342b565b610acf91906133fa565b915091509250929050565b61138881565b610ae86118f0565b73ffffffffffffffffffffffffffffffffffffffff16610b066110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390613225565b60405180910390fd5b60008111610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613265565b60405180910390fd5b61138861ffff1681610baf610a14565b610bb991906133a4565b1115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190613205565b60405180910390fd5b610c043382611e69565b50565b610c0f6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610c2d6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613225565b60405180910390fd5b610c8b6110ad565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cd0573d6000803e3d6000fd5b50565b610cee838383604051806020016040528060008152506114c8565b505050565b610cfb6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610d196110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613225565b60405180910390fd5b80600c8190555050565b603260ff166001610d8933611e87565b610d9391906133a4565b1115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613265565b60405180910390fd5b61138861ffff166001610de5610a14565b610def91906133a4565b1115610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790613205565b60405180910390fd5b60001515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613285565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f26336001611e69565b565b6000610f3382611ef1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110166118f0565b73ffffffffffffffffffffffffffffffffffffffff166110346110ad565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613225565b60405180910390fd5b6110946000612180565b565b600061138861ffff166110a7610a14565b14905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e6906135a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906135a2565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b600081116111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613265565b60405180910390fd5b603260ff16816111bb33611e87565b6111c591906133a4565b1115611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613265565b60405180910390fd5b61138861ffff1681611216610a14565b61122091906133a4565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613205565b60405180910390fd5b80600c5461126f919061342b565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906131e5565b60405180910390fd5b6112bb3382611e69565b50565b6112c66118f0565b73ffffffffffffffffffffffffffffffffffffffff166112e46110ad565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613225565b60405180910390fd5b81816009919061134b929190612962565b505050565b6113586118f0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6118f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776118f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc9190613188565b60405180910390a35050565b6114d38484846119b3565b6114f28373ffffffffffffffffffffffffffffffffffffffff16612246565b8015611507575061150584848484612269565b155b1561153e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061154f826118a2565b611585576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611590836123c9565b90506000600980546115a1906135a2565b905014156115be57604051806020016040528060008152506115e2565b6009816040516020016115d29291906130c9565b6040516020818303038152906040525b915050919050565b6115f26118f0565b73ffffffffffffffffffffffffffffffffffffffff166116106110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613225565b60405180910390fd5b80600a60006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050565b60006116a582611e87565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117486118f0565b73ffffffffffffffffffffffffffffffffffffffff166117666110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613225565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611823906131c5565b60405180910390fd5b61183581612180565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118ad6119aa565b111580156118bc575060005482105b80156118e9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119be82611ef1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a4a6118f0565b73ffffffffffffffffffffffffffffffffffffffff161480611a795750611a7885611a736118f0565b6116ac565b5b80611abe5750611a876118f0565b73ffffffffffffffffffffffffffffffffffffffff16611aa684610882565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611af7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b6b8585856001612576565b611b77600084876118f8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df7576000548214611df657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e62858585600161257c565b5050505050565b611e83828260405180602001604052806000815250612582565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ef96129e8565b600082905080611f076119aa565b11158015611f16575060005481105b15612149576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161214757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461202b57809250505061217b565b5b60011561214657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461214157809250505061217b565b61202c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228f6118f0565b8786866040518563ffffffff1660e01b81526004016122b19493929190613113565b602060405180830381600087803b1580156122cb57600080fd5b505af19250505080156122fc57506040513d601f19601f820116820180604052508101906122f99190612d48565b60015b612376573d806000811461232c576040519150601f19603f3d011682016040523d82523d6000602084013e612331565b606091505b5060008151141561236e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612411576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612571565b600082905060005b6000821461244357808061242c90613605565b915050600a8261243c91906133fa565b9150612419565b60008167ffffffffffffffff811115612485577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b6000851461256a576001826124d09190613485565b9150600a856124df919061364e565b60306124eb91906133a4565b60f81b818381518110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256391906133fa565b94506124bb565b8093505050505b919050565b50505050565b50505050565b61258f8383836001612594565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612601576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561263c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126496000868387612576565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561281357506128128773ffffffffffffffffffffffffffffffffffffffff16612246565b5b156128d9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128886000888480600101955088612269565b6128be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128195782600054146128d457600080fd5b612945565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128da575b81600081905550505061295b600086838761257c565b5050505050565b82805461296e906135a2565b90600052602060002090601f01602090048101928261299057600085556129d7565b82601f106129a957803560ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d65782358255916020019190600101906129bb565b5b5090506129e49190612a2b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a44576000816000905550600101612a2c565b5090565b6000612a5b612a568461331b565b6132f6565b905082815260208101848484011115612a7357600080fd5b612a7e848285613560565b509392505050565b600081359050612a95816138ba565b92915050565b600081359050612aaa816138d1565b92915050565b600081359050612abf816138e8565b92915050565b600081519050612ad4816138e8565b92915050565b600082601f830112612aeb57600080fd5b8135612afb848260208601612a48565b91505092915050565b60008083601f840112612b1657600080fd5b8235905067ffffffffffffffff811115612b2f57600080fd5b602083019150836001820283011115612b4757600080fd5b9250929050565b600081359050612b5d816138ff565b92915050565b600081359050612b7281613916565b92915050565b600060208284031215612b8a57600080fd5b6000612b9884828501612a86565b91505092915050565b60008060408385031215612bb457600080fd5b6000612bc285828601612a86565b9250506020612bd385828601612a86565b9150509250929050565b600080600060608486031215612bf257600080fd5b6000612c0086828701612a86565b9350506020612c1186828701612a86565b9250506040612c2286828701612b4e565b9150509250925092565b60008060008060808587031215612c4257600080fd5b6000612c5087828801612a86565b9450506020612c6187828801612a86565b9350506040612c7287828801612b4e565b925050606085013567ffffffffffffffff811115612c8f57600080fd5b612c9b87828801612ada565b91505092959194509250565b60008060408385031215612cba57600080fd5b6000612cc885828601612a86565b9250506020612cd985828601612a9b565b9150509250929050565b60008060408385031215612cf657600080fd5b6000612d0485828601612a86565b9250506020612d1585828601612b4e565b9150509250929050565b600060208284031215612d3157600080fd5b6000612d3f84828501612ab0565b91505092915050565b600060208284031215612d5a57600080fd5b6000612d6884828501612ac5565b91505092915050565b60008060208385031215612d8457600080fd5b600083013567ffffffffffffffff811115612d9e57600080fd5b612daa85828601612b04565b92509250509250929050565b600060208284031215612dc857600080fd5b6000612dd684828501612b4e565b91505092915050565b60008060408385031215612df257600080fd5b6000612e0085828601612b4e565b9250506020612e1185828601612b4e565b9150509250929050565b600060208284031215612e2d57600080fd5b6000612e3b84828501612b63565b91505092915050565b612e4d816134b9565b82525050565b612e5c816134cb565b82525050565b6000612e6d82613361565b612e778185613377565b9350612e8781856020860161356f565b612e908161373b565b840191505092915050565b6000612ea68261336c565b612eb08185613388565b9350612ec081856020860161356f565b612ec98161373b565b840191505092915050565b6000612edf8261336c565b612ee98185613399565b9350612ef981856020860161356f565b80840191505092915050565b60008154612f12816135a2565b612f1c8186613399565b94506001821660008114612f375760018114612f4857612f7b565b60ff19831686528186019350612f7b565b612f518561334c565b60005b83811015612f7357815481890152600182019150602081019050612f54565b838801955050505b50505092915050565b6000612f91602683613388565b9150612f9c8261374c565b604082019050919050565b6000612fb4601483613388565b9150612fbf8261379b565b602082019050919050565b6000612fd7600a83613388565b9150612fe2826137c4565b602082019050919050565b6000612ffa600583613399565b9150613005826137ed565b600582019050919050565b600061301d602083613388565b915061302882613816565b602082019050919050565b6000613040601f83613388565b915061304b8261383f565b602082019050919050565b6000613063601283613388565b915061306e82613868565b602082019050919050565b6000613086600f83613388565b915061309182613891565b602082019050919050565b6130a581613503565b82525050565b6130b481613531565b82525050565b6130c38161353b565b82525050565b60006130d58285612f05565b91506130e18284612ed4565b91506130ec82612fed565b91508190509392505050565b600060208201905061310d6000830184612e44565b92915050565b60006080820190506131286000830187612e44565b6131356020830186612e44565b61314260408301856130ab565b81810360608301526131548184612e62565b905095945050505050565b60006040820190506131746000830185612e44565b61318160208301846130ab565b9392505050565b600060208201905061319d6000830184612e53565b92915050565b600060208201905081810360008301526131bd8184612e9b565b905092915050565b600060208201905081810360008301526131de81612f84565b9050919050565b600060208201905081810360008301526131fe81612fa7565b9050919050565b6000602082019050818103600083015261321e81612fca565b9050919050565b6000602082019050818103600083015261323e81613010565b9050919050565b6000602082019050818103600083015261325e81613033565b9050919050565b6000602082019050818103600083015261327e81613056565b9050919050565b6000602082019050818103600083015261329e81613079565b9050919050565b60006020820190506132ba600083018461309c565b92915050565b60006020820190506132d560008301846130ab565b92915050565b60006020820190506132f060008301846130ba565b92915050565b6000613300613311565b905061330c82826135d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156133365761333561370c565b5b61333f8261373b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133af82613531565b91506133ba83613531565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ef576133ee61367f565b5b828201905092915050565b600061340582613531565b915061341083613531565b9250826134205761341f6136ae565b5b828204905092915050565b600061343682613531565b915061344183613531565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561347a5761347961367f565b5b828202905092915050565b600061349082613531565b915061349b83613531565b9250828210156134ae576134ad61367f565b5b828203905092915050565b60006134c482613511565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561358d578082015181840152602081019050613572565b8381111561359c576000848401525b50505050565b600060028204905060018216806135ba57607f821691505b602082108114156135ce576135cd6136dd565b5b50919050565b6135dd8261373b565b810181811067ffffffffffffffff821117156135fc576135fb61370c565b5b80604052505050565b600061361082613531565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136435761364261367f565b5b600182019050919050565b600061365982613531565b915061366483613531565b925082613674576136736136ae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e434f52524543545f4554485f414d4f554e54000000000000000000000000600082015250565b7f53414c455f4d4158454400000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f494e434f52524543545f5155414e544954590000000000000000000000000000600082015250565b7f414c52454144595f434c41494d45440000000000000000000000000000000000600082015250565b6138c3816134b9565b81146138ce57600080fd5b50565b6138da816134cb565b81146138e557600080fd5b50565b6138f1816134d7565b81146138fc57600080fd5b50565b61390881613531565b811461391357600080fd5b50565b61391f81613548565b811461392a57600080fd5b5056fea264697066735822122072e7e0a1be8c287776302eb74fadf05d5d9edb36efca6e5826a8ba0c76e92be664736f6c6343000804003368747470733a2f2f63662d697066732e636f6d2f697066732f516d51586b473773573644794c39314e35386a77416838694558516774775552734765443972737858346e7836452f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0bcfc7f11610095578063cac9266911610064578063cac9266914610642578063dc33e6811461066b578063e985e9c5146106a8578063f2fde38b146106e5576101cd565b8063a0bcfc7f1461058a578063a22cb465146105b3578063b88d4fde146105dc578063c87b56dd14610605576101cd565b8063893da6c9116100d1578063893da6c9146104ed5780638da5cb5b1461051857806395d89b4114610543578063a0712d681461056e576101cd565b80636352211e1461045c57806370a0823114610499578063715018a6146104d6576101cd565b806323b872dd1161016f5780633c68eb811161013e5780633c68eb81146103dc57806342842e0e146103f357806344a0d68a1461041c5780634e71d92d14610445576101cd565b806323b872dd146103215780632a55205a1461034a57806332cb6b0c14610388578063375a069a146103b3576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c146102a057806313faede6146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d1f565b61070e565b6040516102069190613188565b60405180910390f35b34801561021b57600080fd5b506102246107f0565b60405161023191906131a3565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612db6565b610882565b60405161026e91906130f8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ce3565b6108fe565b005b3480156102ac57600080fd5b506102b5610a09565b6040516102c291906132db565b60405180910390f35b3480156102d757600080fd5b506102e0610a0e565b6040516102ed91906132c0565b60405180910390f35b34801561030257600080fd5b5061030b610a14565b60405161031891906132c0565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612bdd565b610a2b565b005b34801561035657600080fd5b50610371600480360381019061036c9190612ddf565b610a3b565b60405161037f92919061315f565b60405180910390f35b34801561039457600080fd5b5061039d610ada565b6040516103aa91906132a5565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612db6565b610ae0565b005b3480156103e857600080fd5b506103f1610c07565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612bdd565b610cd3565b005b34801561042857600080fd5b50610443600480360381019061043e9190612db6565b610cf3565b005b34801561045157600080fd5b5061045a610d79565b005b34801561046857600080fd5b50610483600480360381019061047e9190612db6565b610f28565b60405161049091906130f8565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612b78565b610f3e565b6040516104cd91906132c0565b60405180910390f35b3480156104e257600080fd5b506104eb61100e565b005b3480156104f957600080fd5b50610502611096565b60405161050f9190613188565b60405180910390f35b34801561052457600080fd5b5061052d6110ad565b60405161053a91906130f8565b60405180910390f35b34801561054f57600080fd5b506105586110d7565b60405161056591906131a3565b60405180910390f35b61058860048036038101906105839190612db6565b611169565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612d71565b6112be565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612ca7565b611350565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612c2c565b6114c8565b005b34801561061157600080fd5b5061062c60048036038101906106279190612db6565b611544565b60405161063991906131a3565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612e1b565b6115ea565b005b34801561067757600080fd5b50610692600480360381019061068d9190612b78565b61169a565b60405161069f91906132c0565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ba1565b6116ac565b6040516106dc9190613188565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190612b78565b611740565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e957506107e882611838565b5b9050919050565b6060600280546107ff906135a2565b80601f016020809104026020016040519081016040528092919081815260200182805461082b906135a2565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b600061088d826118a2565b6108c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610971576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109906118f0565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c257506109c0816109bb6118f0565b6116ac565b155b156109f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a048383836118f8565b505050565b603281565b600c5481565b6000610a1e6119aa565b6001546000540303905090565b610a368383836119b3565b505050565b600080610a47846118a2565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613245565b60405180910390fd5b610a8e6110ad565b612710600a60009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1685610ac5919061342b565b610acf91906133fa565b915091509250929050565b61138881565b610ae86118f0565b73ffffffffffffffffffffffffffffffffffffffff16610b066110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390613225565b60405180910390fd5b60008111610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613265565b60405180910390fd5b61138861ffff1681610baf610a14565b610bb991906133a4565b1115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190613205565b60405180910390fd5b610c043382611e69565b50565b610c0f6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610c2d6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613225565b60405180910390fd5b610c8b6110ad565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cd0573d6000803e3d6000fd5b50565b610cee838383604051806020016040528060008152506114c8565b505050565b610cfb6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610d196110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613225565b60405180910390fd5b80600c8190555050565b603260ff166001610d8933611e87565b610d9391906133a4565b1115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613265565b60405180910390fd5b61138861ffff166001610de5610a14565b610def91906133a4565b1115610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790613205565b60405180910390fd5b60001515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613285565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f26336001611e69565b565b6000610f3382611ef1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110166118f0565b73ffffffffffffffffffffffffffffffffffffffff166110346110ad565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613225565b60405180910390fd5b6110946000612180565b565b600061138861ffff166110a7610a14565b14905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e6906135a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906135a2565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b600081116111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613265565b60405180910390fd5b603260ff16816111bb33611e87565b6111c591906133a4565b1115611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613265565b60405180910390fd5b61138861ffff1681611216610a14565b61122091906133a4565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613205565b60405180910390fd5b80600c5461126f919061342b565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906131e5565b60405180910390fd5b6112bb3382611e69565b50565b6112c66118f0565b73ffffffffffffffffffffffffffffffffffffffff166112e46110ad565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613225565b60405180910390fd5b81816009919061134b929190612962565b505050565b6113586118f0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6118f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776118f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc9190613188565b60405180910390a35050565b6114d38484846119b3565b6114f28373ffffffffffffffffffffffffffffffffffffffff16612246565b8015611507575061150584848484612269565b155b1561153e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061154f826118a2565b611585576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611590836123c9565b90506000600980546115a1906135a2565b905014156115be57604051806020016040528060008152506115e2565b6009816040516020016115d29291906130c9565b6040516020818303038152906040525b915050919050565b6115f26118f0565b73ffffffffffffffffffffffffffffffffffffffff166116106110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613225565b60405180910390fd5b80600a60006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050565b60006116a582611e87565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117486118f0565b73ffffffffffffffffffffffffffffffffffffffff166117666110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613225565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611823906131c5565b60405180910390fd5b61183581612180565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118ad6119aa565b111580156118bc575060005482105b80156118e9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006119be82611ef1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a4a6118f0565b73ffffffffffffffffffffffffffffffffffffffff161480611a795750611a7885611a736118f0565b6116ac565b5b80611abe5750611a876118f0565b73ffffffffffffffffffffffffffffffffffffffff16611aa684610882565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611af7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b6b8585856001612576565b611b77600084876118f8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df7576000548214611df657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e62858585600161257c565b5050505050565b611e83828260405180602001604052806000815250612582565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ef96129e8565b600082905080611f076119aa565b11158015611f16575060005481105b15612149576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161214757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461202b57809250505061217b565b5b60011561214657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461214157809250505061217b565b61202c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228f6118f0565b8786866040518563ffffffff1660e01b81526004016122b19493929190613113565b602060405180830381600087803b1580156122cb57600080fd5b505af19250505080156122fc57506040513d601f19601f820116820180604052508101906122f99190612d48565b60015b612376573d806000811461232c576040519150601f19603f3d011682016040523d82523d6000602084013e612331565b606091505b5060008151141561236e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612411576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612571565b600082905060005b6000821461244357808061242c90613605565b915050600a8261243c91906133fa565b9150612419565b60008167ffffffffffffffff811115612485577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b6000851461256a576001826124d09190613485565b9150600a856124df919061364e565b60306124eb91906133a4565b60f81b818381518110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256391906133fa565b94506124bb565b8093505050505b919050565b50505050565b50505050565b61258f8383836001612594565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612601576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561263c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126496000868387612576565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561281357506128128773ffffffffffffffffffffffffffffffffffffffff16612246565b5b156128d9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128886000888480600101955088612269565b6128be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128195782600054146128d457600080fd5b612945565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128da575b81600081905550505061295b600086838761257c565b5050505050565b82805461296e906135a2565b90600052602060002090601f01602090048101928261299057600085556129d7565b82601f106129a957803560ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d65782358255916020019190600101906129bb565b5b5090506129e49190612a2b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a44576000816000905550600101612a2c565b5090565b6000612a5b612a568461331b565b6132f6565b905082815260208101848484011115612a7357600080fd5b612a7e848285613560565b509392505050565b600081359050612a95816138ba565b92915050565b600081359050612aaa816138d1565b92915050565b600081359050612abf816138e8565b92915050565b600081519050612ad4816138e8565b92915050565b600082601f830112612aeb57600080fd5b8135612afb848260208601612a48565b91505092915050565b60008083601f840112612b1657600080fd5b8235905067ffffffffffffffff811115612b2f57600080fd5b602083019150836001820283011115612b4757600080fd5b9250929050565b600081359050612b5d816138ff565b92915050565b600081359050612b7281613916565b92915050565b600060208284031215612b8a57600080fd5b6000612b9884828501612a86565b91505092915050565b60008060408385031215612bb457600080fd5b6000612bc285828601612a86565b9250506020612bd385828601612a86565b9150509250929050565b600080600060608486031215612bf257600080fd5b6000612c0086828701612a86565b9350506020612c1186828701612a86565b9250506040612c2286828701612b4e565b9150509250925092565b60008060008060808587031215612c4257600080fd5b6000612c5087828801612a86565b9450506020612c6187828801612a86565b9350506040612c7287828801612b4e565b925050606085013567ffffffffffffffff811115612c8f57600080fd5b612c9b87828801612ada565b91505092959194509250565b60008060408385031215612cba57600080fd5b6000612cc885828601612a86565b9250506020612cd985828601612a9b565b9150509250929050565b60008060408385031215612cf657600080fd5b6000612d0485828601612a86565b9250506020612d1585828601612b4e565b9150509250929050565b600060208284031215612d3157600080fd5b6000612d3f84828501612ab0565b91505092915050565b600060208284031215612d5a57600080fd5b6000612d6884828501612ac5565b91505092915050565b60008060208385031215612d8457600080fd5b600083013567ffffffffffffffff811115612d9e57600080fd5b612daa85828601612b04565b92509250509250929050565b600060208284031215612dc857600080fd5b6000612dd684828501612b4e565b91505092915050565b60008060408385031215612df257600080fd5b6000612e0085828601612b4e565b9250506020612e1185828601612b4e565b9150509250929050565b600060208284031215612e2d57600080fd5b6000612e3b84828501612b63565b91505092915050565b612e4d816134b9565b82525050565b612e5c816134cb565b82525050565b6000612e6d82613361565b612e778185613377565b9350612e8781856020860161356f565b612e908161373b565b840191505092915050565b6000612ea68261336c565b612eb08185613388565b9350612ec081856020860161356f565b612ec98161373b565b840191505092915050565b6000612edf8261336c565b612ee98185613399565b9350612ef981856020860161356f565b80840191505092915050565b60008154612f12816135a2565b612f1c8186613399565b94506001821660008114612f375760018114612f4857612f7b565b60ff19831686528186019350612f7b565b612f518561334c565b60005b83811015612f7357815481890152600182019150602081019050612f54565b838801955050505b50505092915050565b6000612f91602683613388565b9150612f9c8261374c565b604082019050919050565b6000612fb4601483613388565b9150612fbf8261379b565b602082019050919050565b6000612fd7600a83613388565b9150612fe2826137c4565b602082019050919050565b6000612ffa600583613399565b9150613005826137ed565b600582019050919050565b600061301d602083613388565b915061302882613816565b602082019050919050565b6000613040601f83613388565b915061304b8261383f565b602082019050919050565b6000613063601283613388565b915061306e82613868565b602082019050919050565b6000613086600f83613388565b915061309182613891565b602082019050919050565b6130a581613503565b82525050565b6130b481613531565b82525050565b6130c38161353b565b82525050565b60006130d58285612f05565b91506130e18284612ed4565b91506130ec82612fed565b91508190509392505050565b600060208201905061310d6000830184612e44565b92915050565b60006080820190506131286000830187612e44565b6131356020830186612e44565b61314260408301856130ab565b81810360608301526131548184612e62565b905095945050505050565b60006040820190506131746000830185612e44565b61318160208301846130ab565b9392505050565b600060208201905061319d6000830184612e53565b92915050565b600060208201905081810360008301526131bd8184612e9b565b905092915050565b600060208201905081810360008301526131de81612f84565b9050919050565b600060208201905081810360008301526131fe81612fa7565b9050919050565b6000602082019050818103600083015261321e81612fca565b9050919050565b6000602082019050818103600083015261323e81613010565b9050919050565b6000602082019050818103600083015261325e81613033565b9050919050565b6000602082019050818103600083015261327e81613056565b9050919050565b6000602082019050818103600083015261329e81613079565b9050919050565b60006020820190506132ba600083018461309c565b92915050565b60006020820190506132d560008301846130ab565b92915050565b60006020820190506132f060008301846130ba565b92915050565b6000613300613311565b905061330c82826135d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156133365761333561370c565b5b61333f8261373b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133af82613531565b91506133ba83613531565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ef576133ee61367f565b5b828201905092915050565b600061340582613531565b915061341083613531565b9250826134205761341f6136ae565b5b828204905092915050565b600061343682613531565b915061344183613531565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561347a5761347961367f565b5b828202905092915050565b600061349082613531565b915061349b83613531565b9250828210156134ae576134ad61367f565b5b828203905092915050565b60006134c482613511565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561358d578082015181840152602081019050613572565b8381111561359c576000848401525b50505050565b600060028204905060018216806135ba57607f821691505b602082108114156135ce576135cd6136dd565b5b50919050565b6135dd8261373b565b810181811067ffffffffffffffff821117156135fc576135fb61370c565b5b80604052505050565b600061361082613531565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136435761364261367f565b5b600182019050919050565b600061365982613531565b915061366483613531565b925082613674576136736136ae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f494e434f52524543545f4554485f414d4f554e54000000000000000000000000600082015250565b7f53414c455f4d4158454400000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f494e434f52524543545f5155414e544954590000000000000000000000000000600082015250565b7f414c52454144595f434c41494d45440000000000000000000000000000000000600082015250565b6138c3816134b9565b81146138ce57600080fd5b50565b6138da816134cb565b81146138e557600080fd5b50565b6138f1816134d7565b81146138fc57600080fd5b50565b61390881613531565b811461391357600080fd5b50565b61391f81613548565b811461392a57600080fd5b5056fea264697066735822122072e7e0a1be8c287776302eb74fadf05d5d9edb36efca6e5826a8ba0c76e92be664736f6c63430008040033

Deployed Bytecode Sourcemap

47158:2859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29343:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33959:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33522:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47249:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47503:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28592:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34824:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49622:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;47202:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48674:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49903:111;;;;;;;;;;;;;:::i;:::-;;35065:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47709:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48331:335;;;;;;;;;;;;;:::i;:::-;;32264:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29712:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7059:103;;;;;;;;;;;;;:::i;:::-;;47600:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6408:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32625:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47922:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49035:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34235:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35321:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49147:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49488:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47799:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34593:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7317:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29343:305;29445:4;29497:25;29482:40;;;:11;:40;;;;:105;;;;29554:33;29539:48;;;:11;:48;;;;29482:105;:158;;;;29604:36;29628:11;29604:23;:36::i;:::-;29482:158;29462:178;;29343:305;;;:::o;32456:100::-;32510:13;32543:5;32536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32456:100;:::o;33959:204::-;34027:7;34052:16;34060:7;34052;:16::i;:::-;34047:64;;34077:34;;;;;;;;;;;;;;34047:64;34131:15;:24;34147:7;34131:24;;;;;;;;;;;;;;;;;;;;;34124:31;;33959:204;;;:::o;33522:371::-;33595:13;33611:24;33627:7;33611:15;:24::i;:::-;33595:40;;33656:5;33650:11;;:2;:11;;;33646:48;;;33670:24;;;;;;;;;;;;;;33646:48;33727:5;33711:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33737:37;33754:5;33761:12;:10;:12::i;:::-;33737:16;:37::i;:::-;33736:38;33711:63;33707:138;;;33798:35;;;;;;;;;;;;;;33707:138;33857:28;33866:2;33870:7;33879:5;33857:8;:28::i;:::-;33522:371;;;:::o;47249:41::-;47288:2;47249:41;:::o;47503:33::-;;;;:::o;28592:303::-;28636:7;28861:15;:13;:15::i;:::-;28846:12;;28830:13;;:28;:46;28823:53;;28592:303;:::o;34824:170::-;34958:28;34968:4;34974:2;34978:7;34958:9;:28::i;:::-;34824:170;;;:::o;49622:273::-;49704:16;49722:21;49764:17;49772:8;49764:7;:17::i;:::-;49756:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49836:7;:5;:7::i;:::-;49881:5;49859:18;;;;;;;;;;;49846:31;;:10;:31;;;;:::i;:::-;49845:41;;;;:::i;:::-;49828:59;;;;49622:273;;;;;:::o;47202:40::-;47238:4;47202:40;:::o;48674:244::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48760:1:::1;48748:9;:13;48740:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47238:4;48803:39;;48819:9;48803:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;48795:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48878:32;48888:10;48900:9;48878;:32::i;:::-;48674:244:::0;:::o;49903:111::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49966:7:::1;:5;:7::i;:::-;49958:25;;:48;49984:21;49958:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49903:111::o:0;35065:185::-;35203:39;35220:4;35226:2;35230:7;35203:39;;;;;;;;;;;;:16;:39::i;:::-;35065:185;;;:::o;47709:82::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47778:5:::1;47771:4;:12;;;;47709:82:::0;:::o;48331:335::-;47288:2;48376:47;;48404:1;48376:25;48390:10;48376:13;:25::i;:::-;:29;;;;:::i;:::-;:47;;48368:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47238:4;48465:31;;48481:1;48465:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;48457:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48557:5;48530:32;;:11;:23;48542:10;48530:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;48522:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48619:4;48593:11;:23;48605:10;48593:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;48634:24;48644:10;48656:1;48634:9;:24::i;:::-;48331:335::o;32264:125::-;32328:7;32355:21;32368:7;32355:12;:21::i;:::-;:26;;;32348:33;;32264:125;;;:::o;29712:206::-;29776:7;29817:1;29800:19;;:5;:19;;;29796:60;;;29828:28;;;;;;;;;;;;;;29796:60;29882:12;:19;29895:5;29882:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29874:36;;29867:43;;29712:206;;;:::o;7059:103::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7124:30:::1;7151:1;7124:18;:30::i;:::-;7059:103::o:0;47600:101::-;47642:4;47238;47666:27;;:13;:11;:13::i;:::-;:27;47659:34;;47600:101;:::o;6408:87::-;6454:7;6481:6;;;;;;;;;;;6474:13;;6408:87;:::o;32625:104::-;32681:13;32714:7;32707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32625:104;:::o;47922:401::-;48003:1;47991:9;:13;47983:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47288:2;48046:55;;48074:9;48046:25;48060:10;48046:13;:25::i;:::-;:37;;;;:::i;:::-;:55;;48038:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47238:4;48143:39;;48159:9;48143:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;48135:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48236:9;48229:4;;:16;;;;:::i;:::-;48216:9;:29;;48208:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48283:32;48293:10;48305:9;48283;:32::i;:::-;47922:401;:::o;49035:102::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49121:8:::1;;49111:7;:18;;;;;;;:::i;:::-;;49035:102:::0;;:::o;34235:287::-;34346:12;:10;:12::i;:::-;34334:24;;:8;:24;;;34330:54;;;34367:17;;;;;;;;;;;;;;34330:54;34442:8;34397:18;:32;34416:12;:10;:12::i;:::-;34397:32;;;;;;;;;;;;;;;:42;34430:8;34397:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34495:8;34466:48;;34481:12;:10;:12::i;:::-;34466:48;;;34505:8;34466:48;;;;;;:::i;:::-;;;;;;;;34235:287;;:::o;35321:369::-;35488:28;35498:4;35504:2;35508:7;35488:9;:28::i;:::-;35531:15;:2;:13;;;:15::i;:::-;:76;;;;;35551:56;35582:4;35588:2;35592:7;35601:5;35551:30;:56::i;:::-;35550:57;35531:76;35527:156;;;35631:40;;;;;;;;;;;;;;35527:156;35321:369;;;;:::o;49147:333::-;49220:13;49251:16;49259:7;49251;:16::i;:::-;49246:59;;49276:29;;;;;;;;;;;;;;49246:59;49318:22;49343:25;49360:7;49343:16;:25::i;:::-;49318:50;;49411:1;49392:7;49386:21;;;;;:::i;:::-;;;:26;;:86;;;;;;;;;;;;;;;;;49439:7;49448:8;49422:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49386:86;49379:93;;;49147:333;;;:::o;49488:126::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49587:19:::1;49566:18;;:40;;;;;;;;;;;;;;;;;;49488:126:::0;:::o;47799:115::-;47859:7;47886:20;47900:5;47886:13;:20::i;:::-;47879:27;;47799:115;;;:::o;34593:164::-;34690:4;34714:18;:25;34733:5;34714:25;;;;;;;;;;;;;;;:35;34740:8;34714:35;;;;;;;;;;;;;;;;;;;;;;;;;34707:42;;34593:164;;;;:::o;7317:201::-;6639:12;:10;:12::i;:::-;6628:23;;:7;:5;:7::i;:::-;:23;;;6620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7426:1:::1;7406:22;;:8;:22;;;;7398:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7482:28;7501:8;7482:18;:28::i;:::-;7317:201:::0;:::o;19192:157::-;19277:4;19316:25;19301:40;;;:11;:40;;;;19294:47;;19192:157;;;:::o;35945:187::-;36002:4;36045:7;36026:15;:13;:15::i;:::-;:26;;:53;;;;;36066:13;;36056:7;:23;36026:53;:98;;;;;36097:11;:20;36109:7;36097:20;;;;;;;;;;;:27;;;;;;;;;;;;36096:28;36026:98;36019:105;;35945:187;;;:::o;5132:98::-;5185:7;5212:10;5205:17;;5132:98;:::o;44115:196::-;44257:2;44230:15;:24;44246:7;44230:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44295:7;44291:2;44275:28;;44284:5;44275:28;;;;;;;;;;;;44115:196;;;:::o;48926:101::-;48991:7;49018:1;49011:8;;48926:101;:::o;39058:2130::-;39173:35;39211:21;39224:7;39211:12;:21::i;:::-;39173:59;;39271:4;39249:26;;:13;:18;;;:26;;;39245:67;;39284:28;;;;;;;;;;;;;;39245:67;39325:22;39367:4;39351:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39388:36;39405:4;39411:12;:10;:12::i;:::-;39388:16;:36::i;:::-;39351:73;:126;;;;39465:12;:10;:12::i;:::-;39441:36;;:20;39453:7;39441:11;:20::i;:::-;:36;;;39351:126;39325:153;;39496:17;39491:66;;39522:35;;;;;;;;;;;;;;39491:66;39586:1;39572:16;;:2;:16;;;39568:52;;;39597:23;;;;;;;;;;;;;;39568:52;39633:43;39655:4;39661:2;39665:7;39674:1;39633:21;:43::i;:::-;39741:35;39758:1;39762:7;39771:4;39741:8;:35::i;:::-;40102:1;40072:12;:18;40085:4;40072:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40146:1;40118:12;:16;40131:2;40118:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40164:31;40198:11;:20;40210:7;40198:20;;;;;;;;;;;40164:54;;40249:2;40233:8;:13;;;:18;;;;;;;;;;;;;;;;;;40299:15;40266:8;:23;;;:49;;;;;;;;;;;;;;;;;;40567:19;40599:1;40589:7;:11;40567:33;;40615:31;40649:11;:24;40661:11;40649:24;;;;;;;;;;;40615:58;;40717:1;40692:27;;:8;:13;;;;;;;;;;;;:27;;;40688:384;;;40902:13;;40887:11;:28;40883:174;;40956:4;40940:8;:13;;;:20;;;;;;;;;;;;;;;;;;41009:13;:28;;;40983:8;:23;;;:54;;;;;;;;;;;;;;;;;;40883:174;40688:384;39058:2130;;;41119:7;41115:2;41100:27;;41109:4;41100:27;;;;;;;;;;;;41138:42;41159:4;41165:2;41169:7;41178:1;41138:20;:42::i;:::-;39058:2130;;;;;:::o;36140:104::-;36209:27;36219:2;36223:8;36209:27;;;;;;;;;;;;:9;:27::i;:::-;36140:104;;:::o;30000:137::-;30061:7;30096:12;:19;30109:5;30096:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30088:41;;30081:48;;30000:137;;;:::o;31093:1109::-;31155:21;;:::i;:::-;31189:12;31204:7;31189:22;;31272:4;31253:15;:13;:15::i;:::-;:23;;:47;;;;;31287:13;;31280:4;:20;31253:47;31249:886;;;31321:31;31355:11;:17;31367:4;31355:17;;;;;;;;;;;31321:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31396:9;:16;;;31391:729;;31467:1;31441:28;;:9;:14;;;:28;;;31437:101;;31505:9;31498:16;;;;;;31437:101;31840:261;31847:4;31840:261;;;31880:6;;;;;;;;31925:11;:17;31937:4;31925:17;;;;;;;;;;;31913:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31999:1;31973:28;;:9;:14;;;:28;;;31969:109;;32041:9;32034:16;;;;;;31969:109;31840:261;;;31391:729;31249:886;;32163:31;;;;;;;;;;;;;;31093:1109;;;;:::o;7678:191::-;7752:16;7771:6;;;;;;;;;;;7752:25;;7797:8;7788:6;;:17;;;;;;;;;;;;;;;;;;7852:8;7821:40;;7842:8;7821:40;;;;;;;;;;;;7678:191;;:::o;9109:326::-;9169:4;9426:1;9404:7;:19;;;:23;9397:30;;9109:326;;;:::o;44803:667::-;44966:4;45003:2;44987:36;;;45024:12;:10;:12::i;:::-;45038:4;45044:7;45053:5;44987:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44983:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45238:1;45221:6;:13;:18;45217:235;;;45267:40;;;;;;;;;;;;;;45217:235;45410:6;45404:13;45395:6;45391:2;45387:15;45380:38;44983:480;45116:45;;;45106:55;;;:6;:55;;;;45099:62;;;44803:667;;;;;;:::o;2694:723::-;2750:13;2980:1;2971:5;:10;2967:53;;;2998:10;;;;;;;;;;;;;;;;;;;;;2967:53;3030:12;3045:5;3030:20;;3061:14;3086:78;3101:1;3093:4;:9;3086:78;;3119:8;;;;;:::i;:::-;;;;3150:2;3142:10;;;;;:::i;:::-;;;3086:78;;;3174:19;3206:6;3196:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3174:39;;3224:154;3240:1;3231:5;:10;3224:154;;3268:1;3258:11;;;;;:::i;:::-;;;3335:2;3327:5;:10;;;;:::i;:::-;3314:2;:24;;;;:::i;:::-;3301:39;;3284:6;3291;3284:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3364:2;3355:11;;;;;:::i;:::-;;;3224:154;;;3402:6;3388:21;;;;;2694:723;;;;:::o;46118:159::-;;;;;:::o;46936:158::-;;;;;:::o;36607:163::-;36730:32;36736:2;36740:8;36750:5;36757:4;36730:5;:32::i;:::-;36607:163;;;:::o;37029:1775::-;37168:20;37191:13;;37168:36;;37233:1;37219:16;;:2;:16;;;37215:48;;;37244:19;;;;;;;;;;;;;;37215:48;37290:1;37278:8;:13;37274:44;;;37300:18;;;;;;;;;;;;;;37274:44;37331:61;37361:1;37365:2;37369:12;37383:8;37331:21;:61::i;:::-;37704:8;37669:12;:16;37682:2;37669:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37768:8;37728:12;:16;37741:2;37728:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37827:2;37794:11;:25;37806:12;37794:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37894:15;37844:11;:25;37856:12;37844:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37927:20;37950:12;37927:35;;37977:11;38006:8;37991:12;:23;37977:37;;38035:4;:23;;;;;38043:15;:2;:13;;;:15::i;:::-;38035:23;38031:641;;;38079:314;38135:12;38131:2;38110:38;;38127:1;38110:38;;;;;;;;;;;;38176:69;38215:1;38219:2;38223:14;;;;;;38239:5;38176:30;:69::i;:::-;38171:174;;38281:40;;;;;;;;;;;;;;38171:174;38388:3;38372:12;:19;;38079:314;;38474:12;38457:13;;:29;38453:43;;38488:8;;;38453:43;38031:641;;;38537:120;38593:14;;;;;;38589:2;38568:40;;38585:1;38568:40;;;;;;;;;;;;38652:3;38636:12;:19;;38537:120;;38031:641;38702:12;38686:13;:28;;;;37029:1775;;38736:60;38765:1;38769:2;38773:12;38787:8;38736:20;:60::i;:::-;37029:1775;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:137::-;1782:5;1820:6;1807:20;1798:29;;1836:32;1862:5;1836:32;:::i;:::-;1788:86;;;;:::o;1880:262::-;1939:6;1988:2;1976:9;1967:7;1963:23;1959:32;1956:2;;;2004:1;2001;1994:12;1956:2;2047:1;2072:53;2117:7;2108:6;2097:9;2093:22;2072:53;:::i;:::-;2062:63;;2018:117;1946:196;;;;:::o;2148:407::-;2216:6;2224;2273:2;2261:9;2252:7;2248:23;2244:32;2241:2;;;2289:1;2286;2279:12;2241:2;2332:1;2357:53;2402:7;2393:6;2382:9;2378:22;2357:53;:::i;:::-;2347:63;;2303:117;2459:2;2485:53;2530:7;2521:6;2510:9;2506:22;2485:53;:::i;:::-;2475:63;;2430:118;2231:324;;;;;:::o;2561:552::-;2638:6;2646;2654;2703:2;2691:9;2682:7;2678:23;2674:32;2671:2;;;2719:1;2716;2709:12;2671:2;2762:1;2787:53;2832:7;2823:6;2812:9;2808:22;2787:53;:::i;:::-;2777:63;;2733:117;2889:2;2915:53;2960:7;2951:6;2940:9;2936:22;2915:53;:::i;:::-;2905:63;;2860:118;3017:2;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2988:118;2661:452;;;;;:::o;3119:809::-;3214:6;3222;3230;3238;3287:3;3275:9;3266:7;3262:23;3258:33;3255:2;;;3304:1;3301;3294:12;3255:2;3347:1;3372:53;3417:7;3408:6;3397:9;3393:22;3372:53;:::i;:::-;3362:63;;3318:117;3474:2;3500:53;3545:7;3536:6;3525:9;3521:22;3500:53;:::i;:::-;3490:63;;3445:118;3602:2;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3573:118;3758:2;3747:9;3743:18;3730:32;3789:18;3781:6;3778:30;3775:2;;;3821:1;3818;3811:12;3775:2;3849:62;3903:7;3894:6;3883:9;3879:22;3849:62;:::i;:::-;3839:72;;3701:220;3245:683;;;;;;;:::o;3934:401::-;3999:6;4007;4056:2;4044:9;4035:7;4031:23;4027:32;4024:2;;;4072:1;4069;4062:12;4024:2;4115:1;4140:53;4185:7;4176:6;4165:9;4161:22;4140:53;:::i;:::-;4130:63;;4086:117;4242:2;4268:50;4310:7;4301:6;4290:9;4286:22;4268:50;:::i;:::-;4258:60;;4213:115;4014:321;;;;;:::o;4341:407::-;4409:6;4417;4466:2;4454:9;4445:7;4441:23;4437:32;4434:2;;;4482:1;4479;4472:12;4434:2;4525:1;4550:53;4595:7;4586:6;4575:9;4571:22;4550:53;:::i;:::-;4540:63;;4496:117;4652:2;4678:53;4723:7;4714:6;4703:9;4699:22;4678:53;:::i;:::-;4668:63;;4623:118;4424:324;;;;;:::o;4754:260::-;4812:6;4861:2;4849:9;4840:7;4836:23;4832:32;4829:2;;;4877:1;4874;4867:12;4829:2;4920:1;4945:52;4989:7;4980:6;4969:9;4965:22;4945:52;:::i;:::-;4935:62;;4891:116;4819:195;;;;:::o;5020:282::-;5089:6;5138:2;5126:9;5117:7;5113:23;5109:32;5106:2;;;5154:1;5151;5144:12;5106:2;5197:1;5222:63;5277:7;5268:6;5257:9;5253:22;5222:63;:::i;:::-;5212:73;;5168:127;5096:206;;;;:::o;5308:395::-;5379:6;5387;5436:2;5424:9;5415:7;5411:23;5407:32;5404:2;;;5452:1;5449;5442:12;5404:2;5523:1;5512:9;5508:17;5495:31;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5621:65;5678:7;5669:6;5658:9;5654:22;5621:65;:::i;:::-;5603:83;;;;5466:230;5394:309;;;;;:::o;5709:262::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;5775:196;;;;:::o;5977:407::-;6045:6;6053;6102:2;6090:9;6081:7;6077:23;6073:32;6070:2;;;6118:1;6115;6108:12;6070:2;6161:1;6186:53;6231:7;6222:6;6211:9;6207:22;6186:53;:::i;:::-;6176:63;;6132:117;6288:2;6314:53;6359:7;6350:6;6339:9;6335:22;6314:53;:::i;:::-;6304:63;;6259:118;6060:324;;;;;:::o;6390:260::-;6448:6;6497:2;6485:9;6476:7;6472:23;6468:32;6465:2;;;6513:1;6510;6503:12;6465:2;6556:1;6581:52;6625:7;6616:6;6605:9;6601:22;6581:52;:::i;:::-;6571:62;;6527:116;6455:195;;;;:::o;6656:118::-;6743:24;6761:5;6743:24;:::i;:::-;6738:3;6731:37;6721:53;;:::o;6780:109::-;6861:21;6876:5;6861:21;:::i;:::-;6856:3;6849:34;6839:50;;:::o;6895:360::-;6981:3;7009:38;7041:5;7009:38;:::i;:::-;7063:70;7126:6;7121:3;7063:70;:::i;:::-;7056:77;;7142:52;7187:6;7182:3;7175:4;7168:5;7164:16;7142:52;:::i;:::-;7219:29;7241:6;7219:29;:::i;:::-;7214:3;7210:39;7203:46;;6985:270;;;;;:::o;7261:364::-;7349:3;7377:39;7410:5;7377:39;:::i;:::-;7432:71;7496:6;7491:3;7432:71;:::i;:::-;7425:78;;7512:52;7557:6;7552:3;7545:4;7538:5;7534:16;7512:52;:::i;:::-;7589:29;7611:6;7589:29;:::i;:::-;7584:3;7580:39;7573:46;;7353:272;;;;;:::o;7631:377::-;7737:3;7765:39;7798:5;7765:39;:::i;:::-;7820:89;7902:6;7897:3;7820:89;:::i;:::-;7813:96;;7918:52;7963:6;7958:3;7951:4;7944:5;7940:16;7918:52;:::i;:::-;7995:6;7990:3;7986:16;7979:23;;7741:267;;;;;:::o;8038:845::-;8141:3;8178:5;8172:12;8207:36;8233:9;8207:36;:::i;:::-;8259:89;8341:6;8336:3;8259:89;:::i;:::-;8252:96;;8379:1;8368:9;8364:17;8395:1;8390:137;;;;8541:1;8536:341;;;;8357:520;;8390:137;8474:4;8470:9;8459;8455:25;8450:3;8443:38;8510:6;8505:3;8501:16;8494:23;;8390:137;;8536:341;8603:38;8635:5;8603:38;:::i;:::-;8663:1;8677:154;8691:6;8688:1;8685:13;8677:154;;;8765:7;8759:14;8755:1;8750:3;8746:11;8739:35;8815:1;8806:7;8802:15;8791:26;;8713:4;8710:1;8706:12;8701:17;;8677:154;;;8860:6;8855:3;8851:16;8844:23;;8543:334;;8357:520;;8145:738;;;;;;:::o;8889:366::-;9031:3;9052:67;9116:2;9111:3;9052:67;:::i;:::-;9045:74;;9128:93;9217:3;9128:93;:::i;:::-;9246:2;9241:3;9237:12;9230:19;;9035:220;;;:::o;9261:366::-;9403:3;9424:67;9488:2;9483:3;9424:67;:::i;:::-;9417:74;;9500:93;9589:3;9500:93;:::i;:::-;9618:2;9613:3;9609:12;9602:19;;9407:220;;;:::o;9633:366::-;9775:3;9796:67;9860:2;9855:3;9796:67;:::i;:::-;9789:74;;9872:93;9961:3;9872:93;:::i;:::-;9990:2;9985:3;9981:12;9974:19;;9779:220;;;:::o;10005:400::-;10165:3;10186:84;10268:1;10263:3;10186:84;:::i;:::-;10179:91;;10279:93;10368:3;10279:93;:::i;:::-;10397:1;10392:3;10388:11;10381:18;;10169:236;;;:::o;10411:366::-;10553:3;10574:67;10638:2;10633:3;10574:67;:::i;:::-;10567:74;;10650:93;10739:3;10650:93;:::i;:::-;10768:2;10763:3;10759:12;10752:19;;10557:220;;;:::o;10783:366::-;10925:3;10946:67;11010:2;11005:3;10946:67;:::i;:::-;10939:74;;11022:93;11111:3;11022:93;:::i;:::-;11140:2;11135:3;11131:12;11124:19;;10929:220;;;:::o;11155:366::-;11297:3;11318:67;11382:2;11377:3;11318:67;:::i;:::-;11311:74;;11394:93;11483:3;11394:93;:::i;:::-;11512:2;11507:3;11503:12;11496:19;;11301:220;;;:::o;11527:366::-;11669:3;11690:67;11754:2;11749:3;11690:67;:::i;:::-;11683:74;;11766:93;11855:3;11766:93;:::i;:::-;11884:2;11879:3;11875:12;11868:19;;11673:220;;;:::o;11899:115::-;11984:23;12001:5;11984:23;:::i;:::-;11979:3;11972:36;11962:52;;:::o;12020:118::-;12107:24;12125:5;12107:24;:::i;:::-;12102:3;12095:37;12085:53;;:::o;12144:112::-;12227:22;12243:5;12227:22;:::i;:::-;12222:3;12215:35;12205:51;;:::o;12262:695::-;12540:3;12562:92;12650:3;12641:6;12562:92;:::i;:::-;12555:99;;12671:95;12762:3;12753:6;12671:95;:::i;:::-;12664:102;;12783:148;12927:3;12783:148;:::i;:::-;12776:155;;12948:3;12941:10;;12544:413;;;;;:::o;12963:222::-;13056:4;13094:2;13083:9;13079:18;13071:26;;13107:71;13175:1;13164:9;13160:17;13151:6;13107:71;:::i;:::-;13061:124;;;;:::o;13191:640::-;13386:4;13424:3;13413:9;13409:19;13401:27;;13438:71;13506:1;13495:9;13491:17;13482:6;13438:71;:::i;:::-;13519:72;13587:2;13576:9;13572:18;13563:6;13519:72;:::i;:::-;13601;13669:2;13658:9;13654:18;13645:6;13601:72;:::i;:::-;13720:9;13714:4;13710:20;13705:2;13694:9;13690:18;13683:48;13748:76;13819:4;13810:6;13748:76;:::i;:::-;13740:84;;13391:440;;;;;;;:::o;13837:332::-;13958:4;13996:2;13985:9;13981:18;13973:26;;14009:71;14077:1;14066:9;14062:17;14053:6;14009:71;:::i;:::-;14090:72;14158:2;14147:9;14143:18;14134:6;14090:72;:::i;:::-;13963:206;;;;;:::o;14175:210::-;14262:4;14300:2;14289:9;14285:18;14277:26;;14313:65;14375:1;14364:9;14360:17;14351:6;14313:65;:::i;:::-;14267:118;;;;:::o;14391:313::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:78;14692:4;14683:6;14619:78;:::i;:::-;14611:86;;14509:195;;;;:::o;14710:419::-;14876:4;14914:2;14903:9;14899:18;14891:26;;14963:9;14957:4;14953:20;14949:1;14938:9;14934:17;14927:47;14991:131;15117:4;14991:131;:::i;:::-;14983:139;;14881:248;;;:::o;15135:419::-;15301:4;15339:2;15328:9;15324:18;15316:26;;15388:9;15382:4;15378:20;15374:1;15363:9;15359:17;15352:47;15416:131;15542:4;15416:131;:::i;:::-;15408:139;;15306:248;;;:::o;15560:419::-;15726:4;15764:2;15753:9;15749:18;15741:26;;15813:9;15807:4;15803:20;15799:1;15788:9;15784:17;15777:47;15841:131;15967:4;15841:131;:::i;:::-;15833:139;;15731:248;;;:::o;15985:419::-;16151:4;16189:2;16178:9;16174:18;16166:26;;16238:9;16232:4;16228:20;16224:1;16213:9;16209:17;16202:47;16266:131;16392:4;16266:131;:::i;:::-;16258:139;;16156:248;;;:::o;16410:419::-;16576:4;16614:2;16603:9;16599:18;16591:26;;16663:9;16657:4;16653:20;16649:1;16638:9;16634:17;16627:47;16691:131;16817:4;16691:131;:::i;:::-;16683:139;;16581:248;;;:::o;16835:419::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17088:9;17082:4;17078:20;17074:1;17063:9;17059:17;17052:47;17116:131;17242:4;17116:131;:::i;:::-;17108:139;;17006:248;;;:::o;17260:419::-;17426:4;17464:2;17453:9;17449:18;17441:26;;17513:9;17507:4;17503:20;17499:1;17488:9;17484:17;17477:47;17541:131;17667:4;17541:131;:::i;:::-;17533:139;;17431:248;;;:::o;17685:218::-;17776:4;17814:2;17803:9;17799:18;17791:26;;17827:69;17893:1;17882:9;17878:17;17869:6;17827:69;:::i;:::-;17781:122;;;;:::o;17909:222::-;18002:4;18040:2;18029:9;18025:18;18017:26;;18053:71;18121:1;18110:9;18106:17;18097:6;18053:71;:::i;:::-;18007:124;;;;:::o;18137:214::-;18226:4;18264:2;18253:9;18249:18;18241:26;;18277:67;18341:1;18330:9;18326:17;18317:6;18277:67;:::i;:::-;18231:120;;;;:::o;18357:129::-;18391:6;18418:20;;:::i;:::-;18408:30;;18447:33;18475:4;18467:6;18447:33;:::i;:::-;18398:88;;;:::o;18492:75::-;18525:6;18558:2;18552:9;18542:19;;18532:35;:::o;18573:307::-;18634:4;18724:18;18716:6;18713:30;18710:2;;;18746:18;;:::i;:::-;18710:2;18784:29;18806:6;18784:29;:::i;:::-;18776:37;;18868:4;18862;18858:15;18850:23;;18639:241;;;:::o;18886:141::-;18935:4;18958:3;18950:11;;18981:3;18978:1;18971:14;19015:4;19012:1;19002:18;18994:26;;18940:87;;;:::o;19033:98::-;19084:6;19118:5;19112:12;19102:22;;19091:40;;;:::o;19137:99::-;19189:6;19223:5;19217:12;19207:22;;19196:40;;;:::o;19242:168::-;19325:11;19359:6;19354:3;19347:19;19399:4;19394:3;19390:14;19375:29;;19337:73;;;;:::o;19416:169::-;19500:11;19534:6;19529:3;19522:19;19574:4;19569:3;19565:14;19550:29;;19512:73;;;;:::o;19591:148::-;19693:11;19730:3;19715:18;;19705:34;;;;:::o;19745:305::-;19785:3;19804:20;19822:1;19804:20;:::i;:::-;19799:25;;19838:20;19856:1;19838:20;:::i;:::-;19833:25;;19992:1;19924:66;19920:74;19917:1;19914:81;19911:2;;;19998:18;;:::i;:::-;19911:2;20042:1;20039;20035:9;20028:16;;19789:261;;;;:::o;20056:185::-;20096:1;20113:20;20131:1;20113:20;:::i;:::-;20108:25;;20147:20;20165:1;20147:20;:::i;:::-;20142:25;;20186:1;20176:2;;20191:18;;:::i;:::-;20176:2;20233:1;20230;20226:9;20221:14;;20098:143;;;;:::o;20247:348::-;20287:7;20310:20;20328:1;20310:20;:::i;:::-;20305:25;;20344:20;20362:1;20344:20;:::i;:::-;20339:25;;20532:1;20464:66;20460:74;20457:1;20454:81;20449:1;20442:9;20435:17;20431:105;20428:2;;;20539:18;;:::i;:::-;20428:2;20587:1;20584;20580:9;20569:20;;20295:300;;;;:::o;20601:191::-;20641:4;20661:20;20679:1;20661:20;:::i;:::-;20656:25;;20695:20;20713:1;20695:20;:::i;:::-;20690:25;;20734:1;20731;20728:8;20725:2;;;20739:18;;:::i;:::-;20725:2;20784:1;20781;20777:9;20769:17;;20646:146;;;;:::o;20798:96::-;20835:7;20864:24;20882:5;20864:24;:::i;:::-;20853:35;;20843:51;;;:::o;20900:90::-;20934:7;20977:5;20970:13;20963:21;20952:32;;20942:48;;;:::o;20996:149::-;21032:7;21072:66;21065:5;21061:78;21050:89;;21040:105;;;:::o;21151:89::-;21187:7;21227:6;21220:5;21216:18;21205:29;;21195:45;;;:::o;21246:126::-;21283:7;21323:42;21316:5;21312:54;21301:65;;21291:81;;;:::o;21378:77::-;21415:7;21444:5;21433:16;;21423:32;;;:::o;21461:86::-;21496:7;21536:4;21529:5;21525:16;21514:27;;21504:43;;;:::o;21553:109::-;21589:7;21629:26;21622:5;21618:38;21607:49;;21597:65;;;:::o;21668:154::-;21752:6;21747:3;21742;21729:30;21814:1;21805:6;21800:3;21796:16;21789:27;21719:103;;;:::o;21828:307::-;21896:1;21906:113;21920:6;21917:1;21914:13;21906:113;;;22005:1;22000:3;21996:11;21990:18;21986:1;21981:3;21977:11;21970:39;21942:2;21939:1;21935:10;21930:15;;21906:113;;;22037:6;22034:1;22031:13;22028:2;;;22117:1;22108:6;22103:3;22099:16;22092:27;22028:2;21877:258;;;;:::o;22141:320::-;22185:6;22222:1;22216:4;22212:12;22202:22;;22269:1;22263:4;22259:12;22290:18;22280:2;;22346:4;22338:6;22334:17;22324:27;;22280:2;22408;22400:6;22397:14;22377:18;22374:38;22371:2;;;22427:18;;:::i;:::-;22371:2;22192:269;;;;:::o;22467:281::-;22550:27;22572:4;22550:27;:::i;:::-;22542:6;22538:40;22680:6;22668:10;22665:22;22644:18;22632:10;22629:34;22626:62;22623:2;;;22691:18;;:::i;:::-;22623:2;22731:10;22727:2;22720:22;22510:238;;;:::o;22754:233::-;22793:3;22816:24;22834:5;22816:24;:::i;:::-;22807:33;;22862:66;22855:5;22852:77;22849:2;;;22932:18;;:::i;:::-;22849:2;22979:1;22972:5;22968:13;22961:20;;22797:190;;;:::o;22993:176::-;23025:1;23042:20;23060:1;23042:20;:::i;:::-;23037:25;;23076:20;23094:1;23076:20;:::i;:::-;23071:25;;23115:1;23105:2;;23120:18;;:::i;:::-;23105:2;23161:1;23158;23154:9;23149:14;;23027:142;;;;:::o;23175:180::-;23223:77;23220:1;23213:88;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23361:180;23409:77;23406:1;23399:88;23506:4;23503:1;23496:15;23530:4;23527:1;23520:15;23547:180;23595:77;23592:1;23585:88;23692:4;23689:1;23682:15;23716:4;23713:1;23706:15;23733:180;23781:77;23778:1;23771:88;23878:4;23875:1;23868:15;23902:4;23899:1;23892:15;23919:102;23960:6;24011:2;24007:7;24002:2;23995:5;23991:14;23987:28;23977:38;;23967:54;;;:::o;24027:225::-;24167:34;24163:1;24155:6;24151:14;24144:58;24236:8;24231:2;24223:6;24219:15;24212:33;24133:119;:::o;24258:170::-;24398:22;24394:1;24386:6;24382:14;24375:46;24364:64;:::o;24434:160::-;24574:12;24570:1;24562:6;24558:14;24551:36;24540:54;:::o;24600:155::-;24740:7;24736:1;24728:6;24724:14;24717:31;24706:49;:::o;24761:182::-;24901:34;24897:1;24889:6;24885:14;24878:58;24867:76;:::o;24949:181::-;25089:33;25085:1;25077:6;25073:14;25066:57;25055:75;:::o;25136:168::-;25276:20;25272:1;25264:6;25260:14;25253:44;25242:62;:::o;25310:165::-;25450:17;25446:1;25438:6;25434:14;25427:41;25416:59;:::o;25481:122::-;25554:24;25572:5;25554:24;:::i;:::-;25547:5;25544:35;25534:2;;25593:1;25590;25583:12;25534:2;25524:79;:::o;25609:116::-;25679:21;25694:5;25679:21;:::i;:::-;25672:5;25669:32;25659:2;;25715:1;25712;25705:12;25659:2;25649:76;:::o;25731:120::-;25803:23;25820:5;25803:23;:::i;:::-;25796:5;25793:34;25783:2;;25841:1;25838;25831:12;25783:2;25773:78;:::o;25857:122::-;25930:24;25948:5;25930:24;:::i;:::-;25923:5;25920:35;25910:2;;25969:1;25966;25959:12;25910:2;25900:79;:::o;25985:120::-;26057:23;26074:5;26057:23;:::i;:::-;26050:5;26047:34;26037:2;;26095:1;26092;26085:12;26037:2;26027:78;:::o

Swarm Source

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