ETH Price: $2,949.33 (-6.58%)
Gas: 8 Gwei

Unordinals (BTC)
 

Overview

TokenID

113

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

What is dead may never die.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Unordinals

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

// SPDX-License-Identifier: GPL-3.0

/*

##     ## ##    ##  #######  ########  ########  #### ##    ##    ###    ##        ######  
##     ## ###   ## ##     ## ##     ## ##     ##  ##  ###   ##   ## ##   ##       ##    ## 
##     ## ####  ## ##     ## ##     ## ##     ##  ##  ####  ##  ##   ##  ##       ##       
##     ## ## ## ## ##     ## ########  ##     ##  ##  ## ## ## ##     ## ##        ######  
##     ## ##  #### ##     ## ##   ##   ##     ##  ##  ##  #### ######### ##             ## 
##     ## ##   ### ##     ## ##    ##  ##     ##  ##  ##   ### ##     ## ##       ##    ## 
 #######  ##    ##  #######  ##     ## ########  #### ##    ## ##     ## ########  ######  
                                              
*/


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


// 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/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/extensions/IERC721ABurnable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 (owner == address(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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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: erc721a/contracts/extensions/ERC721ABurnable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}


// File: contracts/Unordinals.sol

pragma solidity >=0.8.0 <0.9.0;

contract Unordinals is ERC721AQueryable, ERC721ABurnable, Ownable, ReentrancyGuard, OperatorFilterer {

  using Strings for uint256;
  address public signerAddress;
    
  string public uriPrefix = "https://bafybeibjqxtn2b6u6yeijubnvypwvvwxiqfj3i2npmqgto7wuoioryxkoa.ipfs.dweb.link/";
  string public notRevealedURI;
  string public uriSuffix = ".json";
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 1000;
  
  uint256 public maxPerWallet = 2;
  uint256 public maxPerTx = 2;

  bool public publicMintEnabled = false;
  bool public whitelistMintEnabled = true;

  bool public paused = false;
  bool public revealed = true;
  bool public burnEnabled = false;

  mapping(address => uint) public burntByOwner;
  mapping(address => uint) public addressMintedBalance;

  constructor() ERC721A ( "Unordinals", "BTC" ) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true) {}


// ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0 && _mintAmount <= maxPerTx, "Invalid mint amount!");
    require(_mintAmount + addressMintedBalance[msg.sender] <= maxPerWallet, "Max per wallet exceeded!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

// ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~
  // PUBLIC MINT
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(publicMintEnabled, "Public mint is not active yet!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply limit reached!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }
  
  // WHITELIST MINT
  function mintWhitelist(uint256 _mintAmount, bytes memory sig) public payable mintCompliance(_mintAmount) {
    require(whitelistMintEnabled, "Whitelist mint is not active yet!");
    require(isValidData(msg.sender, sig) == true, "User is not whitelisted!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

  // MINT FOR ADDRESS
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(_receiver, _mintAmount);
  }

// ~~~~~~~~~~~~~~~~~~~~ Burn Function ~~~~~~~~~~~~~~~~~~~~
  //Burn tokens
  function BurnToken(uint256[] calldata tokenIds) public {
    require(burnEnabled, "Burn is not active yet.");
    uint256 tokensAmount = tokenIds.length;

    for (uint256 i = 0; i < tokensAmount; i++) {
        _burn(tokenIds[i]);
        }

    burntByOwner[msg.sender] += tokensAmount;
  }

// ~~~~~~~~~~~~~~~~~~~~ SIGNATURES ~~~~~~~~~~~~~~~~~~~~
  function isValidData(address _user, bytes memory sig) public view returns (bool) {
    bytes32 message = keccak256(abi.encodePacked(_user));
    return (recoverSigner(message, sig) == signerAddress);
  }

  function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) {
    uint8 v; bytes32 r; bytes32 s;
    (v, r, s) = splitSignature(sig);
    return ecrecover(message, v, r, s);
  }

  function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) {
    require(sig.length == 65);
    bytes32 r; bytes32 s; uint8 v;
    assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) }
    return (v, r, s);
  }

// ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

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

    if (revealed == false) { return notRevealedURI; }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : "";
  }

// ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~
  // SIGNER
  function setSigner(address _newSigner) public onlyOwner {
    signerAddress = _newSigner;
  }
  
  function setBurntByAddress(uint _burnAmount, address _address) public onlyOwner {
    burntByOwner[_address] = _burnAmount;
  }

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

  function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
  }

  function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  // SET PUBLIC MINT STATE
  function setPublicMintState(bool _state) public onlyOwner {
    publicMintEnabled = _state;
  }

  // SET WHITELIST MINT STATE
  function setWLMintState(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedURI = _notRevealedURI;
  }

  function setBurnEnabled(bool _state) public onlyOwner {
    burnEnabled = _state;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function setApprovalForAll(address operator, bool approved) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721A, IERC721A) onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(ERC721A, IERC721A) onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId, data);
  }

// ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"BurnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burntByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"setBurntByAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWLMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260536080818152906200351660a03980516200002a91600b91602090910190620002ca565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600d91620002ca565b5066b1a2bc2ec50000600e556103e8600f55600260108190556011556012805464ffffffffff191663010001001790553480156200009657600080fd5b50604080518082018252600a815269556e6f7264696e616c7360b01b60208083019182528351808501909452600384526242544360e81b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000fd91600291620002ca565b50805162000113906003906020840190620002ca565b5050600160005550620001263362000278565b60016009556daaeb6d7670e522a718067333cd4e3b1562000270578015620001be57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200019f57600080fd5b505af1158015620001b4573d6000803e3d6000fd5b5050505062000270565b6001600160a01b038216156200020f5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000184565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025657600080fd5b505af11580156200026b573d6000803e3d6000fd5b505050505b5050620003ac565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002d89062000370565b90600052602060002090601f016020900481019282620002fc576000855562000347565b82601f106200031757805160ff191683800117855562000347565b8280016001018555821562000347579182015b82811115620003475782518255916020019190600101906200032a565b506200035592915062000359565b5090565b5b808211156200035557600081556001016200035a565b600181811c908216806200038557607f821691505b602082108103620003a657634e487b7160e01b600052602260045260246000fd5b50919050565b61315a80620003bc6000396000f3fe6080604052600436106103815760003560e01c8063715018a6116101d1578063a22cb46511610102578063d5abeb01116100a0578063efbd73f41161006f578063efbd73f414610a85578063f2c4ce1e14610aa5578063f2fde38b14610ac5578063f968adbe14610ae557600080fd5b8063d5abeb01146109e6578063e268e4d3146109fc578063e37f2f6a14610a1c578063e985e9c514610a3c57600080fd5b8063b88d4fde116100dc578063b88d4fde14610959578063c23dc68f14610979578063c6f6f216146109a6578063c87b56dd146109c657600080fd5b8063a22cb465146108da578063a7bb5803146108fa578063b0940d451461093957600080fd5b80638da5cb5b1161016f57806397aba7f91161014957806397aba7f91461087457806399a2557a146108945780639f41554a146108b4578063a0712d68146108c757600080fd5b80638da5cb5b14610821578063940cd05b1461083f57806395d89b411461085f57600080fd5b80637ec4a659116101ab5780637ec4a6591461079457806382fc8563146107b45780638462151c146107d4578063879fbedf1461080157600080fd5b8063715018a61461074a578063722503801461075f5780637b2c835f1461077457600080fd5b806342966c68116102b65780635bbb2177116102545780636352211e116102235780636352211e146106cb5780636c19e783146106eb5780636caede3d1461070b57806370a082311461072a57600080fd5b80635bbb2177146106475780635c975abb146106745780635dc96d161461069457806362b99ad4146106b657600080fd5b80634d973765116102905780634d973765146105d157806351830227146105f15780635503a0e8146106125780635b7633d01461062757600080fd5b806342966c681461057b57806344a0d68a1461059b578063453c2310146105bb57600080fd5b806316c38b3c1161032357806323b872dd116102fd57806323b872dd146105045780633ccfd60b1461052457806341f434341461053957806342842e0e1461055b57600080fd5b806316c38b3c146104a257806318160ddd146104c257806318cae269146104d757600080fd5b8063095ea7b31161035f578063095ea7b3146104155780630f4161aa146104375780630f5ffe2a1461045157806313faede61461048c57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a136600461288e565b610afb565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610b4d565b6040516103b29190612903565b3480156103e957600080fd5b506103fd6103f8366004612916565b610bdf565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061043561043036600461294b565b610c23565b005b34801561044357600080fd5b506012546103a69060ff1681565b34801561045d57600080fd5b5061047e61046c366004612975565b60136020526000908152604090205481565b6040519081526020016103b2565b34801561049857600080fd5b5061047e600e5481565b3480156104ae57600080fd5b506104356104bd36600461299e565b610c3c565b3480156104ce57600080fd5b5061047e610c60565b3480156104e357600080fd5b5061047e6104f2366004612975565b60146020526000908152604090205481565b34801561051057600080fd5b5061043561051f3660046129bb565b610c6e565b34801561053057600080fd5b50610435610c99565b34801561054557600080fd5b506103fd6daaeb6d7670e522a718067333cd4e81565b34801561056757600080fd5b506104356105763660046129bb565b610d76565b34801561058757600080fd5b50610435610596366004612916565b610d9b565b3480156105a757600080fd5b506104356105b6366004612916565b610da9565b3480156105c757600080fd5b5061047e60105481565b3480156105dd57600080fd5b506104356105ec36600461299e565b610db6565b3480156105fd57600080fd5b506012546103a6906301000000900460ff1681565b34801561061e57600080fd5b506103d0610dd8565b34801561063357600080fd5b50600a546103fd906001600160a01b031681565b34801561065357600080fd5b50610667610662366004612a3d565b610e66565b6040516103b29190612b1e565b34801561068057600080fd5b506012546103a69062010000900460ff1681565b3480156106a057600080fd5b506012546103a690640100000000900460ff1681565b3480156106c257600080fd5b506103d0610f33565b3480156106d757600080fd5b506103fd6106e6366004612916565b610f40565b3480156106f757600080fd5b50610435610706366004612975565b610f4b565b34801561071757600080fd5b506012546103a690610100900460ff1681565b34801561073657600080fd5b5061047e610745366004612975565b610f75565b34801561075657600080fd5b50610435610fc3565b34801561076b57600080fd5b506103d0610fd7565b34801561078057600080fd5b5061043561078f36600461299e565b610fe4565b3480156107a057600080fd5b506104356107af366004612bb7565b61100c565b3480156107c057600080fd5b506104356107cf366004612bff565b61102b565b3480156107e057600080fd5b506107f46107ef366004612975565b61104d565b6040516103b29190612c2b565b34801561080d57600080fd5b5061043561081c36600461299e565b611155565b34801561082d57600080fd5b506008546001600160a01b03166103fd565b34801561084b57600080fd5b5061043561085a36600461299e565b611170565b34801561086b57600080fd5b506103d0611196565b34801561088057600080fd5b506103fd61088f366004612c83565b6111a5565b3480156108a057600080fd5b506107f46108af366004612cc9565b611224565b6104356108c2366004612c83565b6113ab565b6104356108d5366004612916565b61162d565b3480156108e657600080fd5b506104356108f5366004612cfc565b6118a9565b34801561090657600080fd5b5061091a610915366004612d33565b6118bd565b6040805160ff90941684526020840192909252908201526060016103b2565b34801561094557600080fd5b506103a6610954366004612d67565b6118ec565b34801561096557600080fd5b50610435610974366004612d9e565b611953565b34801561098557600080fd5b50610999610994366004612916565b611980565b6040516103b29190612e05565b3480156109b257600080fd5b506104356109c1366004612916565b611a08565b3480156109d257600080fd5b506103d06109e1366004612916565b611a15565b3480156109f257600080fd5b5061047e600f5481565b348015610a0857600080fd5b50610435610a17366004612916565b611b8a565b348015610a2857600080fd5b50610435610a37366004612e13565b611b97565b348015610a4857600080fd5b506103a6610a57366004612e87565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a9157600080fd5b50610435610aa0366004612bff565b611c5a565b348015610ab157600080fd5b50610435610ac0366004612bb7565b611ca0565b348015610ad157600080fd5b50610435610ae0366004612975565b611cbb565b348015610af157600080fd5b5061047e60115481565b60006301ffc9a760e01b6001600160e01b031983161480610b2c57506380ac58cd60e01b6001600160e01b03198316145b80610b475750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b5c90612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8890612eb1565b8015610bd55780601f10610baa57610100808354040283529160200191610bd5565b820191906000526020600020905b815481529060010190602001808311610bb857829003601f168201915b5050505050905090565b6000610bea82611d31565b610c07576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610c2d81611d66565b610c378383611e1f565b505050565b610c44611ebf565b60128054911515620100000262ff000019909216919091179055565b600154600054036000190190565b826001600160a01b0381163314610c8857610c8833611d66565b610c93848484611f19565b50505050565b610ca1611ebf565b600260095403610cf85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610d116008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b506001600955565b826001600160a01b0381163314610d9057610d9033611d66565b610c938484846120bb565b610da68160016120d6565b50565b610db1611ebf565b600e55565b610dbe611ebf565b601280549115156101000261ff0019909216919091179055565b600d8054610de590612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1190612eb1565b8015610e5e5780601f10610e3357610100808354040283529160200191610e5e565b820191906000526020600020905b815481529060010190602001808311610e4157829003601f168201915b505050505081565b80516060906000816001600160401b03811115610e8557610e856129f7565b604051908082528060200260200182016040528015610ed757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ea35790505b50905060005b828114610f2b57610f06858281518110610ef957610ef9612eeb565b6020026020010151611980565b828281518110610f1857610f18612eeb565b6020908102919091010152600101610edd565b509392505050565b600b8054610de590612eb1565b6000610b4782612220565b610f53611ebf565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610f9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610fcb611ebf565b610fd5600061228f565b565b600c8054610de590612eb1565b610fec611ebf565b601280549115156401000000000264ff0000000019909216919091179055565b611014611ebf565b805161102790600b9060208401906127df565b5050565b611033611ebf565b6001600160a01b0316600090815260136020526040902055565b6060600080600061105d85610f75565b90506000816001600160401b03811115611079576110796129f7565b6040519080825280602002602001820160405280156110a2578160200160208202803683370190505b5090506110cf60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611149576110e2816122e1565b915081604001516111415781516001600160a01b03161561110257815194505b876001600160a01b0316856001600160a01b031603611141578083878060010198508151811061113457611134612eeb565b6020026020010181815250505b6001016110d2565b50909695505050505050565b61115d611ebf565b6012805460ff1916911515919091179055565b611178611ebf565b6012805491151563010000000263ff00000019909216919091179055565b606060038054610b5c90612eb1565b6000806000806111b4856118bd565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa15801561120f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b606081831061124657604051631960ccad60e11b815260040160405180910390fd5b60008061125260005490565b9050600185101561126257600194505b8084111561126e578093505b600061127987610f75565b9050848610156112985785850381811015611292578091505b5061129c565b5060005b6000816001600160401b038111156112b6576112b66129f7565b6040519080825280602002602001820160405280156112df578160200160208202803683370190505b509050816000036112f55793506113a492505050565b600061130088611980565b905060008160400151611311575080515b885b8881141580156113235750848714155b1561139857611331816122e1565b925082604001516113905782516001600160a01b03161561135157825191505b8a6001600160a01b0316826001600160a01b031603611390578084888060010199508151811061138357611383612eeb565b6020026020010181815250505b600101611313565b50505092835250909150505b9392505050565b601254829062010000900460ff16156114005760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610cef565b60008111801561141257506011548111155b6114555760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610cef565b601054336000908152601460205260409020546114729083612f17565b11156114bb5760405162461bcd60e51b81526020600482015260186024820152774d6178207065722077616c6c65742065786365656465642160401b6044820152606401610cef565b600f54816114c7610c60565b6114d19190612f17565b11156114ef5760405162461bcd60e51b8152600401610cef90612f2f565b601254610100900460ff166115505760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374206d696e74206973206e6f7420616374697665207965746044820152602160f81b6064820152608401610cef565b61155a33836118ec565b15156001146115ab5760405162461bcd60e51b815260206004820152601860248201527f55736572206973206e6f742077686974656c69737465642100000000000000006044820152606401610cef565b82600e546115b99190612f5d565b3410156115fe5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cef565b336000908152601460205260408120805485929061161d908490612f17565b90915550610c379050338461231d565b601254819062010000900460ff16156116825760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610cef565b60008111801561169457506011548111155b6116d75760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610cef565b601054336000908152601460205260409020546116f49083612f17565b111561173d5760405162461bcd60e51b81526020600482015260186024820152774d6178207065722077616c6c65742065786365656465642160401b6044820152606401610cef565b600f5481611749610c60565b6117539190612f17565b11156117715760405162461bcd60e51b8152600401610cef90612f2f565b60125460ff166117c35760405162461bcd60e51b815260206004820152601e60248201527f5075626c6963206d696e74206973206e6f7420616374697665207965742100006044820152606401610cef565b600f54826117cf610c60565b6117d99190612f17565b11156118275760405162461bcd60e51b815260206004820152601960248201527f4d617820737570706c79206c696d6974207265616368656421000000000000006044820152606401610cef565b81600e546118359190612f5d565b34101561187a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cef565b3360009081526014602052604081208054849290611899908490612f17565b909155506110279050338361231d565b816118b381611d66565b610c378383612337565b600080600083516041146118d057600080fd5b5050506020810151604082015160609092015160001a92909190565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f198184030181529190528051602090910120600a549091506001600160a01b031661194182856111a5565b6001600160a01b031614949350505050565b836001600160a01b038116331461196d5761196d33611d66565b611979858585856123cc565b5050505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806119d957506000548310155b156119e45792915050565b6119ed836122e1565b90508060400151156119ff5792915050565b6113a483612410565b611a10611ebf565b601155565b6060611a2082611d31565b611a845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cef565b6012546301000000900460ff161515600003611b2c57600c8054611aa790612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad390612eb1565b8015611b205780601f10611af557610100808354040283529160200191611b20565b820191906000526020600020905b815481529060010190602001808311611b0357829003601f168201915b50505050509050919050565b6000611b36612445565b90506000815111611b5657604051806020016040528060008152506113a4565b80611b6084612454565b600d604051602001611b7493929190612f7c565b6040516020818303038152906040529392505050565b611b92611ebf565b601055565b601254640100000000900460ff16611bf15760405162461bcd60e51b815260206004820152601760248201527f4275726e206973206e6f7420616374697665207965742e0000000000000000006044820152606401610cef565b8060005b81811015611c3057611c1e848483818110611c1257611c12612eeb565b9050602002013561255c565b80611c288161303f565b915050611bf5565b503360009081526013602052604081208054839290611c50908490612f17565b9091555050505050565b611c62611ebf565b600f5482611c6e610c60565b611c789190612f17565b1115611c965760405162461bcd60e51b8152600401610cef90612f2f565b611027818361231d565b611ca8611ebf565b805161102790600c9060208401906127df565b611cc3611ebf565b6001600160a01b038116611d285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cef565b610da68161228f565b600081600111158015611d45575060005482105b8015610b47575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610da657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df79190613058565b610da657604051633b79c77360e21b81526001600160a01b0382166004820152602401610cef565b6000611e2a82610f40565b9050336001600160a01b03821614611e6357611e468133610a57565b611e63576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610fd55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cef565b6000611f2482612220565b9050836001600160a01b0316816001600160a01b031614611f575760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611f838187335b6001600160a01b039081169116811491141790565b611fae57611f918633610a57565b611fae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611fd557604051633a954ecd60e21b815260040160405180910390fd5b8015611fe057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003612072576001840160008181526004602052604081205490036120705760005481146120705760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c3783838360405180602001604052806000815250611953565b60006120e183612220565b9050806000806120ff86600090815260066020526040902080549091565b91509150841561213f57612114818433611f6e565b61213f576121228333610a57565b61213f57604051632ce44b5f60e11b815260040160405180910390fd5b801561214a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036121d8576001860160008181526004602052604081205490036121d65760005481146121d65760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b60008180600111612276576000548110156122765760008181526004602052604081205490600160e01b82169003612274575b806000036113a4575060001901600081815260046020526040902054612253565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b4790612567565b6110278282604051806020016040528060008152506125ae565b336001600160a01b038316036123605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6123d7848484610c6e565b6001600160a01b0383163b15610c93576123f384848484612614565b610c93576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610b4761244083612220565b612567565b6060600b8054610b5c90612eb1565b60608160000361247b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124a5578061248f8161303f565b915061249e9050600a8361308b565b915061247f565b6000816001600160401b038111156124bf576124bf6129f7565b6040519080825280601f01601f1916602001820160405280156124e9576020820181803683370190505b5090505b8415612554576124fe60018361309f565b915061250b600a866130b6565b612516906030612f17565b60f81b81838151811061252b5761252b612eeb565b60200101906001600160f81b031916908160001a90535061254d600a8661308b565b94506124ed565b949350505050565b610da68160006120d6565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6125b883836126ff565b6001600160a01b0383163b15610c37576000548281035b6125e26000868380600101945086612614565b6125ff576040516368d2bf6b60e11b815260040160405180910390fd5b8181106125cf57816000541461197957600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906126499033908990889088906004016130ca565b6020604051808303816000875af1925050508015612684575060408051601f3d908101601f1916820190925261268191810190613107565b60015b6126e2573d8080156126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b5080516000036126da576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03831661272857604051622e076360e81b815260040160405180910390fd5b816000036127495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106127935760005550505050565b8280546127eb90612eb1565b90600052602060002090601f01602090048101928261280d5760008555612853565b82601f1061282657805160ff1916838001178555612853565b82800160010185558215612853579182015b82811115612853578251825591602001919060010190612838565b5061285f929150612863565b5090565b5b8082111561285f5760008155600101612864565b6001600160e01b031981168114610da657600080fd5b6000602082840312156128a057600080fd5b81356113a481612878565b60005b838110156128c65781810151838201526020016128ae565b83811115610c935750506000910152565b600081518084526128ef8160208601602086016128ab565b601f01601f19169290920160200192915050565b6020815260006113a460208301846128d7565b60006020828403121561292857600080fd5b5035919050565b80356001600160a01b038116811461294657600080fd5b919050565b6000806040838503121561295e57600080fd5b6129678361292f565b946020939093013593505050565b60006020828403121561298757600080fd5b6113a48261292f565b8015158114610da657600080fd5b6000602082840312156129b057600080fd5b81356113a481612990565b6000806000606084860312156129d057600080fd5b6129d98461292f565b92506129e76020850161292f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a3557612a356129f7565b604052919050565b60006020808385031215612a5057600080fd5b82356001600160401b0380821115612a6757600080fd5b818501915085601f830112612a7b57600080fd5b813581811115612a8d57612a8d6129f7565b8060051b9150612a9e848301612a0d565b8181529183018401918481019088841115612ab857600080fd5b938501935b83851015612ad657843582529385019390850190612abd565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561114957612b4d838551612ae2565b9284019260809290920191600101612b3a565b60006001600160401b03831115612b7957612b796129f7565b612b8c601f8401601f1916602001612a0d565b9050828152838383011115612ba057600080fd5b828260208301376000602084830101529392505050565b600060208284031215612bc957600080fd5b81356001600160401b03811115612bdf57600080fd5b8201601f81018413612bf057600080fd5b61255484823560208401612b60565b60008060408385031215612c1257600080fd5b82359150612c226020840161292f565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561114957835183529284019291840191600101612c47565b600082601f830112612c7457600080fd5b6113a483833560208501612b60565b60008060408385031215612c9657600080fd5b8235915060208301356001600160401b03811115612cb357600080fd5b612cbf85828601612c63565b9150509250929050565b600080600060608486031215612cde57600080fd5b612ce78461292f565b95602085013595506040909401359392505050565b60008060408385031215612d0f57600080fd5b612d188361292f565b91506020830135612d2881612990565b809150509250929050565b600060208284031215612d4557600080fd5b81356001600160401b03811115612d5b57600080fd5b61255484828501612c63565b60008060408385031215612d7a57600080fd5b612d838361292f565b915060208301356001600160401b03811115612cb357600080fd5b60008060008060808587031215612db457600080fd5b612dbd8561292f565b9350612dcb6020860161292f565b92506040850135915060608501356001600160401b03811115612ded57600080fd5b612df987828801612c63565b91505092959194509250565b60808101610b478284612ae2565b60008060208385031215612e2657600080fd5b82356001600160401b0380821115612e3d57600080fd5b818501915085601f830112612e5157600080fd5b813581811115612e6057600080fd5b8660208260051b8501011115612e7557600080fd5b60209290920196919550909350505050565b60008060408385031215612e9a57600080fd5b612ea38361292f565b9150612c226020840161292f565b600181811c90821680612ec557607f821691505b602082108103612ee557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612f2a57612f2a612f01565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612f7757612f77612f01565b500290565b600084516020612f8f8285838a016128ab565b855191840191612fa28184848a016128ab565b8554920191600090600181811c9080831680612fbf57607f831692505b8583108103612fdc57634e487b7160e01b85526022600452602485fd5b808015612ff057600181146130015761302e565b60ff1985168852838801955061302e565b60008b81526020902060005b858110156130265781548a82015290840190880161300d565b505083880195505b50939b9a5050505050505050505050565b60006001820161305157613051612f01565b5060010190565b60006020828403121561306a57600080fd5b81516113a481612990565b634e487b7160e01b600052601260045260246000fd5b60008261309a5761309a613075565b500490565b6000828210156130b1576130b1612f01565b500390565b6000826130c5576130c5613075565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130fd908301846128d7565b9695505050505050565b60006020828403121561311957600080fd5b81516113a48161287856fea2646970667358221220fe24cd1b275cc6c4035c82fa9a5af561108d503749e1a79322d4ad7e478e2d1e64736f6c634300080d003368747470733a2f2f62616679626569626a7178746e32623675367965696a75626e76797077767677786971666a3369326e706d7167746f3777756f696f7279786b6f612e697066732e647765622e6c696e6b2f

