ETH Price: $2,555.32 (+3.75%)

Token

SaudiMonroe2060 (SM)
 

Overview

Max Total Supply

107 SM

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SM
0x66084c1177cc1cf519138fb2b2b69470b452ae7a
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:
SaudiMonroeNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/prod/artifacts/SaudiMonroe.sol




pragma solidity >= 0.8.9 < 0.9.0;




contract SaudiMonroeNFT is ERC721A, Ownable {

    using Strings for uint256;

    string private _baseTokenURI;

    uint256 public price = 0.003 ether;

    uint256 public maxPerTx = 5;

    uint256 public maxFreePerWallet = 1;

    uint256 public totalFree = 100;

    uint256 public maxSupply = 1000;

    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("SaudiMonroe2060", "SM") {
        _safeMint(msg.sender, 5);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function mint(uint256 count) external payable callerIsUser{

        require(mintEnabled, "Minting is not live yet");

        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }


     function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }


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

    function setState(bool _mintEnabled) external onlyOwner {
        mintEnabled = _mintEnabled;
    }

    function airdropSaudiMonroe(address mintAddress,uint8 numberTokens)external onlyOwner{
        _safeMint(mintAddress, numberTokens);
        
    } 

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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":"mintAddress","type":"address"},{"internalType":"uint8","name":"numberTokens","type":"uint8"}],"name":"airdropSaudiMonroe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintEnabled","type":"bool"}],"name":"setState","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a556005600b556001600c556064600d556103e8600e556000600f60006101000a81548160ff0219169083151502179055503480156200004c57600080fd5b506040518060400160405280600f81526020017f53617564694d6f6e726f653230363000000000000000000000000000000000008152506040518060400160405280600281526020017f534d0000000000000000000000000000000000000000000000000000000000008152508160029081620000ca919062000922565b508060039081620000dc919062000922565b50620000ed6200012e60201b60201c565b600081905550505062000115620001096200013360201b60201c565b6200013b60201b60201c565b620001283360056200020160201b60201c565b62000be1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002238282604051806020016040528060008152506200022760201b60201c565b5050565b620002398383620002d860201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002d357600080549050600083820390505b620002826000868380600101945086620004bf60201b60201c565b620002b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000267578160005414620002d057600080fd5b50505b505050565b6000805490506000820362000319576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032e60008483856200062060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003bd836200039f60008660006200062660201b60201c565b620003b0856200065660201b60201c565b176200066660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200046057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000423565b50600082036200049c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004ba60008483856200069160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004ed6200069760201b60201c565b8786866040518563ffffffff1660e01b815260040162000511949392919062000af9565b6020604051808303816000875af19250505080156200055057506040513d601f19601f820116820180604052508101906200054d919062000baf565b60015b620005cd573d806000811462000583576040519150601f19603f3d011682016040523d82523d6000602084013e62000588565b606091505b506000815103620005c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006458686846200069f60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072a57607f821691505b60208210810362000740576200073f620006e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200076b565b620007b686836200076b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000803620007fd620007f784620007ce565b620007d8565b620007ce565b9050919050565b6000819050919050565b6200081f83620007e2565b620008376200082e826200080a565b84845462000778565b825550505050565b600090565b6200084e6200083f565b6200085b81848462000814565b505050565b5b8181101562000883576200087760008262000844565b60018101905062000861565b5050565b601f821115620008d2576200089c8162000746565b620008a7846200075b565b81016020851015620008b7578190505b620008cf620008c6856200075b565b83018262000860565b50505b505050565b600082821c905092915050565b6000620008f760001984600802620008d7565b1980831691505092915050565b6000620009128383620008e4565b9150826002028217905092915050565b6200092d82620006a8565b67ffffffffffffffff811115620009495762000948620006b3565b5b62000955825462000711565b6200096282828562000887565b600060209050601f8311600181146200099a576000841562000985578287015190505b62000991858262000904565b86555062000a01565b601f198416620009aa8662000746565b60005b82811015620009d457848901518255600182019150602085019450602081019050620009ad565b86831015620009f45784890151620009f0601f891682620008e4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a368262000a09565b9050919050565b62000a488162000a29565b82525050565b62000a5981620007ce565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a9b57808201518184015260208101905062000a7e565b60008484015250505050565b6000601f19601f8301169050919050565b600062000ac58262000a5f565b62000ad1818562000a6a565b935062000ae381856020860162000a7b565b62000aee8162000aa7565b840191505092915050565b600060808201905062000b10600083018762000a3d565b62000b1f602083018662000a3d565b62000b2e604083018562000a4e565b818103606083015262000b42818462000ab8565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b898162000b52565b811462000b9557600080fd5b50565b60008151905062000ba98162000b7e565b92915050565b60006020828403121562000bc85762000bc762000b4d565b5b600062000bd88482850162000b98565b91505092915050565b612dee8062000bf16000396000f3fe6080604052600436106101b75760003560e01c806395d89b41116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105d7578063e985e9c514610602578063f2fde38b1461063f578063f968adbe14610668576101b7565b8063b88d4fde14610546578063c87b56dd1461056f578063d1239730146105ac576101b7565b8063a22cb465116100c6578063a22cb465146104a0578063a7027357146104c9578063ab33f6f8146104f4578063ac9f02221461051d576101b7565b806395d89b411461042e578063a035b1fe14610459578063a0712d6814610484576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780638da5cb5b14610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611e7c565b610693565b6040516101f09190611ec4565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b9190611f6f565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190611fc7565b6107b7565b6040516102589190612035565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061207c565b610836565b005b34801561029657600080fd5b5061029f61097a565b6040516102ac91906120cb565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906120e6565b610991565b005b3480156102ea57600080fd5b506102f3610cb3565b60405161030091906120cb565b60405180910390f35b34801561031557600080fd5b5061031e610cb9565b005b34801561032c57600080fd5b50610347600480360381019061034291906120e6565b610d70565b005b34801561035557600080fd5b50610370600480360381019061036b919061219e565b610d90565b005b34801561037e57600080fd5b5061039960048036038101906103949190611fc7565b610dae565b6040516103a69190612035565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906121eb565b610dc0565b6040516103e391906120cb565b60405180910390f35b3480156103f857600080fd5b50610401610e78565b005b34801561040f57600080fd5b50610418610e8c565b6040516104259190612035565b60405180910390f35b34801561043a57600080fd5b50610443610eb6565b6040516104509190611f6f565b60405180910390f35b34801561046557600080fd5b5061046e610f48565b60405161047b91906120cb565b60405180910390f35b61049e60048036038101906104999190611fc7565b610f4e565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612244565b611208565b005b3480156104d557600080fd5b506104de61137f565b6040516104eb91906120cb565b60405180910390f35b34801561050057600080fd5b5061051b600480360381019061051691906122bd565b611385565b005b34801561052957600080fd5b50610544600480360381019061053f91906122fd565b61139e565b005b34801561055257600080fd5b5061056d6004803603810190610568919061245a565b6113c3565b005b34801561057b57600080fd5b5061059660048036038101906105919190611fc7565b611436565b6040516105a39190611f6f565b60405180910390f35b3480156105b857600080fd5b506105c16114d4565b6040516105ce9190611ec4565b60405180910390f35b3480156105e357600080fd5b506105ec6114e7565b6040516105f991906120cb565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906124dd565b6114ed565b6040516106369190611ec4565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906121eb565b611581565b005b34801561067457600080fd5b5061067d611604565b60405161068a91906120cb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107349061254c565b80601f01602080910402602001604051908101604052809291908181526020018280546107609061254c565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261160a565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084182610dae565b90508073ffffffffffffffffffffffffffffffffffffffff16610862611669565b73ffffffffffffffffffffffffffffffffffffffff16146108c55761088e81610889611669565b6114ed565b6108c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610984611671565b6001546000540303905090565b600061099c82611676565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0f84611742565b91509150610a258187610a20611669565b611769565b610a7157610a3a86610a35611669565b6114ed565b610a70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae486868660016117ad565b8015610aef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbd85610b998888876117b3565b7c0200000000000000000000000000000000000000000000000000000000176117db565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c435760006001850190506000600460008381526020019081526020016000205403610c41576000548114610c40578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cab8686866001611806565b505050505050565b600d5481565b610cc161180c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ce7906125ae565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061260f565b60405180910390fd5b50565b610d8b838383604051806020016040528060008152506113c3565b505050565b610d9861180c565b818160099182610da99291906127e6565b505050565b6000610db982611676565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e8061180c565b610e8a600061188a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ec59061254c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef19061254c565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b5050505050905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390612902565b60405180910390fd5b600f60009054906101000a900460ff1661100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061296e565b60405180910390fd5b6000600a54905060006001600d5461102391906129bd565b8361102c61097a565b61103691906129bd565b10801561108f5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c91906129bd565b11155b9050801561109c57600091505b81836110a891906129f1565b3410156110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612a7f565b60405180910390fd5b6001600e546110f991906129bd565b8361110261097a565b61110c91906129bd565b1061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390612aeb565b60405180910390fd5b6001600b5461115b91906129bd565b831061119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612b57565b60405180910390fd5b80156111f95782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f191906129bd565b925050819055505b6112033384611950565b505050565b611210611669565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611281611669565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e611669565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113739190611ec4565b60405180910390a35050565b600c5481565b61138d61180c565b61139a828260ff16611950565b5050565b6113a661180c565b80600f60006101000a81548160ff02191690831515021790555050565b6113ce848484610991565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611430576113f98484848461196e565b61142f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114418261160a565b611477576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611481611abe565b905060008151036114a157604051806020016040528060008152506114cc565b806114ab84611b50565b6040516020016114bc929190612bb3565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158961180c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90612c49565b60405180910390fd5b6116018161188a565b50565b600b5481565b600081611615611671565b11158015611624575060005482105b8015611662575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611685611671565b1161170b5760005481101561170a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611708575b600081036116fe5760046000836001900393508381526020019081526020016000205490506116d4565b809250505061173d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117ca868684611b97565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611814611ba0565b73ffffffffffffffffffffffffffffffffffffffff16611832610e8c565b73ffffffffffffffffffffffffffffffffffffffff1614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90612cb5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196a828260405180602001604052806000815250611ba8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611994611669565b8786866040518563ffffffff1660e01b81526004016119b69493929190612d2a565b6020604051808303816000875af19250505080156119f257506040513d601f19601f820116820180604052508101906119ef9190612d8b565b60015b611a6b573d8060008114611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b506000815103611a63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611acd9061254c565b80601f0160208091040260200160405190810160405280929190818152602001828054611af99061254c565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b8357600183039250600a81066030018353600a8104905080611b61575b508181036020830392508083525050919050565b60009392505050565b600033905090565b611bb28383611c45565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4057600080549050600083820390505b611bf2600086838060010194508661196e565b611c28576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bdf578160005414611c3d57600080fd5b50505b505050565b60008054905060008203611c85576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9260008483856117ad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d0983611cfa60008660006117b3565b611d0385611e00565b176117db565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611daa57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d6f565b5060008203611de5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611dfb6000848385611806565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5981611e24565b8114611e6457600080fd5b50565b600081359050611e7681611e50565b92915050565b600060208284031215611e9257611e91611e1a565b5b6000611ea084828501611e67565b91505092915050565b60008115159050919050565b611ebe81611ea9565b82525050565b6000602082019050611ed96000830184611eb5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f19578082015181840152602081019050611efe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f4182611edf565b611f4b8185611eea565b9350611f5b818560208601611efb565b611f6481611f25565b840191505092915050565b60006020820190508181036000830152611f898184611f36565b905092915050565b6000819050919050565b611fa481611f91565b8114611faf57600080fd5b50565b600081359050611fc181611f9b565b92915050565b600060208284031215611fdd57611fdc611e1a565b5b6000611feb84828501611fb2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061201f82611ff4565b9050919050565b61202f81612014565b82525050565b600060208201905061204a6000830184612026565b92915050565b61205981612014565b811461206457600080fd5b50565b60008135905061207681612050565b92915050565b6000806040838503121561209357612092611e1a565b5b60006120a185828601612067565b92505060206120b285828601611fb2565b9150509250929050565b6120c581611f91565b82525050565b60006020820190506120e060008301846120bc565b92915050565b6000806000606084860312156120ff576120fe611e1a565b5b600061210d86828701612067565b935050602061211e86828701612067565b925050604061212f86828701611fb2565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261215e5761215d612139565b5b8235905067ffffffffffffffff81111561217b5761217a61213e565b5b60208301915083600182028301111561219757612196612143565b5b9250929050565b600080602083850312156121b5576121b4611e1a565b5b600083013567ffffffffffffffff8111156121d3576121d2611e1f565b5b6121df85828601612148565b92509250509250929050565b60006020828403121561220157612200611e1a565b5b600061220f84828501612067565b91505092915050565b61222181611ea9565b811461222c57600080fd5b50565b60008135905061223e81612218565b92915050565b6000806040838503121561225b5761225a611e1a565b5b600061226985828601612067565b925050602061227a8582860161222f565b9150509250929050565b600060ff82169050919050565b61229a81612284565b81146122a557600080fd5b50565b6000813590506122b781612291565b92915050565b600080604083850312156122d4576122d3611e1a565b5b60006122e285828601612067565b92505060206122f3858286016122a8565b9150509250929050565b60006020828403121561231357612312611e1a565b5b60006123218482850161222f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61236782611f25565b810181811067ffffffffffffffff821117156123865761238561232f565b5b80604052505050565b6000612399611e10565b90506123a5828261235e565b919050565b600067ffffffffffffffff8211156123c5576123c461232f565b5b6123ce82611f25565b9050602081019050919050565b82818337600083830152505050565b60006123fd6123f8846123aa565b61238f565b9050828152602081018484840111156124195761241861232a565b5b6124248482856123db565b509392505050565b600082601f83011261244157612440612139565b5b81356124518482602086016123ea565b91505092915050565b6000806000806080858703121561247457612473611e1a565b5b600061248287828801612067565b945050602061249387828801612067565b93505060406124a487828801611fb2565b925050606085013567ffffffffffffffff8111156124c5576124c4611e1f565b5b6124d18782880161242c565b91505092959194509250565b600080604083850312156124f4576124f3611e1a565b5b600061250285828601612067565b925050602061251385828601612067565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061256457607f821691505b6020821081036125775761257661251d565b5b50919050565b600081905092915050565b50565b600061259860008361257d565b91506125a382612588565b600082019050919050565b60006125b98261258b565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006125f9601083611eea565b9150612604826125c3565b602082019050919050565b60006020820190508181036000830152612628816125ec565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261269c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261265f565b6126a6868361265f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126e36126de6126d984611f91565b6126be565b611f91565b9050919050565b6000819050919050565b6126fd836126c8565b612711612709826126ea565b84845461266c565b825550505050565b600090565b612726612719565b6127318184846126f4565b505050565b5b818110156127555761274a60008261271e565b600181019050612737565b5050565b601f82111561279a5761276b8161263a565b6127748461264f565b81016020851015612783578190505b61279761278f8561264f565b830182612736565b50505b505050565b600082821c905092915050565b60006127bd6000198460080261279f565b1980831691505092915050565b60006127d683836127ac565b9150826002028217905092915050565b6127f0838361262f565b67ffffffffffffffff8111156128095761280861232f565b5b612813825461254c565b61281e828285612759565b6000601f83116001811461284d576000841561283b578287013590505b61284585826127ca565b8655506128ad565b601f19841661285b8661263a565b60005b828110156128835784890135825560018201915060208501945060208101905061285e565b868310156128a0578489013561289c601f8916826127ac565b8355505b6001600288020188555050505b50505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006128ec601e83611eea565b91506128f7826128b6565b602082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612958601783611eea565b915061296382612922565b602082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129c882611f91565b91506129d383611f91565b92508282019050808211156129eb576129ea61298e565b5b92915050565b60006129fc82611f91565b9150612a0783611f91565b9250828202612a1581611f91565b91508282048414831517612a2c57612a2b61298e565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612a69601d83611eea565b9150612a7482612a33565b602082019050919050565b60006020820190508181036000830152612a9881612a5c565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612ad5600783611eea565b9150612ae082612a9f565b602082019050919050565b60006020820190508181036000830152612b0481612ac8565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612b41601383611eea565b9150612b4c82612b0b565b602082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b600081905092915050565b6000612b8d82611edf565b612b978185612b77565b9350612ba7818560208601611efb565b80840191505092915050565b6000612bbf8285612b82565b9150612bcb8284612b82565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c33602683611eea565b9150612c3e82612bd7565b604082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c9f602083611eea565b9150612caa82612c69565b602082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cfc82612cd5565b612d068185612ce0565b9350612d16818560208601611efb565b612d1f81611f25565b840191505092915050565b6000608082019050612d3f6000830187612026565b612d4c6020830186612026565b612d5960408301856120bc565b8181036060830152612d6b8184612cf1565b905095945050505050565b600081519050612d8581611e50565b92915050565b600060208284031215612da157612da0611e1a565b5b6000612daf84828501612d76565b9150509291505056fea2646970667358221220e6b1e1212d569df4e465fb1f79e61c851316ffe52e8c21536a19083151f36f4064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806395d89b41116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105d7578063e985e9c514610602578063f2fde38b1461063f578063f968adbe14610668576101b7565b8063b88d4fde14610546578063c87b56dd1461056f578063d1239730146105ac576101b7565b8063a22cb465116100c6578063a22cb465146104a0578063a7027357146104c9578063ab33f6f8146104f4578063ac9f02221461051d576101b7565b806395d89b411461042e578063a035b1fe14610459578063a0712d6814610484576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780638da5cb5b14610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611e7c565b610693565b6040516101f09190611ec4565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b9190611f6f565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190611fc7565b6107b7565b6040516102589190612035565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061207c565b610836565b005b34801561029657600080fd5b5061029f61097a565b6040516102ac91906120cb565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906120e6565b610991565b005b3480156102ea57600080fd5b506102f3610cb3565b60405161030091906120cb565b60405180910390f35b34801561031557600080fd5b5061031e610cb9565b005b34801561032c57600080fd5b50610347600480360381019061034291906120e6565b610d70565b005b34801561035557600080fd5b50610370600480360381019061036b919061219e565b610d90565b005b34801561037e57600080fd5b5061039960048036038101906103949190611fc7565b610dae565b6040516103a69190612035565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906121eb565b610dc0565b6040516103e391906120cb565b60405180910390f35b3480156103f857600080fd5b50610401610e78565b005b34801561040f57600080fd5b50610418610e8c565b6040516104259190612035565b60405180910390f35b34801561043a57600080fd5b50610443610eb6565b6040516104509190611f6f565b60405180910390f35b34801561046557600080fd5b5061046e610f48565b60405161047b91906120cb565b60405180910390f35b61049e60048036038101906104999190611fc7565b610f4e565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612244565b611208565b005b3480156104d557600080fd5b506104de61137f565b6040516104eb91906120cb565b60405180910390f35b34801561050057600080fd5b5061051b600480360381019061051691906122bd565b611385565b005b34801561052957600080fd5b50610544600480360381019061053f91906122fd565b61139e565b005b34801561055257600080fd5b5061056d6004803603810190610568919061245a565b6113c3565b005b34801561057b57600080fd5b5061059660048036038101906105919190611fc7565b611436565b6040516105a39190611f6f565b60405180910390f35b3480156105b857600080fd5b506105c16114d4565b6040516105ce9190611ec4565b60405180910390f35b3480156105e357600080fd5b506105ec6114e7565b6040516105f991906120cb565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906124dd565b6114ed565b6040516106369190611ec4565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906121eb565b611581565b005b34801561067457600080fd5b5061067d611604565b60405161068a91906120cb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107349061254c565b80601f01602080910402602001604051908101604052809291908181526020018280546107609061254c565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261160a565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084182610dae565b90508073ffffffffffffffffffffffffffffffffffffffff16610862611669565b73ffffffffffffffffffffffffffffffffffffffff16146108c55761088e81610889611669565b6114ed565b6108c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610984611671565b6001546000540303905090565b600061099c82611676565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0f84611742565b91509150610a258187610a20611669565b611769565b610a7157610a3a86610a35611669565b6114ed565b610a70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae486868660016117ad565b8015610aef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbd85610b998888876117b3565b7c0200000000000000000000000000000000000000000000000000000000176117db565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c435760006001850190506000600460008381526020019081526020016000205403610c41576000548114610c40578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cab8686866001611806565b505050505050565b600d5481565b610cc161180c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ce7906125ae565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061260f565b60405180910390fd5b50565b610d8b838383604051806020016040528060008152506113c3565b505050565b610d9861180c565b818160099182610da99291906127e6565b505050565b6000610db982611676565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e8061180c565b610e8a600061188a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ec59061254c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef19061254c565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b5050505050905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390612902565b60405180910390fd5b600f60009054906101000a900460ff1661100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061296e565b60405180910390fd5b6000600a54905060006001600d5461102391906129bd565b8361102c61097a565b61103691906129bd565b10801561108f5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c91906129bd565b11155b9050801561109c57600091505b81836110a891906129f1565b3410156110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612a7f565b60405180910390fd5b6001600e546110f991906129bd565b8361110261097a565b61110c91906129bd565b1061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390612aeb565b60405180910390fd5b6001600b5461115b91906129bd565b831061119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612b57565b60405180910390fd5b80156111f95782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f191906129bd565b925050819055505b6112033384611950565b505050565b611210611669565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611281611669565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e611669565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113739190611ec4565b60405180910390a35050565b600c5481565b61138d61180c565b61139a828260ff16611950565b5050565b6113a661180c565b80600f60006101000a81548160ff02191690831515021790555050565b6113ce848484610991565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611430576113f98484848461196e565b61142f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114418261160a565b611477576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611481611abe565b905060008151036114a157604051806020016040528060008152506114cc565b806114ab84611b50565b6040516020016114bc929190612bb3565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158961180c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90612c49565b60405180910390fd5b6116018161188a565b50565b600b5481565b600081611615611671565b11158015611624575060005482105b8015611662575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611685611671565b1161170b5760005481101561170a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611708575b600081036116fe5760046000836001900393508381526020019081526020016000205490506116d4565b809250505061173d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117ca868684611b97565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611814611ba0565b73ffffffffffffffffffffffffffffffffffffffff16611832610e8c565b73ffffffffffffffffffffffffffffffffffffffff1614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90612cb5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196a828260405180602001604052806000815250611ba8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611994611669565b8786866040518563ffffffff1660e01b81526004016119b69493929190612d2a565b6020604051808303816000875af19250505080156119f257506040513d601f19601f820116820180604052508101906119ef9190612d8b565b60015b611a6b573d8060008114611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b506000815103611a63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611acd9061254c565b80601f0160208091040260200160405190810160405280929190818152602001828054611af99061254c565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b8357600183039250600a81066030018353600a8104905080611b61575b508181036020830392508083525050919050565b60009392505050565b600033905090565b611bb28383611c45565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4057600080549050600083820390505b611bf2600086838060010194508661196e565b611c28576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bdf578160005414611c3d57600080fd5b50505b505050565b60008054905060008203611c85576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9260008483856117ad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d0983611cfa60008660006117b3565b611d0385611e00565b176117db565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611daa57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d6f565b5060008203611de5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611dfb6000848385611806565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e5981611e24565b8114611e6457600080fd5b50565b600081359050611e7681611e50565b92915050565b600060208284031215611e9257611e91611e1a565b5b6000611ea084828501611e67565b91505092915050565b60008115159050919050565b611ebe81611ea9565b82525050565b6000602082019050611ed96000830184611eb5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f19578082015181840152602081019050611efe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f4182611edf565b611f4b8185611eea565b9350611f5b818560208601611efb565b611f6481611f25565b840191505092915050565b60006020820190508181036000830152611f898184611f36565b905092915050565b6000819050919050565b611fa481611f91565b8114611faf57600080fd5b50565b600081359050611fc181611f9b565b92915050565b600060208284031215611fdd57611fdc611e1a565b5b6000611feb84828501611fb2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061201f82611ff4565b9050919050565b61202f81612014565b82525050565b600060208201905061204a6000830184612026565b92915050565b61205981612014565b811461206457600080fd5b50565b60008135905061207681612050565b92915050565b6000806040838503121561209357612092611e1a565b5b60006120a185828601612067565b92505060206120b285828601611fb2565b9150509250929050565b6120c581611f91565b82525050565b60006020820190506120e060008301846120bc565b92915050565b6000806000606084860312156120ff576120fe611e1a565b5b600061210d86828701612067565b935050602061211e86828701612067565b925050604061212f86828701611fb2565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261215e5761215d612139565b5b8235905067ffffffffffffffff81111561217b5761217a61213e565b5b60208301915083600182028301111561219757612196612143565b5b9250929050565b600080602083850312156121b5576121b4611e1a565b5b600083013567ffffffffffffffff8111156121d3576121d2611e1f565b5b6121df85828601612148565b92509250509250929050565b60006020828403121561220157612200611e1a565b5b600061220f84828501612067565b91505092915050565b61222181611ea9565b811461222c57600080fd5b50565b60008135905061223e81612218565b92915050565b6000806040838503121561225b5761225a611e1a565b5b600061226985828601612067565b925050602061227a8582860161222f565b9150509250929050565b600060ff82169050919050565b61229a81612284565b81146122a557600080fd5b50565b6000813590506122b781612291565b92915050565b600080604083850312156122d4576122d3611e1a565b5b60006122e285828601612067565b92505060206122f3858286016122a8565b9150509250929050565b60006020828403121561231357612312611e1a565b5b60006123218482850161222f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61236782611f25565b810181811067ffffffffffffffff821117156123865761238561232f565b5b80604052505050565b6000612399611e10565b90506123a5828261235e565b919050565b600067ffffffffffffffff8211156123c5576123c461232f565b5b6123ce82611f25565b9050602081019050919050565b82818337600083830152505050565b60006123fd6123f8846123aa565b61238f565b9050828152602081018484840111156124195761241861232a565b5b6124248482856123db565b509392505050565b600082601f83011261244157612440612139565b5b81356124518482602086016123ea565b91505092915050565b6000806000806080858703121561247457612473611e1a565b5b600061248287828801612067565b945050602061249387828801612067565b93505060406124a487828801611fb2565b925050606085013567ffffffffffffffff8111156124c5576124c4611e1f565b5b6124d18782880161242c565b91505092959194509250565b600080604083850312156124f4576124f3611e1a565b5b600061250285828601612067565b925050602061251385828601612067565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061256457607f821691505b6020821081036125775761257661251d565b5b50919050565b600081905092915050565b50565b600061259860008361257d565b91506125a382612588565b600082019050919050565b60006125b98261258b565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006125f9601083611eea565b9150612604826125c3565b602082019050919050565b60006020820190508181036000830152612628816125ec565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261269c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261265f565b6126a6868361265f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126e36126de6126d984611f91565b6126be565b611f91565b9050919050565b6000819050919050565b6126fd836126c8565b612711612709826126ea565b84845461266c565b825550505050565b600090565b612726612719565b6127318184846126f4565b505050565b5b818110156127555761274a60008261271e565b600181019050612737565b5050565b601f82111561279a5761276b8161263a565b6127748461264f565b81016020851015612783578190505b61279761278f8561264f565b830182612736565b50505b505050565b600082821c905092915050565b60006127bd6000198460080261279f565b1980831691505092915050565b60006127d683836127ac565b9150826002028217905092915050565b6127f0838361262f565b67ffffffffffffffff8111156128095761280861232f565b5b612813825461254c565b61281e828285612759565b6000601f83116001811461284d576000841561283b578287013590505b61284585826127ca565b8655506128ad565b601f19841661285b8661263a565b60005b828110156128835784890135825560018201915060208501945060208101905061285e565b868310156128a0578489013561289c601f8916826127ac565b8355505b6001600288020188555050505b50505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006128ec601e83611eea565b91506128f7826128b6565b602082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612958601783611eea565b915061296382612922565b602082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129c882611f91565b91506129d383611f91565b92508282019050808211156129eb576129ea61298e565b5b92915050565b60006129fc82611f91565b9150612a0783611f91565b9250828202612a1581611f91565b91508282048414831517612a2c57612a2b61298e565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612a69601d83611eea565b9150612a7482612a33565b602082019050919050565b60006020820190508181036000830152612a9881612a5c565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612ad5600783611eea565b9150612ae082612a9f565b602082019050919050565b60006020820190508181036000830152612b0481612ac8565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612b41601383611eea565b9150612b4c82612b0b565b602082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b600081905092915050565b6000612b8d82611edf565b612b978185612b77565b9350612ba7818560208601611efb565b80840191505092915050565b6000612bbf8285612b82565b9150612bcb8284612b82565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c33602683611eea565b9150612c3e82612bd7565b604082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c9f602083611eea565b9150612caa82612c69565b602082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cfc82612cd5565b612d068185612ce0565b9350612d16818560208601611efb565b612d1f81611f25565b840191505092915050565b6000608082019050612d3f6000830187612026565b612d4c6020830186612026565b612d5960408301856120bc565b8181036060830152612d6b8184612cf1565b905095945050505050565b600081519050612d8581611e50565b92915050565b600060208284031215612da157612da0611e1a565b5b6000612daf84828501612d76565b9150509291505056fea2646970667358221220e6b1e1212d569df4e465fb1f79e61c851316ffe52e8c21536a19083151f36f4064736f6c63430008110033

Deployed Bytecode Sourcemap

57051:2074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20965:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21867:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28350:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27791:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17618:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32057:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57298:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58940:182;;;;;;;;;;;;;:::i;:::-;;34970:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58428:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23260:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18802:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56132:103;;;;;;;;;;;;;:::i;:::-;;55484:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22043:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57175:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57706:711;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28908:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57254:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58781:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58672:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35753:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22253:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57377:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57337;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29373:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56390:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57218:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20965:639;21050:4;21389:10;21374:25;;:11;:25;;;;:102;;;;21466:10;21451:25;;:11;:25;;;;21374:102;:179;;;;21543:10;21528:25;;:11;:25;;;;21374:179;21354:199;;20965:639;;;:::o;21867:100::-;21921:13;21954:5;21947:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21867:100;:::o;28350:218::-;28426:7;28451:16;28459:7;28451;:16::i;:::-;28446:64;;28476:34;;;;;;;;;;;;;;28446:64;28530:15;:24;28546:7;28530:24;;;;;;;;;;;:30;;;;;;;;;;;;28523:37;;28350:218;;;:::o;27791:400::-;27872:13;27888:16;27896:7;27888;:16::i;:::-;27872:32;;27944:5;27921:28;;:19;:17;:19::i;:::-;:28;;;27917:175;;27969:44;27986:5;27993:19;:17;:19::i;:::-;27969:16;:44::i;:::-;27964:128;;28041:35;;;;;;;;;;;;;;27964:128;27917:175;28137:2;28104:15;:24;28120:7;28104:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28175:7;28171:2;28155:28;;28164:5;28155:28;;;;;;;;;;;;27861:330;27791:400;;:::o;17618:323::-;17679:7;17907:15;:13;:15::i;:::-;17892:12;;17876:13;;:28;:46;17869:53;;17618:323;:::o;32057:2817::-;32191:27;32221;32240:7;32221:18;:27::i;:::-;32191:57;;32306:4;32265:45;;32281:19;32265:45;;;32261:86;;32319:28;;;;;;;;;;;;;;32261:86;32361:27;32390:23;32417:35;32444:7;32417:26;:35::i;:::-;32360:92;;;;32552:68;32577:15;32594:4;32600:19;:17;:19::i;:::-;32552:24;:68::i;:::-;32547:180;;32640:43;32657:4;32663:19;:17;:19::i;:::-;32640:16;:43::i;:::-;32635:92;;32692:35;;;;;;;;;;;;;;32635:92;32547:180;32758:1;32744:16;;:2;:16;;;32740:52;;32769:23;;;;;;;;;;;;;;32740:52;32805:43;32827:4;32833:2;32837:7;32846:1;32805:21;:43::i;:::-;32941:15;32938:160;;;33081:1;33060:19;33053:30;32938:160;33478:18;:24;33497:4;33478:24;;;;;;;;;;;;;;;;33476:26;;;;;;;;;;;;33547:18;:22;33566:2;33547:22;;;;;;;;;;;;;;;;33545:24;;;;;;;;;;;33869:146;33906:2;33955:45;33970:4;33976:2;33980:19;33955:14;:45::i;:::-;14017:8;33927:73;33869:18;:146::i;:::-;33840:17;:26;33858:7;33840:26;;;;;;;;;;;:175;;;;34186:1;14017:8;34135:19;:47;:52;34131:627;;34208:19;34240:1;34230:7;:11;34208:33;;34397:1;34363:17;:30;34381:11;34363:30;;;;;;;;;;;;:35;34359:384;;34501:13;;34486:11;:28;34482:242;;34681:19;34648:17;:30;34666:11;34648:30;;;;;;;;;;;:52;;;;34482:242;34359:384;34189:569;34131:627;34805:7;34801:2;34786:27;;34795:4;34786:27;;;;;;;;;;;;34824:42;34845:4;34851:2;34855:7;34864:1;34824:20;:42::i;:::-;32180:2694;;;32057:2817;;;:::o;57298:30::-;;;;:::o;58940:182::-;55370:13;:11;:13::i;:::-;58991:12:::1;59017:10;59009:24;;59041:21;59009:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58990:77;;;59086:7;59078:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58979:143;58940:182::o:0;34970:185::-;35108:39;35125:4;35131:2;35135:7;35108:39;;;;;;;;;;;;:16;:39::i;:::-;34970:185;;;:::o;58428:106::-;55370:13;:11;:13::i;:::-;58519:7:::1;;58503:13;:23;;;;;;;:::i;:::-;;58428:106:::0;;:::o;23260:152::-;23332:7;23375:27;23394:7;23375:18;:27::i;:::-;23352:52;;23260:152;;;:::o;18802:233::-;18874:7;18915:1;18898:19;;:5;:19;;;18894:60;;18926:28;;;;;;;;;;;;;;18894:60;12961:13;18972:18;:25;18991:5;18972:25;;;;;;;;;;;;;;;;:55;18965:62;;18802:233;;;:::o;56132:103::-;55370:13;:11;:13::i;:::-;56197:30:::1;56224:1;56197:18;:30::i;:::-;56132:103::o:0;55484:87::-;55530:7;55557:6;;;;;;;;;;;55550:13;;55484:87;:::o;22043:104::-;22099:13;22132:7;22125:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22043:104;:::o;57175:34::-;;;;:::o;57706:711::-;57633:10;57620:23;;:9;:23;;;57612:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57785:11:::1;;;;;;;;;;;57777:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;57837:12;57852:5;;57837:20;;57868:11;57920:1;57908:9;;:13;;;;:::i;:::-;57900:5;57884:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;57883:115;;;;;57981:16;;57972:5;57940:17;:29;57958:10;57940:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;57883:115;57868:131;;58016:6;58012:47;;;58046:1;58039:8;;58012:47;58100:4;58092:5;:12;;;;:::i;:::-;58079:9;:25;;58071:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58193:1;58181:9;;:13;;;;:::i;:::-;58173:5;58157:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;58149:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;58254:1;58243:8;;:12;;;;:::i;:::-;58235:5;:20;58227:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;58296:6;58292:77;;;58352:5;58319:17;:29;58337:10;58319:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;58292:77;58381:28;58391:10;58403:5;58381:9;:28::i;:::-;57764:653;;57706:711:::0;:::o;28908:308::-;29019:19;:17;:19::i;:::-;29007:31;;:8;:31;;;29003:61;;29047:17;;;;;;;;;;;;;;29003:61;29129:8;29077:18;:39;29096:19;:17;:19::i;:::-;29077:39;;;;;;;;;;;;;;;:49;29117:8;29077:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29189:8;29153:55;;29168:19;:17;:19::i;:::-;29153:55;;;29199:8;29153:55;;;;;;:::i;:::-;;;;;;;;28908:308;;:::o;57254:35::-;;;;:::o;58781:150::-;55370:13;:11;:13::i;:::-;58877:36:::1;58887:11;58900:12;58877:36;;:9;:36::i;:::-;58781:150:::0;;:::o;58672:101::-;55370:13;:11;:13::i;:::-;58753:12:::1;58739:11;;:26;;;;;;;;;;;;;;;;;;58672:101:::0;:::o;35753:399::-;35920:31;35933:4;35939:2;35943:7;35920:12;:31::i;:::-;35984:1;35966:2;:14;;;:19;35962:183;;36005:56;36036:4;36042:2;36046:7;36055:5;36005:30;:56::i;:::-;36000:145;;36089:40;;;;;;;;;;;;;;36000:145;35962:183;35753:399;;;;:::o;22253:318::-;22326:13;22357:16;22365:7;22357;:16::i;:::-;22352:59;;22382:29;;;;;;;;;;;;;;22352:59;22424:21;22448:10;:8;:10::i;:::-;22424:34;;22501:1;22482:7;22476:21;:26;:87;;;;;;;;;;;;;;;;;22529:7;22538:18;22548:7;22538:9;:18::i;:::-;22512:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22476:87;22469:94;;;22253:318;;;:::o;57377:31::-;;;;;;;;;;;;;:::o;57337:::-;;;;:::o;29373:164::-;29470:4;29494:18;:25;29513:5;29494:25;;;;;;;;;;;;;;;:35;29520:8;29494:35;;;;;;;;;;;;;;;;;;;;;;;;;29487:42;;29373:164;;;;:::o;56390:201::-;55370:13;:11;:13::i;:::-;56499:1:::1;56479:22;;:8;:22;;::::0;56471:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56555:28;56574:8;56555:18;:28::i;:::-;56390:201:::0;:::o;57218:27::-;;;;:::o;29795:282::-;29860:4;29916:7;29897:15;:13;:15::i;:::-;:26;;:66;;;;;29950:13;;29940:7;:23;29897:66;:153;;;;;30049:1;13737:8;30001:17;:26;30019:7;30001:26;;;;;;;;;;;;:44;:49;29897:153;29877:173;;29795:282;;;:::o;51561:105::-;51621:7;51648:10;51641:17;;51561:105;:::o;17134:92::-;17190:7;17134:92;:::o;24415:1275::-;24482:7;24502:12;24517:7;24502:22;;24585:4;24566:15;:13;:15::i;:::-;:23;24562:1061;;24619:13;;24612:4;:20;24608:1015;;;24657:14;24674:17;:23;24692:4;24674:23;;;;;;;;;;;;24657:40;;24791:1;13737:8;24763:6;:24;:29;24759:845;;25428:113;25445:1;25435:6;:11;25428:113;;25488:17;:25;25506:6;;;;;;;25488:25;;;;;;;;;;;;25479:34;;25428:113;;;25574:6;25567:13;;;;;;24759:845;24634:989;24608:1015;24562:1061;25651:31;;;;;;;;;;;;;;24415:1275;;;;:::o;30958:479::-;31060:27;31089:23;31130:38;31171:15;:24;31187:7;31171:24;;;;;;;;;;;31130:65;;31342:18;31319:41;;31399:19;31393:26;31374:45;;31304:126;30958:479;;;:::o;30186:659::-;30335:11;30500:16;30493:5;30489:28;30480:37;;30660:16;30649:9;30645:32;30632:45;;30810:15;30799:9;30796:30;30788:5;30777:9;30774:20;30771:56;30761:66;;30186:659;;;;;:::o;36814:159::-;;;;;:::o;50870:311::-;51005:7;51025:16;14141:3;51051:19;:41;;51025:68;;14141:3;51119:31;51130:4;51136:2;51140:9;51119:10;:31::i;:::-;51111:40;;:62;;51104:69;;;50870:311;;;;;:::o;26238:450::-;26318:14;26486:16;26479:5;26475:28;26466:37;;26663:5;26649:11;26624:23;26620:41;26617:52;26610:5;26607:63;26597:73;;26238:450;;;;:::o;37638:158::-;;;;;:::o;55649:132::-;55724:12;:10;:12::i;:::-;55713:23;;:7;:5;:7::i;:::-;:23;;;55705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55649:132::o;56751:191::-;56825:16;56844:6;;;;;;;;;;;56825:25;;56870:8;56861:6;;:17;;;;;;;;;;;;;;;;;;56925:8;56894:40;;56915:8;56894:40;;;;;;;;;;;;56814:128;56751:191;:::o;45393:112::-;45470:27;45480:2;45484:8;45470:27;;;;;;;;;;;;:9;:27::i;:::-;45393:112;;:::o;38236:716::-;38399:4;38445:2;38420:45;;;38466:19;:17;:19::i;:::-;38487:4;38493:7;38502:5;38420:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38416:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38720:1;38703:6;:13;:18;38699:235;;38749:40;;;;;;;;;;;;;;38699:235;38892:6;38886:13;38877:6;38873:2;38869:15;38862:38;38416:529;38589:54;;;38579:64;;;:6;:64;;;;38572:71;;;38236:716;;;;;;:::o;58545:113::-;58604:13;58637;58630:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58545:113;:::o;51768:1581::-;51833:17;52258:4;52251;52245:11;52241:22;52234:29;;52350:3;52344:4;52337:17;52456:3;52695:5;52677:428;52703:1;52677:428;;;52743:1;52738:3;52734:11;52727:18;;52914:2;52908:4;52904:13;52900:2;52896:22;52891:3;52883:36;53008:2;53002:4;52998:13;52990:21;;53075:4;52677:428;53065:25;52677:428;52681:21;53144:3;53139;53135:13;53259:4;53254:3;53250:14;53243:21;;53324:6;53319:3;53312:19;51872:1470;;51768:1581;;;:::o;50571:147::-;50708:6;50571:147;;;;;:::o;54035:98::-;54088:7;54115:10;54108:17;;54035:98;:::o;44620:689::-;44751:19;44757:2;44761:8;44751:5;:19::i;:::-;44830:1;44812:2;:14;;;:19;44808:483;;44852:11;44866:13;;44852:27;;44898:13;44920:8;44914:3;:14;44898:30;;44947:233;44978:62;45017:1;45021:2;45025:7;;;;;;45034:5;44978:30;:62::i;:::-;44973:167;;45076:40;;;;;;;;;;;;;;44973:167;45175:3;45167:5;:11;44947:233;;45262:3;45245:13;;:20;45241:34;;45267:8;;;45241:34;44833:458;;44808:483;44620:689;;;:::o;39414:2454::-;39487:20;39510:13;;39487:36;;39550:1;39538:8;:13;39534:44;;39560:18;;;;;;;;;;;;;;39534:44;39591:61;39621:1;39625:2;39629:12;39643:8;39591:21;:61::i;:::-;40135:1;13099:2;40105:1;:26;;40104:32;40092:8;:45;40066:18;:22;40085:2;40066:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40414:139;40451:2;40505:33;40528:1;40532:2;40536:1;40505:14;:33::i;:::-;40472:30;40493:8;40472:20;:30::i;:::-;:66;40414:18;:139::i;:::-;40380:17;:31;40398:12;40380:31;;;;;;;;;;;:173;;;;40570:16;40601:11;40630:8;40615:12;:23;40601:37;;40885:16;40881:2;40877:25;40865:37;;41257:12;41217:8;41176:1;41114:25;41055:1;40994;40967:335;41382:1;41368:12;41364:20;41322:346;41423:3;41414:7;41411:16;41322:346;;41641:7;41631:8;41628:1;41601:25;41598:1;41595;41590:59;41476:1;41467:7;41463:15;41452:26;;41322:346;;;41326:77;41713:1;41701:8;:13;41697:45;;41723:19;;;;;;;;;;;;;;41697:45;41775:3;41759:13;:19;;;;39840:1950;;41800:60;41829:1;41833:2;41837:12;41851:8;41800:20;:60::i;:::-;39476:2392;39414:2454;;:::o;26790:324::-;26860:14;27093:1;27083:8;27080:15;27054:24;27050:46;27040:56;;26790:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:86::-;8449:7;8489:4;8482:5;8478:16;8467:27;;8414:86;;;:::o;8506:118::-;8577:22;8593:5;8577:22;:::i;:::-;8570:5;8567:33;8557:61;;8614:1;8611;8604:12;8557:61;8506:118;:::o;8630:135::-;8674:5;8712:6;8699:20;8690:29;;8728:31;8753:5;8728:31;:::i;:::-;8630:135;;;;:::o;8771:470::-;8837:6;8845;8894:2;8882:9;8873:7;8869:23;8865:32;8862:119;;;8900:79;;:::i;:::-;8862:119;9020:1;9045:53;9090:7;9081:6;9070:9;9066:22;9045:53;:::i;:::-;9035:63;;8991:117;9147:2;9173:51;9216:7;9207:6;9196:9;9192:22;9173:51;:::i;:::-;9163:61;;9118:116;8771:470;;;;;:::o;9247:323::-;9303:6;9352:2;9340:9;9331:7;9327:23;9323:32;9320:119;;;9358:79;;:::i;:::-;9320:119;9478:1;9503:50;9545:7;9536:6;9525:9;9521:22;9503:50;:::i;:::-;9493:60;;9449:114;9247:323;;;;:::o;9576:117::-;9685:1;9682;9675:12;9699:180;9747:77;9744:1;9737:88;9844:4;9841:1;9834:15;9868:4;9865:1;9858:15;9885:281;9968:27;9990:4;9968:27;:::i;:::-;9960:6;9956:40;10098:6;10086:10;10083:22;10062:18;10050:10;10047:34;10044:62;10041:88;;;10109:18;;:::i;:::-;10041:88;10149:10;10145:2;10138:22;9928:238;9885:281;;:::o;10172:129::-;10206:6;10233:20;;:::i;:::-;10223:30;;10262:33;10290:4;10282:6;10262:33;:::i;:::-;10172:129;;;:::o;10307:307::-;10368:4;10458:18;10450:6;10447:30;10444:56;;;10480:18;;:::i;:::-;10444:56;10518:29;10540:6;10518:29;:::i;:::-;10510:37;;10602:4;10596;10592:15;10584:23;;10307:307;;;:::o;10620:146::-;10717:6;10712:3;10707;10694:30;10758:1;10749:6;10744:3;10740:16;10733:27;10620:146;;;:::o;10772:423::-;10849:5;10874:65;10890:48;10931:6;10890:48;:::i;:::-;10874:65;:::i;:::-;10865:74;;10962:6;10955:5;10948:21;11000:4;10993:5;10989:16;11038:3;11029:6;11024:3;11020:16;11017:25;11014:112;;;11045:79;;:::i;:::-;11014:112;11135:54;11182:6;11177:3;11172;11135:54;:::i;:::-;10855:340;10772:423;;;;;:::o;11214:338::-;11269:5;11318:3;11311:4;11303:6;11299:17;11295:27;11285:122;;11326:79;;:::i;:::-;11285:122;11443:6;11430:20;11468:78;11542:3;11534:6;11527:4;11519:6;11515:17;11468:78;:::i;:::-;11459:87;;11275:277;11214:338;;;;:::o;11558:943::-;11653:6;11661;11669;11677;11726:3;11714:9;11705:7;11701:23;11697:33;11694:120;;;11733:79;;:::i;:::-;11694:120;11853:1;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11824:117;11980:2;12006:53;12051:7;12042:6;12031:9;12027:22;12006:53;:::i;:::-;11996:63;;11951:118;12108:2;12134:53;12179:7;12170:6;12159:9;12155:22;12134:53;:::i;:::-;12124:63;;12079:118;12264:2;12253:9;12249:18;12236:32;12295:18;12287:6;12284:30;12281:117;;;12317:79;;:::i;:::-;12281:117;12422:62;12476:7;12467:6;12456:9;12452:22;12422:62;:::i;:::-;12412:72;;12207:287;11558:943;;;;;;;:::o;12507:474::-;12575:6;12583;12632:2;12620:9;12611:7;12607:23;12603:32;12600:119;;;12638:79;;:::i;:::-;12600:119;12758:1;12783:53;12828:7;12819:6;12808:9;12804:22;12783:53;:::i;:::-;12773:63;;12729:117;12885:2;12911:53;12956:7;12947:6;12936:9;12932:22;12911:53;:::i;:::-;12901:63;;12856:118;12507:474;;;;;:::o;12987:180::-;13035:77;13032:1;13025:88;13132:4;13129:1;13122:15;13156:4;13153:1;13146:15;13173:320;13217:6;13254:1;13248:4;13244:12;13234:22;;13301:1;13295:4;13291:12;13322:18;13312:81;;13378:4;13370:6;13366:17;13356:27;;13312:81;13440:2;13432:6;13429:14;13409:18;13406:38;13403:84;;13459:18;;:::i;:::-;13403:84;13224:269;13173:320;;;:::o;13499:147::-;13600:11;13637:3;13622:18;;13499:147;;;;:::o;13652:114::-;;:::o;13772:398::-;13931:3;13952:83;14033:1;14028:3;13952:83;:::i;:::-;13945:90;;14044:93;14133:3;14044:93;:::i;:::-;14162:1;14157:3;14153:11;14146:18;;13772:398;;;:::o;14176:379::-;14360:3;14382:147;14525:3;14382:147;:::i;:::-;14375:154;;14546:3;14539:10;;14176:379;;;:::o;14561:166::-;14701:18;14697:1;14689:6;14685:14;14678:42;14561:166;:::o;14733:366::-;14875:3;14896:67;14960:2;14955:3;14896:67;:::i;:::-;14889:74;;14972:93;15061:3;14972:93;:::i;:::-;15090:2;15085:3;15081:12;15074:19;;14733:366;;;:::o;15105:419::-;15271:4;15309:2;15298:9;15294:18;15286:26;;15358:9;15352:4;15348:20;15344:1;15333:9;15329:17;15322:47;15386:131;15512:4;15386:131;:::i;:::-;15378:139;;15105:419;;;:::o;15530:97::-;15589:6;15617:3;15607:13;;15530:97;;;;:::o;15633:141::-;15682:4;15705:3;15697:11;;15728:3;15725:1;15718:14;15762:4;15759:1;15749:18;15741:26;;15633:141;;;:::o;15780:93::-;15817:6;15864:2;15859;15852:5;15848:14;15844:23;15834:33;;15780:93;;;:::o;15879:107::-;15923:8;15973:5;15967:4;15963:16;15942:37;;15879:107;;;;:::o;15992:393::-;16061:6;16111:1;16099:10;16095:18;16134:97;16164:66;16153:9;16134:97;:::i;:::-;16252:39;16282:8;16271:9;16252:39;:::i;:::-;16240:51;;16324:4;16320:9;16313:5;16309:21;16300:30;;16373:4;16363:8;16359:19;16352:5;16349:30;16339:40;;16068:317;;15992:393;;;;;:::o;16391:60::-;16419:3;16440:5;16433:12;;16391:60;;;:::o;16457:142::-;16507:9;16540:53;16558:34;16567:24;16585:5;16567:24;:::i;:::-;16558:34;:::i;:::-;16540:53;:::i;:::-;16527:66;;16457:142;;;:::o;16605:75::-;16648:3;16669:5;16662:12;;16605:75;;;:::o;16686:269::-;16796:39;16827:7;16796:39;:::i;:::-;16857:91;16906:41;16930:16;16906:41;:::i;:::-;16898:6;16891:4;16885:11;16857:91;:::i;:::-;16851:4;16844:105;16762:193;16686:269;;;:::o;16961:73::-;17006:3;16961:73;:::o;17040:189::-;17117:32;;:::i;:::-;17158:65;17216:6;17208;17202:4;17158:65;:::i;:::-;17093:136;17040:189;;:::o;17235:186::-;17295:120;17312:3;17305:5;17302:14;17295:120;;;17366:39;17403:1;17396:5;17366:39;:::i;:::-;17339:1;17332:5;17328:13;17319:22;;17295:120;;;17235:186;;:::o;17427:543::-;17528:2;17523:3;17520:11;17517:446;;;17562:38;17594:5;17562:38;:::i;:::-;17646:29;17664:10;17646:29;:::i;:::-;17636:8;17632:44;17829:2;17817:10;17814:18;17811:49;;;17850:8;17835:23;;17811:49;17873:80;17929:22;17947:3;17929:22;:::i;:::-;17919:8;17915:37;17902:11;17873:80;:::i;:::-;17532:431;;17517:446;17427:543;;;:::o;17976:117::-;18030:8;18080:5;18074:4;18070:16;18049:37;;17976:117;;;;:::o;18099:169::-;18143:6;18176:51;18224:1;18220:6;18212:5;18209:1;18205:13;18176:51;:::i;:::-;18172:56;18257:4;18251;18247:15;18237:25;;18150:118;18099:169;;;;:::o;18273:295::-;18349:4;18495:29;18520:3;18514:4;18495:29;:::i;:::-;18487:37;;18557:3;18554:1;18550:11;18544:4;18541:21;18533:29;;18273:295;;;;:::o;18573:1403::-;18697:44;18737:3;18732;18697:44;:::i;:::-;18806:18;18798:6;18795:30;18792:56;;;18828:18;;:::i;:::-;18792:56;18872:38;18904:4;18898:11;18872:38;:::i;:::-;18957:67;19017:6;19009;19003:4;18957:67;:::i;:::-;19051:1;19080:2;19072:6;19069:14;19097:1;19092:632;;;;19768:1;19785:6;19782:84;;;19841:9;19836:3;19832:19;19819:33;19810:42;;19782:84;19892:67;19952:6;19945:5;19892:67;:::i;:::-;19886:4;19879:81;19741:229;19062:908;;19092:632;19144:4;19140:9;19132:6;19128:22;19178:37;19210:4;19178:37;:::i;:::-;19237:1;19251:215;19265:7;19262:1;19259:14;19251:215;;;19351:9;19346:3;19342:19;19329:33;19321:6;19314:49;19402:1;19394:6;19390:14;19380:24;;19449:2;19438:9;19434:18;19421:31;;19288:4;19285:1;19281:12;19276:17;;19251:215;;;19494:6;19485:7;19482:19;19479:186;;;19559:9;19554:3;19550:19;19537:33;19602:48;19644:4;19636:6;19632:17;19621:9;19602:48;:::i;:::-;19594:6;19587:64;19502:163;19479:186;19711:1;19707;19699:6;19695:14;19691:22;19685:4;19678:36;19099:625;;;19062:908;;18672:1304;;;18573:1403;;;:::o;19982:180::-;20122:32;20118:1;20110:6;20106:14;20099:56;19982:180;:::o;20168:366::-;20310:3;20331:67;20395:2;20390:3;20331:67;:::i;:::-;20324:74;;20407:93;20496:3;20407:93;:::i;:::-;20525:2;20520:3;20516:12;20509:19;;20168:366;;;:::o;20540:419::-;20706:4;20744:2;20733:9;20729:18;20721:26;;20793:9;20787:4;20783:20;20779:1;20768:9;20764:17;20757:47;20821:131;20947:4;20821:131;:::i;:::-;20813:139;;20540:419;;;:::o;20965:173::-;21105:25;21101:1;21093:6;21089:14;21082:49;20965:173;:::o;21144:366::-;21286:3;21307:67;21371:2;21366:3;21307:67;:::i;:::-;21300:74;;21383:93;21472:3;21383:93;:::i;:::-;21501:2;21496:3;21492:12;21485:19;;21144:366;;;:::o;21516:419::-;21682:4;21720:2;21709:9;21705:18;21697:26;;21769:9;21763:4;21759:20;21755:1;21744:9;21740:17;21733:47;21797:131;21923:4;21797:131;:::i;:::-;21789:139;;21516:419;;;:::o;21941:180::-;21989:77;21986:1;21979:88;22086:4;22083:1;22076:15;22110:4;22107:1;22100:15;22127:191;22167:3;22186:20;22204:1;22186:20;:::i;:::-;22181:25;;22220:20;22238:1;22220:20;:::i;:::-;22215:25;;22263:1;22260;22256:9;22249:16;;22284:3;22281:1;22278:10;22275:36;;;22291:18;;:::i;:::-;22275:36;22127:191;;;;:::o;22324:410::-;22364:7;22387:20;22405:1;22387:20;:::i;:::-;22382:25;;22421:20;22439:1;22421:20;:::i;:::-;22416:25;;22476:1;22473;22469:9;22498:30;22516:11;22498:30;:::i;:::-;22487:41;;22677:1;22668:7;22664:15;22661:1;22658:22;22638:1;22631:9;22611:83;22588:139;;22707:18;;:::i;:::-;22588:139;22372:362;22324:410;;;;:::o;22740:179::-;22880:31;22876:1;22868:6;22864:14;22857:55;22740:179;:::o;22925:366::-;23067:3;23088:67;23152:2;23147:3;23088:67;:::i;:::-;23081:74;;23164:93;23253:3;23164:93;:::i;:::-;23282:2;23277:3;23273:12;23266:19;;22925:366;;;:::o;23297:419::-;23463:4;23501:2;23490:9;23486:18;23478:26;;23550:9;23544:4;23540:20;23536:1;23525:9;23521:17;23514:47;23578:131;23704:4;23578:131;:::i;:::-;23570:139;;23297:419;;;:::o;23722:157::-;23862:9;23858:1;23850:6;23846:14;23839:33;23722:157;:::o;23885:365::-;24027:3;24048:66;24112:1;24107:3;24048:66;:::i;:::-;24041:73;;24123:93;24212:3;24123:93;:::i;:::-;24241:2;24236:3;24232:12;24225:19;;23885:365;;;:::o;24256:419::-;24422:4;24460:2;24449:9;24445:18;24437:26;;24509:9;24503:4;24499:20;24495:1;24484:9;24480:17;24473:47;24537:131;24663:4;24537:131;:::i;:::-;24529:139;;24256:419;;;:::o;24681:169::-;24821:21;24817:1;24809:6;24805:14;24798:45;24681:169;:::o;24856:366::-;24998:3;25019:67;25083:2;25078:3;25019:67;:::i;:::-;25012:74;;25095:93;25184:3;25095:93;:::i;:::-;25213:2;25208:3;25204:12;25197:19;;24856:366;;;:::o;25228:419::-;25394:4;25432:2;25421:9;25417:18;25409:26;;25481:9;25475:4;25471:20;25467:1;25456:9;25452:17;25445:47;25509:131;25635:4;25509:131;:::i;:::-;25501:139;;25228:419;;;:::o;25653:148::-;25755:11;25792:3;25777:18;;25653:148;;;;:::o;25807:390::-;25913:3;25941:39;25974:5;25941:39;:::i;:::-;25996:89;26078:6;26073:3;25996:89;:::i;:::-;25989:96;;26094:65;26152:6;26147:3;26140:4;26133:5;26129:16;26094:65;:::i;:::-;26184:6;26179:3;26175:16;26168:23;;25917:280;25807:390;;;;:::o;26203:435::-;26383:3;26405:95;26496:3;26487:6;26405:95;:::i;:::-;26398:102;;26517:95;26608:3;26599:6;26517:95;:::i;:::-;26510:102;;26629:3;26622:10;;26203:435;;;;;:::o;26644:225::-;26784:34;26780:1;26772:6;26768:14;26761:58;26853:8;26848:2;26840:6;26836:15;26829:33;26644:225;:::o;26875:366::-;27017:3;27038:67;27102:2;27097:3;27038:67;:::i;:::-;27031:74;;27114:93;27203:3;27114:93;:::i;:::-;27232:2;27227:3;27223:12;27216:19;;26875:366;;;:::o;27247:419::-;27413:4;27451:2;27440:9;27436:18;27428:26;;27500:9;27494:4;27490:20;27486:1;27475:9;27471:17;27464:47;27528:131;27654:4;27528:131;:::i;:::-;27520:139;;27247:419;;;:::o;27672:182::-;27812:34;27808:1;27800:6;27796:14;27789:58;27672:182;:::o;27860:366::-;28002:3;28023:67;28087:2;28082:3;28023:67;:::i;:::-;28016:74;;28099:93;28188:3;28099:93;:::i;:::-;28217:2;28212:3;28208:12;28201:19;;27860:366;;;:::o;28232:419::-;28398:4;28436:2;28425:9;28421:18;28413:26;;28485:9;28479:4;28475:20;28471:1;28460:9;28456:17;28449:47;28513:131;28639:4;28513:131;:::i;:::-;28505:139;;28232:419;;;:::o;28657:98::-;28708:6;28742:5;28736:12;28726:22;;28657:98;;;:::o;28761:168::-;28844:11;28878:6;28873:3;28866:19;28918:4;28913:3;28909:14;28894:29;;28761:168;;;;:::o;28935:373::-;29021:3;29049:38;29081:5;29049:38;:::i;:::-;29103:70;29166:6;29161:3;29103:70;:::i;:::-;29096:77;;29182:65;29240:6;29235:3;29228:4;29221:5;29217:16;29182:65;:::i;:::-;29272:29;29294:6;29272:29;:::i;:::-;29267:3;29263:39;29256:46;;29025:283;28935:373;;;;:::o;29314:640::-;29509:4;29547:3;29536:9;29532:19;29524:27;;29561:71;29629:1;29618:9;29614:17;29605:6;29561:71;:::i;:::-;29642:72;29710:2;29699:9;29695:18;29686:6;29642:72;:::i;:::-;29724;29792:2;29781:9;29777:18;29768:6;29724:72;:::i;:::-;29843:9;29837:4;29833:20;29828:2;29817:9;29813:18;29806:48;29871:76;29942:4;29933:6;29871:76;:::i;:::-;29863:84;;29314:640;;;;;;;:::o;29960:141::-;30016:5;30047:6;30041:13;30032:22;;30063:32;30089:5;30063:32;:::i;:::-;29960:141;;;;:::o;30107:349::-;30176:6;30225:2;30213:9;30204:7;30200:23;30196:32;30193:119;;;30231:79;;:::i;:::-;30193:119;30351:1;30376:63;30431:7;30422:6;30411:9;30407:22;30376:63;:::i;:::-;30366:73;;30322:127;30107:349;;;;:::o

Swarm Source

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