ETH Price: $2,521.13 (+0.24%)

Token

MustachioRascals (RASCALS)
 

Overview

Max Total Supply

407 RASCALS

Holders

84

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 RASCALS
0xe53EA28389143DbC561D17C8272A6C137116bd03
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MustachioRascals

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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



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



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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
    0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                    // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                    // before an unintialized ownership slot
                    // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                    // Hence, `curr` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    while (packed == 0) {
                        packed = _packedOwnerships[--curr];
                    }
                    return packed;
                }
            }
    }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
        _startTokenId() <= tokenId &&
        tokenId < _currentIndex && // If within bounds,
        _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
    private
    view
    returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
        uint256 end = startTokenId + quantity;

        // Use assembly to loop and emit the `Transfer` event for gas savings.
        // The duplicated `log4` removes an extra check and reduces stack juggling.
        // The assembly, together with the surrounding Solidity code, have been
        // delicately arranged to nudge the compiler into producing optimized opcodes.
        assembly {
        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            toMasked := and(to, _BITMASK_ADDRESS)
        // Emit the `Transfer` event.
            log4(
            0, // Start of data (0, since no data).
            0, // End of data (0, since no data).
            _TRANSFER_EVENT_SIGNATURE, // Signature.
            0, // `address(0)`.
            toMasked, // `to`.
            startTokenId // `tokenId`.
            )

        // The `iszero(eq(,))` check ensures that large values of `quantity`
        // that overflows uint256 will make the loop run out of gas.
        // The compiler will optimize the `iszero` away for performance.
            for {
                let tokenId := add(startTokenId, 1)
            } iszero(eq(tokenId, end)) {
                tokenId := add(tokenId, 1)
            } {
            // Emit the `Transfer` event. Similar to above.
                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
            }
        }
        if (toMasked == 0) revert MintToZeroAddress();

        _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
    }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
        // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
        // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
        // We will need 1 word for the trailing zeros padding, 1 word for the length,
        // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
        // Update the free memory pointer to allocate.
            mstore(0x40, m)
        // Assign the `str` to the end.
            str := sub(m, 0x20)
        // Zeroize the slot after the string.
            mstore(str, 0)

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

        // We write the string from rightmost digit to leftmost digit.
        // The following is essentially a do-while loop that also handles the zero case.
        // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
            // Write the character to the pointer.
            // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
            // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/MustachioRascals.sol


pragma solidity ^0.8.4;