Deployed Bytecode

0x6080604052600436106103815760003560e01c8063715018a6116101d1578063a22cb46511610102578063d5abeb01116100a0578063efbd73f41161006f578063efbd73f414610a85578063f2c4ce1e14610aa5578063f2fde38b14610ac5578063f968adbe14610ae557600080fd5b8063d5abeb01146109e6578063e268e4d3146109fc578063e37f2f6a14610a1c578063e985e9c514610a3c57600080fd5b8063b88d4fde116100dc578063b88d4fde14610959578063c23dc68f14610979578063c6f6f216146109a6578063c87b56dd146109c657600080fd5b8063a22cb465146108da578063a7bb5803146108fa578063b0940d451461093957600080fd5b80638da5cb5b1161016f57806397aba7f91161014957806397aba7f91461087457806399a2557a146108945780639f41554a146108b4578063a0712d68146108c757600080fd5b80638da5cb5b14610821578063940cd05b1461083f57806395d89b411461085f57600080fd5b80637ec4a659116101ab5780637ec4a6591461079457806382fc8563146107b45780638462151c146107d4578063879fbedf1461080157600080fd5b8063715018a61461074a578063722503801461075f5780637b2c835f1461077457600080fd5b806342966c68116102b65780635bbb2177116102545780636352211e116102235780636352211e146106cb5780636c19e783146106eb5780636caede3d1461070b57806370a082311461072a57600080fd5b80635bbb2177146106475780635c975abb146106745780635dc96d161461069457806362b99ad4146106b657600080fd5b80634d973765116102905780634d973765146105d157806351830227146105f15780635503a0e8146106125780635b7633d01461062757600080fd5b806342966c681461057b57806344a0d68a1461059b578063453c2310146105bb57600080fd5b806316c38b3c1161032357806323b872dd116102fd57806323b872dd146105045780633ccfd60b1461052457806341f434341461053957806342842e0e1461055b57600080fd5b806316c38b3c146104a257806318160ddd146104c257806318cae269146104d757600080fd5b8063095ea7b31161035f578063095ea7b3146104155780630f4161aa146104375780630f5ffe2a1461045157806313faede61461048c57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a136600461288e565b610afb565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610b4d565b6040516103b29190612903565b3480156103e957600080fd5b506103fd6103f8366004612916565b610bdf565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061043561043036600461294b565b610c23565b005b34801561044357600080fd5b506012546103a69060ff1681565b34801561045d57600080fd5b5061047e61046c366004612975565b60136020526000908152604090205481565b6040519081526020016103b2565b34801561049857600080fd5b5061047e600e5481565b3480156104ae57600080fd5b506104356104bd36600461299e565b610c3c565b3480156104ce57600080fd5b5061047e610c60565b3480156104e357600080fd5b5061047e6104f2366004612975565b60146020526000908152604090205481565b34801561051057600080fd5b5061043561051f3660046129bb565b610c6e565b34801561053057600080fd5b50610435610c99565b34801561054557600080fd5b506103fd6daaeb6d7670e522a718067333cd4e81565b34801561056757600080fd5b506104356105763660046129bb565b610d76565b34801561058757600080fd5b50610435610596366004612916565b610d9b565b3480156105a757600080fd5b506104356105b6366004612916565b610da9565b3480156105c757600080fd5b5061047e60105481565b3480156105dd57600080fd5b506104356105ec36600461299e565b610db6565b3480156105fd57600080fd5b506012546103a6906301000000900460ff1681565b34801561061e57600080fd5b506103d0610dd8565b34801561063357600080fd5b50600a546103fd906001600160a01b031681565b34801561065357600080fd5b50610667610662366004612a3d565b610e66565b6040516103b29190612b1e565b34801561068057600080fd5b506012546103a69062010000900460ff1681565b3480156106a057600080fd5b506012546103a690640100000000900460ff1681565b3480156106c257600080fd5b506103d0610f33565b3480156106d757600080fd5b506103fd6106e6366004612916565b610f40565b3480156106f757600080fd5b50610435610706366004612975565b610f4b565b34801561071757600080fd5b506012546103a690610100900460ff1681565b34801561073657600080fd5b5061047e610745366004612975565b610f75565b34801561075657600080fd5b50610435610fc3565b34801561076b57600080fd5b506103d0610fd7565b34801561078057600080fd5b5061043561078f36600461299e565b610fe4565b3480156107a057600080fd5b506104356107af366004612bb7565b61100c565b3480156107c057600080fd5b506104356107cf366004612bff565b61102b565b3480156107e057600080fd5b506107f46107ef366004612975565b61104d565b6040516103b29190612c2b565b34801561080d57600080fd5b5061043561081c36600461299e565b611155565b34801561082d57600080fd5b506008546001600160a01b03166103fd565b34801561084b57600080fd5b5061043561085a36600461299e565b611170565b34801561086b57600080fd5b506103d0611196565b34801561088057600080fd5b506103fd61088f366004612c83565b6111a5565b3480156108a057600080fd5b506107f46108af366004612cc9565b611224565b6104356108c2366004612c83565b6113ab565b6104356108d5366004612916565b61162d565b3480156108e657600080fd5b506104356108f5366004612cfc565b6118a9565b34801561090657600080fd5b5061091a610915366004612d33565b6118bd565b6040805160ff90941684526020840192909252908201526060016103b2565b34801561094557600080fd5b506103a6610954366004612d67565b6118ec565b34801561096557600080fd5b50610435610974366004612d9e565b611953565b34801561098557600080fd5b50610999610994366004612916565b611980565b6040516103b29190612e05565b3480156109b257600080fd5b506104356109c1366004612916565b611a08565b3480156109d257600080fd5b506103d06109e1366004612916565b611a15565b3480156109f257600080fd5b5061047e600f5481565b348015610a0857600080fd5b50610435610a17366004612916565b611b8a565b348015610a2857600080fd5b50610435610a37366004612e13565b611b97565b348015610a4857600080fd5b506103a6610a57366004612e87565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a9157600080fd5b50610435610aa0366004612bff565b611c5a565b348015610ab157600080fd5b50610435610ac0366004612bb7565b611ca0565b348015610ad157600080fd5b50610435610ae0366004612975565b611cbb565b348015610af157600080fd5b5061047e60115481565b60006301ffc9a760e01b6001600160e01b031983161480610b2c57506380ac58cd60e01b6001600160e01b03198316145b80610b475750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b5c90612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8890612eb1565b8015610bd55780601f10610baa57610100808354040283529160200191610bd5565b820191906000526020600020905b815481529060010190602001808311610bb857829003601f168201915b5050505050905090565b6000610bea82611d31565b610c07576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610c2d81611d66565b610c378383611e1f565b505050565b610c44611ebf565b60128054911515620100000262ff000019909216919091179055565b600154600054036000190190565b826001600160a01b0381163314610c8857610c8833611d66565b610c93848484611f19565b50505050565b610ca1611ebf565b600260095403610cf85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610d116008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b506001600955565b826001600160a01b0381163314610d9057610d9033611d66565b610c938484846120bb565b610da68160016120d6565b50565b610db1611ebf565b600e55565b610dbe611ebf565b601280549115156101000261ff0019909216919091179055565b600d8054610de590612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1190612eb1565b8015610e5e5780601f10610e3357610100808354040283529160200191610e5e565b820191906000526020600020905b815481529060010190602001808311610e4157829003601f168201915b505050505081565b80516060906000816001600160401b03811115610e8557610e856129f7565b604051908082528060200260200182016040528015610ed757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ea35790505b50905060005b828114610f2b57610f06858281518110610ef957610ef9612eeb565b6020026020010151611980565b828281518110610f1857610f18612eeb565b6020908102919091010152600101610edd565b509392505050565b600b8054610de590612eb1565b6000610b4782612220565b610f53611ebf565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610f9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610fcb611ebf565b610fd5600061228f565b565b600c8054610de590612eb1565b610fec611ebf565b601280549115156401000000000264ff0000000019909216919091179055565b611014611ebf565b805161102790600b9060208401906127df565b5050565b611033611ebf565b6001600160a01b0316600090815260136020526040902055565b6060600080600061105d85610f75565b90506000816001600160401b03811115611079576110796129f7565b6040519080825280602002602001820160405280156110a2578160200160208202803683370190505b5090506110cf60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611149576110e2816122e1565b915081604001516111415781516001600160a01b03161561110257815194505b876001600160a01b0316856001600160a01b031603611141578083878060010198508151811061113457611134612eeb565b6020026020010181815250505b6001016110d2565b50909695505050505050565b61115d611ebf565b6012805460ff1916911515919091179055565b611178611ebf565b6012805491151563010000000263ff00000019909216919091179055565b606060038054610b5c90612eb1565b6000806000806111b4856118bd565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa15801561120f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b606081831061124657604051631960ccad60e11b815260040160405180910390fd5b60008061125260005490565b9050600185101561126257600194505b8084111561126e578093505b600061127987610f75565b9050848610156112985785850381811015611292578091505b5061129c565b5060005b6000816001600160401b038111156112b6576112b66129f7565b6040519080825280602002602001820160405280156112df578160200160208202803683370190505b509050816000036112f55793506113a492505050565b600061130088611980565b905060008160400151611311575080515b885b8881141580156113235750848714155b1561139857611331816122e1565b925082604001516113905782516001600160a01b03161561135157825191505b8a6001600160a01b0316826001600160a01b031603611390578084888060010199508151811061138357611383612eeb565b6020026020010181815250505b600101611313565b50505092835250909150505b9392505050565b601254829062010000900460ff16156114005760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610cef565b60008111801561141257506011548111155b6114555760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610cef565b601054336000908152601460205260409020546114729083612f17565b11156114bb5760405162461bcd60e51b81526020600482015260186024820152774d6178207065722077616c6c65742065786365656465642160401b6044820152606401610cef565b600f54816114c7610c60565b6114d19190612f17565b11156114ef5760405162461bcd60e51b8152600401610cef90612f2f565b601254610100900460ff166115505760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374206d696e74206973206e6f7420616374697665207965746044820152602160f81b6064820152608401610cef565b61155a33836118ec565b15156001146115ab5760405162461bcd60e51b815260206004820152601860248201527f55736572206973206e6f742077686974656c69737465642100000000000000006044820152606401610cef565b82600e546115b99190612f5d565b3410156115fe5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cef565b336000908152601460205260408120805485929061161d908490612f17565b90915550610c379050338461231d565b601254819062010000900460ff16156116825760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610cef565b60008111801561169457506011548111155b6116d75760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610cef565b601054336000908152601460205260409020546116f49083612f17565b111561173d5760405162461bcd60e51b81526020600482015260186024820152774d6178207065722077616c6c65742065786365656465642160401b6044820152606401610cef565b600f5481611749610c60565b6117539190612f17565b11156117715760405162461bcd60e51b8152600401610cef90612f2f565b60125460ff166117c35760405162461bcd60e51b815260206004820152601e60248201527f5075626c6963206d696e74206973206e6f7420616374697665207965742100006044820152606401610cef565b600f54826117cf610c60565b6117d99190612f17565b11156118275760405162461bcd60e51b815260206004820152601960248201527f4d617820737570706c79206c696d6974207265616368656421000000000000006044820152606401610cef565b81600e546118359190612f5d565b34101561187a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cef565b3360009081526014602052604081208054849290611899908490612f17565b909155506110279050338361231d565b816118b381611d66565b610c378383612337565b600080600083516041146118d057600080fd5b5050506020810151604082015160609092015160001a92909190565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f198184030181529190528051602090910120600a549091506001600160a01b031661194182856111a5565b6001600160a01b031614949350505050565b836001600160a01b038116331461196d5761196d33611d66565b611979858585856123cc565b5050505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806119d957506000548310155b156119e45792915050565b6119ed836122e1565b90508060400151156119ff5792915050565b6113a483612410565b611a10611ebf565b601155565b6060611a2082611d31565b611a845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cef565b6012546301000000900460ff161515600003611b2c57600c8054611aa790612eb1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad390612eb1565b8015611b205780601f10611af557610100808354040283529160200191611b20565b820191906000526020600020905b815481529060010190602001808311611b0357829003601f168201915b50505050509050919050565b6000611b36612445565b90506000815111611b5657604051806020016040528060008152506113a4565b80611b6084612454565b600d604051602001611b7493929190612f7c565b6040516020818303038152906040529392505050565b611b92611ebf565b601055565b601254640100000000900460ff16611bf15760405162461bcd60e51b815260206004820152601760248201527f4275726e206973206e6f7420616374697665207965742e0000000000000000006044820152606401610cef565b8060005b81811015611c3057611c1e848483818110611c1257611c12612eeb565b9050602002013561255c565b80611c288161303f565b915050611bf5565b503360009081526013602052604081208054839290611c50908490612f17565b9091555050505050565b611c62611ebf565b600f5482611c6e610c60565b611c789190612f17565b1115611c965760405162461bcd60e51b8152600401610cef90612f2f565b611027818361231d565b611ca8611ebf565b805161102790600c9060208401906127df565b611cc3611ebf565b6001600160a01b038116611d285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cef565b610da68161228f565b600081600111158015611d45575060005482105b8015610b47575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610da657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df79190613058565b610da657604051633b79c77360e21b81526001600160a01b0382166004820152602401610cef565b6000611e2a82610f40565b9050336001600160a01b03821614611e6357611e468133610a57565b611e63576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610fd55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cef565b6000611f2482612220565b9050836001600160a01b0316816001600160a01b031614611f575760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611f838187335b6001600160a01b039081169116811491141790565b611fae57611f918633610a57565b611fae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611fd557604051633a954ecd60e21b815260040160405180910390fd5b8015611fe057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003612072576001840160008181526004602052604081205490036120705760005481146120705760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c3783838360405180602001604052806000815250611953565b60006120e183612220565b9050806000806120ff86600090815260066020526040902080549091565b91509150841561213f57612114818433611f6e565b61213f576121228333610a57565b61213f57604051632ce44b5f60e11b815260040160405180910390fd5b801561214a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036121d8576001860160008181526004602052604081205490036121d65760005481146121d65760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b60008180600111612276576000548110156122765760008181526004602052604081205490600160e01b82169003612274575b806000036113a4575060001901600081815260046020526040902054612253565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b4790612567565b6110278282604051806020016040528060008152506125ae565b336001600160a01b038316036123605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6123d7848484610c6e565b6001600160a01b0383163b15610c93576123f384848484612614565b610c93576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610b4761244083612220565b612567565b6060600b8054610b5c90612eb1565b60608160000361247b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124a5578061248f8161303f565b915061249e9050600a8361308b565b915061247f565b6000816001600160401b038111156124bf576124bf6129f7565b6040519080825280601f01601f1916602001820160405280156124e9576020820181803683370190505b5090505b8415612554576124fe60018361309f565b915061250b600a866130b6565b612516906030612f17565b60f81b81838151811061252b5761252b612eeb565b60200101906001600160f81b031916908160001a90535061254d600a8661308b565b94506124ed565b949350505050565b610da68160006120d6565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6125b883836126ff565b6001600160a01b0383163b15610c37576000548281035b6125e26000868380600101945086612614565b6125ff576040516368d2bf6b60e11b815260040160405180910390fd5b8181106125cf57816000541461197957600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906126499033908990889088906004016130ca565b6020604051808303816000875af1925050508015612684575060408051601f3d908101601f1916820190925261268191810190613107565b60015b6126e2573d8080156126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b5080516000036126da576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03831661272857604051622e076360e81b815260040160405180910390fd5b816000036127495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106127935760005550505050565b8280546127eb90612eb1565b90600052602060002090601f01602090048101928261280d5760008555612853565b82601f1061282657805160ff1916838001178555612853565b82800160010185558215612853579182015b82811115612853578251825591602001919060010190612838565b5061285f929150612863565b5090565b5b8082111561285f5760008155600101612864565b6001600160e01b031981168114610da657600080fd5b6000602082840312156128a057600080fd5b81356113a481612878565b60005b838110156128c65781810151838201526020016128ae565b83811115610c935750506000910152565b600081518084526128ef8160208601602086016128ab565b601f01601f19169290920160200192915050565b6020815260006113a460208301846128d7565b60006020828403121561292857600080fd5b5035919050565b80356001600160a01b038116811461294657600080fd5b919050565b6000806040838503121561295e57600080fd5b6129678361292f565b946020939093013593505050565b60006020828403121561298757600080fd5b6113a48261292f565b8015158114610da657600080fd5b6000602082840312156129b057600080fd5b81356113a481612990565b6000806000606084860312156129d057600080fd5b6129d98461292f565b92506129e76020850161292f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a3557612a356129f7565b604052919050565b60006020808385031215612a5057600080fd5b82356001600160401b0380821115612a6757600080fd5b818501915085601f830112612a7b57600080fd5b813581811115612a8d57612a8d6129f7565b8060051b9150612a9e848301612a0d565b8181529183018401918481019088841115612ab857600080fd5b938501935b83851015612ad657843582529385019390850190612abd565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561114957612b4d838551612ae2565b9284019260809290920191600101612b3a565b60006001600160401b03831115612b7957612b796129f7565b612b8c601f8401601f1916602001612a0d565b9050828152838383011115612ba057600080fd5b828260208301376000602084830101529392505050565b600060208284031215612bc957600080fd5b81356001600160401b03811115612bdf57600080fd5b8201601f81018413612bf057600080fd5b61255484823560208401612b60565b60008060408385031215612c1257600080fd5b82359150612c226020840161292f565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561114957835183529284019291840191600101612c47565b600082601f830112612c7457600080fd5b6113a483833560208501612b60565b60008060408385031215612c9657600080fd5b8235915060208301356001600160401b03811115612cb357600080fd5b612cbf85828601612c63565b9150509250929050565b600080600060608486031215612cde57600080fd5b612ce78461292f565b95602085013595506040909401359392505050565b60008060408385031215612d0f57600080fd5b612d188361292f565b91506020830135612d2881612990565b809150509250929050565b600060208284031215612d4557600080fd5b81356001600160401b03811115612d5b57600080fd5b61255484828501612c63565b60008060408385031215612d7a57600080fd5b612d838361292f565b915060208301356001600160401b03811115612cb357600080fd5b60008060008060808587031215612db457600080fd5b612dbd8561292f565b9350612dcb6020860161292f565b92506040850135915060608501356001600160401b03811115612ded57600080fd5b612df987828801612c63565b91505092959194509250565b60808101610b478284612ae2565b60008060208385031215612e2657600080fd5b82356001600160401b0380821115612e3d57600080fd5b818501915085601f830112612e5157600080fd5b813581811115612e6057600080fd5b8660208260051b8501011115612e7557600080fd5b60209290920196919550909350505050565b60008060408385031215612e9a57600080fd5b612ea38361292f565b9150612c226020840161292f565b600181811c90821680612ec557607f821691505b602082108103612ee557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612f2a57612f2a612f01565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612f7757612f77612f01565b500290565b600084516020612f8f8285838a016128ab565b855191840191612fa28184848a016128ab565b8554920191600090600181811c9080831680612fbf57607f831692505b8583108103612fdc57634e487b7160e01b85526022600452602485fd5b808015612ff057600181146130015761302e565b60ff1985168852838801955061302e565b60008b81526020902060005b858110156130265781548a82015290840190880161300d565b505083880195505b50939b9a5050505050505050505050565b60006001820161305157613051612f01565b5060010190565b60006020828403121561306a57600080fd5b81516113a481612990565b634e487b7160e01b600052601260045260246000fd5b60008261309a5761309a613075565b500490565b6000828210156130b1576130b1612f01565b500390565b6000826130c5576130c5613075565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130fd908301846128d7565b9695505050505050565b60006020828403121561311957600080fd5b81516113a48161287856fea2646970667358221220fe24cd1b275cc6c4035c82fa9a5af561108d503749e1a79322d4ad7e478e2d1e64736f6c634300080d0033

