ETH Price: $3,259.56 (-0.19%)
Gas: 1 Gwei

Token

tinygoblinwtf (TGWTF)
 

Overview

Max Total Supply

5,034 TGWTF

Holders

674

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TGWTF
0x3a066fdcc06731c8aef411fa8361c8da602a5fde
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:
tinygoblinwtf

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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/main/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/tinygoblin.sol



pragma solidity ^0.8.9;







contract tinygoblinwtf is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "ipfs://QmTSBRutWKGQcd4njngvPD5w8PKHedZetaNMYM9p72xzCc";

  uint256 public  maxSupply = 10000;
  uint256 public  MAX_MINTS_PER_TX = 10;
  uint256 public  FREE_MINTS_PER_TX = 10;
  uint256 public  PUBLIC_SALE_PRICE = 0.0025 ether;
  uint256 public  TOTAL_FREE_MINTS = 2500;
  bool public isPublicSaleActive = true;

  constructor(

  ) ERC721A("tinygoblinwtf", "TGWTF") {

  }

  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(
      totalSupply() + numberOfTokens <= maxSupply,
      "Maximum supply exceeded"
    );
    require(numberOfTokens <= MAX_MINTS_PER_TX, "Maximum per tx exceeded");
    if((totalSupply() + numberOfTokens) > TOTAL_FREE_MINTS || numberOfTokens > FREE_MINTS_PER_TX){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

  function treasuryMint(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
  
  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      TOTAL_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

}

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":"FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060358152602001620039cd60359139600a9080519060200190620000359291906200023b565b50612710600b55600a600c55600a600d556608e1bc9bf04000600e556109c4600f556001601060006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600d81526020017f74696e79676f626c696e777466000000000000000000000000000000000000008152506040518060400160405280600581526020017f54475754460000000000000000000000000000000000000000000000000000008152508160029080519060200190620001049291906200023b565b5080600390805190602001906200011d9291906200023b565b506200012e6200016460201b60201c565b6000819055505050620001566200014a6200016d60201b60201c565b6200017560201b60201c565b600160098190555062000350565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000249906200031a565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033357607f821691505b602082108114156200034a5762000349620002eb565b5b50919050565b61366d80620003606000396000f3fe6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061252b565b610765565b60405161021c9190612573565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b6040516102479190612627565b60405180910390f35b34801561025c57600080fd5b50610265610889565b6040516102729190612662565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906126a9565b61088f565b6040516102af9190612717565b60405180910390f35b3480156102c457600080fd5b506102cd61090b565b6040516102da9190612662565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061275e565b610911565b005b34801561031857600080fd5b50610333600480360381019061032e91906126a9565b610ab8565b005b34801561034157600080fd5b5061034a610b3e565b6040516103579190612662565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906126a9565b610b55565b005b34801561039557600080fd5b5061039e610bdb565b6040516103ab9190612573565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061279e565b610bee565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061281d565b610bfe565b005b34801561041257600080fd5b5061041b610c97565b005b34801561042957600080fd5b50610444600480360381019061043f919061279e565b610d75565b005b34801561045257600080fd5b5061046d6004803603810190610468919061297f565b610d95565b005b34801561047b57600080fd5b50610496600480360381019061049191906126a9565b610e2b565b6040516104a39190612717565b60405180910390f35b3480156104b857600080fd5b506104c1610e3d565b6040516104ce9190612662565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906129c8565b610e43565b60405161050b9190612662565b60405180910390f35b34801561052057600080fd5b50610529610ed8565b005b34801561053757600080fd5b50610540610f60565b60405161054d9190612717565b60405180910390f35b34801561056257600080fd5b5061056b610f8a565b6040516105789190612627565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906126a9565b61101c565b005b6105c460048036038101906105bf91906126a9565b6110a2565b005b3480156105d257600080fd5b506105ed60048036038101906105e891906129f5565b611213565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612ad6565b61138b565b005b34801561062457600080fd5b5061062d6113fe565b60405161063a9190612662565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906126a9565b611404565b6040516106779190612627565b60405180910390f35b34801561068c57600080fd5b50610695611480565b6040516106a29190612627565b60405180910390f35b3480156106b757600080fd5b506106c061150e565b6040516106cd9190612662565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612b59565b611514565b60405161070a9190612573565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612b99565b6115a8565b005b34801561074857600080fd5b50610763600480360381019061075e91906129c8565b6116cc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612c08565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a826117c4565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091c82611823565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a36118f1565b73ffffffffffffffffffffffffffffffffffffffff1614610a06576109cf816109ca6118f1565b611514565b610a05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac06118f9565b73ffffffffffffffffffffffffffffffffffffffff16610ade610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612c86565b60405180910390fd5b80600f8190555050565b6000610b48611901565b6001546000540303905090565b610b5d6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610b7b610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890612c86565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b610bf983838361190a565b505050565b610c066118f9565b73ffffffffffffffffffffffffffffffffffffffff16610c24610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190612c86565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610c9f6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610cbd610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612c86565b60405180910390fd5b60026009541415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612cf2565b60405180910390fd5b6002600981905550610d6b3347611cd2565b6001600981905550565b610d908383836040518060200160405280600081525061138b565b505050565b610d9d6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612c86565b60405180910390fd5b80600a9080519060200190610e2792919061241c565b5050565b6000610e3682611823565b9050919050565b600d5481565b600080610e4f83611dc6565b1415610e87576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ee06118f9565b73ffffffffffffffffffffffffffffffffffffffff16610efe610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612c86565b60405180910390fd5b610f5e6000611dd0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f9990612c08565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590612c08565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b5050505050905090565b6110246118f9565b73ffffffffffffffffffffffffffffffffffffffff16611042610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90612c86565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff166110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612d5e565b60405180910390fd5b600b54816110fd610b3e565b6111079190612dad565b1115611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90612e4f565b60405180910390fd5b600c5481111561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490612ebb565b60405180910390fd5b600f5481611199610b3e565b6111a39190612dad565b11806111b05750600d5481115b15611206573481600e546111c49190612edb565b1115611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612f81565b60405180910390fd5b5b6112103382611e96565b50565b61121b6118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061128d6118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a6118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190612573565b60405180910390a35050565b61139684848461190a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f8576113c184848484611eb4565b6113f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061140f826117c4565b61144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613013565b60405180910390fd5b600a61145983612014565b60405160200161146a92919061319b565b6040516020818303038152906040529050919050565b600a805461148d90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546114b990612c08565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b06118f9565b73ffffffffffffffffffffffffffffffffffffffff166115ce610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612c86565b60405180910390fd5b60008211611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613221565b60405180910390fd5b600b5482611673610b3e565b61167d9190612dad565b11156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612e4f565b60405180910390fd5b6116c88183611e96565b5050565b6116d46118f9565b73ffffffffffffffffffffffffffffffffffffffff166116f2610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612c86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906132b3565b60405180910390fd5b6117c181611dd0565b50565b6000816117cf611901565b111580156117de575060005482105b801561181c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611832611901565b116118ba576000548110156118b95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118b7575b60008114156118ad576004600083600190039350838152602001908152602001600020549050611882565b80925050506118ec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061191582611823565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461197c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166119d56118f1565b73ffffffffffffffffffffffffffffffffffffffff161480611a045750611a03866119fe6118f1565b611514565b5b80611a415750611a126118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611a7a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a8586611dc6565b1415611abd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aca8686866001612175565b6000611ad583611dc6565b14611b11576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611bd887611dc6565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611c62576000600185019050600060046000838152602001908152602001600020541415611c60576000548114611c5f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cca868686600161217b565b505050505050565b80471015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061331f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d3b90613370565b60006040518083038185875af1925050503d8060008114611d78576040519150601f19603f3d011682016040523d82523d6000602084013e611d7d565b606091505b5050905080611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906133f7565b60405180910390fd5b505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eb0828260405180602001604052806000815250612181565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eda6118f1565b8786866040518563ffffffff1660e01b8152600401611efc949392919061346c565b602060405180830381600087803b158015611f1657600080fd5b505af1925050508015611f4757506040513d601f19601f82011682018060405250810190611f4491906134cd565b60015b611fc1573d8060008114611f77576040519150601f19603f3d011682016040523d82523d6000602084013e611f7c565b606091505b50600081511415611fb9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561205c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612170565b600082905060005b6000821461208e578080612077906134fa565b915050600a826120879190613572565b9150612064565b60008167ffffffffffffffff8111156120aa576120a9612854565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090505b60008514612169576001826120f591906135a3565b9150600a8561210491906135d7565b60306121109190612dad565b60f81b81838151811061212657612125613608565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121629190613572565b94506120e0565b8093505050505b919050565b50505050565b50505050565b600080549050600061219285611dc6565b14156121ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612205576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122126000858386612175565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161227760018514612412565b901b60a042901b61228786611dc6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461238b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461233b6000878480600101955087611eb4565b612371576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122cc57826000541461238657600080fd5b6123f6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061238c575b81600081905550505061240c600085838661217b565b50505050565b6000819050919050565b82805461242890612c08565b90600052602060002090601f01602090048101928261244a5760008555612491565b82601f1061246357805160ff1916838001178555612491565b82800160010185558215612491579182015b82811115612490578251825591602001919060010190612475565b5b50905061249e91906124a2565b5090565b5b808211156124bb5760008160009055506001016124a3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612508816124d3565b811461251357600080fd5b50565b600081359050612525816124ff565b92915050565b600060208284031215612541576125406124c9565b5b600061254f84828501612516565b91505092915050565b60008115159050919050565b61256d81612558565b82525050565b60006020820190506125886000830184612564565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125c85780820151818401526020810190506125ad565b838111156125d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006125f98261258e565b6126038185612599565b93506126138185602086016125aa565b61261c816125dd565b840191505092915050565b6000602082019050818103600083015261264181846125ee565b905092915050565b6000819050919050565b61265c81612649565b82525050565b60006020820190506126776000830184612653565b92915050565b61268681612649565b811461269157600080fd5b50565b6000813590506126a38161267d565b92915050565b6000602082840312156126bf576126be6124c9565b5b60006126cd84828501612694565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612701826126d6565b9050919050565b612711816126f6565b82525050565b600060208201905061272c6000830184612708565b92915050565b61273b816126f6565b811461274657600080fd5b50565b60008135905061275881612732565b92915050565b60008060408385031215612775576127746124c9565b5b600061278385828601612749565b925050602061279485828601612694565b9150509250929050565b6000806000606084860312156127b7576127b66124c9565b5b60006127c586828701612749565b93505060206127d686828701612749565b92505060406127e786828701612694565b9150509250925092565b6127fa81612558565b811461280557600080fd5b50565b600081359050612817816127f1565b92915050565b600060208284031215612833576128326124c9565b5b600061284184828501612808565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61288c826125dd565b810181811067ffffffffffffffff821117156128ab576128aa612854565b5b80604052505050565b60006128be6124bf565b90506128ca8282612883565b919050565b600067ffffffffffffffff8211156128ea576128e9612854565b5b6128f3826125dd565b9050602081019050919050565b82818337600083830152505050565b600061292261291d846128cf565b6128b4565b90508281526020810184848401111561293e5761293d61284f565b5b612949848285612900565b509392505050565b600082601f8301126129665761296561284a565b5b813561297684826020860161290f565b91505092915050565b600060208284031215612995576129946124c9565b5b600082013567ffffffffffffffff8111156129b3576129b26124ce565b5b6129bf84828501612951565b91505092915050565b6000602082840312156129de576129dd6124c9565b5b60006129ec84828501612749565b91505092915050565b60008060408385031215612a0c57612a0b6124c9565b5b6000612a1a85828601612749565b9250506020612a2b85828601612808565b9150509250929050565b600067ffffffffffffffff821115612a5057612a4f612854565b5b612a59826125dd565b9050602081019050919050565b6000612a79612a7484612a35565b6128b4565b905082815260208101848484011115612a9557612a9461284f565b5b612aa0848285612900565b509392505050565b600082601f830112612abd57612abc61284a565b5b8135612acd848260208601612a66565b91505092915050565b60008060008060808587031215612af057612aef6124c9565b5b6000612afe87828801612749565b9450506020612b0f87828801612749565b9350506040612b2087828801612694565b925050606085013567ffffffffffffffff811115612b4157612b406124ce565b5b612b4d87828801612aa8565b91505092959194509250565b60008060408385031215612b7057612b6f6124c9565b5b6000612b7e85828601612749565b9250506020612b8f85828601612749565b9150509250929050565b60008060408385031215612bb057612baf6124c9565b5b6000612bbe85828601612694565b9250506020612bcf85828601612749565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2057607f821691505b60208210811415612c3457612c33612bd9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c70602083612599565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cdc601f83612599565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612d48601783612599565b9150612d5382612d12565b602082019050919050565b60006020820190508181036000830152612d7781612d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612db882612649565b9150612dc383612649565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df857612df7612d7e565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612e39601783612599565b9150612e4482612e03565b602082019050919050565b60006020820190508181036000830152612e6881612e2c565b9050919050565b7f4d6178696d756d20706572207478206578636565646564000000000000000000600082015250565b6000612ea5601783612599565b9150612eb082612e6f565b602082019050919050565b60006020820190508181036000830152612ed481612e98565b9050919050565b6000612ee682612649565b9150612ef183612649565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f2a57612f29612d7e565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612f6b601883612599565b9150612f7682612f35565b602082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612ffd602f83612599565b915061300882612fa1565b604082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461306081612c08565b61306a8186613033565b945060018216600081146130855760018114613096576130c9565b60ff198316865281860193506130c9565b61309f8561303e565b60005b838110156130c1578154818901526001820191506020810190506130a2565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613108600183613033565b9150613113826130d2565b600182019050919050565b60006131298261258e565b6131338185613033565b93506131438185602086016125aa565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613185600583613033565b91506131908261314f565b600582019050919050565b60006131a78285613053565b91506131b2826130fb565b91506131be828461311e565b91506131c982613178565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061320b601383612599565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329d602683612599565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613309601d83612599565b9150613314826132d3565b602082019050919050565b60006020820190508181036000830152613338816132fc565b9050919050565b600081905092915050565b50565b600061335a60008361333f565b91506133658261334a565b600082019050919050565b600061337b8261334d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006133e1603a83612599565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061343e82613417565b6134488185613422565b93506134588185602086016125aa565b613461816125dd565b840191505092915050565b60006080820190506134816000830187612708565b61348e6020830186612708565b61349b6040830185612653565b81810360608301526134ad8184613433565b905095945050505050565b6000815190506134c7816124ff565b92915050565b6000602082840312156134e3576134e26124c9565b5b60006134f1848285016134b8565b91505092915050565b600061350582612649565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353857613537612d7e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061357d82612649565b915061358883612649565b92508261359857613597613543565b5b828204905092915050565b60006135ae82612649565b91506135b983612649565b9250828210156135cc576135cb612d7e565b5b828203905092915050565b60006135e282612649565b91506135ed83612649565b9250826135fd576135fc613543565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122079cec34bb44826b63f9673fe585d689a97e257407c4f22beb35c89446df2ae7664736f6c63430008090033697066733a2f2f516d545342527574574b47516364346e6a6e67765044357738504b4865645a6574614e4d594d39703732787a4363

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061252b565b610765565b60405161021c9190612573565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b6040516102479190612627565b60405180910390f35b34801561025c57600080fd5b50610265610889565b6040516102729190612662565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906126a9565b61088f565b6040516102af9190612717565b60405180910390f35b3480156102c457600080fd5b506102cd61090b565b6040516102da9190612662565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061275e565b610911565b005b34801561031857600080fd5b50610333600480360381019061032e91906126a9565b610ab8565b005b34801561034157600080fd5b5061034a610b3e565b6040516103579190612662565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906126a9565b610b55565b005b34801561039557600080fd5b5061039e610bdb565b6040516103ab9190612573565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061279e565b610bee565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061281d565b610bfe565b005b34801561041257600080fd5b5061041b610c97565b005b34801561042957600080fd5b50610444600480360381019061043f919061279e565b610d75565b005b34801561045257600080fd5b5061046d6004803603810190610468919061297f565b610d95565b005b34801561047b57600080fd5b50610496600480360381019061049191906126a9565b610e2b565b6040516104a39190612717565b60405180910390f35b3480156104b857600080fd5b506104c1610e3d565b6040516104ce9190612662565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906129c8565b610e43565b60405161050b9190612662565b60405180910390f35b34801561052057600080fd5b50610529610ed8565b005b34801561053757600080fd5b50610540610f60565b60405161054d9190612717565b60405180910390f35b34801561056257600080fd5b5061056b610f8a565b6040516105789190612627565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906126a9565b61101c565b005b6105c460048036038101906105bf91906126a9565b6110a2565b005b3480156105d257600080fd5b506105ed60048036038101906105e891906129f5565b611213565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612ad6565b61138b565b005b34801561062457600080fd5b5061062d6113fe565b60405161063a9190612662565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906126a9565b611404565b6040516106779190612627565b60405180910390f35b34801561068c57600080fd5b50610695611480565b6040516106a29190612627565b60405180910390f35b3480156106b757600080fd5b506106c061150e565b6040516106cd9190612662565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612b59565b611514565b60405161070a9190612573565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612b99565b6115a8565b005b34801561074857600080fd5b50610763600480360381019061075e91906129c8565b6116cc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612c08565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a826117c4565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091c82611823565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a36118f1565b73ffffffffffffffffffffffffffffffffffffffff1614610a06576109cf816109ca6118f1565b611514565b610a05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac06118f9565b73ffffffffffffffffffffffffffffffffffffffff16610ade610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612c86565b60405180910390fd5b80600f8190555050565b6000610b48611901565b6001546000540303905090565b610b5d6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610b7b610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890612c86565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b610bf983838361190a565b505050565b610c066118f9565b73ffffffffffffffffffffffffffffffffffffffff16610c24610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190612c86565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610c9f6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610cbd610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612c86565b60405180910390fd5b60026009541415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612cf2565b60405180910390fd5b6002600981905550610d6b3347611cd2565b6001600981905550565b610d908383836040518060200160405280600081525061138b565b505050565b610d9d6118f9565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612c86565b60405180910390fd5b80600a9080519060200190610e2792919061241c565b5050565b6000610e3682611823565b9050919050565b600d5481565b600080610e4f83611dc6565b1415610e87576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ee06118f9565b73ffffffffffffffffffffffffffffffffffffffff16610efe610f60565b73ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612c86565b60405180910390fd5b610f5e6000611dd0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f9990612c08565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc590612c08565b80156110125780601f10610fe757610100808354040283529160200191611012565b820191906000526020600020905b815481529060010190602001808311610ff557829003601f168201915b5050505050905090565b6110246118f9565b73ffffffffffffffffffffffffffffffffffffffff16611042610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90612c86565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff166110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612d5e565b60405180910390fd5b600b54816110fd610b3e565b6111079190612dad565b1115611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90612e4f565b60405180910390fd5b600c5481111561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490612ebb565b60405180910390fd5b600f5481611199610b3e565b6111a39190612dad565b11806111b05750600d5481115b15611206573481600e546111c49190612edb565b1115611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612f81565b60405180910390fd5b5b6112103382611e96565b50565b61121b6118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061128d6118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a6118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190612573565b60405180910390a35050565b61139684848461190a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f8576113c184848484611eb4565b6113f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061140f826117c4565b61144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613013565b60405180910390fd5b600a61145983612014565b60405160200161146a92919061319b565b6040516020818303038152906040529050919050565b600a805461148d90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546114b990612c08565b80156115065780601f106114db57610100808354040283529160200191611506565b820191906000526020600020905b8154815290600101906020018083116114e957829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b06118f9565b73ffffffffffffffffffffffffffffffffffffffff166115ce610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612c86565b60405180910390fd5b60008211611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613221565b60405180910390fd5b600b5482611673610b3e565b61167d9190612dad565b11156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612e4f565b60405180910390fd5b6116c88183611e96565b5050565b6116d46118f9565b73ffffffffffffffffffffffffffffffffffffffff166116f2610f60565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612c86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906132b3565b60405180910390fd5b6117c181611dd0565b50565b6000816117cf611901565b111580156117de575060005482105b801561181c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611832611901565b116118ba576000548110156118b95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118b7575b60008114156118ad576004600083600190039350838152602001908152602001600020549050611882565b80925050506118ec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061191582611823565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461197c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166119d56118f1565b73ffffffffffffffffffffffffffffffffffffffff161480611a045750611a03866119fe6118f1565b611514565b5b80611a415750611a126118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611a7a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a8586611dc6565b1415611abd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aca8686866001612175565b6000611ad583611dc6565b14611b11576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611bd887611dc6565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611c62576000600185019050600060046000838152602001908152602001600020541415611c60576000548114611c5f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cca868686600161217b565b505050505050565b80471015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061331f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d3b90613370565b60006040518083038185875af1925050503d8060008114611d78576040519150601f19603f3d011682016040523d82523d6000602084013e611d7d565b606091505b5050905080611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906133f7565b60405180910390fd5b505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eb0828260405180602001604052806000815250612181565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eda6118f1565b8786866040518563ffffffff1660e01b8152600401611efc949392919061346c565b602060405180830381600087803b158015611f1657600080fd5b505af1925050508015611f4757506040513d601f19601f82011682018060405250810190611f4491906134cd565b60015b611fc1573d8060008114611f77576040519150601f19603f3d011682016040523d82523d6000602084013e611f7c565b606091505b50600081511415611fb9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561205c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612170565b600082905060005b6000821461208e578080612077906134fa565b915050600a826120879190613572565b9150612064565b60008167ffffffffffffffff8111156120aa576120a9612854565b5b6040519080825280601f01601f1916602001820160405280156120dc5781602001600182028036833780820191505090505b5090505b60008514612169576001826120f591906135a3565b9150600a8561210491906135d7565b60306121109190612dad565b60f81b81838151811061212657612125613608565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121629190613572565b94506120e0565b8093505050505b919050565b50505050565b50505050565b600080549050600061219285611dc6565b14156121ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612205576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122126000858386612175565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161227760018514612412565b901b60a042901b61228786611dc6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461238b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461233b6000878480600101955087611eb4565b612371576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122cc57826000541461238657600080fd5b6123f6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061238c575b81600081905550505061240c600085838661217b565b50505050565b6000819050919050565b82805461242890612c08565b90600052602060002090601f01602090048101928261244a5760008555612491565b82601f1061246357805160ff1916838001178555612491565b82800160010185558215612491579182015b82811115612490578251825591602001919060010190612475565b5b50905061249e91906124a2565b5090565b5b808211156124bb5760008160009055506001016124a3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612508816124d3565b811461251357600080fd5b50565b600081359050612525816124ff565b92915050565b600060208284031215612541576125406124c9565b5b600061254f84828501612516565b91505092915050565b60008115159050919050565b61256d81612558565b82525050565b60006020820190506125886000830184612564565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125c85780820151818401526020810190506125ad565b838111156125d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006125f98261258e565b6126038185612599565b93506126138185602086016125aa565b61261c816125dd565b840191505092915050565b6000602082019050818103600083015261264181846125ee565b905092915050565b6000819050919050565b61265c81612649565b82525050565b60006020820190506126776000830184612653565b92915050565b61268681612649565b811461269157600080fd5b50565b6000813590506126a38161267d565b92915050565b6000602082840312156126bf576126be6124c9565b5b60006126cd84828501612694565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612701826126d6565b9050919050565b612711816126f6565b82525050565b600060208201905061272c6000830184612708565b92915050565b61273b816126f6565b811461274657600080fd5b50565b60008135905061275881612732565b92915050565b60008060408385031215612775576127746124c9565b5b600061278385828601612749565b925050602061279485828601612694565b9150509250929050565b6000806000606084860312156127b7576127b66124c9565b5b60006127c586828701612749565b93505060206127d686828701612749565b92505060406127e786828701612694565b9150509250925092565b6127fa81612558565b811461280557600080fd5b50565b600081359050612817816127f1565b92915050565b600060208284031215612833576128326124c9565b5b600061284184828501612808565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61288c826125dd565b810181811067ffffffffffffffff821117156128ab576128aa612854565b5b80604052505050565b60006128be6124bf565b90506128ca8282612883565b919050565b600067ffffffffffffffff8211156128ea576128e9612854565b5b6128f3826125dd565b9050602081019050919050565b82818337600083830152505050565b600061292261291d846128cf565b6128b4565b90508281526020810184848401111561293e5761293d61284f565b5b612949848285612900565b509392505050565b600082601f8301126129665761296561284a565b5b813561297684826020860161290f565b91505092915050565b600060208284031215612995576129946124c9565b5b600082013567ffffffffffffffff8111156129b3576129b26124ce565b5b6129bf84828501612951565b91505092915050565b6000602082840312156129de576129dd6124c9565b5b60006129ec84828501612749565b91505092915050565b60008060408385031215612a0c57612a0b6124c9565b5b6000612a1a85828601612749565b9250506020612a2b85828601612808565b9150509250929050565b600067ffffffffffffffff821115612a5057612a4f612854565b5b612a59826125dd565b9050602081019050919050565b6000612a79612a7484612a35565b6128b4565b905082815260208101848484011115612a9557612a9461284f565b5b612aa0848285612900565b509392505050565b600082601f830112612abd57612abc61284a565b5b8135612acd848260208601612a66565b91505092915050565b60008060008060808587031215612af057612aef6124c9565b5b6000612afe87828801612749565b9450506020612b0f87828801612749565b9350506040612b2087828801612694565b925050606085013567ffffffffffffffff811115612b4157612b406124ce565b5b612b4d87828801612aa8565b91505092959194509250565b60008060408385031215612b7057612b6f6124c9565b5b6000612b7e85828601612749565b9250506020612b8f85828601612749565b9150509250929050565b60008060408385031215612bb057612baf6124c9565b5b6000612bbe85828601612694565b9250506020612bcf85828601612749565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2057607f821691505b60208210811415612c3457612c33612bd9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c70602083612599565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cdc601f83612599565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612d48601783612599565b9150612d5382612d12565b602082019050919050565b60006020820190508181036000830152612d7781612d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612db882612649565b9150612dc383612649565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df857612df7612d7e565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612e39601783612599565b9150612e4482612e03565b602082019050919050565b60006020820190508181036000830152612e6881612e2c565b9050919050565b7f4d6178696d756d20706572207478206578636565646564000000000000000000600082015250565b6000612ea5601783612599565b9150612eb082612e6f565b602082019050919050565b60006020820190508181036000830152612ed481612e98565b9050919050565b6000612ee682612649565b9150612ef183612649565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f2a57612f29612d7e565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612f6b601883612599565b9150612f7682612f35565b602082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612ffd602f83612599565b915061300882612fa1565b604082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461306081612c08565b61306a8186613033565b945060018216600081146130855760018114613096576130c9565b60ff198316865281860193506130c9565b61309f8561303e565b60005b838110156130c1578154818901526001820191506020810190506130a2565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613108600183613033565b9150613113826130d2565b600182019050919050565b60006131298261258e565b6131338185613033565b93506131438185602086016125aa565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613185600583613033565b91506131908261314f565b600582019050919050565b60006131a78285613053565b91506131b2826130fb565b91506131be828461311e565b91506131c982613178565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061320b601383612599565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329d602683612599565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613309601d83612599565b9150613314826132d3565b602082019050919050565b60006020820190508181036000830152613338816132fc565b9050919050565b600081905092915050565b50565b600061335a60008361333f565b91506133658261334a565b600082019050919050565b600061337b8261334d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006133e1603a83612599565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061343e82613417565b6134488185613422565b93506134588185602086016125aa565b613461816125dd565b840191505092915050565b60006080820190506134816000830187612708565b61348e6020830186612708565b61349b6040830185612653565b81810360608301526134ad8184613433565b905095945050505050565b6000815190506134c7816124ff565b92915050565b6000602082840312156134e3576134e26124c9565b5b60006134f1848285016134b8565b91505092915050565b600061350582612649565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353857613537612d7e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061357d82612649565b915061358883612649565b92508261359857613597613543565b5b828204905092915050565b60006135ae82612649565b91506135b983612649565b9250828210156135cc576135cb612d7e565b5b828203905092915050565b60006135e282612649565b91506135ed83612649565b9250826135fd576135fc613543565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122079cec34bb44826b63f9673fe585d689a97e257407c4f22beb35c89446df2ae7664736f6c63430008090033

Deployed Bytecode Sourcemap

56000:2829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30367:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35390:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56340:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37458:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56393:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36918:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58439:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29421:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58576:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56437:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38344:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58285:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57575:142;;;;;;;;;;;;;:::i;:::-;;38585:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57163:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35179:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56297:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31046:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16403:103;;;;;;;;;;;;;:::i;:::-;;15752:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35559:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58697:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56549:608;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37734:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38841:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56255:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57826:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56124:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56217:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38113:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57277:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16661:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30367:615;30452:4;30767:10;30752:25;;:11;:25;;;;:102;;;;30844:10;30829:25;;:11;:25;;;;30752:102;:179;;;;30921:10;30906:25;;:11;:25;;;;30752:179;30732:199;;30367:615;;;:::o;35390:100::-;35444:13;35477:5;35470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35390:100;:::o;56340:48::-;;;;:::o;37458:204::-;37526:7;37551:16;37559:7;37551;:16::i;:::-;37546:64;;37576:34;;;;;;;;;;;;;;37546:64;37630:15;:24;37646:7;37630:24;;;;;;;;;;;;;;;;;;;;;37623:31;;37458:204;;;:::o;56393:39::-;;;;:::o;36918:474::-;36991:13;37023:27;37042:7;37023:18;:27::i;:::-;36991:61;;37073:5;37067:11;;:2;:11;;;37063:48;;;37087:24;;;;;;;;;;;;;;37063:48;37151:5;37128:28;;:19;:17;:19::i;:::-;:28;;;37124:175;;37176:44;37193:5;37200:19;:17;:19::i;:::-;37176:16;:44::i;:::-;37171:128;;37248:35;;;;;;;;;;;;;;37171:128;37124:175;37338:2;37311:15;:24;37327:7;37311:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37376:7;37372:2;37356:28;;37365:5;37356:28;;;;;;;;;;;;36980:412;36918:474;;:::o;58439:131::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58551:13:::1;58532:16;:32;;;;58439:131:::0;:::o;29421:315::-;29474:7;29702:15;:13;:15::i;:::-;29687:12;;29671:13;;:28;:46;29664:53;;29421:315;:::o;58576:115::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58679:6:::1;58659:17;:26;;;;58576:115:::0;:::o;56437:37::-;;;;;;;;;;;;;:::o;38344:170::-;38478:28;38488:4;38494:2;38498:7;38478:9;:28::i;:::-;38344:170;;;:::o;58285:148::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58408:19:::1;58387:18;;:40;;;;;;;;;;;;;;;;;;58285:148:::0;:::o;57575:142::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12850:1:::1;13448:7;;:19;;13440:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12850:1;13581:7;:18;;;;57650:61:::2;57676:10;57689:21;57650:17;:61::i;:::-;12806:1:::1;13760:7;:22;;;;57575:142::o:0;38585:185::-;38723:39;38740:4;38746:2;38750:7;38723:39;;;;;;;;;;;;:16;:39::i;:::-;38585:185;;;:::o;57163:108::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57258:7:::1;57243:12;:22;;;;;;;;;;;;:::i;:::-;;57163:108:::0;:::o;35179:144::-;35243:7;35286:27;35305:7;35286:18;:27::i;:::-;35263:52;;35179:144;;;:::o;56297:38::-;;;;:::o;31046:234::-;31110:7;31162:1;31134:24;31152:5;31134:17;:24::i;:::-;:29;31130:70;;;31172:28;;;;;;;;;;;;;;31130:70;26391:13;31218:18;:25;31237:5;31218:25;;;;;;;;;;;;;;;;:54;31211:61;;31046:234;;;:::o;16403:103::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16468:30:::1;16495:1;16468:18;:30::i;:::-;16403:103::o:0;15752:87::-;15798:7;15825:6;;;;;;;;;;;15818:13;;15752:87;:::o;35559:104::-;35615:13;35648:7;35641:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35559:104;:::o;58697:127::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58812:6:::1;58793:16;:25;;;;58697:127:::0;:::o;56549:608::-;56636:18;;;;;;;;;;;56628:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56739:9;;56721:14;56705:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;56689:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;56822:16;;56804:14;:34;;56796:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56911:16;;56893:14;56877:13;:11;:13::i;:::-;:30;;;;:::i;:::-;56876:51;:89;;;;56948:17;;56931:14;:34;56876:89;56873:235;;;57039:9;57020:14;57000:17;;:34;;;;:::i;:::-;56999:49;;56977:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;56873:235;57114:37;57124:10;57136:14;57114:9;:37::i;:::-;56549:608;:::o;37734:308::-;37845:19;:17;:19::i;:::-;37833:31;;:8;:31;;;37829:61;;;37873:17;;;;;;;;;;;;;;37829:61;37955:8;37903:18;:39;37922:19;:17;:19::i;:::-;37903:39;;;;;;;;;;;;;;;:49;37943:8;37903:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38015:8;37979:55;;37994:19;:17;:19::i;:::-;37979:55;;;38025:8;37979:55;;;;;;:::i;:::-;;;;;;;;37734:308;;:::o;38841:396::-;39008:28;39018:4;39024:2;39028:7;39008:9;:28::i;:::-;39069:1;39051:2;:14;;;:19;39047:183;;39090:56;39121:4;39127:2;39131:7;39140:5;39090:30;:56::i;:::-;39085:145;;39174:40;;;;;;;;;;;;;;39085:145;39047:183;38841:396;;;;:::o;56255:37::-;;;;:::o;57826:312::-;57922:13;57963:17;57971:8;57963:7;:17::i;:::-;57947:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;58083:12;58102:19;:8;:17;:19::i;:::-;58066:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58052:80;;57826:312;;;:::o;56124:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56217:33::-;;;;:::o;38113:164::-;38210:4;38234:18;:25;38253:5;38234:25;;;;;;;;;;;;;;;:35;38260:8;38234:35;;;;;;;;;;;;;;;;;;;;;;;;;38227:42;;38113:164;;;;:::o;57277:292::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57392:1:::1;57381:8;:12;57365:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57481:9;;57469:8;57453:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;57437:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;57538:25;57548:4;57554:8;57538:9;:25::i;:::-;57277:292:::0;;:::o;16661:201::-;15983:12;:10;:12::i;:::-;15972:23;;:7;:5;:7::i;:::-;:23;;;15964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16770:1:::1;16750:22;;:8;:22;;;;16742:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16826:28;16845:8;16826:18;:28::i;:::-;16661:201:::0;:::o;39492:273::-;39549:4;39605:7;39586:15;:13;:15::i;:::-;:26;;:66;;;;;39639:13;;39629:7;:23;39586:66;:152;;;;;39737:1;27161:8;39690:17;:26;39708:7;39690:26;;;;;;;;;;;;:43;:48;39586:152;39566:172;;39492:273;;;:::o;32694:1129::-;32761:7;32781:12;32796:7;32781:22;;32864:4;32845:15;:13;:15::i;:::-;:23;32841:915;;32898:13;;32891:4;:20;32887:869;;;32936:14;32953:17;:23;32971:4;32953:23;;;;;;;;;;;;32936:40;;33069:1;27161:8;33042:6;:23;:28;33038:699;;;33561:113;33578:1;33568:6;:11;33561:113;;;33621:17;:25;33639:6;;;;;;;33621:25;;;;;;;;;;;;33612:34;;33561:113;;;33707:6;33700:13;;;;;;33038:699;32913:843;32887:869;32841:915;33784:31;;;;;;;;;;;;;;32694:1129;;;;:::o;53759:105::-;53819:7;53846:10;53839:17;;53759:105;:::o;14476:98::-;14529:7;14556:10;14549:17;;14476:98;:::o;57723:95::-;57788:7;57811:1;57804:8;;57723:95;:::o;44751:2654::-;44866:27;44896;44915:7;44896:18;:27::i;:::-;44866:57;;44981:4;44940:45;;44956:19;44940:45;;;44936:86;;44994:28;;;;;;;;;;;;;;44936:86;45035:23;45061:15;:24;45077:7;45061:24;;;;;;;;;;;;;;;;;;;;;45035:50;;45098:22;45147:4;45124:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;45168:43;45185:4;45191:19;:17;:19::i;:::-;45168:16;:43::i;:::-;45124:87;:142;;;;45247:19;:17;:19::i;:::-;45228:38;;:15;:38;;;45124:142;45098:169;;45285:17;45280:66;;45311:35;;;;;;;;;;;;;;45280:66;45386:1;45361:21;45379:2;45361:17;:21::i;:::-;:26;45357:62;;;45396:23;;;;;;;;;;;;;;45357:62;45432:43;45454:4;45460:2;45464:7;45473:1;45432:21;:43::i;:::-;45583:1;45545:34;45563:15;45545:17;:34::i;:::-;:39;45541:103;;45608:15;:24;45624:7;45608:24;;;;;;;;;;;;45601:31;;;;;;;;;;;45541:103;46011:18;:24;46030:4;46011:24;;;;;;;;;;;;;;;;46009:26;;;;;;;;;;;;46080:18;:22;46099:2;46080:22;;;;;;;;;;;;;;;;46078:24;;;;;;;;;;;27439:8;27045:3;46461:15;:41;;46419:21;46437:2;46419:17;:21::i;:::-;:84;:128;46373:17;:26;46391:7;46373:26;;;;;;;;;;;:174;;;;46717:1;27439:8;46667:19;:46;:51;46663:626;;;46739:19;46771:1;46761:7;:11;46739:33;;46928:1;46894:17;:30;46912:11;46894:30;;;;;;;;;;;;:35;46890:384;;;47032:13;;47017:11;:28;47013:242;;47212:19;47179:17;:30;47197:11;47179:30;;;;;;;;;;;:52;;;;47013:242;46890:384;46720:569;46663:626;47336:7;47332:2;47317:27;;47326:4;47317:27;;;;;;;;;;;;47355:42;47376:4;47382:2;47386:7;47395:1;47355:20;:42::i;:::-;44855:2550;;;44751:2654;;;:::o;5029:317::-;5144:6;5119:21;:31;;5111:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5198:12;5216:9;:14;;5238:6;5216:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5197:52;;;5268:7;5260:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5100:246;5029:317;;:::o;36479:148::-;36543:14;36604:5;36594:15;;36479:148;;;:::o;17022:191::-;17096:16;17115:6;;;;;;;;;;;17096:25;;17141:8;17132:6;;:17;;;;;;;;;;;;;;;;;;17196:8;17165:40;;17186:8;17165:40;;;;;;;;;;;;17085:128;17022:191;:::o;39849:104::-;39918:27;39928:2;39932:8;39918:27;;;;;;;;;;;;:9;:27::i;:::-;39849:104;;:::o;51228:716::-;51391:4;51437:2;51412:45;;;51458:19;:17;:19::i;:::-;51479:4;51485:7;51494:5;51412:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51408:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51712:1;51695:6;:13;:18;51691:235;;;51741:40;;;;;;;;;;;;;;51691:235;51884:6;51878:13;51869:6;51865:2;51861:15;51854:38;51408:529;51581:54;;;51571:64;;;:6;:64;;;;51564:71;;;51228:716;;;;;;:::o;468:723::-;524:13;754:1;745:5;:10;741:53;;;772:10;;;;;;;;;;;;;;;;;;;;;741:53;804:12;819:5;804:20;;835:14;860:78;875:1;867:4;:9;860:78;;893:8;;;;;:::i;:::-;;;;924:2;916:10;;;;;:::i;:::-;;;860:78;;;948:19;980:6;970:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;948:39;;998:154;1014:1;1005:5;:10;998:154;;1042:1;1032:11;;;;;:::i;:::-;;;1109:2;1101:5;:10;;;;:::i;:::-;1088:2;:24;;;;:::i;:::-;1075:39;;1058:6;1065;1058:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1138:2;1129:11;;;;;:::i;:::-;;;998:154;;;1176:6;1162:21;;;;;468:723;;;;:::o;52592:159::-;;;;;:::o;53410:158::-;;;;;:::o;40326:2246::-;40449:20;40472:13;;40449:36;;40525:1;40500:21;40518:2;40500:17;:21::i;:::-;:26;40496:58;;;40535:19;;;;;;;;;;;;;;40496:58;40581:1;40569:8;:13;40565:44;;;40591:18;;;;;;;;;;;;;;40565:44;40622:61;40652:1;40656:2;40660:12;40674:8;40622:21;:61::i;:::-;41226:1;26528:2;41197:1;:25;;41196:31;41184:8;:44;41158:18;:22;41177:2;41158:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;27304:3;41627:29;41654:1;41642:8;:13;41627:14;:29::i;:::-;:56;;27045:3;41564:15;:41;;41522:21;41540:2;41522:17;:21::i;:::-;:84;:162;41471:17;:31;41489:12;41471:31;;;;;;;;;;;:213;;;;41701:20;41724:12;41701:35;;41751:11;41780:8;41765:12;:23;41751:37;;41827:1;41809:2;:14;;;:19;41805:635;;41849:313;41905:12;41901:2;41880:38;;41897:1;41880:38;;;;;;;;;;;;41946:69;41985:1;41989:2;41993:14;;;;;;42009:5;41946:30;:69::i;:::-;41941:174;;42051:40;;;;;;;;;;;;;;41941:174;42157:3;42142:12;:18;41849:313;;42243:12;42226:13;;:29;42222:43;;42257:8;;;42222:43;41805:635;;;42306:119;42362:14;;;;;;42358:2;42337:40;;42354:1;42337:40;;;;;;;;;;;;42420:3;42405:12;:18;42306:119;;41805:635;42470:12;42454:13;:28;;;;40935:1559;;42504:60;42533:1;42537:2;42541:12;42555:8;42504:20;:60::i;:::-;40438:2134;40326:2246;;;:::o;36714:142::-;36772:14;36833:5;36823:15;;36714:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:181::-;14567:33;14563:1;14555:6;14551:14;14544:57;14427:181;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:419::-;15152:4;15190:2;15179:9;15175:18;15167:26;;15239:9;15233:4;15229:20;15225:1;15214:9;15210:17;15203:47;15267:131;15393:4;15267:131;:::i;:::-;15259:139;;14986:419;;;:::o;15411:173::-;15551:25;15547:1;15539:6;15535:14;15528:49;15411:173;:::o;15590:366::-;15732:3;15753:67;15817:2;15812:3;15753:67;:::i;:::-;15746:74;;15829:93;15918:3;15829:93;:::i;:::-;15947:2;15942:3;15938:12;15931:19;;15590:366;;;:::o;15962:419::-;16128:4;16166:2;16155:9;16151:18;16143:26;;16215:9;16209:4;16205:20;16201:1;16190:9;16186:17;16179:47;16243:131;16369:4;16243:131;:::i;:::-;16235:139;;15962:419;;;:::o;16387:180::-;16435:77;16432:1;16425:88;16532:4;16529:1;16522:15;16556:4;16553:1;16546:15;16573:305;16613:3;16632:20;16650:1;16632:20;:::i;:::-;16627:25;;16666:20;16684:1;16666:20;:::i;:::-;16661:25;;16820:1;16752:66;16748:74;16745:1;16742:81;16739:107;;;16826:18;;:::i;:::-;16739:107;16870:1;16867;16863:9;16856:16;;16573:305;;;;:::o;16884:173::-;17024:25;17020:1;17012:6;17008:14;17001:49;16884:173;:::o;17063:366::-;17205:3;17226:67;17290:2;17285:3;17226:67;:::i;:::-;17219:74;;17302:93;17391:3;17302:93;:::i;:::-;17420:2;17415:3;17411:12;17404:19;;17063:366;;;:::o;17435:419::-;17601:4;17639:2;17628:9;17624:18;17616:26;;17688:9;17682:4;17678:20;17674:1;17663:9;17659:17;17652:47;17716:131;17842:4;17716:131;:::i;:::-;17708:139;;17435:419;;;:::o;17860:173::-;18000:25;17996:1;17988:6;17984:14;17977:49;17860:173;:::o;18039:366::-;18181:3;18202:67;18266:2;18261:3;18202:67;:::i;:::-;18195:74;;18278:93;18367:3;18278:93;:::i;:::-;18396:2;18391:3;18387:12;18380:19;;18039:366;;;:::o;18411:419::-;18577:4;18615:2;18604:9;18600:18;18592:26;;18664:9;18658:4;18654:20;18650:1;18639:9;18635:17;18628:47;18692:131;18818:4;18692:131;:::i;:::-;18684:139;;18411:419;;;:::o;18836:348::-;18876:7;18899:20;18917:1;18899:20;:::i;:::-;18894:25;;18933:20;18951:1;18933:20;:::i;:::-;18928:25;;19121:1;19053:66;19049:74;19046:1;19043:81;19038:1;19031:9;19024:17;19020:105;19017:131;;;19128:18;;:::i;:::-;19017:131;19176:1;19173;19169:9;19158:20;;18836:348;;;;:::o;19190:174::-;19330:26;19326:1;19318:6;19314:14;19307:50;19190:174;:::o;19370:366::-;19512:3;19533:67;19597:2;19592:3;19533:67;:::i;:::-;19526:74;;19609:93;19698:3;19609:93;:::i;:::-;19727:2;19722:3;19718:12;19711:19;;19370:366;;;:::o;19742:419::-;19908:4;19946:2;19935:9;19931:18;19923:26;;19995:9;19989:4;19985:20;19981:1;19970:9;19966:17;19959:47;20023:131;20149:4;20023:131;:::i;:::-;20015:139;;19742:419;;;:::o;20167:234::-;20307:34;20303:1;20295:6;20291:14;20284:58;20376:17;20371:2;20363:6;20359:15;20352:42;20167:234;:::o;20407:366::-;20549:3;20570:67;20634:2;20629:3;20570:67;:::i;:::-;20563:74;;20646:93;20735:3;20646:93;:::i;:::-;20764:2;20759:3;20755:12;20748:19;;20407:366;;;:::o;20779:419::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:131;21186:4;21060:131;:::i;:::-;21052:139;;20779:419;;;:::o;21204:148::-;21306:11;21343:3;21328:18;;21204:148;;;;:::o;21358:141::-;21407:4;21430:3;21422:11;;21453:3;21450:1;21443:14;21487:4;21484:1;21474:18;21466:26;;21358:141;;;:::o;21529:845::-;21632:3;21669:5;21663:12;21698:36;21724:9;21698:36;:::i;:::-;21750:89;21832:6;21827:3;21750:89;:::i;:::-;21743:96;;21870:1;21859:9;21855:17;21886:1;21881:137;;;;22032:1;22027:341;;;;21848:520;;21881:137;21965:4;21961:9;21950;21946:25;21941:3;21934:38;22001:6;21996:3;21992:16;21985:23;;21881:137;;22027:341;22094:38;22126:5;22094:38;:::i;:::-;22154:1;22168:154;22182:6;22179:1;22176:13;22168:154;;;22256:7;22250:14;22246:1;22241:3;22237:11;22230:35;22306:1;22297:7;22293:15;22282:26;;22204:4;22201:1;22197:12;22192:17;;22168:154;;;22351:6;22346:3;22342:16;22335:23;;22034:334;;21848:520;;21636:738;;21529:845;;;;:::o;22380:151::-;22520:3;22516:1;22508:6;22504:14;22497:27;22380:151;:::o;22537:400::-;22697:3;22718:84;22800:1;22795:3;22718:84;:::i;:::-;22711:91;;22811:93;22900:3;22811:93;:::i;:::-;22929:1;22924:3;22920:11;22913:18;;22537:400;;;:::o;22943:377::-;23049:3;23077:39;23110:5;23077:39;:::i;:::-;23132:89;23214:6;23209:3;23132:89;:::i;:::-;23125:96;;23230:52;23275:6;23270:3;23263:4;23256:5;23252:16;23230:52;:::i;:::-;23307:6;23302:3;23298:16;23291:23;;23053:267;22943:377;;;;:::o;23326:155::-;23466:7;23462:1;23454:6;23450:14;23443:31;23326:155;:::o;23487:400::-;23647:3;23668:84;23750:1;23745:3;23668:84;:::i;:::-;23661:91;;23761:93;23850:3;23761:93;:::i;:::-;23879:1;23874:3;23870:11;23863:18;;23487:400;;;:::o;23893:961::-;24272:3;24294:92;24382:3;24373:6;24294:92;:::i;:::-;24287:99;;24403:148;24547:3;24403:148;:::i;:::-;24396:155;;24568:95;24659:3;24650:6;24568:95;:::i;:::-;24561:102;;24680:148;24824:3;24680:148;:::i;:::-;24673:155;;24845:3;24838:10;;23893:961;;;;;:::o;24860:169::-;25000:21;24996:1;24988:6;24984:14;24977:45;24860:169;:::o;25035:366::-;25177:3;25198:67;25262:2;25257:3;25198:67;:::i;:::-;25191:74;;25274:93;25363:3;25274:93;:::i;:::-;25392:2;25387:3;25383:12;25376:19;;25035:366;;;:::o;25407:419::-;25573:4;25611:2;25600:9;25596:18;25588:26;;25660:9;25654:4;25650:20;25646:1;25635:9;25631:17;25624:47;25688:131;25814:4;25688:131;:::i;:::-;25680:139;;25407:419;;;:::o;25832:225::-;25972:34;25968:1;25960:6;25956:14;25949:58;26041:8;26036:2;26028:6;26024:15;26017:33;25832:225;:::o;26063:366::-;26205:3;26226:67;26290:2;26285:3;26226:67;:::i;:::-;26219:74;;26302:93;26391:3;26302:93;:::i;:::-;26420:2;26415:3;26411:12;26404:19;;26063:366;;;:::o;26435:419::-;26601:4;26639:2;26628:9;26624:18;26616:26;;26688:9;26682:4;26678:20;26674:1;26663:9;26659:17;26652:47;26716:131;26842:4;26716:131;:::i;:::-;26708:139;;26435:419;;;:::o;26860:179::-;27000:31;26996:1;26988:6;26984:14;26977:55;26860:179;:::o;27045:366::-;27187:3;27208:67;27272:2;27267:3;27208:67;:::i;:::-;27201:74;;27284:93;27373:3;27284:93;:::i;:::-;27402:2;27397:3;27393:12;27386:19;;27045:366;;;:::o;27417:419::-;27583:4;27621:2;27610:9;27606:18;27598:26;;27670:9;27664:4;27660:20;27656:1;27645:9;27641:17;27634:47;27698:131;27824:4;27698:131;:::i;:::-;27690:139;;27417:419;;;:::o;27842:147::-;27943:11;27980:3;27965:18;;27842:147;;;;:::o;27995:114::-;;:::o;28115:398::-;28274:3;28295:83;28376:1;28371:3;28295:83;:::i;:::-;28288:90;;28387:93;28476:3;28387:93;:::i;:::-;28505:1;28500:3;28496:11;28489:18;;28115:398;;;:::o;28519:379::-;28703:3;28725:147;28868:3;28725:147;:::i;:::-;28718:154;;28889:3;28882:10;;28519:379;;;:::o;28904:245::-;29044:34;29040:1;29032:6;29028:14;29021:58;29113:28;29108:2;29100:6;29096:15;29089:53;28904:245;:::o;29155:366::-;29297:3;29318:67;29382:2;29377:3;29318:67;:::i;:::-;29311:74;;29394:93;29483:3;29394:93;:::i;:::-;29512:2;29507:3;29503:12;29496:19;;29155:366;;;:::o;29527:419::-;29693:4;29731:2;29720:9;29716:18;29708:26;;29780:9;29774:4;29770:20;29766:1;29755:9;29751:17;29744:47;29808:131;29934:4;29808:131;:::i;:::-;29800:139;;29527:419;;;:::o;29952:98::-;30003:6;30037:5;30031:12;30021:22;;29952:98;;;:::o;30056:168::-;30139:11;30173:6;30168:3;30161:19;30213:4;30208:3;30204:14;30189:29;;30056:168;;;;:::o;30230:360::-;30316:3;30344:38;30376:5;30344:38;:::i;:::-;30398:70;30461:6;30456:3;30398:70;:::i;:::-;30391:77;;30477:52;30522:6;30517:3;30510:4;30503:5;30499:16;30477:52;:::i;:::-;30554:29;30576:6;30554:29;:::i;:::-;30549:3;30545:39;30538:46;;30320:270;30230:360;;;;:::o;30596:640::-;30791:4;30829:3;30818:9;30814:19;30806:27;;30843:71;30911:1;30900:9;30896:17;30887:6;30843:71;:::i;:::-;30924:72;30992:2;30981:9;30977:18;30968:6;30924:72;:::i;:::-;31006;31074:2;31063:9;31059:18;31050:6;31006:72;:::i;:::-;31125:9;31119:4;31115:20;31110:2;31099:9;31095:18;31088:48;31153:76;31224:4;31215:6;31153:76;:::i;:::-;31145:84;;30596:640;;;;;;;:::o;31242:141::-;31298:5;31329:6;31323:13;31314:22;;31345:32;31371:5;31345:32;:::i;:::-;31242:141;;;;:::o;31389:349::-;31458:6;31507:2;31495:9;31486:7;31482:23;31478:32;31475:119;;;31513:79;;:::i;:::-;31475:119;31633:1;31658:63;31713:7;31704:6;31693:9;31689:22;31658:63;:::i;:::-;31648:73;;31604:127;31389:349;;;;:::o;31744:233::-;31783:3;31806:24;31824:5;31806:24;:::i;:::-;31797:33;;31852:66;31845:5;31842:77;31839:103;;;31922:18;;:::i;:::-;31839:103;31969:1;31962:5;31958:13;31951:20;;31744:233;;;:::o;31983:180::-;32031:77;32028:1;32021:88;32128:4;32125:1;32118:15;32152:4;32149:1;32142:15;32169:185;32209:1;32226:20;32244:1;32226:20;:::i;:::-;32221:25;;32260:20;32278:1;32260:20;:::i;:::-;32255:25;;32299:1;32289:35;;32304:18;;:::i;:::-;32289:35;32346:1;32343;32339:9;32334:14;;32169:185;;;;:::o;32360:191::-;32400:4;32420:20;32438:1;32420:20;:::i;:::-;32415:25;;32454:20;32472:1;32454:20;:::i;:::-;32449:25;;32493:1;32490;32487:8;32484:34;;;32498:18;;:::i;:::-;32484:34;32543:1;32540;32536:9;32528:17;;32360:191;;;;:::o;32557:176::-;32589:1;32606:20;32624:1;32606:20;:::i;:::-;32601:25;;32640:20;32658:1;32640:20;:::i;:::-;32635:25;;32679:1;32669:35;;32684:18;;:::i;:::-;32669:35;32725:1;32722;32718:9;32713:14;;32557:176;;;;:::o;32739:180::-;32787:77;32784:1;32777:88;32884:4;32881:1;32874:15;32908:4;32905:1;32898:15

Swarm Source

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