contract MustachioRascals is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public notRevealedUri;
    uint256 public cost1 = 0.025 ether;
    uint256 public cost2 = 0.018 ether;
    uint256 public cost3 = 0.014 ether;
    uint256 public cost4 = 0.009 ether;
    uint256 public whitelistedPricePercentage = 75;
    uint256 public maxSupply = 10000;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhitelisted = true;

    mapping(address => uint) freeMints;
    mapping(address => bool) whitelistedAddresses;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        if(msg.sender != owner()) {
            bool _isWhitelisted = isWhitelisted(msg.sender);

            if(onlyWhitelisted == true) {
                require(isWhitelisted(msg.sender), "user is not whitelisted");
            }

            uint256 cost = 0;

            if(_mintAmount <= 2) {
                cost = (_isWhitelisted) ? (cost1 * whitelistedPricePercentage) / 100 : cost1;
            } else if(_mintAmount <= 4) {
                cost = (_isWhitelisted) ? (cost2 * whitelistedPricePercentage) / 100 : cost2;
            } else if(_mintAmount <= 9) {
                cost = (_isWhitelisted) ? (cost3 * whitelistedPricePercentage) / 100 : cost3;
            } else {
                cost = (_isWhitelisted) ? (cost4 * whitelistedPricePercentage) / 100 : cost4;
            }

            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

        _mint(msg.sender, _mintAmount);
    }

    function freeMint() public {
        require(!paused, "the contract is paused");

        uint256 quantity = freeMintQuantity(msg.sender);
        uint256 supply = totalSupply();

        require(supply + quantity <= maxSupply, "max NFT limit exceeded");
        require(quantity > 0, "No free mints available for this account.");

        _mint(msg.sender, quantity);
        freeMints[msg.sender] = 0;
    }

    function freeMintQuantity(address _address) public view returns (uint256) {
        return freeMints[_address];
    }

    function isWhitelisted(address _user) public view returns (bool) {
        return whitelistedAddresses[_user];
    }

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

        if(revealed == false) {
            return string(abi.encodePacked(notRevealedUri, tokenId.toString()));
        }

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

    function airdrop(address _address, uint256 quantity) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "max NFT limit exceeded");

        _mint(_address, quantity);
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setCosts(uint256 _cost1, uint256 _cost2, uint256 _cost3, uint256 _cost4) public onlyOwner {
        cost1 = _cost1;
        cost2 = _cost2;
        cost3 = _cost3;
        cost4 = _cost4;
    }

    function setWhitelistedPricePercentage(uint256 _whitelistedPricePercentage) public onlyOwner {
        whitelistedPricePercentage = _whitelistedPricePercentage;
    }

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

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

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

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    function setFreeMints(address[] calldata _freeMints, uint[] calldata _quantity) public onlyOwner {
        for(uint256 i = 0; i < _freeMints.length; i++) {
            freeMints[_freeMints[i]] = _quantity[i];
        }
    }

    function setWhitelistedAddresses(address[] calldata _whitelistedAddresses, bool _isWhitelisted) public onlyOwner {
        for(uint256 i = 0; i < _whitelistedAddresses.length; i++) {
            whitelistedAddresses[_whitelistedAddresses[i]] = _isWhitelisted;
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"freeMintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost1","type":"uint256"},{"internalType":"uint256","name":"_cost2","type":"uint256"},{"internalType":"uint256","name":"_cost3","type":"uint256"},{"internalType":"uint256","name":"_cost4","type":"uint256"}],"name":"setCosts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_freeMints","type":"address[]"},{"internalType":"uint256[]","name":"_quantity","type":"uint256[]"}],"name":"setFreeMints","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":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistedAddresses","type":"address[]"},{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"setWhitelistedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistedPricePercentage","type":"uint256"}],"name":"setWhitelistedPricePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistedPricePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526658d15e17628000600b55663ff2e795f50000600c556631bced02db0000600d55661ff973cafa8000600e55604b600f556127106010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200009957600080fd5b50604051620046d4380380620046d48339818101604052810190620000bf9190620004d8565b83838160029080519060200190620000d9929190620003aa565b508060039080519060200190620000f2929190620003aa565b50620001036200015760201b60201c565b60008190555050506200012b6200011f6200015c60201b60201c565b6200016460201b60201c565b6200013c826200022a60201b60201c565b6200014d81620002d560201b60201c565b50505050620007cd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023a6200015c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002606200038060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b090620005ed565b60405180910390fd5b8060099080519060200190620002d1929190620003aa565b5050565b620002e56200015c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030b6200038060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035b90620005ed565b60405180910390fd5b80600a90805190602001906200037c929190620003aa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b890620006b5565b90600052602060002090601f016020900481019282620003dc576000855562000428565b82601f10620003f757805160ff191683800117855562000428565b8280016001018555821562000428579182015b82811115620004275782518255916020019190600101906200040a565b5b5090506200043791906200043b565b5090565b5b80821115620004565760008160009055506001016200043c565b5090565b6000620004716200046b8462000638565b6200060f565b90508281526020810184848401111562000490576200048f62000784565b5b6200049d8482856200067f565b509392505050565b600082601f830112620004bd57620004bc6200077f565b5b8151620004cf8482602086016200045a565b91505092915050565b60008060008060808587031215620004f557620004f46200078e565b5b600085015167ffffffffffffffff81111562000516576200051562000789565b5b6200052487828801620004a5565b945050602085015167ffffffffffffffff81111562000548576200054762000789565b5b6200055687828801620004a5565b935050604085015167ffffffffffffffff8111156200057a576200057962000789565b5b6200058887828801620004a5565b925050606085015167ffffffffffffffff811115620005ac57620005ab62000789565b5b620005ba87828801620004a5565b91505092959194509250565b6000620005d56020836200066e565b9150620005e282620007a4565b602082019050919050565b600060208201905081810360008301526200060881620005c6565b9050919050565b60006200061b6200062e565b9050620006298282620006eb565b919050565b6000604051905090565b600067ffffffffffffffff82111562000656576200065562000750565b5b620006618262000793565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069f57808201518184015260208101905062000682565b83811115620006af576000848401525b50505050565b60006002820490506001821680620006ce57607f821691505b60208210811415620006e557620006e462000721565b5b50919050565b620006f68262000793565b810181811067ffffffffffffffff8211171562000718576200071762000750565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ef780620007dd6000396000f3fe60806040526004361061025c5760003560e01c80635c975abb116101445780639c70b512116100b6578063b88d4fde1161007a578063b88d4fde14610866578063c87b56dd14610882578063d5abeb01146108bf578063e985e9c5146108ea578063f2c4ce1e14610927578063f2fde38b146109505761025c565b80639c70b512146107b6578063a0712d68146107e1578063a22cb465146107fd578063a475b5dd14610826578063b25ec0b81461083d5761025c565b8063715018a611610108578063715018a6146106cc57806385584159146106e35780638ba4cc3c1461070c5780638da5cb5b1461073557806395d89b41146107605780639a1b28851461078b5761025c565b80635c975abb146105d15780636352211e146105fc5780636503b88e146106395780636c0360eb1461066457806370a082311461068f5761025c565b80632f893de7116101dd57806342842e0e116101a157806342842e0e146104f6578063518302271461051257806353e203151461053d57806355f804b314610566578063590762d11461058f5780635b70ea9f146105ba5761025c565b80632f893de71461042557806333573dc21461044e5780633af32abf146104795780633c952764146104b65780633ccfd60b146104df5761025c565b8063081c8c4411610224578063081c8c441461036c578063082d9a9e14610397578063095ea7b3146103c257806318160ddd146103de57806323b872dd146104095761025c565b806301ffc9a71461026157806302329a291461029e57806302df4d6d146102c757806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906131b3565b610979565b604051610295919061365b565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613186565b610a0b565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612ee2565b610aa4565b6040516102fb91906137b8565b60405180910390f35b34801561031057600080fd5b50610319610aed565b6040516103269190613676565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613256565b610b7f565b60405161036391906135f4565b60405180910390f35b34801561037857600080fd5b50610381610bfe565b60405161038e9190613676565b60405180910390f35b3480156103a357600080fd5b506103ac610c8c565b6040516103b991906137b8565b60405180910390f35b6103dc60048036038101906103d79190613065565b610c92565b005b3480156103ea57600080fd5b506103f3610dd6565b60405161040091906137b8565b60405180910390f35b610423600480360381019061041e9190612f4f565b610ded565b005b34801561043157600080fd5b5061044c60048036038101906104479190613126565b611112565b005b34801561045a57600080fd5b50610463611233565b60405161047091906137b8565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612ee2565b611239565b6040516104ad919061365b565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613186565b61128f565b005b3480156104eb57600080fd5b506104f4611328565b005b610510600480360381019061050b9190612f4f565b611424565b005b34801561051e57600080fd5b50610527611444565b604051610534919061365b565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613256565b611457565b005b34801561057257600080fd5b5061058d6004803603810190610588919061320d565b6114dd565b005b34801561059b57600080fd5b506105a4611573565b6040516105b191906137b8565b60405180910390f35b3480156105c657600080fd5b506105cf611579565b005b3480156105dd57600080fd5b506105e66116c8565b6040516105f3919061365b565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190613256565b6116db565b60405161063091906135f4565b60405180910390f35b34801561064557600080fd5b5061064e6116ed565b60405161065b91906137b8565b60405180910390f35b34801561067057600080fd5b506106796116f3565b6040516106869190613676565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612ee2565b611781565b6040516106c391906137b8565b60405180910390f35b3480156106d857600080fd5b506106e161183a565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906130a5565b6118c2565b005b34801561071857600080fd5b50610733600480360381019061072e9190613065565b6119ea565b005b34801561074157600080fd5b5061074a611ad1565b60405161075791906135f4565b60405180910390f35b34801561076c57600080fd5b50610775611afb565b6040516107829190613676565b60405180910390f35b34801561079757600080fd5b506107a0611b8d565b6040516107ad91906137b8565b60405180910390f35b3480156107c257600080fd5b506107cb611b93565b6040516107d8919061365b565b60405180910390f35b6107fb60048036038101906107f69190613256565b611ba6565b005b34801561080957600080fd5b50610824600480360381019061081f9190613025565b611e7c565b005b34801561083257600080fd5b5061083b611f87565b005b34801561084957600080fd5b50610864600480360381019061085f9190613283565b612020565b005b610880600480360381019061087b9190612fa2565b6120be565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613256565b612131565b6040516108b69190613676565b60405180910390f35b3480156108cb57600080fd5b506108d4612227565b6040516108e191906137b8565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190612f0f565b61222d565b60405161091e919061365b565b60405180910390f35b34801561093357600080fd5b5061094e6004803603810190610949919061320d565b6122c1565b005b34801561095c57600080fd5b5061097760048036038101906109729190612ee2565b612357565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a045750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a1361244f565b73ffffffffffffffffffffffffffffffffffffffff16610a31611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906136f8565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060028054610afc90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890613a88565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b6000610b8a82612457565b610bc0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610c0b90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3790613a88565b8015610c845780601f10610c5957610100808354040283529160200191610c84565b820191906000526020600020905b815481529060010190602001808311610c6757829003601f168201915b505050505081565b600e5481565b6000610c9d826116db565b90508073ffffffffffffffffffffffffffffffffffffffff16610cbe6124b6565b73ffffffffffffffffffffffffffffffffffffffff1614610d2157610cea81610ce56124b6565b61222d565b610d20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610de06124be565b6001546000540303905090565b6000610df8826124c3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6b84612591565b91509150610e818187610e7c6124b6565b6125b8565b610ecd57610e9686610e916124b6565b61222d565b610ecc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4186868660016125fc565b8015610f4c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101a85610ff6888887612602565b7c02000000000000000000000000000000000000000000000000000000001761262a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110a25760006001850190506000600460008381526020019081526020016000205414156110a057600054811461109f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110a8686866001612655565b505050505050565b61111a61244f565b73ffffffffffffffffffffffffffffffffffffffff16611138611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906136f8565b60405180910390fd5b60005b8383905081101561122d5781601360008686858181106111b4576111b3613bf2565b5b90506020020160208101906111c99190612ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061122590613aeb565b915050611191565b50505050565b600b5481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61129761244f565b73ffffffffffffffffffffffffffffffffffffffff166112b5611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611302906136f8565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b61133061244f565b73ffffffffffffffffffffffffffffffffffffffff1661134e611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906136f8565b60405180910390fd5b60006113ae611ad1565b73ffffffffffffffffffffffffffffffffffffffff16476040516113d1906135df565b60006040518083038185875af1925050503d806000811461140e576040519150601f19603f3d011682016040523d82523d6000602084013e611413565b606091505b505090508061142157600080fd5b50565b61143f838383604051806020016040528060008152506120be565b505050565b601160019054906101000a900460ff1681565b61145f61244f565b73ffffffffffffffffffffffffffffffffffffffff1661147d611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906136f8565b60405180910390fd5b80600f8190555050565b6114e561244f565b73ffffffffffffffffffffffffffffffffffffffff16611503611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906136f8565b60405180910390fd5b806009908051906020019061156f929190612c4a565b5050565b600f5481565b601160009054906101000a900460ff16156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613718565b60405180910390fd5b60006115d433610aa4565b905060006115e0610dd6565b905060105482826115f191906138bd565b1115611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611629906136d8565b60405180910390fd5b60008211611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c906136b8565b60405180910390fd5b61167f338361265b565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b601160009054906101000a900460ff1681565b60006116e6826124c3565b9050919050565b600d5481565b6009805461170090613a88565b80601f016020809104026020016040519081016040528092919081815260200182805461172c90613a88565b80156117795780601f1061174e57610100808354040283529160200191611779565b820191906000526020600020905b81548152906001019060200180831161175c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61184261244f565b73ffffffffffffffffffffffffffffffffffffffff16611860611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad906136f8565b60405180910390fd5b6118c06000612818565b565b6118ca61244f565b73ffffffffffffffffffffffffffffffffffffffff166118e8611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906136f8565b60405180910390fd5b60005b848490508110156119e35782828281811061195f5761195e613bf2565b5b905060200201356012600087878581811061197d5761197c613bf2565b5b90506020020160208101906119929190612ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119db90613aeb565b915050611941565b5050505050565b6119f261244f565b73ffffffffffffffffffffffffffffffffffffffff16611a10611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d906136f8565b60405180910390fd5b6000611a70610dd6565b90506010548282611a8191906138bd565b1115611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906136d8565b60405180910390fd5b611acc838361265b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b0a90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3690613a88565b8015611b835780601f10611b5857610100808354040283529160200191611b83565b820191906000526020600020905b815481529060010190602001808311611b6657829003601f168201915b5050505050905090565b600c5481565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff1615611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613718565b60405180910390fd5b6000611c00610dd6565b905060008211611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613798565b60405180910390fd5b6010548282611c5491906138bd565b1115611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906136d8565b60405180910390fd5b611c9d611ad1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6e576000611cda33611239565b905060011515601160029054906101000a900460ff1615151415611d4157611d0133611239565b611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613778565b60405180910390fd5b5b600060028411611d7c5781611d5857600b54611d75565b6064600f54600b54611d6a9190613944565b611d749190613913565b5b9050611e1d565b60048411611db55781611d9157600c54611dae565b6064600f54600c54611da39190613944565b611dad9190613913565b5b9050611e1c565b60098411611dee5781611dca57600d54611de7565b6064600f54600d54611ddc9190613944565b611de69190613913565b5b9050611e1b565b81611dfb57600e54611e18565b6064600f54600e54611e0d9190613944565b611e179190613913565b5b90505b5b5b8381611e299190613944565b341015611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290613758565b60405180910390fd5b50505b611e78338361265b565b5050565b8060076000611e896124b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f366124b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f7b919061365b565b60405180910390a35050565b611f8f61244f565b73ffffffffffffffffffffffffffffffffffffffff16611fad611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa906136f8565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b61202861244f565b73ffffffffffffffffffffffffffffffffffffffff16612046611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461209c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612093906136f8565b60405180910390fd5b83600b8190555082600c8190555081600d8190555080600e8190555050505050565b6120c9848484610ded565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212b576120f4848484846128de565b61212a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061213c82612457565b61217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290613738565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156121c957600a6121a283612a3e565b6040516020016121b39291906135bb565b6040516020818303038152906040529050612222565b60006121d3612b9f565b905060008151116121f3576040518060200160405280600081525061221e565b806121fd84612a3e565b60405160200161220e929190613597565b6040516020818303038152906040525b9150505b919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c961244f565b73ffffffffffffffffffffffffffffffffffffffff166122e7611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612334906136f8565b60405180910390fd5b80600a9080519060200190612353929190612c4a565b5050565b61235f61244f565b73ffffffffffffffffffffffffffffffffffffffff1661237d611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca906136f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90613698565b60405180910390fd5b61244c81612818565b50565b600033905090565b6000816124626124be565b11158015612471575060005482105b80156124af575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124d26124be565b1161255a576000548110156125595760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612557575b600081141561254d576004600083600190039350838152602001908152602001600020549050612522565b809250505061258c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612619868684612c31565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600082141561269c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a960008483856125fc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612720836127116000866000612602565b61271a85612c3a565b1761262a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127c157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612786565b5060008214156127fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128136000848385612655565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129046124b6565b8786866040518563ffffffff1660e01b8152600401612926949392919061360f565b602060405180830381600087803b15801561294057600080fd5b505af192505050801561297157506040513d601f19601f8201168201806040525081019061296e91906131e0565b60015b6129eb573d80600081146129a1576040519150601f19603f3d011682016040523d82523d6000602084013e6129a6565b606091505b506000815114156129e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b9a565b600082905060005b60008214612ab8578080612aa190613aeb565b915050600a82612ab19190613913565b9150612a8e565b60008167ffffffffffffffff811115612ad457612ad3613c21565b5b6040519080825280601f01601f191660200182016040528015612b065781602001600182028036833780820191505090505b5090505b60008514612b9357600182612b1f919061399e565b9150600a85612b2e9190613b34565b6030612b3a91906138bd565b60f81b818381518110612b5057612b4f613bf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b8c9190613913565b9450612b0a565b8093505050505b919050565b606060098054612bae90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054612bda90613a88565b8015612c275780601f10612bfc57610100808354040283529160200191612c27565b820191906000526020600020905b815481529060010190602001808311612c0a57829003601f168201915b5050505050905090565b60009392505050565b60006001821460e11b9050919050565b828054612c5690613a88565b90600052602060002090601f016020900481019282612c785760008555612cbf565b82601f10612c9157805160ff1916838001178555612cbf565b82800160010185558215612cbf579182015b82811115612cbe578251825591602001919060010190612ca3565b5b509050612ccc9190612cd0565b5090565b5b80821115612ce9576000816000905550600101612cd1565b5090565b6000612d00612cfb846137f8565b6137d3565b905082815260208101848484011115612d1c57612d1b613c5f565b5b612d27848285613a46565b509392505050565b6000612d42612d3d84613829565b6137d3565b905082815260208101848484011115612d5e57612d5d613c5f565b5b612d69848285613a46565b509392505050565b600081359050612d8081613e65565b92915050565b60008083601f840112612d9c57612d9b613c55565b5b8235905067ffffffffffffffff811115612db957612db8613c50565b5b602083019150836020820283011115612dd557612dd4613c5a565b5b9250929050565b60008083601f840112612df257612df1613c55565b5b8235905067ffffffffffffffff811115612e0f57612e0e613c50565b5b602083019150836020820283011115612e2b57612e2a613c5a565b5b9250929050565b600081359050612e4181613e7c565b92915050565b600081359050612e5681613e93565b92915050565b600081519050612e6b81613e93565b92915050565b600082601f830112612e8657612e85613c55565b5b8135612e96848260208601612ced565b91505092915050565b600082601f830112612eb457612eb3613c55565b5b8135612ec4848260208601612d2f565b91505092915050565b600081359050612edc81613eaa565b92915050565b600060208284031215612ef857612ef7613c69565b5b6000612f0684828501612d71565b91505092915050565b60008060408385031215612f2657612f25613c69565b5b6000612f3485828601612d71565b9250506020612f4585828601612d71565b9150509250929050565b600080600060608486031215612f6857612f67613c69565b5b6000612f7686828701612d71565b9350506020612f8786828701612d71565b9250506040612f9886828701612ecd565b9150509250925092565b60008060008060808587031215612fbc57612fbb613c69565b5b6000612fca87828801612d71565b9450506020612fdb87828801612d71565b9350506040612fec87828801612ecd565b925050606085013567ffffffffffffffff81111561300d5761300c613c64565b5b61301987828801612e71565b91505092959194509250565b6000806040838503121561303c5761303b613c69565b5b600061304a85828601612d71565b925050602061305b85828601612e32565b9150509250929050565b6000806040838503121561307c5761307b613c69565b5b600061308a85828601612d71565b925050602061309b85828601612ecd565b9150509250929050565b600080600080604085870312156130bf576130be613c69565b5b600085013567ffffffffffffffff8111156130dd576130dc613c64565b5b6130e987828801612d86565b9450945050602085013567ffffffffffffffff81111561310c5761310b613c64565b5b61311887828801612ddc565b925092505092959194509250565b60008060006040848603121561313f5761313e613c69565b5b600084013567ffffffffffffffff81111561315d5761315c613c64565b5b61316986828701612d86565b9350935050602061317c86828701612e32565b9150509250925092565b60006020828403121561319c5761319b613c69565b5b60006131aa84828501612e32565b91505092915050565b6000602082840312156131c9576131c8613c69565b5b60006131d784828501612e47565b91505092915050565b6000602082840312156131f6576131f5613c69565b5b600061320484828501612e5c565b91505092915050565b60006020828403121561322357613222613c69565b5b600082013567ffffffffffffffff81111561324157613240613c64565b5b61324d84828501612e9f565b91505092915050565b60006020828403121561326c5761326b613c69565b5b600061327a84828501612ecd565b91505092915050565b6000806000806080858703121561329d5761329c613c69565b5b60006132ab87828801612ecd565b94505060206132bc87828801612ecd565b93505060406132cd87828801612ecd565b92505060606132de87828801612ecd565b91505092959194509250565b6132f3816139d2565b82525050565b613302816139e4565b82525050565b60006133138261386f565b61331d8185613885565b935061332d818560208601613a55565b61333681613c6e565b840191505092915050565b600061334c8261387a565b61335681856138a1565b9350613366818560208601613a55565b61336f81613c6e565b840191505092915050565b60006133858261387a565b61338f81856138b2565b935061339f818560208601613a55565b80840191505092915050565b600081546133b881613a88565b6133c281866138b2565b945060018216600081146133dd57600181146133ee57613421565b60ff19831686528186019350613421565b6133f78561385a565b60005b83811015613419578154818901526001820191506020810190506133fa565b838801955050505b50505092915050565b60006134376026836138a1565b915061344282613c7f565b604082019050919050565b600061345a6029836138a1565b915061346582613cce565b604082019050919050565b600061347d6016836138a1565b915061348882613d1d565b602082019050919050565b60006134a06020836138a1565b91506134ab82613d46565b602082019050919050565b60006134c36016836138a1565b91506134ce82613d6f565b602082019050919050565b60006134e6602f836138a1565b91506134f182613d98565b604082019050919050565b6000613509600083613896565b915061351482613de7565b600082019050919050565b600061352c6012836138a1565b915061353782613dea565b602082019050919050565b600061354f6017836138a1565b915061355a82613e13565b602082019050919050565b6000613572601b836138a1565b915061357d82613e3c565b602082019050919050565b61359181613a3c565b82525050565b60006135a3828561337a565b91506135af828461337a565b91508190509392505050565b60006135c782856133ab565b91506135d3828461337a565b91508190509392505050565b60006135ea826134fc565b9150819050919050565b600060208201905061360960008301846132ea565b92915050565b600060808201905061362460008301876132ea565b61363160208301866132ea565b61363e6040830185613588565b81810360608301526136508184613308565b905095945050505050565b600060208201905061367060008301846132f9565b92915050565b600060208201905081810360008301526136908184613341565b905092915050565b600060208201905081810360008301526136b18161342a565b9050919050565b600060208201905081810360008301526136d18161344d565b9050919050565b600060208201905081810360008301526136f181613470565b9050919050565b6000602082019050818103600083015261371181613493565b9050919050565b60006020820190508181036000830152613731816134b6565b9050919050565b60006020820190508181036000830152613751816134d9565b9050919050565b600060208201905081810360008301526137718161351f565b9050919050565b6000602082019050818103600083015261379181613542565b9050919050565b600060208201905081810360008301526137b181613565565b9050919050565b60006020820190506137cd6000830184613588565b92915050565b60006137dd6137ee565b90506137e98282613aba565b919050565b6000604051905090565b600067ffffffffffffffff82111561381357613812613c21565b5b61381c82613c6e565b9050602081019050919050565b600067ffffffffffffffff82111561384457613843613c21565b5b61384d82613c6e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c882613a3c565b91506138d383613a3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390857613907613b65565b5b828201905092915050565b600061391e82613a3c565b915061392983613a3c565b92508261393957613938613b94565b5b828204905092915050565b600061394f82613a3c565b915061395a83613a3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399357613992613b65565b5b828202905092915050565b60006139a982613a3c565b91506139b483613a3c565b9250828210156139c7576139c6613b65565b5b828203905092915050565b60006139dd82613a1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a73578082015181840152602081019050613a58565b83811115613a82576000848401525b50505050565b60006002820490506001821680613aa057607f821691505b60208210811415613ab457613ab3613bc3565b5b50919050565b613ac382613c6e565b810181811067ffffffffffffffff82111715613ae257613ae1613c21565b5b80604052505050565b6000613af682613a3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2957613b28613b65565b5b600182019050919050565b6000613b3f82613a3c565b9150613b4a83613a3c565b925082613b5a57613b59613b94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2066726565206d696e747320617661696c61626c6520666f72207468697360008201527f206163636f756e742e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613e6e816139d2565b8114613e7957600080fd5b50565b613e85816139e4565b8114613e9057600080fd5b50565b613e9c816139f0565b8114613ea757600080fd5b50565b613eb381613a3c565b8114613ebe57600080fd5b5056fea26469706673582212205786ec63ba4fd2400f2c2336a17a3c0ab55c43a697bfb5a67ebf9542d37e11f464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000104d757374616368696f52617363616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752415343414c5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c732d70726572657665616c2f000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80635c975abb116101445780639c70b512116100b6578063b88d4fde1161007a578063b88d4fde14610866578063c87b56dd14610882578063d5abeb01146108bf578063e985e9c5146108ea578063f2c4ce1e14610927578063f2fde38b146109505761025c565b80639c70b512146107b6578063a0712d68146107e1578063a22cb465146107fd578063a475b5dd14610826578063b25ec0b81461083d5761025c565b8063715018a611610108578063715018a6146106cc57806385584159146106e35780638ba4cc3c1461070c5780638da5cb5b1461073557806395d89b41146107605780639a1b28851461078b5761025c565b80635c975abb146105d15780636352211e146105fc5780636503b88e146106395780636c0360eb1461066457806370a082311461068f5761025c565b80632f893de7116101dd57806342842e0e116101a157806342842e0e146104f6578063518302271461051257806353e203151461053d57806355f804b314610566578063590762d11461058f5780635b70ea9f146105ba5761025c565b80632f893de71461042557806333573dc21461044e5780633af32abf146104795780633c952764146104b65780633ccfd60b146104df5761025c565b8063081c8c4411610224578063081c8c441461036c578063082d9a9e14610397578063095ea7b3146103c257806318160ddd146103de57806323b872dd146104095761025c565b806301ffc9a71461026157806302329a291461029e57806302df4d6d146102c757806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906131b3565b610979565b604051610295919061365b565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613186565b610a0b565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190612ee2565b610aa4565b6040516102fb91906137b8565b60405180910390f35b34801561031057600080fd5b50610319610aed565b6040516103269190613676565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613256565b610b7f565b60405161036391906135f4565b60405180910390f35b34801561037857600080fd5b50610381610bfe565b60405161038e9190613676565b60405180910390f35b3480156103a357600080fd5b506103ac610c8c565b6040516103b991906137b8565b60405180910390f35b6103dc60048036038101906103d79190613065565b610c92565b005b3480156103ea57600080fd5b506103f3610dd6565b60405161040091906137b8565b60405180910390f35b610423600480360381019061041e9190612f4f565b610ded565b005b34801561043157600080fd5b5061044c60048036038101906104479190613126565b611112565b005b34801561045a57600080fd5b50610463611233565b60405161047091906137b8565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612ee2565b611239565b6040516104ad919061365b565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613186565b61128f565b005b3480156104eb57600080fd5b506104f4611328565b005b610510600480360381019061050b9190612f4f565b611424565b005b34801561051e57600080fd5b50610527611444565b604051610534919061365b565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613256565b611457565b005b34801561057257600080fd5b5061058d6004803603810190610588919061320d565b6114dd565b005b34801561059b57600080fd5b506105a4611573565b6040516105b191906137b8565b60405180910390f35b3480156105c657600080fd5b506105cf611579565b005b3480156105dd57600080fd5b506105e66116c8565b6040516105f3919061365b565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190613256565b6116db565b60405161063091906135f4565b60405180910390f35b34801561064557600080fd5b5061064e6116ed565b60405161065b91906137b8565b60405180910390f35b34801561067057600080fd5b506106796116f3565b6040516106869190613676565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612ee2565b611781565b6040516106c391906137b8565b60405180910390f35b3480156106d857600080fd5b506106e161183a565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906130a5565b6118c2565b005b34801561071857600080fd5b50610733600480360381019061072e9190613065565b6119ea565b005b34801561074157600080fd5b5061074a611ad1565b60405161075791906135f4565b60405180910390f35b34801561076c57600080fd5b50610775611afb565b6040516107829190613676565b60405180910390f35b34801561079757600080fd5b506107a0611b8d565b6040516107ad91906137b8565b60405180910390f35b3480156107c257600080fd5b506107cb611b93565b6040516107d8919061365b565b60405180910390f35b6107fb60048036038101906107f69190613256565b611ba6565b005b34801561080957600080fd5b50610824600480360381019061081f9190613025565b611e7c565b005b34801561083257600080fd5b5061083b611f87565b005b34801561084957600080fd5b50610864600480360381019061085f9190613283565b612020565b005b610880600480360381019061087b9190612fa2565b6120be565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613256565b612131565b6040516108b69190613676565b60405180910390f35b3480156108cb57600080fd5b506108d4612227565b6040516108e191906137b8565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190612f0f565b61222d565b60405161091e919061365b565b60405180910390f35b34801561093357600080fd5b5061094e6004803603810190610949919061320d565b6122c1565b005b34801561095c57600080fd5b5061097760048036038101906109729190612ee2565b612357565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a045750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a1361244f565b73ffffffffffffffffffffffffffffffffffffffff16610a31611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906136f8565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060028054610afc90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890613a88565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b6000610b8a82612457565b610bc0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610c0b90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3790613a88565b8015610c845780601f10610c5957610100808354040283529160200191610c84565b820191906000526020600020905b815481529060010190602001808311610c6757829003601f168201915b505050505081565b600e5481565b6000610c9d826116db565b90508073ffffffffffffffffffffffffffffffffffffffff16610cbe6124b6565b73ffffffffffffffffffffffffffffffffffffffff1614610d2157610cea81610ce56124b6565b61222d565b610d20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610de06124be565b6001546000540303905090565b6000610df8826124c3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6b84612591565b91509150610e818187610e7c6124b6565b6125b8565b610ecd57610e9686610e916124b6565b61222d565b610ecc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4186868660016125fc565b8015610f4c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101a85610ff6888887612602565b7c02000000000000000000000000000000000000000000000000000000001761262a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110a25760006001850190506000600460008381526020019081526020016000205414156110a057600054811461109f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110a8686866001612655565b505050505050565b61111a61244f565b73ffffffffffffffffffffffffffffffffffffffff16611138611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906136f8565b60405180910390fd5b60005b8383905081101561122d5781601360008686858181106111b4576111b3613bf2565b5b90506020020160208101906111c99190612ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061122590613aeb565b915050611191565b50505050565b600b5481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61129761244f565b73ffffffffffffffffffffffffffffffffffffffff166112b5611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611302906136f8565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b61133061244f565b73ffffffffffffffffffffffffffffffffffffffff1661134e611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906136f8565b60405180910390fd5b60006113ae611ad1565b73ffffffffffffffffffffffffffffffffffffffff16476040516113d1906135df565b60006040518083038185875af1925050503d806000811461140e576040519150601f19603f3d011682016040523d82523d6000602084013e611413565b606091505b505090508061142157600080fd5b50565b61143f838383604051806020016040528060008152506120be565b505050565b601160019054906101000a900460ff1681565b61145f61244f565b73ffffffffffffffffffffffffffffffffffffffff1661147d611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906136f8565b60405180910390fd5b80600f8190555050565b6114e561244f565b73ffffffffffffffffffffffffffffffffffffffff16611503611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906136f8565b60405180910390fd5b806009908051906020019061156f929190612c4a565b5050565b600f5481565b601160009054906101000a900460ff16156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613718565b60405180910390fd5b60006115d433610aa4565b905060006115e0610dd6565b905060105482826115f191906138bd565b1115611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611629906136d8565b60405180910390fd5b60008211611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c906136b8565b60405180910390fd5b61167f338361265b565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b601160009054906101000a900460ff1681565b60006116e6826124c3565b9050919050565b600d5481565b6009805461170090613a88565b80601f016020809104026020016040519081016040528092919081815260200182805461172c90613a88565b80156117795780601f1061174e57610100808354040283529160200191611779565b820191906000526020600020905b81548152906001019060200180831161175c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61184261244f565b73ffffffffffffffffffffffffffffffffffffffff16611860611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad906136f8565b60405180910390fd5b6118c06000612818565b565b6118ca61244f565b73ffffffffffffffffffffffffffffffffffffffff166118e8611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906136f8565b60405180910390fd5b60005b848490508110156119e35782828281811061195f5761195e613bf2565b5b905060200201356012600087878581811061197d5761197c613bf2565b5b90506020020160208101906119929190612ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119db90613aeb565b915050611941565b5050505050565b6119f261244f565b73ffffffffffffffffffffffffffffffffffffffff16611a10611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d906136f8565b60405180910390fd5b6000611a70610dd6565b90506010548282611a8191906138bd565b1115611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906136d8565b60405180910390fd5b611acc838361265b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b0a90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3690613a88565b8015611b835780601f10611b5857610100808354040283529160200191611b83565b820191906000526020600020905b815481529060010190602001808311611b6657829003601f168201915b5050505050905090565b600c5481565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff1615611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613718565b60405180910390fd5b6000611c00610dd6565b905060008211611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613798565b60405180910390fd5b6010548282611c5491906138bd565b1115611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906136d8565b60405180910390fd5b611c9d611ad1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6e576000611cda33611239565b905060011515601160029054906101000a900460ff1615151415611d4157611d0133611239565b611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790613778565b60405180910390fd5b5b600060028411611d7c5781611d5857600b54611d75565b6064600f54600b54611d6a9190613944565b611d749190613913565b5b9050611e1d565b60048411611db55781611d9157600c54611dae565b6064600f54600c54611da39190613944565b611dad9190613913565b5b9050611e1c565b60098411611dee5781611dca57600d54611de7565b6064600f54600d54611ddc9190613944565b611de69190613913565b5b9050611e1b565b81611dfb57600e54611e18565b6064600f54600e54611e0d9190613944565b611e179190613913565b5b90505b5b5b8381611e299190613944565b341015611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290613758565b60405180910390fd5b50505b611e78338361265b565b5050565b8060076000611e896124b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f366124b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f7b919061365b565b60405180910390a35050565b611f8f61244f565b73ffffffffffffffffffffffffffffffffffffffff16611fad611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa906136f8565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b61202861244f565b73ffffffffffffffffffffffffffffffffffffffff16612046611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461209c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612093906136f8565b60405180910390fd5b83600b8190555082600c8190555081600d8190555080600e8190555050505050565b6120c9848484610ded565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212b576120f4848484846128de565b61212a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061213c82612457565b61217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290613738565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156121c957600a6121a283612a3e565b6040516020016121b39291906135bb565b6040516020818303038152906040529050612222565b60006121d3612b9f565b905060008151116121f3576040518060200160405280600081525061221e565b806121fd84612a3e565b60405160200161220e929190613597565b6040516020818303038152906040525b9150505b919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c961244f565b73ffffffffffffffffffffffffffffffffffffffff166122e7611ad1565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612334906136f8565b60405180910390fd5b80600a9080519060200190612353929190612c4a565b5050565b61235f61244f565b73ffffffffffffffffffffffffffffffffffffffff1661237d611ad1565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca906136f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90613698565b60405180910390fd5b61244c81612818565b50565b600033905090565b6000816124626124be565b11158015612471575060005482105b80156124af575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124d26124be565b1161255a576000548110156125595760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612557575b600081141561254d576004600083600190039350838152602001908152602001600020549050612522565b809250505061258c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612619868684612c31565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600082141561269c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a960008483856125fc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612720836127116000866000612602565b61271a85612c3a565b1761262a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127c157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612786565b5060008214156127fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128136000848385612655565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129046124b6565b8786866040518563ffffffff1660e01b8152600401612926949392919061360f565b602060405180830381600087803b15801561294057600080fd5b505af192505050801561297157506040513d601f19601f8201168201806040525081019061296e91906131e0565b60015b6129eb573d80600081146129a1576040519150601f19603f3d011682016040523d82523d6000602084013e6129a6565b606091505b506000815114156129e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b9a565b600082905060005b60008214612ab8578080612aa190613aeb565b915050600a82612ab19190613913565b9150612a8e565b60008167ffffffffffffffff811115612ad457612ad3613c21565b5b6040519080825280601f01601f191660200182016040528015612b065781602001600182028036833780820191505090505b5090505b60008514612b9357600182612b1f919061399e565b9150600a85612b2e9190613b34565b6030612b3a91906138bd565b60f81b818381518110612b5057612b4f613bf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b8c9190613913565b9450612b0a565b8093505050505b919050565b606060098054612bae90613a88565b80601f0160208091040260200160405190810160405280929190818152602001828054612bda90613a88565b8015612c275780601f10612bfc57610100808354040283529160200191612c27565b820191906000526020600020905b815481529060010190602001808311612c0a57829003601f168201915b5050505050905090565b60009392505050565b60006001821460e11b9050919050565b828054612c5690613a88565b90600052602060002090601f016020900481019282612c785760008555612cbf565b82601f10612c9157805160ff1916838001178555612cbf565b82800160010185558215612cbf579182015b82811115612cbe578251825591602001919060010190612ca3565b5b509050612ccc9190612cd0565b5090565b5b80821115612ce9576000816000905550600101612cd1565b5090565b6000612d00612cfb846137f8565b6137d3565b905082815260208101848484011115612d1c57612d1b613c5f565b5b612d27848285613a46565b509392505050565b6000612d42612d3d84613829565b6137d3565b905082815260208101848484011115612d5e57612d5d613c5f565b5b612d69848285613a46565b509392505050565b600081359050612d8081613e65565b92915050565b60008083601f840112612d9c57612d9b613c55565b5b8235905067ffffffffffffffff811115612db957612db8613c50565b5b602083019150836020820283011115612dd557612dd4613c5a565b5b9250929050565b60008083601f840112612df257612df1613c55565b5b8235905067ffffffffffffffff811115612e0f57612e0e613c50565b5b602083019150836020820283011115612e2b57612e2a613c5a565b5b9250929050565b600081359050612e4181613e7c565b92915050565b600081359050612e5681613e93565b92915050565b600081519050612e6b81613e93565b92915050565b600082601f830112612e8657612e85613c55565b5b8135612e96848260208601612ced565b91505092915050565b600082601f830112612eb457612eb3613c55565b5b8135612ec4848260208601612d2f565b91505092915050565b600081359050612edc81613eaa565b92915050565b600060208284031215612ef857612ef7613c69565b5b6000612f0684828501612d71565b91505092915050565b60008060408385031215612f2657612f25613c69565b5b6000612f3485828601612d71565b9250506020612f4585828601612d71565b9150509250929050565b600080600060608486031215612f6857612f67613c69565b5b6000612f7686828701612d71565b9350506020612f8786828701612d71565b9250506040612f9886828701612ecd565b9150509250925092565b60008060008060808587031215612fbc57612fbb613c69565b5b6000612fca87828801612d71565b9450506020612fdb87828801612d71565b9350506040612fec87828801612ecd565b925050606085013567ffffffffffffffff81111561300d5761300c613c64565b5b61301987828801612e71565b91505092959194509250565b6000806040838503121561303c5761303b613c69565b5b600061304a85828601612d71565b925050602061305b85828601612e32565b9150509250929050565b6000806040838503121561307c5761307b613c69565b5b600061308a85828601612d71565b925050602061309b85828601612ecd565b9150509250929050565b600080600080604085870312156130bf576130be613c69565b5b600085013567ffffffffffffffff8111156130dd576130dc613c64565b5b6130e987828801612d86565b9450945050602085013567ffffffffffffffff81111561310c5761310b613c64565b5b61311887828801612ddc565b925092505092959194509250565b60008060006040848603121561313f5761313e613c69565b5b600084013567ffffffffffffffff81111561315d5761315c613c64565b5b61316986828701612d86565b9350935050602061317c86828701612e32565b9150509250925092565b60006020828403121561319c5761319b613c69565b5b60006131aa84828501612e32565b91505092915050565b6000602082840312156131c9576131c8613c69565b5b60006131d784828501612e47565b91505092915050565b6000602082840312156131f6576131f5613c69565b5b600061320484828501612e5c565b91505092915050565b60006020828403121561322357613222613c69565b5b600082013567ffffffffffffffff81111561324157613240613c64565b5b61324d84828501612e9f565b91505092915050565b60006020828403121561326c5761326b613c69565b5b600061327a84828501612ecd565b91505092915050565b6000806000806080858703121561329d5761329c613c69565b5b60006132ab87828801612ecd565b94505060206132bc87828801612ecd565b93505060406132cd87828801612ecd565b92505060606132de87828801612ecd565b91505092959194509250565b6132f3816139d2565b82525050565b613302816139e4565b82525050565b60006133138261386f565b61331d8185613885565b935061332d818560208601613a55565b61333681613c6e565b840191505092915050565b600061334c8261387a565b61335681856138a1565b9350613366818560208601613a55565b61336f81613c6e565b840191505092915050565b60006133858261387a565b61338f81856138b2565b935061339f818560208601613a55565b80840191505092915050565b600081546133b881613a88565b6133c281866138b2565b945060018216600081146133dd57600181146133ee57613421565b60ff19831686528186019350613421565b6133f78561385a565b60005b83811015613419578154818901526001820191506020810190506133fa565b838801955050505b50505092915050565b60006134376026836138a1565b915061344282613c7f565b604082019050919050565b600061345a6029836138a1565b915061346582613cce565b604082019050919050565b600061347d6016836138a1565b915061348882613d1d565b602082019050919050565b60006134a06020836138a1565b91506134ab82613d46565b602082019050919050565b60006134c36016836138a1565b91506134ce82613d6f565b602082019050919050565b60006134e6602f836138a1565b91506134f182613d98565b604082019050919050565b6000613509600083613896565b915061351482613de7565b600082019050919050565b600061352c6012836138a1565b915061353782613dea565b602082019050919050565b600061354f6017836138a1565b915061355a82613e13565b602082019050919050565b6000613572601b836138a1565b915061357d82613e3c565b602082019050919050565b61359181613a3c565b82525050565b60006135a3828561337a565b91506135af828461337a565b91508190509392505050565b60006135c782856133ab565b91506135d3828461337a565b91508190509392505050565b60006135ea826134fc565b9150819050919050565b600060208201905061360960008301846132ea565b92915050565b600060808201905061362460008301876132ea565b61363160208301866132ea565b61363e6040830185613588565b81810360608301526136508184613308565b905095945050505050565b600060208201905061367060008301846132f9565b92915050565b600060208201905081810360008301526136908184613341565b905092915050565b600060208201905081810360008301526136b18161342a565b9050919050565b600060208201905081810360008301526136d18161344d565b9050919050565b600060208201905081810360008301526136f181613470565b9050919050565b6000602082019050818103600083015261371181613493565b9050919050565b60006020820190508181036000830152613731816134b6565b9050919050565b60006020820190508181036000830152613751816134d9565b9050919050565b600060208201905081810360008301526137718161351f565b9050919050565b6000602082019050818103600083015261379181613542565b9050919050565b600060208201905081810360008301526137b181613565565b9050919050565b60006020820190506137cd6000830184613588565b92915050565b60006137dd6137ee565b90506137e98282613aba565b919050565b6000604051905090565b600067ffffffffffffffff82111561381357613812613c21565b5b61381c82613c6e565b9050602081019050919050565b600067ffffffffffffffff82111561384457613843613c21565b5b61384d82613c6e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c882613a3c565b91506138d383613a3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390857613907613b65565b5b828201905092915050565b600061391e82613a3c565b915061392983613a3c565b92508261393957613938613b94565b5b828204905092915050565b600061394f82613a3c565b915061395a83613a3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399357613992613b65565b5b828202905092915050565b60006139a982613a3c565b91506139b483613a3c565b9250828210156139c7576139c6613b65565b5b828203905092915050565b60006139dd82613a1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a73578082015181840152602081019050613a58565b83811115613a82576000848401525b50505050565b60006002820490506001821680613aa057607f821691505b60208210811415613ab457613ab3613bc3565b5b50919050565b613ac382613c6e565b810181811067ffffffffffffffff82111715613ae257613ae1613c21565b5b80604052505050565b6000613af682613a3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2957613b28613b65565b5b600182019050919050565b6000613b3f82613a3c565b9150613b4a83613a3c565b925082613b5a57613b59613b94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2066726565206d696e747320617661696c61626c6520666f72207468697360008201527f206163636f756e742e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613e6e816139d2565b8114613e7957600080fd5b50565b613e85816139e4565b8114613e9057600080fd5b50565b613e9c816139f0565b8114613ea757600080fd5b50565b613eb381613a3c565b8114613ebe57600080fd5b5056fea26469706673582212205786ec63ba4fd2400f2c2336a17a3c0ab55c43a697bfb5a67ebf9542d37e11f464736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000104d757374616368696f52617363616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752415343414c5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c732d70726572657665616c2f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MustachioRascals
Arg [1] : _symbol (string): RASCALS
Arg [2] : _initBaseURI (string): https://ownly.market/api/rascals/
Arg [3] : _initNotRevealedUri (string): https://ownly.market/api/rascals-prereveal/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d757374616368696f52617363616c7300000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 52415343414c5300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [9] : 68747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c73
Arg [10] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [12] : 68747470733a2f2f6f776e6c792e6d61726b65742f6170692f72617363616c73
Arg [13] : 2d70726572657665616c2f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55873:5318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23596:627;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60322:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58568:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24486:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30877:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55988:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56146:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30310:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20273:311;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34480:2717;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60754:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56023:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58695:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60409:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61041:147;;;;;;;;;;;;;:::i;:::-;;37293:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56312:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59900:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60076:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56187:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58140:420;;;;;;;;;;;;;:::i;:::-;;56279:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25879:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56105:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55960:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21433:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;60518:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59367:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24662:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56064:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56347;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56887:1245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31435:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59608:69;;;;;;;;;;;;;:::i;:::-;;59685:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38084:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58821:538;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56240:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31826:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60188:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23596:627;23681:4;24016:10;24001:25;;:11;:25;;;;:98;;;;24089:10;24074:25;;:11;:25;;;;24001:98;:171;;;;24162:10;24147:25;;:11;:25;;;;24001:171;23985:187;;23596:627;;;:::o;60322:79::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60387:6:::1;60378;;:15;;;;;;;;;;;;;;;;;;60322:79:::0;:::o;58568:119::-;58633:7;58660:9;:19;58670:8;58660:19;;;;;;;;;;;;;;;;58653:26;;58568:119;;;:::o;24486:100::-;24540:13;24573:5;24566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24486:100;:::o;30877:218::-;30953:7;30978:16;30986:7;30978;:16::i;:::-;30973:64;;31003:34;;;;;;;;;;;;;;30973:64;31057:15;:24;31073:7;31057:24;;;;;;;;;;;:30;;;;;;;;;;;;31050:37;;30877:218;;;:::o;55988:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56146:34::-;;;;:::o;30310:408::-;30399:13;30415:16;30423:7;30415;:16::i;:::-;30399:32;;30471:5;30448:28;;:19;:17;:19::i;:::-;:28;;;30444:175;;30496:44;30513:5;30520:19;:17;:19::i;:::-;30496:16;:44::i;:::-;30491:128;;30568:35;;;;;;;;;;;;;;30491:128;30444:175;30664:2;30631:15;:24;30647:7;30631:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30702:7;30698:2;30682:28;;30691:5;30682:28;;;;;;;;;;;;30388:330;30310:408;;:::o;20273:311::-;20334:7;20554:15;:13;:15::i;:::-;20539:12;;20523:13;;:28;:46;20516:53;;20273:311;:::o;34480:2717::-;34622:27;34652;34671:7;34652:18;:27::i;:::-;34622:57;;34737:4;34696:45;;34712:19;34696:45;;;34692:86;;34750:28;;;;;;;;;;;;;;34692:86;34792:27;34821:23;34848:35;34875:7;34848:26;:35::i;:::-;34791:92;;;;34983:68;35008:15;35025:4;35031:19;:17;:19::i;:::-;34983:24;:68::i;:::-;34978:180;;35071:43;35088:4;35094:19;:17;:19::i;:::-;35071:16;:43::i;:::-;35066:92;;35123:35;;;;;;;;;;;;;;35066:92;34978:180;35189:1;35175:16;;:2;:16;;;35171:52;;;35200:23;;;;;;;;;;;;;;35171:52;35236:43;35258:4;35264:2;35268:7;35277:1;35236:21;:43::i;:::-;35372:15;35369:156;;;35508:1;35487:19;35480:30;35369:156;35893:18;:24;35912:4;35893:24;;;;;;;;;;;;;;;;35891:26;;;;;;;;;;;;35958:18;:22;35977:2;35958:22;;;;;;;;;;;;;;;;35956:24;;;;;;;;;;;36256:134;36289:2;36334:45;36349:4;36355:2;36359:19;36334:14;:45::i;:::-;16676:8;36306:73;36256:18;:134::i;:::-;36227:17;:26;36245:7;36227:26;;;;;;;;;;;:163;;;;36553:1;16676:8;36502:19;:47;:52;36498:587;;;36571:19;36603:1;36593:7;:11;36571:33;;36752:1;36718:17;:30;36736:11;36718:30;;;;;;;;;;;;:35;36714:360;;;36848:13;;36833:11;:28;36829:230;;37020:19;36987:17;:30;37005:11;36987:30;;;;;;;;;;;:52;;;;36829:230;36714:360;36556:529;36498:587;37128:7;37124:2;37109:27;;37118:4;37109:27;;;;;;;;;;;;37147:42;37168:4;37174:2;37178:7;37187:1;37147:20;:42::i;:::-;34611:2586;;;34480:2717;;;:::o;60754:279::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60882:9:::1;60878:148;60901:21;;:28;;60897:1;:32;60878:148;;;61000:14;60951:20;:46;60972:21;;60994:1;60972:24;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60951:46;;;;;;;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;60931:3;;;;;:::i;:::-;;;;60878:148;;;;60754:279:::0;;;:::o;56023:34::-;;;;:::o;58695:118::-;58754:4;58778:20;:27;58799:5;58778:27;;;;;;;;;;;;;;;;;;;;;;;;;58771:34;;58695:118;;;:::o;60409:101::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60496:6:::1;60478:15;;:24;;;;;;;;;;;;;;;;;;60409:101:::0;:::o;61041:147::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61090:7:::1;61111;:5;:7::i;:::-;61103:21;;61132;61103:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61089:69;;;61177:2;61169:11;;;::::0;::::1;;61078:110;61041:147::o:0;37293:193::-;37439:39;37456:4;37462:2;37466:7;37439:39;;;;;;;;;;;;:16;:39::i;:::-;37293:193;;;:::o;56312:28::-;;;;;;;;;;;;;:::o;59900:168::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60033:27:::1;60004:26;:56;;;;59900:168:::0;:::o;60076:104::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60161:11:::1;60151:7;:21;;;;;;;;;;;;:::i;:::-;;60076:104:::0;:::o;56187:46::-;;;;:::o;58140:420::-;58187:6;;;;;;;;;;;58186:7;58178:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;58233:16;58252:28;58269:10;58252:16;:28::i;:::-;58233:47;;58291:14;58308:13;:11;:13::i;:::-;58291:30;;58363:9;;58351:8;58342:6;:17;;;;:::i;:::-;:30;;58334:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;58429:1;58418:8;:12;58410:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58489:27;58495:10;58507:8;58489:5;:27::i;:::-;58551:1;58527:9;:21;58537:10;58527:21;;;;;;;;;;;;;;;:25;;;;58167:393;;58140:420::o;56279:26::-;;;;;;;;;;;;;:::o;25879:152::-;25951:7;25994:27;26013:7;25994:18;:27::i;:::-;25971:52;;25879:152;;;:::o;56105:34::-;;;;:::o;55960:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21433:233::-;21505:7;21546:1;21529:19;;:5;:19;;;21525:60;;;21557:28;;;;;;;;;;;;;;21525:60;15620:13;21603:18;:25;21622:5;21603:25;;;;;;;;;;;;;;;;:55;21596:62;;21433:233;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;60518:228::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60630:9:::1;60626:113;60649:10;;:17;;60645:1;:21;60626:113;;;60715:9;;60725:1;60715:12;;;;;;;:::i;:::-;;;;;;;;60688:9;:24;60698:10;;60709:1;60698:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60688:24;;;;;;;;;;;;;;;:39;;;;60668:3;;;;;:::i;:::-;;;;60626:113;;;;60518:228:::0;;;;:::o;59367:233::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59448:14:::1;59465:13;:11;:13::i;:::-;59448:30;;59518:9;;59506:8;59497:6;:17;;;;:::i;:::-;:30;;59489:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;59567:25;59573:8;59583;59567:5;:25::i;:::-;59437:163;59367:233:::0;;:::o;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;24662:104::-;24718:13;24751:7;24744:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24662:104;:::o;56064:34::-;;;;:::o;56347:::-;;;;;;;;;;;;;:::o;56887:1245::-;56957:6;;;;;;;;;;;56956:7;56948:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57001:14;57018:13;:11;:13::i;:::-;57001:30;;57064:1;57050:11;:15;57042:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57140:9;;57125:11;57116:6;:20;;;;:::i;:::-;:33;;57108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57206:7;:5;:7::i;:::-;57192:21;;:10;:21;;;57189:893;;57230:19;57252:25;57266:10;57252:13;:25::i;:::-;57230:47;;57316:4;57297:23;;:15;;;;;;;;;;;:23;;;57294:124;;;57349:25;57363:10;57349:13;:25::i;:::-;57341:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57294:124;57434:12;57485:1;57470:11;:16;57467:525;;57515:14;57514:69;;57578:5;;57514:69;;;57572:3;57542:26;;57534:5;;:34;;;;:::i;:::-;57533:42;;;;:::i;:::-;57514:69;57507:76;;57467:525;;;57623:1;57608:11;:16;57605:387;;57653:14;57652:69;;57716:5;;57652:69;;;57710:3;57680:26;;57672:5;;:34;;;;:::i;:::-;57671:42;;;;:::i;:::-;57652:69;57645:76;;57605:387;;;57761:1;57746:11;:16;57743:249;;57791:14;57790:69;;57854:5;;57790:69;;;57848:3;57818:26;;57810:5;;:34;;;;:::i;:::-;57809:42;;;;:::i;:::-;57790:69;57783:76;;57743:249;;;57908:14;57907:69;;57971:5;;57907:69;;;57965:3;57935:26;;57927:5;;:34;;;;:::i;:::-;57926:42;;;;:::i;:::-;57907:69;57900:76;;57743:249;57605:387;57467:525;58036:11;58029:4;:18;;;;:::i;:::-;58016:9;:31;;58008:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57215:867;;57189:893;58094:30;58100:10;58112:11;58094:5;:30::i;:::-;56937:1195;56887:1245;:::o;31435:234::-;31582:8;31530:18;:39;31549:19;:17;:19::i;:::-;31530:39;;;;;;;;;;;;;;;:49;31570:8;31530:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31642:8;31606:55;;31621:19;:17;:19::i;:::-;31606:55;;;31652:8;31606:55;;;;;;:::i;:::-;;;;;;;;31435:234;;:::o;59608:69::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59665:4:::1;59654:8;;:15;;;;;;;;;;;;;;;;;;59608:69::o:0;59685:207::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59803:6:::1;59795:5;:14;;;;59828:6;59820:5;:14;;;;59853:6;59845:5;:14;;;;59878:6;59870:5;:14;;;;59685:207:::0;;;;:::o;38084:407::-;38259:31;38272:4;38278:2;38282:7;38259:12;:31::i;:::-;38323:1;38305:2;:14;;;:19;38301:183;;38344:56;38375:4;38381:2;38385:7;38394:5;38344:30;:56::i;:::-;38339:145;;38428:40;;;;;;;;;;;;;;38339:145;38301:183;38084:407;;;;:::o;58821:538::-;58894:13;58942:16;58950:7;58942;:16::i;:::-;58920:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;59061:5;59049:17;;:8;;;;;;;;;;;:17;;;59046:116;;;59114:14;59130:18;:7;:16;:18::i;:::-;59097:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59083:67;;;;59046:116;59174:28;59205:10;:8;:10::i;:::-;59174:41;;59264:1;59239:14;59233:28;:32;:118;;;;;;;;;;;;;;;;;59301:14;59317:18;:7;:16;:18::i;:::-;59284:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59233:118;59226:125;;;58821:538;;;;:::o;56240:32::-;;;;:::o;31826:164::-;31923:4;31947:18;:25;31966:5;31947:25;;;;;;;;;;;;;;;:35;31973:8;31947:35;;;;;;;;;;;;;;;;;;;;;;;;;31940:42;;31826:164;;;;:::o;60188:126::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60291:15:::1;60274:14;:32;;;;;;;;;;;;:::i;:::-;;60188:126:::0;:::o;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;32248:270::-;32313:4;32365:7;32346:15;:13;:15::i;:::-;:26;;:62;;;;;32395:13;;32385:7;:23;32346:62;:145;;;;;32490:1;16396:8;32442:17;:26;32460:7;32442:26;;;;;;;;;;;;:44;:49;32346:145;32330:161;;32248:270;;;:::o;53904:105::-;53964:7;53991:10;53984:17;;53904:105;:::o;19789:92::-;19845:7;19789:92;:::o;27034:1187::-;27101:7;27121:12;27136:7;27121:22;;27196:4;27177:15;:13;:15::i;:::-;:23;27173:985;;27226:13;;27219:4;:20;27215:943;;;27260:14;27277:17;:23;27295:4;27277:23;;;;;;;;;;;;27260:40;;27386:1;16396:8;27358:6;:24;:29;27354:789;;;27983:105;28000:1;27990:6;:11;27983:105;;;28039:17;:25;28057:6;;;;;;;28039:25;;;;;;;;;;;;28030:34;;27983:105;;;28117:6;28110:13;;;;;;27354:789;27241:917;27215:943;27173:985;28182:31;;;;;;;;;;;;;;27034:1187;;;;:::o;33387:473::-;33477:27;33506:23;33547:38;33588:15;:24;33604:7;33588:24;;;;;;;;;;;33547:65;;33765:18;33742:41;;33822:19;33816:26;33797:45;;33727:126;33387:473;;;:::o;32627:647::-;32776:11;32937:16;32930:5;32926:28;32917:37;;33093:16;33082:9;33078:32;33065:45;;33239:15;33228:9;33225:30;33217:5;33206:9;33203:20;33200:56;33190:66;;32627:647;;;;;:::o;39153:159::-;;;;;:::o;53213:311::-;53348:7;53368:16;16800:3;53394:19;:41;;53368:68;;16800:3;53462:31;53473:4;53479:2;53483:9;53462:10;:31::i;:::-;53454:40;;:62;;53447:69;;;53213:311;;;;;:::o;28769:442::-;28849:14;29013:16;29006:5;29002:28;28993:37;;29186:5;29172:11;29147:23;29143:41;29140:52;29133:5;29130:63;29120:73;;28769:442;;;;:::o;39977:158::-;;;;;:::o;41753:2722::-;41826:20;41849:13;;41826:36;;41889:1;41877:8;:13;41873:44;;;41899:18;;;;;;;;;;;;;;41873:44;41930:61;41960:1;41964:2;41968:12;41982:8;41930:21;:61::i;:::-;42446:1;15758:2;42416:1;:26;;42415:32;42403:8;:45;42377:18;:22;42396:2;42377:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42701:127;42734:2;42784:33;42807:1;42811:2;42815:1;42784:14;:33::i;:::-;42751:30;42772:8;42751:20;:30::i;:::-;:66;42701:18;:127::i;:::-;42667:17;:31;42685:12;42667:31;;;;;;;;;;;:161;;;;42841:16;42868:11;42897:8;42882:12;:23;42868:37;;43386:16;43382:2;43378:25;43366:37;;43698:12;43666:8;43633:1;43579:25;43528:1;43475;43456:283;44033:1;44019:12;44015:20;43977:314;44070:3;44061:7;44058:16;43977:314;;44268:7;44258:8;44255:1;44228:25;44225:1;44222;44217:59;44119:1;44110:7;44106:15;44095:26;;43977:314;;;43981:69;44328:1;44316:8;:13;44312:45;;;44338:19;;;;;;;;;;;;;;44312:45;44386:3;44370:13;:19;;;;42175:2222;;44407:60;44436:1;44440:2;44444:12;44458:8;44407:20;:60::i;:::-;41815:2660;41753:2722;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5085:128;5040:173;:::o;40575:716::-;40738:4;40784:2;40759:45;;;40805:19;:17;:19::i;:::-;40826:4;40832:7;40841:5;40759:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40755:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41059:1;41042:6;:13;:18;41038:235;;;41088:40;;;;;;;;;;;;;;41038:235;41231:6;41225:13;41216:6;41212:2;41208:15;41201:38;40755:529;40928:54;;;40918:64;;;:6;:64;;;;40911:71;;;40575:716;;;;;;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;56771:108::-;56831:13;56864:7;56857:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56771:108;:::o;52914:147::-;53051:6;52914:147;;;;;:::o;29313:320::-;29383:14;29612:1;29602:8;29599:15;29573:24;29569:46;29559:56;;29313:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:698::-;7834:6;7842;7850;7899:2;7887:9;7878:7;7874:23;7870:32;7867:119;;;7905:79;;:::i;:::-;7867:119;8053:1;8042:9;8038:17;8025:31;8083:18;8075:6;8072:30;8069:117;;;8105:79;;:::i;:::-;8069:117;8218:80;8290:7;8281:6;8270:9;8266:22;8218:80;:::i;:::-;8200:98;;;;7996:312;8347:2;8373:50;8415:7;8406:6;8395:9;8391:22;8373:50;:::i;:::-;8363:60;;8318:115;7742:698;;;;;:::o;8446:323::-;8502:6;8551:2;8539:9;8530:7;8526:23;8522:32;8519:119;;;8557:79;;:::i;:::-;8519:119;8677:1;8702:50;8744:7;8735:6;8724:9;8720:22;8702:50;:::i;:::-;8692:60;;8648:114;8446:323;;;;:::o;8775:327::-;8833:6;8882:2;8870:9;8861:7;8857:23;8853:32;8850:119;;;8888:79;;:::i;:::-;8850:119;9008:1;9033:52;9077:7;9068:6;9057:9;9053:22;9033:52;:::i;:::-;9023:62;;8979:116;8775:327;;;;:::o;9108:349::-;9177:6;9226:2;9214:9;9205:7;9201:23;9197:32;9194:119;;;9232:79;;:::i;:::-;9194:119;9352:1;9377:63;9432:7;9423:6;9412:9;9408:22;9377:63;:::i;:::-;9367:73;;9323:127;9108:349;;;;:::o;9463:509::-;9532:6;9581:2;9569:9;9560:7;9556:23;9552:32;9549:119;;;9587:79;;:::i;:::-;9549:119;9735:1;9724:9;9720:17;9707:31;9765:18;9757:6;9754:30;9751:117;;;9787:79;;:::i;:::-;9751:117;9892:63;9947:7;9938:6;9927:9;9923:22;9892:63;:::i;:::-;9882:73;;9678:287;9463:509;;;;:::o;9978:329::-;10037:6;10086:2;10074:9;10065:7;10061:23;10057:32;10054:119;;;10092:79;;:::i;:::-;10054:119;10212:1;10237:53;10282:7;10273:6;10262:9;10258:22;10237:53;:::i;:::-;10227:63;;10183:117;9978:329;;;;:::o;10313:765::-;10399:6;10407;10415;10423;10472:3;10460:9;10451:7;10447:23;10443:33;10440:120;;;10479:79;;:::i;:::-;10440:120;10599:1;10624:53;10669:7;10660:6;10649:9;10645:22;10624:53;:::i;:::-;10614:63;;10570:117;10726:2;10752:53;10797:7;10788:6;10777:9;10773:22;10752:53;:::i;:::-;10742:63;;10697:118;10854:2;10880:53;10925:7;10916:6;10905:9;10901:22;10880:53;:::i;:::-;10870:63;;10825:118;10982:2;11008:53;11053:7;11044:6;11033:9;11029:22;11008:53;:::i;:::-;10998:63;;10953:118;10313:765;;;;;;;:::o;11084:118::-;11171:24;11189:5;11171:24;:::i;:::-;11166:3;11159:37;11084:118;;:::o;11208:109::-;11289:21;11304:5;11289:21;:::i;:::-;11284:3;11277:34;11208:109;;:::o;11323:360::-;11409:3;11437:38;11469:5;11437:38;:::i;:::-;11491:70;11554:6;11549:3;11491:70;:::i;:::-;11484:77;;11570:52;11615:6;11610:3;11603:4;11596:5;11592:16;11570:52;:::i;:::-;11647:29;11669:6;11647:29;:::i;:::-;11642:3;11638:39;11631:46;;11413:270;11323:360;;;;:::o;11689:364::-;11777:3;11805:39;11838:5;11805:39;:::i;:::-;11860:71;11924:6;11919:3;11860:71;:::i;:::-;11853:78;;11940:52;11985:6;11980:3;11973:4;11966:5;11962:16;11940:52;:::i;:::-;12017:29;12039:6;12017:29;:::i;:::-;12012:3;12008:39;12001:46;;11781:272;11689:364;;;;:::o;12059:377::-;12165:3;12193:39;12226:5;12193:39;:::i;:::-;12248:89;12330:6;12325:3;12248:89;:::i;:::-;12241:96;;12346:52;12391:6;12386:3;12379:4;12372:5;12368:16;12346:52;:::i;:::-;12423:6;12418:3;12414:16;12407:23;;12169:267;12059:377;;;;:::o;12466:845::-;12569:3;12606:5;12600:12;12635:36;12661:9;12635:36;:::i;:::-;12687:89;12769:6;12764:3;12687:89;:::i;:::-;12680:96;;12807:1;12796:9;12792:17;12823:1;12818:137;;;;12969:1;12964:341;;;;12785:520;;12818:137;12902:4;12898:9;12887;12883:25;12878:3;12871:38;12938:6;12933:3;12929:16;12922:23;;12818:137;;12964:341;13031:38;13063:5;13031:38;:::i;:::-;13091:1;13105:154;13119:6;13116:1;13113:13;13105:154;;;13193:7;13187:14;13183:1;13178:3;13174:11;13167:35;13243:1;13234:7;13230:15;13219:26;;13141:4;13138:1;13134:12;13129:17;;13105:154;;;13288:6;13283:3;13279:16;13272:23;;12971:334;;12785:520;;12573:738;;12466:845;;;;:::o;13317:366::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:398::-;15708:3;15729:83;15810:1;15805:3;15729:83;:::i;:::-;15722:90;;15821:93;15910:3;15821:93;:::i;:::-;15939:1;15934:3;15930:11;15923:18;;15549:398;;;:::o;15953:366::-;16095:3;16116:67;16180:2;16175:3;16116:67;:::i;:::-;16109:74;;16192:93;16281:3;16192:93;:::i;:::-;16310:2;16305:3;16301:12;16294:19;;15953:366;;;:::o;16325:::-;16467:3;16488:67;16552:2;16547:3;16488:67;:::i;:::-;16481:74;;16564:93;16653:3;16564:93;:::i;:::-;16682:2;16677:3;16673:12;16666:19;;16325:366;;;:::o;16697:::-;16839:3;16860:67;16924:2;16919:3;16860:67;:::i;:::-;16853:74;;16936:93;17025:3;16936:93;:::i;:::-;17054:2;17049:3;17045:12;17038:19;;16697:366;;;:::o;17069:118::-;17156:24;17174:5;17156:24;:::i;:::-;17151:3;17144:37;17069:118;;:::o;17193:435::-;17373:3;17395:95;17486:3;17477:6;17395:95;:::i;:::-;17388:102;;17507:95;17598:3;17589:6;17507:95;:::i;:::-;17500:102;;17619:3;17612:10;;17193:435;;;;;:::o;17634:429::-;17811:3;17833:92;17921:3;17912:6;17833:92;:::i;:::-;17826:99;;17942:95;18033:3;18024:6;17942:95;:::i;:::-;17935:102;;18054:3;18047:10;;17634:429;;;;;:::o;18069:379::-;18253:3;18275:147;18418:3;18275:147;:::i;:::-;18268:154;;18439:3;18432:10;;18069:379;;;:::o;18454:222::-;18547:4;18585:2;18574:9;18570:18;18562:26;;18598:71;18666:1;18655:9;18651:17;18642:6;18598:71;:::i;:::-;18454:222;;;;:::o;18682:640::-;18877:4;18915:3;18904:9;18900:19;18892:27;;18929:71;18997:1;18986:9;18982:17;18973:6;18929:71;:::i;:::-;19010:72;19078:2;19067:9;19063:18;19054:6;19010:72;:::i;:::-;19092;19160:2;19149:9;19145:18;19136:6;19092:72;:::i;:::-;19211:9;19205:4;19201:20;19196:2;19185:9;19181:18;19174:48;19239:76;19310:4;19301:6;19239:76;:::i;:::-;19231:84;;18682:640;;;;;;;:::o;19328:210::-;19415:4;19453:2;19442:9;19438:18;19430:26;;19466:65;19528:1;19517:9;19513:17;19504:6;19466:65;:::i;:::-;19328:210;;;;:::o;19544:313::-;19657:4;19695:2;19684:9;19680:18;19672:26;;19744:9;19738:4;19734:20;19730:1;19719:9;19715:17;19708:47;19772:78;19845:4;19836:6;19772:78;:::i;:::-;19764:86;;19544:313;;;;:::o;19863:419::-;20029:4;20067:2;20056:9;20052:18;20044:26;;20116:9;20110:4;20106:20;20102:1;20091:9;20087:17;20080:47;20144:131;20270:4;20144:131;:::i;:::-;20136:139;;19863:419;;;:::o;20288:::-;20454:4;20492:2;20481:9;20477:18;20469:26;;20541:9;20535:4;20531:20;20527:1;20516:9;20512:17;20505:47;20569:131;20695:4;20569:131;:::i;:::-;20561:139;;20288:419;;;:::o;20713:::-;20879:4;20917:2;20906:9;20902:18;20894:26;;20966:9;20960:4;20956:20;20952:1;20941:9;20937:17;20930:47;20994:131;21120:4;20994:131;:::i;:::-;20986:139;;20713:419;;;:::o;21138:::-;21304:4;21342:2;21331:9;21327:18;21319:26;;21391:9;21385:4;21381:20;21377:1;21366:9;21362:17;21355:47;21419:131;21545:4;21419:131;:::i;:::-;21411:139;;21138:419;;;:::o;21563:::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:::-;22154:4;22192:2;22181:9;22177:18;22169:26;;22241:9;22235:4;22231:20;22227:1;22216:9;22212:17;22205:47;22269:131;22395:4;22269:131;:::i;:::-;22261:139;;21988:419;;;:::o;22413:::-;22579:4;22617:2;22606:9;22602:18;22594:26;;22666:9;22660:4;22656:20;22652:1;22641:9;22637:17;22630:47;22694:131;22820:4;22694:131;:::i;:::-;22686:139;;22413:419;;;:::o;22838:::-;23004:4;23042:2;23031:9;23027:18;23019:26;;23091:9;23085:4;23081:20;23077:1;23066:9;23062:17;23055:47;23119:131;23245:4;23119:131;:::i;:::-;23111:139;;22838:419;;;:::o;23263:::-;23429:4;23467:2;23456:9;23452:18;23444:26;;23516:9;23510:4;23506:20;23502:1;23491:9;23487:17;23480:47;23544:131;23670:4;23544:131;:::i;:::-;23536:139;;23263:419;;;:::o;23688:222::-;23781:4;23819:2;23808:9;23804:18;23796:26;;23832:71;23900:1;23889:9;23885:17;23876:6;23832:71;:::i;:::-;23688:222;;;;:::o;23916:129::-;23950:6;23977:20;;:::i;:::-;23967:30;;24006:33;24034:4;24026:6;24006:33;:::i;:::-;23916:129;;;:::o;24051:75::-;24084:6;24117:2;24111:9;24101:19;;24051:75;:::o;24132:307::-;24193:4;24283:18;24275:6;24272:30;24269:56;;;24305:18;;:::i;:::-;24269:56;24343:29;24365:6;24343:29;:::i;:::-;24335:37;;24427:4;24421;24417:15;24409:23;;24132:307;;;:::o;24445:308::-;24507:4;24597:18;24589:6;24586:30;24583:56;;;24619:18;;:::i;:::-;24583:56;24657:29;24679:6;24657:29;:::i;:::-;24649:37;;24741:4;24735;24731:15;24723:23;;24445:308;;;:::o;24759:141::-;24808:4;24831:3;24823:11;;24854:3;24851:1;24844:14;24888:4;24885:1;24875:18;24867:26;;24759:141;;;:::o;24906:98::-;24957:6;24991:5;24985:12;24975:22;;24906:98;;;:::o;25010:99::-;25062:6;25096:5;25090:12;25080:22;;25010:99;;;:::o;25115:168::-;25198:11;25232:6;25227:3;25220:19;25272:4;25267:3;25263:14;25248:29;;25115:168;;;;:::o;25289:147::-;25390:11;25427:3;25412:18;;25289:147;;;;:::o;25442:169::-;25526:11;25560:6;25555:3;25548:19;25600:4;25595:3;25591:14;25576:29;;25442:169;;;;:::o;25617:148::-;25719:11;25756:3;25741:18;;25617:148;;;;:::o;25771:305::-;25811:3;25830:20;25848:1;25830:20;:::i;:::-;25825:25;;25864:20;25882:1;25864:20;:::i;:::-;25859:25;;26018:1;25950:66;25946:74;25943:1;25940:81;25937:107;;;26024:18;;:::i;:::-;25937:107;26068:1;26065;26061:9;26054:16;;25771:305;;;;:::o;26082:185::-;26122:1;26139:20;26157:1;26139:20;:::i;:::-;26134:25;;26173:20;26191:1;26173:20;:::i;:::-;26168:25;;26212:1;26202:35;;26217:18;;:::i;:::-;26202:35;26259:1;26256;26252:9;26247:14;;26082:185;;;;:::o;26273:348::-;26313:7;26336:20;26354:1;26336:20;:::i;:::-;26331:25;;26370:20;26388:1;26370:20;:::i;:::-;26365:25;;26558:1;26490:66;26486:74;26483:1;26480:81;26475:1;26468:9;26461:17;26457:105;26454:131;;;26565:18;;:::i;:::-;26454:131;26613:1;26610;26606:9;26595:20;;26273:348;;;;:::o;26627:191::-;26667:4;26687:20;26705:1;26687:20;:::i;:::-;26682:25;;26721:20;26739:1;26721:20;:::i;:::-;26716:25;;26760:1;26757;26754:8;26751:34;;;26765:18;;:::i;:::-;26751:34;26810:1;26807;26803:9;26795:17;;26627:191;;;;:::o;26824:96::-;26861:7;26890:24;26908:5;26890:24;:::i;:::-;26879:35;;26824:96;;;:::o;26926:90::-;26960:7;27003:5;26996:13;26989:21;26978:32;;26926:90;;;:::o;27022:149::-;27058:7;27098:66;27091:5;27087:78;27076:89;;27022:149;;;:::o;27177:126::-;27214:7;27254:42;27247:5;27243:54;27232:65;;27177:126;;;:::o;27309:77::-;27346:7;27375:5;27364:16;;27309:77;;;:::o;27392:154::-;27476:6;27471:3;27466;27453:30;27538:1;27529:6;27524:3;27520:16;27513:27;27392:154;;;:::o;27552:307::-;27620:1;27630:113;27644:6;27641:1;27638:13;27630:113;;;27729:1;27724:3;27720:11;27714:18;27710:1;27705:3;27701:11;27694:39;27666:2;27663:1;27659:10;27654:15;;27630:113;;;27761:6;27758:1;27755:13;27752:101;;;27841:1;27832:6;27827:3;27823:16;27816:27;27752:101;27601:258;27552:307;;;:::o;27865:320::-;27909:6;27946:1;27940:4;27936:12;27926:22;;27993:1;27987:4;27983:12;28014:18;28004:81;;28070:4;28062:6;28058:17;28048:27;;28004:81;28132:2;28124:6;28121:14;28101:18;28098:38;28095:84;;;28151:18;;:::i;:::-;28095:84;27916:269;27865:320;;;:::o;28191:281::-;28274:27;28296:4;28274:27;:::i;:::-;28266:6;28262:40;28404:6;28392:10;28389:22;28368:18;28356:10;28353:34;28350:62;28347:88;;;28415:18;;:::i;:::-;28347:88;28455:10;28451:2;28444:22;28234:238;28191:281;;:::o;28478:233::-;28517:3;28540:24;28558:5;28540:24;:::i;:::-;28531:33;;28586:66;28579:5;28576:77;28573:103;;;28656:18;;:::i;:::-;28573:103;28703:1;28696:5;28692:13;28685:20;;28478:233;;;:::o;28717:176::-;28749:1;28766:20;28784:1;28766:20;:::i;:::-;28761:25;;28800:20;28818:1;28800:20;:::i;:::-;28795:25;;28839:1;28829:35;;28844:18;;:::i;:::-;28829:35;28885:1;28882;28878:9;28873:14;;28717:176;;;;:::o;28899:180::-;28947:77;28944:1;28937:88;29044:4;29041:1;29034:15;29068:4;29065:1;29058:15;29085:180;29133:77;29130:1;29123:88;29230:4;29227:1;29220:15;29254:4;29251:1;29244:15;29271:180;29319:77;29316:1;29309:88;29416:4;29413:1;29406:15;29440:4;29437:1;29430:15;29457:180;29505:77;29502:1;29495:88;29602:4;29599:1;29592:15;29626:4;29623:1;29616:15;29643:180;29691:77;29688:1;29681:88;29788:4;29785:1;29778:15;29812:4;29809:1;29802:15;29829:117;29938:1;29935;29928:12;29952:117;30061:1;30058;30051:12;30075:117;30184:1;30181;30174:12;30198:117;30307:1;30304;30297:12;30321:117;30430:1;30427;30420:12;30444:117;30553:1;30550;30543:12;30567:102;30608:6;30659:2;30655:7;30650:2;30643:5;30639:14;30635:28;30625:38;;30567:102;;;:::o;30675:225::-;30815:34;30811:1;30803:6;30799:14;30792:58;30884:8;30879:2;30871:6;30867:15;30860:33;30675:225;:::o;30906:228::-;31046:34;31042:1;31034:6;31030:14;31023:58;31115:11;31110:2;31102:6;31098:15;31091:36;30906:228;:::o;31140:172::-;31280:24;31276:1;31268:6;31264:14;31257:48;31140:172;:::o;31318:182::-;31458:34;31454:1;31446:6;31442:14;31435:58;31318:182;:::o;31506:172::-;31646:24;31642:1;31634:6;31630:14;31623:48;31506:172;:::o;31684:234::-;31824:34;31820:1;31812:6;31808:14;31801:58;31893:17;31888:2;31880:6;31876:15;31869:42;31684:234;:::o;31924:114::-;;:::o;32044:168::-;32184:20;32180:1;32172:6;32168:14;32161:44;32044:168;:::o;32218:173::-;32358:25;32354:1;32346:6;32342:14;32335:49;32218:173;:::o;32397:177::-;32537:29;32533:1;32525:6;32521:14;32514:53;32397:177;:::o;32580:122::-;32653:24;32671:5;32653:24;:::i;:::-;32646:5;32643:35;32633:63;;32692:1;32689;32682:12;32633:63;32580:122;:::o;32708:116::-;32778:21;32793:5;32778:21;:::i;:::-;32771:5;32768:32;32758:60;;32814:1;32811;32804:12;32758:60;32708:116;:::o;32830:120::-;32902:23;32919:5;32902:23;:::i;:::-;32895:5;32892:34;32882:62;;32940:1;32937;32930:12;32882:62;32830:120;:::o;32956:122::-;33029:24;33047:5;33029:24;:::i;:::-;33022:5;33019:35;33009:63;;33068:1;33065;33058:12;33009:63;32956:122;:::o

Swarm Source

ipfs://5786ec63ba4fd2400f2c2336a17a3c0ab55c43a697bfb5a67ebf9542d37e11f4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.