Deployed Bytecode Sourcemap

69105:6978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29479:615;;;;;;;;;;-1:-1:-1;29479:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29479:615:0;;;;;;;;35126:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37080:204::-;;;;;;;;;;-1:-1:-1;37080:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37080:204:0;1528:203:1;75102:170:0;;;;;;;;;;-1:-1:-1;75102:170:0;;;;;:::i;:::-;;:::i;:::-;;69620:37;;;;;;;;;;-1:-1:-1;69620:37:0;;;;;;;;69809:44;;;;;;;;;;-1:-1:-1;69809:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;69809:44:0;2364:177:1;69473:32:0;;;;;;;;;;;;;;;;74742:77;;;;;;;;;;-1:-1:-1;74742:77:0;;;;;:::i;:::-;;:::i;28533:315::-;;;;;;;;;;;;;:::i;69858:52::-;;;;;;;;;;-1:-1:-1;69858:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;75278:176;;;;;;;;;;-1:-1:-1;75278:176:0;;;;;:::i;:::-;;:::i;75930:150::-;;;;;;;;;;;;;:::i;3542:143::-;;;;;;;;;;;;3642:42;3542:143;;75460:184;;;;;;;;;;-1:-1:-1;75460:184:0;;;;;:::i;:::-;;:::i;60125:94::-;;;;;;;;;;-1:-1:-1;60125:94:0;;;;;:::i;:::-;;:::i;73865:74::-;;;;;;;;;;-1:-1:-1;73865:74:0;;;;;:::i;:::-;;:::i;69550:31::-;;;;;;;;;;;;;;;;74315:96;;;;;;;;;;-1:-1:-1;74315:96:0;;;;;:::i;:::-;;:::i;69739:27::-;;;;;;;;;;-1:-1:-1;69739:27:0;;;;;;;;;;;69431:33;;;;;;;;;;;;;:::i;69243:28::-;;;;;;;;;;-1:-1:-1;69243:28:0;;;;-1:-1:-1;;;;;69243:28:0;;;64320:468;;;;;;;;;;-1:-1:-1;64320:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69708:26::-;;;;;;;;;;-1:-1:-1;69708:26:0;;;;;;;;;;;69771:31;;;;;;;;;;-1:-1:-1;69771:31:0;;;;;;;;;;;69282:111;;;;;;;;;;;;;:::i;34915:144::-;;;;;;;;;;-1:-1:-1;34915:144:0;;;;;:::i;:::-;;:::i;73627:95::-;;;;;;;;;;-1:-1:-1;73627:95:0;;;;;:::i;:::-;;:::i;69662:39::-;;;;;;;;;;-1:-1:-1;69662:39:0;;;;;;;;;;;30158:224;;;;;;;;;;-1:-1:-1;30158:224:0;;;;;:::i;:::-;;:::i;13583:103::-;;;;;;;;;;;;;:::i;69398:28::-;;;;;;;;;;;;;:::i;74649:87::-;;;;;;;;;;-1:-1:-1;74649:87:0;;;;;:::i;:::-;;:::i;74417:100::-;;;;;;;;;;-1:-1:-1;74417:100:0;;;;;:::i;:::-;;:::i;73730:129::-;;;;;;;;;;-1:-1:-1;73730:129:0;;;;;:::i;:::-;;:::i;68132:892::-;;;;;;;;;;-1:-1:-1;68132:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;74181:97::-;;;;;;;;;;-1:-1:-1;74181:97:0;;;;;:::i;:::-;;:::i;12935:87::-;;;;;;;;;;-1:-1:-1;13008:6:0;;-1:-1:-1;;;;;13008:6:0;12935:87;;74825:76;;;;;;;;;;-1:-1:-1;74825:76:0;;;;;:::i;:::-;;:::i;35295:104::-;;;;;;;;;;;;;:::i;72331:209::-;;;;;;;;;;-1:-1:-1;72331:209:0;;;;;:::i;:::-;;:::i;65178:2505::-;;;;;;;;;;-1:-1:-1;65178:2505:0;;;;;:::i;:::-;;:::i;71001:433::-;;;;;;:::i;:::-;;:::i;70567:405::-;;;;;;:::i;:::-;;:::i;74907:189::-;;;;;;;;;;-1:-1:-1;74907:189:0;;;;;:::i;:::-;;:::i;72546:287::-;;;;;;;;;;-1:-1:-1;72546:287:0;;;;;:::i;:::-;;:::i;:::-;;;;9907:4:1;9895:17;;;9877:36;;9944:2;9929:18;;9922:34;;;;9972:18;;;9965:34;9865:2;9850:18;72546:287:0;9679:326:1;72119:206:0;;;;;;;;;;-1:-1:-1;72119:206:0;;;;;:::i;:::-;;:::i;75650:209::-;;;;;;;;;;-1:-1:-1;75650:209:0;;;;;:::i;:::-;;:::i;63741:420::-;;;;;;;;;;-1:-1:-1;63741:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73945:90::-;;;;;;;;;;-1:-1:-1;73945:90:0;;;;;:::i;:::-;;:::i;73111:431::-;;;;;;;;;;-1:-1:-1;73111:431:0;;;;;:::i;:::-;;:::i;69510:31::-;;;;;;;;;;;;;;;;74041:106;;;;;;;;;;-1:-1:-1;74041:106:0;;;;;:::i;:::-;;:::i;71755:301::-;;;;;;;;;;-1:-1:-1;71755:301:0;;;;;:::i;:::-;;:::i;37735:164::-;;;;;;;;;;-1:-1:-1;37735:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37856:25:0;;;37832:4;37856:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37735:164;71463:209;;;;;;;;;;-1:-1:-1;71463:209:0;;;;;:::i;:::-;;:::i;74523:120::-;;;;;;;;;;-1:-1:-1;74523:120:0;;;;;:::i;:::-;;:::i;13841:201::-;;;;;;;;;;-1:-1:-1;13841:201:0;;;;;:::i;:::-;;:::i;69586:27::-;;;;;;;;;;;;;;;;29479:615;29564:4;-1:-1:-1;;;;;;;;;29864:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;29941:25:0;;;29864:102;:179;;;-1:-1:-1;;;;;;;;;;30018:25:0;;;29864:179;29844:199;29479:615;-1:-1:-1;;29479:615:0:o;35126:100::-;35180:13;35213:5;35206:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35126:100;:::o;37080:204::-;37148:7;37173:16;37181:7;37173;:16::i;:::-;37168:64;;37198:34;;-1:-1:-1;;;37198:34:0;;;;;;;;;;;37168:64;-1:-1:-1;37252:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37252:24:0;;37080:204::o;75102:170::-;75217:8;5063:30;5084:8;5063:20;:30::i;:::-;75234:32:::1;75248:8;75258:7;75234:13;:32::i;:::-;75102:170:::0;;;:::o;74742:77::-;12821:13;:11;:13::i;:::-;74798:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;74798:15:0;;::::1;::::0;;;::::1;::::0;;74742:77::o;28533:315::-;72988:1;28799:12;28586:7;28783:13;:28;-1:-1:-1;;28783:46:0;;28533:315::o;75278:176::-;75398:4;-1:-1:-1;;;;;4883:18:0;;4891:10;4883:18;4879:83;;4918:32;4939:10;4918:20;:32::i;:::-;75411:37:::1;75430:4;75436:2;75440:7;75411:18;:37::i;:::-;75278:176:::0;;;;:::o;75930:150::-;12821:13;:11;:13::i;:::-;7359:1:::1;7957:7;;:19:::0;7949:63:::1;;;::::0;-1:-1:-1;;;7949:63:0;;12694:2:1;7949:63:0::1;::::0;::::1;12676:21:1::0;12733:2;12713:18;;;12706:30;12772:33;12752:18;;;12745:61;12823:18;;7949:63:0::1;;;;;;;;;7359:1;8090:7;:18:::0;75988:7:::2;76009;13008:6:::0;;-1:-1:-1;;;;;13008:6:0;;12935:87;76009:7:::2;-1:-1:-1::0;;;;;76001:21:0::2;76030;76001:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75987:69;;;76071:2;76063:11;;;::::0;::::2;;-1:-1:-1::0;7315:1:0::1;8269:7;:22:::0;75930:150::o;75460:184::-;75584:4;-1:-1:-1;;;;;4883:18:0;;4891:10;4883:18;4879:83;;4918:32;4939:10;4918:20;:32::i;:::-;75597:41:::1;75620:4;75626:2;75630:7;75597:22;:41::i;60125:94::-:0;60191:20;60197:7;60206:4;60191:5;:20::i;:::-;60125:94;:::o;73865:74::-;12821:13;:11;:13::i;:::-;73921:4:::1;:12:::0;73865:74::o;74315:96::-;12821:13;:11;:13::i;:::-;74376:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;74376:29:0;;::::1;::::0;;;::::1;::::0;;74315:96::o;69431:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64320:468::-;64495:15;;64409:23;;64470:22;64495:15;-1:-1:-1;;;;;64562:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64562:36:0;;-1:-1:-1;;64562:36:0;;;;;;;;;;;;64525:73;;64618:9;64613:125;64634:14;64629:1;:19;64613:125;;64690:32;64710:8;64719:1;64710:11;;;;;;;;:::i;:::-;;;;;;;64690:19;:32::i;:::-;64674:10;64685:1;64674:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;64650:3;;64613:125;;;-1:-1:-1;64759:10:0;64320:468;-1:-1:-1;;;64320:468:0:o;69282:111::-;;;;;;;:::i;34915:144::-;34979:7;35022:27;35041:7;35022:18;:27::i;73627:95::-;12821:13;:11;:13::i;:::-;73690::::1;:26:::0;;-1:-1:-1;;;;;;73690:26:0::1;-1:-1:-1::0;;;;;73690:26:0;;;::::1;::::0;;;::::1;::::0;;73627:95::o;30158:224::-;30222:7;-1:-1:-1;;;;;30246:19:0;;30242:60;;30274:28;;-1:-1:-1;;;30274:28:0;;;;;;;;;;;30242:60;-1:-1:-1;;;;;;30320:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;30320:54:0;;30158:224::o;13583:103::-;12821:13;:11;:13::i;:::-;13648:30:::1;13675:1;13648:18;:30::i;:::-;13583:103::o:0;69398:28::-;;;;;;;:::i;74649:87::-;12821:13;:11;:13::i;:::-;74710:11:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;74710:20:0;;::::1;::::0;;;::::1;::::0;;74649:87::o;74417:100::-;12821:13;:11;:13::i;:::-;74489:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;74417:100:::0;:::o;73730:129::-;12821:13;:11;:13::i;:::-;-1:-1:-1;;;;;73817:22:0::1;;::::0;;;:12:::1;:22;::::0;;;;:36;73730:129::o;68132:892::-;68202:16;68256:19;68290:25;68330:22;68355:16;68365:5;68355:9;:16::i;:::-;68330:41;;68386:25;68428:14;-1:-1:-1;;;;;68414:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68414:29:0;;68386:57;;68458:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68458:31:0;72988:1;68504:472;68553:14;68538:11;:29;68504:472;;68605:15;68618:1;68605:12;:15::i;:::-;68593:27;;68643:9;:16;;;68684:8;68639:73;68734:14;;-1:-1:-1;;;;;68734:28:0;;68730:111;;68807:14;;;-1:-1:-1;68730:111:0;68884:5;-1:-1:-1;;;;;68863:26:0;:17;-1:-1:-1;;;;;68863:26:0;;68859:102;;68940:1;68914:8;68923:13;;;;;;68914:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;68859:102;68569:3;;68504:472;;;-1:-1:-1;68997:8:0;;68132:892;-1:-1:-1;;;;;;68132:892:0:o;74181:97::-;12821:13;:11;:13::i;:::-;74246:17:::1;:26:::0;;-1:-1:-1;;74246:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;74181:97::o;74825:76::-;12821:13;:11;:13::i;:::-;74878:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;74878:17:0;;::::1;::::0;;;::::1;::::0;;74825:76::o;35295:104::-;35351:13;35384:7;35377:14;;;;;:::i;72331:209::-;72410:7;72426;72435:9;72446;72474:19;72489:3;72474:14;:19::i;:::-;72507:27;;;;;;;;;;;;13421:25:1;;;13494:4;13482:17;;13462:18;;;13455:45;;;;13516:18;;;13509:34;;;13559:18;;;13552:34;;;72462:31:0;;-1:-1:-1;72462:31:0;;-1:-1:-1;72462:31:0;-1:-1:-1;72507:27:0;;13393:19:1;;72507:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;72507:27:0;;-1:-1:-1;;72507:27:0;;;72331:209;-1:-1:-1;;;;;;;72331:209:0:o;65178:2505::-;65313:16;65380:4;65371:5;:13;65367:45;;65393:19;;-1:-1:-1;;;65393:19:0;;;;;;;;;;;65367:45;65427:19;65461:17;65481:14;28275:7;28302:13;;28228:95;65481:14;65461:34;-1:-1:-1;72988:1:0;65573:5;:23;65569:87;;;72988:1;65617:23;;65569:87;65732:9;65725:4;:16;65721:73;;;65769:9;65762:16;;65721:73;65808:25;65836:16;65846:5;65836:9;:16::i;:::-;65808:44;;66030:4;66022:5;:12;66018:278;;;66077:12;;;66112:31;;;66108:111;;;66188:11;66168:31;;66108:111;66036:198;66018:278;;;-1:-1:-1;66279:1:0;66018:278;66310:25;66352:17;-1:-1:-1;;;;;66338:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66338:32:0;;66310:60;;66389:17;66410:1;66389:22;66385:78;;66439:8;-1:-1:-1;66432:15:0;;-1:-1:-1;;;66432:15:0;66385:78;66607:31;66641:26;66661:5;66641:19;:26::i;:::-;66607:60;;66682:25;66927:9;:16;;;66922:92;;-1:-1:-1;66984:14:0;;66922:92;67045:5;67028:478;67057:4;67052:1;:9;;:45;;;;;67080:17;67065:11;:32;;67052:45;67028:478;;;67135:15;67148:1;67135:12;:15::i;:::-;67123:27;;67173:9;:16;;;67214:8;67169:73;67264:14;;-1:-1:-1;;;;;67264:28:0;;67260:111;;67337:14;;;-1:-1:-1;67260:111:0;67414:5;-1:-1:-1;;;;;67393:26:0;:17;-1:-1:-1;;;;;67393:26:0;;67389:102;;67470:1;67444:8;67453:13;;;;;;67444:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;67389:102;67099:3;;67028:478;;;-1:-1:-1;;;67591:29:0;;;-1:-1:-1;67598:8:0;;-1:-1:-1;;65178:2505:0;;;;;;:::o;71001:433::-;70166:6;;71093:11;;70166:6;;;;;70165:7;70157:43;;;;-1:-1:-1;;;70157:43:0;;13799:2:1;70157:43:0;;;13781:21:1;13838:2;13818:18;;;13811:30;-1:-1:-1;;;13857:18:1;;;13850:53;13920:18;;70157:43:0;13597:347:1;70157:43:0;70229:1;70215:11;:15;:42;;;;;70249:8;;70234:11;:23;;70215:42;70207:75;;;;-1:-1:-1;;;70207:75:0;;14151:2:1;70207:75:0;;;14133:21:1;14190:2;14170:18;;;14163:30;-1:-1:-1;;;14209:18:1;;;14202:50;14269:18;;70207:75:0;13949:344:1;70207:75:0;70347:12;;70332:10;70311:32;;;;:20;:32;;;;;;70297:46;;:11;:46;:::i;:::-;:62;;70289:99;;;;-1:-1:-1;;;70289:99:0;;14765:2:1;70289:99:0;;;14747:21:1;14804:2;14784:18;;;14777:30;-1:-1:-1;;;14823:18:1;;;14816:54;14887:18;;70289:99:0;14563:348:1;70289:99:0;70434:9;;70419:11;70403:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;70395:73;;;;-1:-1:-1;;;70395:73:0;;;;;;;:::i;:::-;71121:20:::1;::::0;::::1;::::0;::::1;;;71113:66;;;::::0;-1:-1:-1;;;71113:66:0;;15467:2:1;71113:66:0::1;::::0;::::1;15449:21:1::0;15506:2;15486:18;;;15479:30;15545:34;15525:18;;;15518:62;-1:-1:-1;;;15596:18:1;;;15589:31;15637:19;;71113:66:0::1;15265:397:1::0;71113:66:0::1;71194:28;71206:10;71218:3;71194:11;:28::i;:::-;:36;;71226:4;71194:36;71186:73;;;::::0;-1:-1:-1;;;71186:73:0;;15869:2:1;71186:73:0::1;::::0;::::1;15851:21:1::0;15908:2;15888:18;;;15881:30;15947:26;15927:18;;;15920:54;15991:18;;71186:73:0::1;15667:348:1::0;71186:73:0::1;71294:11;71287:4;;:18;;;;:::i;:::-;71274:9;:31;;71266:63;;;::::0;-1:-1:-1;;;71266:63:0;;16395:2:1;71266:63:0::1;::::0;::::1;16377:21:1::0;16434:2;16414:18;;;16407:30;-1:-1:-1;;;16453:18:1;;;16446:49;16512:18;;71266:63:0::1;16193:343:1::0;71266:63:0::1;71359:10;71338:32;::::0;;;:20:::1;:32;::::0;;;;:47;;71374:11;;71338:32;:47:::1;::::0;71374:11;;71338:47:::1;:::i;:::-;::::0;;;-1:-1:-1;71392:36:0::1;::::0;-1:-1:-1;11566:10:0;71416:11:::1;71392:9;:36::i;70567:405::-:0;70166:6;;70632:11;;70166:6;;;;;70165:7;70157:43;;;;-1:-1:-1;;;70157:43:0;;13799:2:1;70157:43:0;;;13781:21:1;13838:2;13818:18;;;13811:30;-1:-1:-1;;;13857:18:1;;;13850:53;13920:18;;70157:43:0;13597:347:1;70157:43:0;70229:1;70215:11;:15;:42;;;;;70249:8;;70234:11;:23;;70215:42;70207:75;;;;-1:-1:-1;;;70207:75:0;;14151:2:1;70207:75:0;;;14133:21:1;14190:2;14170:18;;;14163:30;-1:-1:-1;;;14209:18:1;;;14202:50;14269:18;;70207:75:0;13949:344:1;70207:75:0;70347:12;;70332:10;70311:32;;;;:20;:32;;;;;;70297:46;;:11;:46;:::i;:::-;:62;;70289:99;;;;-1:-1:-1;;;70289:99:0;;14765:2:1;70289:99:0;;;14747:21:1;14804:2;14784:18;;;14777:30;-1:-1:-1;;;14823:18:1;;;14816:54;14887:18;;70289:99:0;14563:348:1;70289:99:0;70434:9;;70419:11;70403:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;70395:73;;;;-1:-1:-1;;;70395:73:0;;;;;;;:::i;:::-;70660:17:::1;::::0;::::1;;70652:60;;;::::0;-1:-1:-1;;;70652:60:0;;16743:2:1;70652:60:0::1;::::0;::::1;16725:21:1::0;16782:2;16762:18;;;16755:30;16821:32;16801:18;;;16794:60;16871:18;;70652:60:0::1;16541:354:1::0;70652:60:0::1;70758:9;;70743:11;70727:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;70719:78;;;::::0;-1:-1:-1;;;70719:78:0;;17102:2:1;70719:78:0::1;::::0;::::1;17084:21:1::0;17141:2;17121:18;;;17114:30;17180:27;17160:18;;;17153:55;17225:18;;70719:78:0::1;16900:349:1::0;70719:78:0::1;70832:11;70825:4;;:18;;;;:::i;:::-;70812:9;:31;;70804:63;;;::::0;-1:-1:-1;;;70804:63:0;;16395:2:1;70804:63:0::1;::::0;::::1;16377:21:1::0;16434:2;16414:18;;;16407:30;-1:-1:-1;;;16453:18:1;;;16446:49;16512:18;;70804:63:0::1;16193:343:1::0;70804:63:0::1;70897:10;70876:32;::::0;;;:20:::1;:32;::::0;;;;:47;;70912:11;;70876:32;:47:::1;::::0;70912:11;;70876:47:::1;:::i;:::-;::::0;;;-1:-1:-1;70930:36:0::1;::::0;-1:-1:-1;11566:10:0;70954:11:::1;70930:9;:36::i;74907:189::-:0;75030:8;5063:30;5084:8;5063:20;:30::i;:::-;75047:43:::1;75071:8;75081;75047:23;:43::i;72546:287::-:0;72609:5;72616:7;72625;72649:3;:10;72663:2;72649:16;72641:25;;;;;;-1:-1:-1;;;72740:2:0;72731:12;;72725:19;72765:2;72756:12;;72750:19;72798:2;72789:12;;;72783:19;72673:9;72775:28;;72725:19;;72750;72546:287::o;72119:206::-;72235:23;;-1:-1:-1;;17403:2:1;17399:15;;;17395:53;72235:23:0;;;17383:66:1;72194:4:0;;;;17465:12:1;;72235:23:0;;;-1:-1:-1;;72235:23:0;;;;;;;;;72225:34;;72235:23;72225:34;;;;72305:13;;72225:34;;-1:-1:-1;;;;;;72305:13:0;72274:27;72225:34;72297:3;72274:13;:27::i;:::-;-1:-1:-1;;;;;72274:44:0;;;72119:206;-1:-1:-1;;;;72119:206:0:o;75650:209::-;75793:4;-1:-1:-1;;;;;4883:18:0;;4891:10;4883:18;4879:83;;4918:32;4939:10;4918:20;:32::i;:::-;75806:47:::1;75829:4;75835:2;75839:7;75848:4;75806:22;:47::i;:::-;75650:209:::0;;;;;:::o;63741:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72988:1:0;63897:7;:25;:54;;;-1:-1:-1;28275:7:0;28302:13;63926:7;:25;;63897:54;63893:103;;;63975:9;63741:420;-1:-1:-1;;63741:420:0:o;63893:103::-;64018:21;64031:7;64018:12;:21::i;:::-;64006:33;;64054:9;:16;;;64050:65;;;64094:9;63741:420;-1:-1:-1;;63741:420:0:o;64050:65::-;64132:21;64145:7;64132:12;:21::i;73945:90::-;12821:13;:11;:13::i;:::-;74009:8:::1;:20:::0;73945:90::o;73111:431::-;73204:13;73234:17;73242:8;73234:7;:17::i;:::-;73226:77;;;;-1:-1:-1;;;73226:77:0;;17690:2:1;73226:77:0;;;17672:21:1;17729:2;17709:18;;;17702:30;17768:34;17748:18;;;17741:62;-1:-1:-1;;;17819:18:1;;;17812:45;17874:19;;73226:77:0;17488:411:1;73226:77:0;73316:8;;;;;;;:17;;73328:5;73316:17;73312:49;;73344:14;73337:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73111:431;;;:::o;73312:49::-;73369:28;73400:10;:8;:10::i;:::-;73369:41;;73455:1;73430:14;73424:28;:32;:112;;;;;;;;;;;;;;;;;73483:14;73499:19;:8;:17;:19::i;:::-;73520:9;73466:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73417:119;73111:431;-1:-1:-1;;;73111:431:0:o;74041:106::-;12821:13;:11;:13::i;:::-;74113:12:::1;:28:::0;74041:106::o;71755:301::-;71825:11;;;;;;;71817:47;;;;-1:-1:-1;;;71817:47:0;;19764:2:1;71817:47:0;;;19746:21:1;19803:2;19783:18;;;19776:30;19842:25;19822:18;;;19815:53;19885:18;;71817:47:0;19562:347:1;71817:47:0;71894:8;71871:20;71918:84;71942:12;71938:1;:16;71918:84;;;71972:18;71978:8;;71987:1;71978:11;;;;;;;:::i;:::-;;;;;;;71972:5;:18::i;:::-;71956:3;;;;:::i;:::-;;;;71918:84;;;-1:-1:-1;72023:10:0;72010:24;;;;:12;:24;;;;;:40;;72038:12;;72010:24;:40;;72038:12;;72010:40;:::i;:::-;;;;-1:-1:-1;;;;;71755:301:0:o;71463:209::-;12821:13;:11;:13::i;:::-;71590:9:::1;;71575:11;71559:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;71551:73;;;;-1:-1:-1::0;;;71551:73:0::1;;;;;;;:::i;:::-;71633:33;71643:9;71654:11;71633:9;:33::i;74523:120::-:0;12821:13;:11;:13::i;:::-;74605:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;13841:201::-:0;12821:13;:11;:13::i;:::-;-1:-1:-1;;;;;13930:22:0;::::1;13922:73;;;::::0;-1:-1:-1;;;13922:73:0;;20256:2:1;13922:73:0::1;::::0;::::1;20238:21:1::0;20295:2;20275:18;;;20268:30;20334:34;20314:18;;;20307:62;-1:-1:-1;;;20385:18:1;;;20378:36;20431:19;;13922:73:0::1;20054:402:1::0;13922:73:0::1;14006:28;14025:8;14006:18;:28::i;38880:273::-:0;38937:4;38993:7;72988:1;38974:26;;:66;;;;;39027:13;;39017:7;:23;38974:66;:152;;;;-1:-1:-1;;39078:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39078:43:0;:48;;38880:273::o;5121:419::-;3642:42;5312:45;:49;5308:225;;5383:67;;-1:-1:-1;;;5383:67:0;;5434:4;5383:67;;;20673:34:1;-1:-1:-1;;;;;20743:15:1;;20723:18;;;20716:43;3642:42:0;;5383;;20608:18:1;;5383:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5378:144;;5478:28;;-1:-1:-1;;;5478:28:0;;-1:-1:-1;;;;;1692:32:1;;5478:28:0;;;1674:51:1;1647:18;;5478:28:0;1528:203:1;36620:394:0;36701:13;36717:16;36725:7;36717;:16::i;:::-;36701:32;-1:-1:-1;11566:10:0;-1:-1:-1;;;;;36750:28:0;;;36746:175;;36798:44;36815:5;11566:10;37735:164;:::i;36798:44::-;36793:128;;36870:35;;-1:-1:-1;;;36870:35:0;;;;;;;;;;;36793:128;36933:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36933:29:0;-1:-1:-1;;;;;36933:29:0;;;;;;;;;36978:28;;36933:24;;36978:28;;;;;;;36690:324;36620:394;;:::o;13100:132::-;13008:6;;-1:-1:-1;;;;;13008:6:0;11566:10;13164:23;13156:68;;;;-1:-1:-1;;;13156:68:0;;21222:2:1;13156:68:0;;;21204:21:1;;;21241:18;;;21234:30;21300:34;21280:18;;;21273:62;21352:18;;13156:68:0;21020:356:1;46345:2800:0;46479:27;46509;46528:7;46509:18;:27::i;:::-;46479:57;;46594:4;-1:-1:-1;;;;;46553:45:0;46569:19;-1:-1:-1;;;;;46553:45:0;;46549:86;;46607:28;;-1:-1:-1;;;46607:28:0;;;;;;;;;;;46549:86;46649:27;45075:21;;;44902:15;45117:4;45110:36;45199:4;45183:21;;45289:26;;46833:62;45289:26;46869:4;11566:10;46875:19;-1:-1:-1;;;;;45894:31:0;;;45740:26;;46021:19;;46042:30;;46018:55;;45446:645;46833:62;46828:174;;46915:43;46932:4;11566:10;37735:164;:::i;46915:43::-;46910:92;;46967:35;;-1:-1:-1;;;46967:35:0;;;;;;;;;;;46910:92;-1:-1:-1;;;;;47019:16:0;;47015:52;;47044:23;;-1:-1:-1;;;47044:23:0;;;;;;;;;;;47015:52;47216:15;47213:160;;;47356:1;47335:19;47328:30;47213:160;-1:-1:-1;;;;;47751:24:0;;;;;;;:18;:24;;;;;;47749:26;;-1:-1:-1;;47749:26:0;;;47820:22;;;;;;;;;47818:24;;-1:-1:-1;47818:24:0;;;34814:11;34790:22;34786:40;34773:62;-1:-1:-1;;;34773:62:0;48113:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;48407:46:0;;:51;;48403:626;;48511:1;48501:11;;48479:19;48634:30;;;:17;:30;;;;;;:35;;48630:384;;48772:13;;48757:11;:28;48753:242;;48919:30;;;;:17;:30;;;;;:52;;;48753:242;48460:569;48403:626;49076:7;49072:2;-1:-1:-1;;;;;49057:27:0;49066:4;-1:-1:-1;;;;;49057:27:0;;;;;;;;;;;46468:2677;;;46345:2800;;;:::o;37970:185::-;38108:39;38125:4;38131:2;38135:7;38108:39;;;;;;;;;;;;:16;:39::i;49541:3063::-;49621:27;49651;49670:7;49651:18;:27::i;:::-;49621:57;-1:-1:-1;49621:57:0;49691:12;;49813:28;49833:7;44776:27;45075:21;;;44902:15;45117:4;45110:36;45199:4;45183:21;;45289:26;;45183:21;;44681:652;49813:28;49756:85;;;;49858:13;49854:310;;;49979:62;49998:15;50015:4;11566:10;50021:19;11486:98;49979:62;49974:178;;50065:43;50082:4;11566:10;37735:164;:::i;50065:43::-;50060:92;;50117:35;;-1:-1:-1;;;50117:35:0;;;;;;;;;;;50060:92;50320:15;50317:160;;;50460:1;50439:19;50432:30;50317:160;-1:-1:-1;;;;;51078:24:0;;;;;;:18;:24;;;;;:59;;51106:31;51078:59;;;34814:11;34790:22;34786:40;34773:62;-1:-1:-1;;;34773:62:0;51375:26;;;;:17;:26;;;;;:203;;;;-1:-1:-1;;;51698:46:0;;:51;;51694:626;;51802:1;51792:11;;51770:19;51925:30;;;:17;:30;;;;;;:35;;51921:384;;52063:13;;52048:11;:28;52044:242;;52210:30;;;;:17;:30;;;;;:52;;;52044:242;51751:569;51694:626;52348:35;;52375:7;;52371:1;;-1:-1:-1;;;;;52348:35:0;;;;;52371:1;;52348:35;-1:-1:-1;;52571:12:0;:14;;;;;;-1:-1:-1;;;;49541:3063:0:o;31832:1129::-;31899:7;31934;;72988:1;31983:23;31979:915;;32036:13;;32029:4;:20;32025:869;;;32074:14;32091:23;;;:17;:23;;;;;;;-1:-1:-1;;;32180:23:0;;:28;;32176:699;;32699:113;32706:6;32716:1;32706:11;32699:113;;-1:-1:-1;;;32777:6:0;32759:25;;;;:17;:25;;;;;;32699:113;;32176:699;32051:843;32025:869;32922:31;;-1:-1:-1;;;32922:31:0;;;;;;;;;;;14202:191;14295:6;;;-1:-1:-1;;;;;14312:17:0;;;-1:-1:-1;;;;;;14312:17:0;;;;;;;14345:40;;14295:6;;;14312:17;14295:6;;14345:40;;14276:16;;14345:40;14265:128;14202:191;:::o;33509:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33629:24:0;;;;:17;:24;;;;;;33610:44;;:18;:44::i;39237:104::-;39306:27;39316:2;39320:8;39306:27;;;;;;;;;;;;:9;:27::i;37356:308::-;11566:10;-1:-1:-1;;;;;37455:31:0;;;37451:61;;37495:17;;-1:-1:-1;;;37495:17:0;;;;;;;;;;;37451:61;11566:10;37525:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;37525:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;37525:60:0;;;;;;;;;;37601:55;;540:41:1;;;37525:49:0;;11566:10;37601:55;;513:18:1;37601:55:0;;;;;;;37356:308;;:::o;38226:399::-;38393:31;38406:4;38412:2;38416:7;38393:12;:31::i;:::-;-1:-1:-1;;;;;38439:14:0;;;:19;38435:183;;38478:56;38509:4;38515:2;38519:7;38528:5;38478:30;:56::i;:::-;38473:145;;38562:40;;-1:-1:-1;;;38562:40:0;;;;;;;;;;;34165:158;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34268:47:0;34287:27;34306:7;34287:18;:27::i;:::-;34268:18;:47::i;73001:104::-;73061:13;73090:9;73083:16;;;;;:::i;8740:723::-;8796:13;9017:5;9026:1;9017:10;9013:53;;-1:-1:-1;;9044:10:0;;;;;;;;;;;;-1:-1:-1;;;9044:10:0;;;;;8740:723::o;9013:53::-;9091:5;9076:12;9132:78;9139:9;;9132:78;;9165:8;;;;:::i;:::-;;-1:-1:-1;9188:10:0;;-1:-1:-1;9196:2:0;9188:10;;:::i;:::-;;;9132:78;;;9220:19;9252:6;-1:-1:-1;;;;;9242:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9242:17:0;;9220:39;;9270:154;9277:10;;9270:154;;9304:11;9314:1;9304:11;;:::i;:::-;;-1:-1:-1;9373:10:0;9381:2;9373:5;:10;:::i;:::-;9360:24;;:2;:24;:::i;:::-;9347:39;;9330:6;9337;9330:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9330:56:0;;;;;;;;-1:-1:-1;9401:11:0;9410:2;9401:11;;:::i;:::-;;;9270:154;;;9448:6;8740:723;-1:-1:-1;;;;8740:723:0:o;49223:89::-;49283:21;49289:7;49298:5;49283;:21::i;33055:363::-;-1:-1:-1;;;;;;;;;;;;;33165:41:0;;;;25367:3;33251:32;;;-1:-1:-1;;;;;33217:67:0;-1:-1:-1;;;33217:67:0;-1:-1:-1;;;33314:23:0;;:28;;-1:-1:-1;;;33295:47:0;;;;25884:3;33382:27;;;;-1:-1:-1;;;33353:57:0;-1:-1:-1;33055:363:0:o;39757:681::-;39880:19;39886:2;39890:8;39880:5;:19::i;:::-;-1:-1:-1;;;;;39941:14:0;;;:19;39937:483;;39981:11;39995:13;40043:14;;;40076:233;40107:62;40146:1;40150:2;40154:7;;;;;;40163:5;40107:30;:62::i;:::-;40102:167;;40205:40;;-1:-1:-1;;;40205:40:0;;;;;;;;;;;40102:167;40304:3;40296:5;:11;40076:233;;40391:3;40374:13;;:20;40370:34;;40396:8;;;53096:716;53280:88;;-1:-1:-1;;;53280:88:0;;53259:4;;-1:-1:-1;;;;;53280:45:0;;;;;:88;;11566:10;;53347:4;;53353:7;;53362:5;;53280:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53280:88:0;;;;;;;;-1:-1:-1;;53280:88:0;;;;;;;;;;;;:::i;:::-;;;53276:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53563:6;:13;53580:1;53563:18;53559:235;;53609:40;;-1:-1:-1;;;53609:40:0;;;;;;;;;;;53559:235;53752:6;53746:13;53737:6;53733:2;53729:15;53722:38;53276:529;-1:-1:-1;;;;;;53439:64:0;-1:-1:-1;;;53439:64:0;;-1:-1:-1;53096:716:0;;;;;;:::o;40711:1529::-;40776:20;40799:13;-1:-1:-1;;;;;40827:16:0;;40823:48;;40852:19;;-1:-1:-1;;;40852:19:0;;;;;;;;;;;40823:48;40886:8;40898:1;40886:13;40882:44;;40908:18;;-1:-1:-1;;;40908:18:0;;;;;;;;;;;40882:44;-1:-1:-1;;;;;41414:22:0;;;;;;:18;:22;;24850:2;41414:22;;:70;;41452:31;41440:44;;41414:70;;;34814:11;34790:22;34786:40;-1:-1:-1;36524:15:0;;36499:23;36495:45;34783:51;34773:62;41727:31;;;;:17;:31;;;;;:173;41745:12;41976:23;;;42014:101;42041:35;;42066:9;;;;;-1:-1:-1;;;;;42041:35:0;;;42058:1;;42041:35;;42058:1;;42041:35;42110:3;42100:7;:13;42014:101;;42131:13;:19;-1:-1:-1;75102:170:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:118::-;2632:5;2625:13;2618:21;2611:5;2608:32;2598:60;;2654:1;2651;2644:12;2669:241;2725:6;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2833:9;2820:23;2852:28;2874:5;2852:28;:::i;2915:328::-;2992:6;3000;3008;3061:2;3049:9;3040:7;3036:23;3032:32;3029:52;;;3077:1;3074;3067:12;3029:52;3100:29;3119:9;3100:29;:::i;:::-;3090:39;;3148:38;3182:2;3171:9;3167:18;3148:38;:::i;:::-;3138:48;;3233:2;3222:9;3218:18;3205:32;3195:42;;2915:328;;;;;:::o;3487:127::-;3548:10;3543:3;3539:20;3536:1;3529:31;3579:4;3576:1;3569:15;3603:4;3600:1;3593:15;3619:275;3690:2;3684:9;3755:2;3736:13;;-1:-1:-1;;3732:27:1;3720:40;;-1:-1:-1;;;;;3775:34:1;;3811:22;;;3772:62;3769:88;;;3837:18;;:::i;:::-;3873:2;3866:22;3619:275;;-1:-1:-1;3619:275:1:o;3899:946::-;3983:6;4014:2;4057;4045:9;4036:7;4032:23;4028:32;4025:52;;;4073:1;4070;4063:12;4025:52;4113:9;4100:23;-1:-1:-1;;;;;4183:2:1;4175:6;4172:14;4169:34;;;4199:1;4196;4189:12;4169:34;4237:6;4226:9;4222:22;4212:32;;4282:7;4275:4;4271:2;4267:13;4263:27;4253:55;;4304:1;4301;4294:12;4253:55;4340:2;4327:16;4362:2;4358;4355:10;4352:36;;;4368:18;;:::i;:::-;4414:2;4411:1;4407:10;4397:20;;4437:28;4461:2;4457;4453:11;4437:28;:::i;:::-;4499:15;;;4569:11;;;4565:20;;;4530:12;;;;4597:19;;;4594:39;;;4629:1;4626;4619:12;4594:39;4653:11;;;;4673:142;4689:6;4684:3;4681:15;4673:142;;;4755:17;;4743:30;;4706:12;;;;4793;;;;4673:142;;;4834:5;3899:946;-1:-1:-1;;;;;;;;3899:946:1:o;4850:349::-;4934:12;;-1:-1:-1;;;;;4930:38:1;4918:51;;5022:4;5011:16;;;5005:23;-1:-1:-1;;;;;5001:48:1;4985:14;;;4978:72;5113:4;5102:16;;;5096:23;5089:31;5082:39;5066:14;;;5059:63;5175:4;5164:16;;;5158:23;5183:8;5154:38;5138:14;;5131:62;4850:349::o;5204:722::-;5437:2;5489:21;;;5559:13;;5462:18;;;5581:22;;;5408:4;;5437:2;5660:15;;;;5634:2;5619:18;;;5408:4;5703:197;5717:6;5714:1;5711:13;5703:197;;;5766:52;5814:3;5805:6;5799:13;5766:52;:::i;:::-;5875:15;;;;5847:4;5838:14;;;;;5739:1;5732:9;5703:197;;5931:407;5996:5;-1:-1:-1;;;;;6022:6:1;6019:30;6016:56;;;6052:18;;:::i;:::-;6090:57;6135:2;6114:15;;-1:-1:-1;;6110:29:1;6141:4;6106:40;6090:57;:::i;:::-;6081:66;;6170:6;6163:5;6156:21;6210:3;6201:6;6196:3;6192:16;6189:25;6186:45;;;6227:1;6224;6217:12;6186:45;6276:6;6271:3;6264:4;6257:5;6253:16;6240:43;6330:1;6323:4;6314:6;6307:5;6303:18;6299:29;6292:40;5931:407;;;;;:::o;6343:451::-;6412:6;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6521:9;6508:23;-1:-1:-1;;;;;6546:6:1;6543:30;6540:50;;;6586:1;6583;6576:12;6540:50;6609:22;;6662:4;6654:13;;6650:27;-1:-1:-1;6640:55:1;;6691:1;6688;6681:12;6640:55;6714:74;6780:7;6775:2;6762:16;6757:2;6753;6749:11;6714:74;:::i;6799:254::-;6867:6;6875;6928:2;6916:9;6907:7;6903:23;6899:32;6896:52;;;6944:1;6941;6934:12;6896:52;6980:9;6967:23;6957:33;;7009:38;7043:2;7032:9;7028:18;7009:38;:::i;:::-;6999:48;;6799:254;;;;;:::o;7058:632::-;7229:2;7281:21;;;7351:13;;7254:18;;;7373:22;;;7200:4;;7229:2;7452:15;;;;7426:2;7411:18;;;7200:4;7495:169;7509:6;7506:1;7503:13;7495:169;;;7570:13;;7558:26;;7639:15;;;;7604:12;;;;7531:1;7524:9;7495:169;;7695:221;7737:5;7790:3;7783:4;7775:6;7771:17;7767:27;7757:55;;7808:1;7805;7798:12;7757:55;7830:80;7906:3;7897:6;7884:20;7877:4;7869:6;7865:17;7830:80;:::i;7921:388::-;7998:6;8006;8059:2;8047:9;8038:7;8034:23;8030:32;8027:52;;;8075:1;8072;8065:12;8027:52;8111:9;8098:23;8088:33;;8172:2;8161:9;8157:18;8144:32;-1:-1:-1;;;;;8191:6:1;8188:30;8185:50;;;8231:1;8228;8221:12;8185:50;8254:49;8295:7;8286:6;8275:9;8271:22;8254:49;:::i;:::-;8244:59;;;7921:388;;;;;:::o;8314:322::-;8391:6;8399;8407;8460:2;8448:9;8439:7;8435:23;8431:32;8428:52;;;8476:1;8473;8466:12;8428:52;8499:29;8518:9;8499:29;:::i;:::-;8489:39;8575:2;8560:18;;8547:32;;-1:-1:-1;8626:2:1;8611:18;;;8598:32;;8314:322;-1:-1:-1;;;8314:322:1:o;9034:315::-;9099:6;9107;9160:2;9148:9;9139:7;9135:23;9131:32;9128:52;;;9176:1;9173;9166:12;9128:52;9199:29;9218:9;9199:29;:::i;:::-;9189:39;;9278:2;9267:9;9263:18;9250:32;9291:28;9313:5;9291:28;:::i;:::-;9338:5;9328:15;;;9034:315;;;;;:::o;9354:320::-;9422:6;9475:2;9463:9;9454:7;9450:23;9446:32;9443:52;;;9491:1;9488;9481:12;9443:52;9531:9;9518:23;-1:-1:-1;;;;;9556:6:1;9553:30;9550:50;;;9596:1;9593;9586:12;9550:50;9619:49;9660:7;9651:6;9640:9;9636:22;9619:49;:::i;10010:394::-;10087:6;10095;10148:2;10136:9;10127:7;10123:23;10119:32;10116:52;;;10164:1;10161;10154:12;10116:52;10187:29;10206:9;10187:29;:::i;:::-;10177:39;;10267:2;10256:9;10252:18;10239:32;-1:-1:-1;;;;;10286:6:1;10283:30;10280:50;;;10326:1;10323;10316:12;10409:537;10504:6;10512;10520;10528;10581:3;10569:9;10560:7;10556:23;10552:33;10549:53;;;10598:1;10595;10588:12;10549:53;10621:29;10640:9;10621:29;:::i;:::-;10611:39;;10669:38;10703:2;10692:9;10688:18;10669:38;:::i;:::-;10659:48;;10754:2;10743:9;10739:18;10726:32;10716:42;;10809:2;10798:9;10794:18;10781:32;-1:-1:-1;;;;;10828:6:1;10825:30;10822:50;;;10868:1;10865;10858:12;10822:50;10891:49;10932:7;10923:6;10912:9;10908:22;10891:49;:::i;:::-;10881:59;;;10409:537;;;;;;;:::o;10951:266::-;11147:3;11132:19;;11160:51;11136:9;11193:6;11160:51;:::i;11222:615::-;11308:6;11316;11369:2;11357:9;11348:7;11344:23;11340:32;11337:52;;;11385:1;11382;11375:12;11337:52;11425:9;11412:23;-1:-1:-1;;;;;11495:2:1;11487:6;11484:14;11481:34;;;11511:1;11508;11501:12;11481:34;11549:6;11538:9;11534:22;11524:32;;11594:7;11587:4;11583:2;11579:13;11575:27;11565:55;;11616:1;11613;11606:12;11565:55;11656:2;11643:16;11682:2;11674:6;11671:14;11668:34;;;11698:1;11695;11688:12;11668:34;11751:7;11746:2;11736:6;11733:1;11729:14;11725:2;11721:23;11717:32;11714:45;11711:65;;;11772:1;11769;11762:12;11711:65;11803:2;11795:11;;;;;11825:6;;-1:-1:-1;11222:615:1;;-1:-1:-1;;;;11222:615:1:o;11842:260::-;11910:6;11918;11971:2;11959:9;11950:7;11946:23;11942:32;11939:52;;;11987:1;11984;11977:12;11939:52;12010:29;12029:9;12010:29;:::i;:::-;12000:39;;12058:38;12092:2;12081:9;12077:18;12058:38;:::i;12107:380::-;12186:1;12182:12;;;;12229;;;12250:61;;12304:4;12296:6;12292:17;12282:27;;12250:61;12357:2;12349:6;12346:14;12326:18;12323:38;12320:161;;12403:10;12398:3;12394:20;12391:1;12384:31;12438:4;12435:1;12428:15;12466:4;12463:1;12456:15;12320:161;;12107:380;;;:::o;13062:127::-;13123:10;13118:3;13114:20;13111:1;13104:31;13154:4;13151:1;13144:15;13178:4;13175:1;13168:15;14298:127;14359:10;14354:3;14350:20;14347:1;14340:31;14390:4;14387:1;14380:15;14414:4;14411:1;14404:15;14430:128;14470:3;14501:1;14497:6;14494:1;14491:13;14488:39;;;14507:18;;:::i;:::-;-1:-1:-1;14543:9:1;;14430:128::o;14916:344::-;15118:2;15100:21;;;15157:2;15137:18;;;15130:30;-1:-1:-1;;;15191:2:1;15176:18;;15169:50;15251:2;15236:18;;14916:344::o;16020:168::-;16060:7;16126:1;16122;16118:6;16114:14;16111:1;16108:21;16103:1;16096:9;16089:17;16085:45;16082:71;;;16133:18;;:::i;:::-;-1:-1:-1;16173:9:1;;16020:168::o;18030:1527::-;18254:3;18292:6;18286:13;18318:4;18331:51;18375:6;18370:3;18365:2;18357:6;18353:15;18331:51;:::i;:::-;18445:13;;18404:16;;;;18467:55;18445:13;18404:16;18489:15;;;18467:55;:::i;:::-;18611:13;;18544:20;;;18584:1;;18671;18693:18;;;;18746;;;;18773:93;;18851:4;18841:8;18837:19;18825:31;;18773:93;18914:2;18904:8;18901:16;18881:18;18878:40;18875:167;;-1:-1:-1;;;18941:33:1;;18997:4;18994:1;18987:15;19027:4;18948:3;19015:17;18875:167;19058:18;19085:110;;;;19209:1;19204:328;;;;19051:481;;19085:110;-1:-1:-1;;19120:24:1;;19106:39;;19165:20;;;;-1:-1:-1;19085:110:1;;19204:328;17977:1;17970:14;;;18014:4;18001:18;;19299:1;19313:169;19327:8;19324:1;19321:15;19313:169;;;19409:14;;19394:13;;;19387:37;19452:16;;;;19344:10;;19313:169;;;19317:3;;19513:8;19506:5;19502:20;19495:27;;19051:481;-1:-1:-1;19548:3:1;;18030:1527;-1:-1:-1;;;;;;;;;;;18030:1527:1:o;19914:135::-;19953:3;19974:17;;;19971:43;;19994:18;;:::i;:::-;-1:-1:-1;20041:1:1;20030:13;;19914:135::o;20770:245::-;20837:6;20890:2;20878:9;20869:7;20865:23;20861:32;20858:52;;;20906:1;20903;20896:12;20858:52;20938:9;20932:16;20957:28;20979:5;20957:28;:::i;21381:127::-;21442:10;21437:3;21433:20;21430:1;21423:31;21473:4;21470:1;21463:15;21497:4;21494:1;21487:15;21513:120;21553:1;21579;21569:35;;21584:18;;:::i;:::-;-1:-1:-1;21618:9:1;;21513:120::o;21638:125::-;21678:4;21706:1;21703;21700:8;21697:34;;;21711:18;;:::i;:::-;-1:-1:-1;21748:9:1;;21638:125::o;21768:112::-;21800:1;21826;21816:35;;21831:18;;:::i;:::-;-1:-1:-1;21865:9:1;;21768:112::o;21885:489::-;-1:-1:-1;;;;;22154:15:1;;;22136:34;;22206:15;;22201:2;22186:18;;22179:43;22253:2;22238:18;;22231:34;;;22301:3;22296:2;22281:18;;22274:31;;;22079:4;;22322:46;;22348:19;;22340:6;22322:46;:::i;:::-;22314:54;21885:489;-1:-1:-1;;;;;;21885:489:1:o;22379:249::-;22448:6;22501:2;22489:9;22480:7;22476:23;22472:32;22469:52;;;22517:1;22514;22507:12;22469:52;22549:9;22543:16;22568:30;22592:5;22568:30;:::i

Swarm Source

ipfs://fe24cd1b275cc6c4035c82fa9a5af561108d503749e1a79322d4ad7e478e2d1e
Loading...
Loading
Loading...
Loading
[ 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.