ETH Price: $3,505.60 (+2.59%)
Gas: 14 Gwei

Token

Usagi NFT (UNFT)
 

Overview

Max Total Supply

264 UNFT

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 UNFT
0xb7f6d100609d46473a173ac6d113b234c02a539f
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:
UsagiNFT

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-12-30
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: contracts/Usagi.sol









pragma solidity >=0.8.17 <0.9.0;

contract UsagiNFT is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {

  using Strings for uint256;

// ================== Variables Start =======================

  
  // reveal uri - set it in contructor
  string internal uri;
  string public uriSuffix = ".json";

  // hidden uri - replace it with yours
  string public hiddenMetadataUri = "ipfs://QmSoLybCykoAVJBNMVRFxTaRbZHgQmfifd5r4NVb6FUgNo/hidden.gif";

  // prices - replace it with yours
  uint256 public price = 0.002 ether;

  // supply - replace it with yours
  uint256 public supplyLimit = 2023;

  // max per tx - replace it with yours
  uint256 public maxMintAmountPerTx = 2;

  // max per wallet - replace it with yours
  uint256 public maxLimitPerWallet = 4;

  // enabled
  bool public publicSale = false;

  // reveal
  bool public revealed = false;

  // mapping to keep track
  mapping(address => uint256) public publicMintCount;

  // total mint trackers
  uint256 public publicMinted;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  // Token NAME and SYMBOL - Replace it with yours
  constructor(
    string memory _uri
  ) ERC721A("Usagi NFT", "UNFT")  {
    seturi(_uri);
    _safeMint(msg.sender, 1); // Change this if you want
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

  function PublicMint(uint256 _mintAmount) public payable {
    
    // Normal requirements 
    require(publicSale, 'The PublicSale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(publicMintCount[msg.sender] + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    require(msg.value >= price * _mintAmount, 'Insufficient funds!');
     
    // Mint
     _safeMint(_msgSender(), _mintAmount);

    // Mapping update 
    publicMintCount[msg.sender] += _mintAmount;  
    publicMinted += _mintAmount;   
  }  

  function OwnerMint(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

    function MassAirdrop(address[] calldata receivers) external onlyOwner {
    for (uint256 i; i < receivers.length; ++i) {
      require(totalSupply() + 1 <= supplyLimit, 'Max supply exceeded!');
      _mint(receivers[i], 1);
    }
  }
  

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

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

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

// sales toggle
  function setpublicSale(bool _publicSale) public onlyOwner {
    publicSale = _publicSale;
  }

// max per tx
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

// max per wallet
  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }
 

// price
  function setPrice(uint256 _price) public onlyOwner {
    price = _price;
  }


// supply limit
  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {

    //owner withdraw
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================

  function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

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

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

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

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

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

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

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

// ================== Read Functions End =======================  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"MassAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setpublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a919062000cdb565b506040518060600160405280604081526020016200504760409139600c908162000075919062000cdb565b5066071afd498d0000600d556107e7600e556002600f5560046010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000d457600080fd5b5060405162005087380380620050878339818101604052810190620000fa919062000f26565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600981526020017f5573616769204e465400000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f554e46540000000000000000000000000000000000000000000000000000000081525081600290816200018e919062000cdb565b508060039081620001a0919062000cdb565b50620001b16200040360201b60201c565b6000819055505050620001d9620001cd6200040c60201b60201c565b6200041460201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d65780156200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026292919062000fbc565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b50505050620003d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000356576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031c92919062000fbc565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b50505050620003d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039f919062000fe9565b600060405180830381600087803b158015620003ba57600080fd5b505af1158015620003cf573d6000803e3d6000fd5b505050505b5b5b5050620003e981620004da60201b60201c565b620003fc336001620004ff60201b60201c565b50620011da565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004ea6200052560201b60201c565b80600a9081620004fb919062000cdb565b5050565b62000521828260405180602001604052806000815250620005b660201b60201c565b5050565b620005356200040c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200055b6200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ab9062001067565b60405180910390fd5b565b620005c883836200069160201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200066257600080549050600083820390505b6200061160008683806001019450866200087860201b60201c565b62000648576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620005f65781600054146200065f57600080fd5b50505b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905060008203620006d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006e76000848385620009d960201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200077683620007586000866000620009df60201b60201c565b620007698562000a0f60201b60201c565b1762000a1f60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200081957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620007dc565b506000820362000855576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000873600084838562000a4a60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008a662000a5060201b60201c565b8786866040518563ffffffff1660e01b8152600401620008ca9493929190620010f7565b6020604051808303816000875af19250505080156200090957506040513d601f19601f82011682018060405250810190620009069190620011a8565b60015b62000986573d80600081146200093c576040519150601f19603f3d011682016040523d82523d6000602084013e62000941565b606091505b5060008151036200097e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620009fe86868462000a5860201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ae357607f821691505b60208210810362000af95762000af862000a9b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b24565b62000b6f868362000b24565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bbc62000bb662000bb08462000b87565b62000b91565b62000b87565b9050919050565b6000819050919050565b62000bd88362000b9b565b62000bf062000be78262000bc3565b84845462000b31565b825550505050565b600090565b62000c0762000bf8565b62000c1481848462000bcd565b505050565b5b8181101562000c3c5762000c3060008262000bfd565b60018101905062000c1a565b5050565b601f82111562000c8b5762000c558162000aff565b62000c608462000b14565b8101602085101562000c70578190505b62000c8862000c7f8562000b14565b83018262000c19565b50505b505050565b600082821c905092915050565b600062000cb06000198460080262000c90565b1980831691505092915050565b600062000ccb838362000c9d565b9150826002028217905092915050565b62000ce68262000a61565b67ffffffffffffffff81111562000d025762000d0162000a6c565b5b62000d0e825462000aca565b62000d1b82828562000c40565b600060209050601f83116001811462000d53576000841562000d3e578287015190505b62000d4a858262000cbd565b86555062000dba565b601f19841662000d638662000aff565b60005b8281101562000d8d5784890151825560018201915060208501945060208101905062000d66565b8683101562000dad578489015162000da9601f89168262000c9d565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000dfc8262000de0565b810181811067ffffffffffffffff8211171562000e1e5762000e1d62000a6c565b5b80604052505050565b600062000e3362000dc2565b905062000e41828262000df1565b919050565b600067ffffffffffffffff82111562000e645762000e6362000a6c565b5b62000e6f8262000de0565b9050602081019050919050565b60005b8381101562000e9c57808201518184015260208101905062000e7f565b60008484015250505050565b600062000ebf62000eb98462000e46565b62000e27565b90508281526020810184848401111562000ede5762000edd62000ddb565b5b62000eeb84828562000e7c565b509392505050565b600082601f83011262000f0b5762000f0a62000dd6565b5b815162000f1d84826020860162000ea8565b91505092915050565b60006020828403121562000f3f5762000f3e62000dcc565b5b600082015167ffffffffffffffff81111562000f605762000f5f62000dd1565b5b62000f6e8482850162000ef3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fa48262000f77565b9050919050565b62000fb68162000f97565b82525050565b600060408201905062000fd3600083018562000fab565b62000fe2602083018462000fab565b9392505050565b600060208201905062001000600083018462000fab565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200104f60208362001006565b91506200105c8262001017565b602082019050919050565b60006020820190508181036000830152620010828162001040565b9050919050565b620010948162000b87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620010c3826200109a565b620010cf8185620010a5565b9350620010e181856020860162000e7c565b620010ec8162000de0565b840191505092915050565b60006080820190506200110e600083018762000fab565b6200111d602083018662000fab565b6200112c604083018562001089565b8181036060830152620011408184620010b6565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001182816200114b565b81146200118e57600080fd5b50565b600081519050620011a28162001177565b92915050565b600060208284031215620011c157620011c062000dcc565b5b6000620011d18482850162001191565b91505092915050565b613e5d80620011ea6000396000f3fe6080604052600436106102505760003560e01c806370a0823111610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610848578063d9f0a67114610885578063e0a80853146108ae578063e985e9c5146108d7578063f2fde38b14610914578063f64849801461093d57610250565b8063a22cb46514610784578063a45ba8e7146107ad578063a4f4f8af146107d8578063b071401b14610803578063b88d4fde1461082c57610250565b806394354fd0116100fd57806394354fd0146106aa57806395d89b41146106d557806396330b5f146107005780639fb17e341461073d578063a035b1fe1461075957610250565b806370a08231146105c5578063715018a6146106025780638462151c146106195780638da5cb5b1461065657806391b7f5ed1461068157610250565b806333bc1c5c116101d25780634fdd43cb116101965780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635a0b8b23146105345780635c22abd21461055f5780636352211e1461058857610250565b806333bc1c5c146104035780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806347d9569e1461048c57610250565b806316ba10e01161021957806316ba10e01461033f57806318160ddd1461036857806319d1997a1461039357806323b872dd146103be5780632eba0dce146103da57610250565b806275770a1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e6578063095ea7b314610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612a9e565b610966565b005b34801561028a57600080fd5b506102a560048036038101906102a09190612b23565b610978565b6040516102b29190612b6b565b60405180910390f35b3480156102c757600080fd5b506102d0610a0a565b6040516102dd9190612c16565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190612a9e565b610a9c565b60405161031a9190612c79565b60405180910390f35b61033d60048036038101906103389190612cc0565b610b1b565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e35565b610c5f565b005b34801561037457600080fd5b5061037d610c7a565b60405161038a9190612e8d565b60405180910390f35b34801561039f57600080fd5b506103a8610c91565b6040516103b59190612e8d565b60405180910390f35b6103d860048036038101906103d39190612ea8565b610c97565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612efb565b610ce6565b005b34801561040f57600080fd5b50610418610d53565b6040516104259190612b6b565b60405180910390f35b34801561043a57600080fd5b50610443610d66565b005b34801561045157600080fd5b5061045a610dfe565b6040516104679190612f9a565b60405180910390f35b61048a60048036038101906104859190612ea8565b610e10565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613015565b610e5f565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e35565b610f15565b005b3480156104ea57600080fd5b506104f3610f30565b6040516105009190612b6b565b60405180910390f35b34801561051557600080fd5b5061051e610f43565b60405161052b9190612c16565b60405180910390f35b34801561054057600080fd5b50610549610fd1565b6040516105569190612e8d565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061308e565b610fd7565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612a9e565b610ffc565b6040516105bc9190612c79565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906130bb565b61100e565b6040516105f99190612e8d565b60405180910390f35b34801561060e57600080fd5b506106176110c6565b005b34801561062557600080fd5b50610640600480360381019061063b91906130bb565b6110da565b60405161064d91906131a6565b60405180910390f35b34801561066257600080fd5b5061066b61121e565b6040516106789190612c79565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612a9e565b611248565b005b3480156106b657600080fd5b506106bf61125a565b6040516106cc9190612e8d565b60405180910390f35b3480156106e157600080fd5b506106ea611260565b6040516106f79190612c16565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906130bb565b6112f2565b6040516107349190612e8d565b60405180910390f35b61075760048036038101906107529190612a9e565b61130a565b005b34801561076557600080fd5b5061076e611563565b60405161077b9190612e8d565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a691906131c8565b611569565b005b3480156107b957600080fd5b506107c2611674565b6040516107cf9190612c16565b60405180910390f35b3480156107e457600080fd5b506107ed611702565b6040516107fa9190612e8d565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612a9e565b611708565b005b610846600480360381019061084191906132a9565b61171a565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612a9e565b61176b565b60405161087c9190612c16565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612a9e565b6118c3565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061308e565b6118d5565b005b3480156108e357600080fd5b506108fe60048036038101906108f9919061332c565b6118fa565b60405161090b9190612b6b565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906130bb565b61198e565b005b34801561094957600080fd5b50610964600480360381019061095f9190612e35565b611a11565b005b61096e611a2c565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a035750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a199061339b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a459061339b565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b5050505050905090565b6000610aa782611aaa565b610add576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2682610ffc565b90508073ffffffffffffffffffffffffffffffffffffffff16610b47611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610baa57610b7381610b6e611b09565b6118fa565b610ba9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c67611a2c565b80600b9081610c76919061356e565b5050565b6000610c84611b11565b6001546000540303905090565b600e5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd557610cd433611b1a565b5b610ce0848484611c17565b50505050565b610cee611a2c565b600e5482610cfa610c7a565b610d04919061366f565b1115610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906136ef565b60405180910390fd5b610d4f8183611f39565b5050565b601160009054906101000a900460ff1681565b610d6e611a2c565b610d76611f57565b6000610d8061121e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610da390613740565b60006040518083038185875af1925050503d8060008114610de0576040519150601f19603f3d011682016040523d82523d6000602084013e610de5565b606091505b5050905080610df357600080fd5b50610dfc611fa6565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e4e57610e4d33611b1a565b5b610e59848484611fb0565b50505050565b610e67611a2c565b60005b82829050811015610f1057600e546001610e82610c7a565b610e8c919061366f565b1115610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906136ef565b60405180910390fd5b610eff838383818110610ee357610ee2613755565b5b9050602002016020810190610ef891906130bb565b6001611fd0565b80610f0990613784565b9050610e6a565b505050565b610f1d611a2c565b80600c9081610f2c919061356e565b5050565b601160019054906101000a900460ff1681565b600b8054610f509061339b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c9061339b565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b505050505081565b60105481565b610fdf611a2c565b80601160006101000a81548160ff02191690831515021790555050565b60006110078261218b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611075576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ce611a2c565b6110d86000612257565b565b606060006110e78361100e565b67ffffffffffffffff811115611100576110ff612d0a565b5b60405190808252806020026020018201604052801561112e5781602001602082028036833780820191505090505b509050600061113b61231d565b905060008060005b8381101561121157600061115682612326565b90508060400151156111685750611204565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111a857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361120257818685806001019650815181106111f5576111f4613755565b5b6020026020010181815250505b505b8080600101915050611143565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611250611a2c565b80600d8190555050565b600f5481565b60606003805461126f9061339b565b80601f016020809104026020016040519081016040528092919081815260200182805461129b9061339b565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b601160009054906101000a900460ff16611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613818565b60405180910390fd5b60008111801561136b5750600f548111155b6113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190613884565b60405180910390fd5b600e54816113b6610c7a565b6113c0919061366f565b1115611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f8906136ef565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144f919061366f565b1115611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906138f0565b60405180910390fd5b80600d5461149e9190613910565b3410156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061399e565b60405180910390fd5b6114f16114eb612351565b82611f39565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611540919061366f565b925050819055508060136000828254611559919061366f565b9250508190555050565b600d5481565b8060076000611576611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611623611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116689190612b6b565b60405180910390a35050565b600c80546116819061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad9061339b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081565b60135481565b611710611a2c565b80600f8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117585761175733611b1a565b5b61176485858585612359565b5050505050565b606061177682611aaa565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613a30565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361186257600c80546117dd9061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546118099061339b565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b505050505090506118be565b600061186c6123cc565b9050600081511161188c57604051806020016040528060008152506118ba565b806118968461245e565b600b6040516020016118aa93929190613b0f565b6040516020818303038152906040525b9150505b919050565b6118cb611a2c565b8060108190555050565b6118dd611a2c565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611996611a2c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613bb2565b60405180910390fd5b611a0e81612257565b50565b611a19611a2c565b80600a9081611a28919061356e565b5050565b611a34612351565b73ffffffffffffffffffffffffffffffffffffffff16611a5261121e565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c1e565b60405180910390fd5b565b600081611ab5611b11565b11158015611ac4575060005482105b8015611b02575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c14576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b91929190613c3e565b602060405180830381865afa158015611bae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd29190613c7c565b611c1357806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c0a9190612c79565b60405180910390fd5b5b50565b6000611c228261218b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c89576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c958461252c565b91509150611cab8187611ca6611b09565b612553565b611cf757611cc086611cbb611b09565b6118fa565b611cf6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d5d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6a8686866001612597565b8015611d7557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e4385611e1f88888761259d565b7c0200000000000000000000000000000000000000000000000000000000176125c5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ec95760006001850190506000600460008381526020019081526020016000205403611ec7576000548114611ec6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f3186868660016125f0565b505050505050565b611f538282604051806020016040528060008152506125f6565b5050565b600260095403611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613cf5565b60405180910390fd5b6002600981905550565b6001600981905550565b611fcb8383836040518060200160405280600081525061171a565b505050565b60008054905060008203612010576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201d6000848385612597565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209483612085600086600061259d565b61208e85612693565b176125c5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120fa565b5060008203612170576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218660008483856125f0565b505050565b6000808290508061219a611b11565b116122205760005481101561221f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361221d575b600081036122135760046000836001900393508381526020019081526020016000205490506121e9565b8092505050612252565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b61232e612a05565b61234a60046000848152602001908152602001600020546126a3565b9050919050565b600033905090565b612364848484610c97565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c65761238f84848484612759565b6123c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546123db9061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546124079061339b565b80156124545780601f1061242957610100808354040283529160200191612454565b820191906000526020600020905b81548152906001019060200180831161243757829003601f168201915b5050505050905090565b60606000600161246d846128a9565b01905060008167ffffffffffffffff81111561248c5761248b612d0a565b5b6040519080825280601f01601f1916602001820160405280156124be5781602001600182028036833780820191505090505b509050600082602001820190505b600115612521578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161251557612514613d15565b5b049450600085036124cc575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125b48686846129fc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126008383611fd0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461268e57600080549050600083820390505b6126406000868380600101945086612759565b612676576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061262d57816000541461268b57600080fd5b50505b505050565b60006001821460e11b9050919050565b6126ab612a05565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277f611b09565b8786866040518563ffffffff1660e01b81526004016127a19493929190613d99565b6020604051808303816000875af19250505080156127dd57506040513d601f19601f820116820180604052508101906127da9190613dfa565b60015b612856573d806000811461280d576040519150601f19603f3d011682016040523d82523d6000602084013e612812565b606091505b50600081510361284e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612907577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128fd576128fc613d15565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612944576d04ee2d6d415b85acef8100000000838161293a57612939613d15565b5b0492506020810190505b662386f26fc10000831061297357662386f26fc10000838161296957612968613d15565b5b0492506010810190505b6305f5e100831061299c576305f5e100838161299257612991613d15565b5b0492506008810190505b61271083106129c15761271083816129b7576129b6613d15565b5b0492506004810190505b606483106129e457606483816129da576129d9613d15565b5b0492506002810190505b600a83106129f3576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612a7b81612a68565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b600060208284031215612ab457612ab3612a5e565b5b6000612ac284828501612a89565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b0081612acb565b8114612b0b57600080fd5b50565b600081359050612b1d81612af7565b92915050565b600060208284031215612b3957612b38612a5e565b5b6000612b4784828501612b0e565b91505092915050565b60008115159050919050565b612b6581612b50565b82525050565b6000602082019050612b806000830184612b5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bc0578082015181840152602081019050612ba5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612be882612b86565b612bf28185612b91565b9350612c02818560208601612ba2565b612c0b81612bcc565b840191505092915050565b60006020820190508181036000830152612c308184612bdd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6382612c38565b9050919050565b612c7381612c58565b82525050565b6000602082019050612c8e6000830184612c6a565b92915050565b612c9d81612c58565b8114612ca857600080fd5b50565b600081359050612cba81612c94565b92915050565b60008060408385031215612cd757612cd6612a5e565b5b6000612ce585828601612cab565b9250506020612cf685828601612a89565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4282612bcc565b810181811067ffffffffffffffff82111715612d6157612d60612d0a565b5b80604052505050565b6000612d74612a54565b9050612d808282612d39565b919050565b600067ffffffffffffffff821115612da057612d9f612d0a565b5b612da982612bcc565b9050602081019050919050565b82818337600083830152505050565b6000612dd8612dd384612d85565b612d6a565b905082815260208101848484011115612df457612df3612d05565b5b612dff848285612db6565b509392505050565b600082601f830112612e1c57612e1b612d00565b5b8135612e2c848260208601612dc5565b91505092915050565b600060208284031215612e4b57612e4a612a5e565b5b600082013567ffffffffffffffff811115612e6957612e68612a63565b5b612e7584828501612e07565b91505092915050565b612e8781612a68565b82525050565b6000602082019050612ea26000830184612e7e565b92915050565b600080600060608486031215612ec157612ec0612a5e565b5b6000612ecf86828701612cab565b9350506020612ee086828701612cab565b9250506040612ef186828701612a89565b9150509250925092565b60008060408385031215612f1257612f11612a5e565b5b6000612f2085828601612a89565b9250506020612f3185828601612cab565b9150509250929050565b6000819050919050565b6000612f60612f5b612f5684612c38565b612f3b565b612c38565b9050919050565b6000612f7282612f45565b9050919050565b6000612f8482612f67565b9050919050565b612f9481612f79565b82525050565b6000602082019050612faf6000830184612f8b565b92915050565b600080fd5b600080fd5b60008083601f840112612fd557612fd4612d00565b5b8235905067ffffffffffffffff811115612ff257612ff1612fb5565b5b60208301915083602082028301111561300e5761300d612fba565b5b9250929050565b6000806020838503121561302c5761302b612a5e565b5b600083013567ffffffffffffffff81111561304a57613049612a63565b5b61305685828601612fbf565b92509250509250929050565b61306b81612b50565b811461307657600080fd5b50565b60008135905061308881613062565b92915050565b6000602082840312156130a4576130a3612a5e565b5b60006130b284828501613079565b91505092915050565b6000602082840312156130d1576130d0612a5e565b5b60006130df84828501612cab565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311d81612a68565b82525050565b600061312f8383613114565b60208301905092915050565b6000602082019050919050565b6000613153826130e8565b61315d81856130f3565b935061316883613104565b8060005b838110156131995781516131808882613123565b975061318b8361313b565b92505060018101905061316c565b5085935050505092915050565b600060208201905081810360008301526131c08184613148565b905092915050565b600080604083850312156131df576131de612a5e565b5b60006131ed85828601612cab565b92505060206131fe85828601613079565b9150509250929050565b600067ffffffffffffffff82111561322357613222612d0a565b5b61322c82612bcc565b9050602081019050919050565b600061324c61324784613208565b612d6a565b90508281526020810184848401111561326857613267612d05565b5b613273848285612db6565b509392505050565b600082601f8301126132905761328f612d00565b5b81356132a0848260208601613239565b91505092915050565b600080600080608085870312156132c3576132c2612a5e565b5b60006132d187828801612cab565b94505060206132e287828801612cab565b93505060406132f387828801612a89565b925050606085013567ffffffffffffffff81111561331457613313612a63565b5b6133208782880161327b565b91505092959194509250565b6000806040838503121561334357613342612a5e565b5b600061335185828601612cab565b925050602061336285828601612cab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b357607f821691505b6020821081036133c6576133c561336c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261342e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826133f1565b61343886836133f1565b95508019841693508086168417925050509392505050565b600061346b61346661346184612a68565b612f3b565b612a68565b9050919050565b6000819050919050565b61348583613450565b61349961349182613472565b8484546133fe565b825550505050565b600090565b6134ae6134a1565b6134b981848461347c565b505050565b5b818110156134dd576134d26000826134a6565b6001810190506134bf565b5050565b601f821115613522576134f3816133cc565b6134fc846133e1565b8101602085101561350b578190505b61351f613517856133e1565b8301826134be565b50505b505050565b600082821c905092915050565b600061354560001984600802613527565b1980831691505092915050565b600061355e8383613534565b9150826002028217905092915050565b61357782612b86565b67ffffffffffffffff8111156135905761358f612d0a565b5b61359a825461339b565b6135a58282856134e1565b600060209050601f8311600181146135d857600084156135c6578287015190505b6135d08582613552565b865550613638565b601f1984166135e6866133cc565b60005b8281101561360e578489015182556001820191506020850194506020810190506135e9565b8683101561362b5784890151613627601f891682613534565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367a82612a68565b915061368583612a68565b925082820190508082111561369d5761369c613640565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136d9601483612b91565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b600081905092915050565b50565b600061372a60008361370f565b91506137358261371a565b600082019050919050565b600061374b8261371d565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061378f82612a68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137c1576137c0613640565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b6000613802601983612b91565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061386e601483612b91565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b60006138da601d83612b91565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b600061391b82612a68565b915061392683612a68565b925082820261393481612a68565b9150828204841483151761394b5761394a613640565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613988601383612b91565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a1a602f83612b91565b9150613a25826139be565b604082019050919050565b60006020820190508181036000830152613a4981613a0d565b9050919050565b600081905092915050565b6000613a6682612b86565b613a708185613a50565b9350613a80818560208601612ba2565b80840191505092915050565b60008154613a998161339b565b613aa38186613a50565b94506001821660008114613abe5760018114613ad357613b06565b60ff1983168652811515820286019350613b06565b613adc856133cc565b60005b83811015613afe57815481890152600182019150602081019050613adf565b838801955050505b50505092915050565b6000613b1b8286613a5b565b9150613b278285613a5b565b9150613b338284613a8c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b9c602683612b91565b9150613ba782613b40565b604082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c08602083612b91565b9150613c1382613bd2565b602082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b6000604082019050613c536000830185612c6a565b613c606020830184612c6a565b9392505050565b600081519050613c7681613062565b92915050565b600060208284031215613c9257613c91612a5e565b5b6000613ca084828501613c67565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cdf601f83612b91565b9150613cea82613ca9565b602082019050919050565b60006020820190508181036000830152613d0e81613cd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d6b82613d44565b613d758185613d4f565b9350613d85818560208601612ba2565b613d8e81612bcc565b840191505092915050565b6000608082019050613dae6000830187612c6a565b613dbb6020830186612c6a565b613dc86040830185612e7e565b8181036060830152613dda8184613d60565b905095945050505050565b600081519050613df481612af7565b92915050565b600060208284031215613e1057613e0f612a5e565b5b6000613e1e84828501613de5565b9150509291505056fea26469706673582212204c17ccd3c6190fcccf03835def2462871a56d86898673ecce80b583496ccf2af64736f6c63430008110033697066733a2f2f516d536f4c796243796b6f41564a424e4d56524678546152625a4867516d666966643572344e5662364655674e6f2f68696464656e2e67696600000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d615a69344a756b56454c427a653456624e575542787539647255684e626532386957556b59706278324b4b342f00000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c806370a0823111610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610848578063d9f0a67114610885578063e0a80853146108ae578063e985e9c5146108d7578063f2fde38b14610914578063f64849801461093d57610250565b8063a22cb46514610784578063a45ba8e7146107ad578063a4f4f8af146107d8578063b071401b14610803578063b88d4fde1461082c57610250565b806394354fd0116100fd57806394354fd0146106aa57806395d89b41146106d557806396330b5f146107005780639fb17e341461073d578063a035b1fe1461075957610250565b806370a08231146105c5578063715018a6146106025780638462151c146106195780638da5cb5b1461065657806391b7f5ed1461068157610250565b806333bc1c5c116101d25780634fdd43cb116101965780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635a0b8b23146105345780635c22abd21461055f5780636352211e1461058857610250565b806333bc1c5c146104035780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806347d9569e1461048c57610250565b806316ba10e01161021957806316ba10e01461033f57806318160ddd1461036857806319d1997a1461039357806323b872dd146103be5780632eba0dce146103da57610250565b806275770a1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e6578063095ea7b314610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612a9e565b610966565b005b34801561028a57600080fd5b506102a560048036038101906102a09190612b23565b610978565b6040516102b29190612b6b565b60405180910390f35b3480156102c757600080fd5b506102d0610a0a565b6040516102dd9190612c16565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190612a9e565b610a9c565b60405161031a9190612c79565b60405180910390f35b61033d60048036038101906103389190612cc0565b610b1b565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e35565b610c5f565b005b34801561037457600080fd5b5061037d610c7a565b60405161038a9190612e8d565b60405180910390f35b34801561039f57600080fd5b506103a8610c91565b6040516103b59190612e8d565b60405180910390f35b6103d860048036038101906103d39190612ea8565b610c97565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612efb565b610ce6565b005b34801561040f57600080fd5b50610418610d53565b6040516104259190612b6b565b60405180910390f35b34801561043a57600080fd5b50610443610d66565b005b34801561045157600080fd5b5061045a610dfe565b6040516104679190612f9a565b60405180910390f35b61048a60048036038101906104859190612ea8565b610e10565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613015565b610e5f565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e35565b610f15565b005b3480156104ea57600080fd5b506104f3610f30565b6040516105009190612b6b565b60405180910390f35b34801561051557600080fd5b5061051e610f43565b60405161052b9190612c16565b60405180910390f35b34801561054057600080fd5b50610549610fd1565b6040516105569190612e8d565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061308e565b610fd7565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612a9e565b610ffc565b6040516105bc9190612c79565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906130bb565b61100e565b6040516105f99190612e8d565b60405180910390f35b34801561060e57600080fd5b506106176110c6565b005b34801561062557600080fd5b50610640600480360381019061063b91906130bb565b6110da565b60405161064d91906131a6565b60405180910390f35b34801561066257600080fd5b5061066b61121e565b6040516106789190612c79565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612a9e565b611248565b005b3480156106b657600080fd5b506106bf61125a565b6040516106cc9190612e8d565b60405180910390f35b3480156106e157600080fd5b506106ea611260565b6040516106f79190612c16565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906130bb565b6112f2565b6040516107349190612e8d565b60405180910390f35b61075760048036038101906107529190612a9e565b61130a565b005b34801561076557600080fd5b5061076e611563565b60405161077b9190612e8d565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a691906131c8565b611569565b005b3480156107b957600080fd5b506107c2611674565b6040516107cf9190612c16565b60405180910390f35b3480156107e457600080fd5b506107ed611702565b6040516107fa9190612e8d565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612a9e565b611708565b005b610846600480360381019061084191906132a9565b61171a565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612a9e565b61176b565b60405161087c9190612c16565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612a9e565b6118c3565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061308e565b6118d5565b005b3480156108e357600080fd5b506108fe60048036038101906108f9919061332c565b6118fa565b60405161090b9190612b6b565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906130bb565b61198e565b005b34801561094957600080fd5b50610964600480360381019061095f9190612e35565b611a11565b005b61096e611a2c565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a035750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a199061339b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a459061339b565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b5050505050905090565b6000610aa782611aaa565b610add576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2682610ffc565b90508073ffffffffffffffffffffffffffffffffffffffff16610b47611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610baa57610b7381610b6e611b09565b6118fa565b610ba9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c67611a2c565b80600b9081610c76919061356e565b5050565b6000610c84611b11565b6001546000540303905090565b600e5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd557610cd433611b1a565b5b610ce0848484611c17565b50505050565b610cee611a2c565b600e5482610cfa610c7a565b610d04919061366f565b1115610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906136ef565b60405180910390fd5b610d4f8183611f39565b5050565b601160009054906101000a900460ff1681565b610d6e611a2c565b610d76611f57565b6000610d8061121e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610da390613740565b60006040518083038185875af1925050503d8060008114610de0576040519150601f19603f3d011682016040523d82523d6000602084013e610de5565b606091505b5050905080610df357600080fd5b50610dfc611fa6565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e4e57610e4d33611b1a565b5b610e59848484611fb0565b50505050565b610e67611a2c565b60005b82829050811015610f1057600e546001610e82610c7a565b610e8c919061366f565b1115610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906136ef565b60405180910390fd5b610eff838383818110610ee357610ee2613755565b5b9050602002016020810190610ef891906130bb565b6001611fd0565b80610f0990613784565b9050610e6a565b505050565b610f1d611a2c565b80600c9081610f2c919061356e565b5050565b601160019054906101000a900460ff1681565b600b8054610f509061339b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c9061339b565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b505050505081565b60105481565b610fdf611a2c565b80601160006101000a81548160ff02191690831515021790555050565b60006110078261218b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611075576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ce611a2c565b6110d86000612257565b565b606060006110e78361100e565b67ffffffffffffffff811115611100576110ff612d0a565b5b60405190808252806020026020018201604052801561112e5781602001602082028036833780820191505090505b509050600061113b61231d565b905060008060005b8381101561121157600061115682612326565b90508060400151156111685750611204565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111a857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361120257818685806001019650815181106111f5576111f4613755565b5b6020026020010181815250505b505b8080600101915050611143565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611250611a2c565b80600d8190555050565b600f5481565b60606003805461126f9061339b565b80601f016020809104026020016040519081016040528092919081815260200182805461129b9061339b565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b601160009054906101000a900460ff16611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613818565b60405180910390fd5b60008111801561136b5750600f548111155b6113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190613884565b60405180910390fd5b600e54816113b6610c7a565b6113c0919061366f565b1115611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f8906136ef565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461144f919061366f565b1115611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906138f0565b60405180910390fd5b80600d5461149e9190613910565b3410156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061399e565b60405180910390fd5b6114f16114eb612351565b82611f39565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611540919061366f565b925050819055508060136000828254611559919061366f565b9250508190555050565b600d5481565b8060076000611576611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611623611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116689190612b6b565b60405180910390a35050565b600c80546116819061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad9061339b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081565b60135481565b611710611a2c565b80600f8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117585761175733611b1a565b5b61176485858585612359565b5050505050565b606061177682611aaa565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613a30565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361186257600c80546117dd9061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546118099061339b565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b505050505090506118be565b600061186c6123cc565b9050600081511161188c57604051806020016040528060008152506118ba565b806118968461245e565b600b6040516020016118aa93929190613b0f565b6040516020818303038152906040525b9150505b919050565b6118cb611a2c565b8060108190555050565b6118dd611a2c565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611996611a2c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613bb2565b60405180910390fd5b611a0e81612257565b50565b611a19611a2c565b80600a9081611a28919061356e565b5050565b611a34612351565b73ffffffffffffffffffffffffffffffffffffffff16611a5261121e565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c1e565b60405180910390fd5b565b600081611ab5611b11565b11158015611ac4575060005482105b8015611b02575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c14576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b91929190613c3e565b602060405180830381865afa158015611bae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd29190613c7c565b611c1357806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c0a9190612c79565b60405180910390fd5b5b50565b6000611c228261218b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c89576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c958461252c565b91509150611cab8187611ca6611b09565b612553565b611cf757611cc086611cbb611b09565b6118fa565b611cf6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d5d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6a8686866001612597565b8015611d7557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e4385611e1f88888761259d565b7c0200000000000000000000000000000000000000000000000000000000176125c5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ec95760006001850190506000600460008381526020019081526020016000205403611ec7576000548114611ec6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f3186868660016125f0565b505050505050565b611f538282604051806020016040528060008152506125f6565b5050565b600260095403611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613cf5565b60405180910390fd5b6002600981905550565b6001600981905550565b611fcb8383836040518060200160405280600081525061171a565b505050565b60008054905060008203612010576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201d6000848385612597565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209483612085600086600061259d565b61208e85612693565b176125c5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120fa565b5060008203612170576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218660008483856125f0565b505050565b6000808290508061219a611b11565b116122205760005481101561221f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361221d575b600081036122135760046000836001900393508381526020019081526020016000205490506121e9565b8092505050612252565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b61232e612a05565b61234a60046000848152602001908152602001600020546126a3565b9050919050565b600033905090565b612364848484610c97565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c65761238f84848484612759565b6123c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546123db9061339b565b80601f01602080910402602001604051908101604052809291908181526020018280546124079061339b565b80156124545780601f1061242957610100808354040283529160200191612454565b820191906000526020600020905b81548152906001019060200180831161243757829003601f168201915b5050505050905090565b60606000600161246d846128a9565b01905060008167ffffffffffffffff81111561248c5761248b612d0a565b5b6040519080825280601f01601f1916602001820160405280156124be5781602001600182028036833780820191505090505b509050600082602001820190505b600115612521578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161251557612514613d15565b5b049450600085036124cc575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125b48686846129fc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126008383611fd0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461268e57600080549050600083820390505b6126406000868380600101945086612759565b612676576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061262d57816000541461268b57600080fd5b50505b505050565b60006001821460e11b9050919050565b6126ab612a05565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277f611b09565b8786866040518563ffffffff1660e01b81526004016127a19493929190613d99565b6020604051808303816000875af19250505080156127dd57506040513d601f19601f820116820180604052508101906127da9190613dfa565b60015b612856573d806000811461280d576040519150601f19603f3d011682016040523d82523d6000602084013e612812565b606091505b50600081510361284e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612907577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128fd576128fc613d15565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612944576d04ee2d6d415b85acef8100000000838161293a57612939613d15565b5b0492506020810190505b662386f26fc10000831061297357662386f26fc10000838161296957612968613d15565b5b0492506010810190505b6305f5e100831061299c576305f5e100838161299257612991613d15565b5b0492506008810190505b61271083106129c15761271083816129b7576129b6613d15565b5b0492506004810190505b606483106129e457606483816129da576129d9613d15565b5b0492506002810190505b600a83106129f3576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612a7b81612a68565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b600060208284031215612ab457612ab3612a5e565b5b6000612ac284828501612a89565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b0081612acb565b8114612b0b57600080fd5b50565b600081359050612b1d81612af7565b92915050565b600060208284031215612b3957612b38612a5e565b5b6000612b4784828501612b0e565b91505092915050565b60008115159050919050565b612b6581612b50565b82525050565b6000602082019050612b806000830184612b5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bc0578082015181840152602081019050612ba5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612be882612b86565b612bf28185612b91565b9350612c02818560208601612ba2565b612c0b81612bcc565b840191505092915050565b60006020820190508181036000830152612c308184612bdd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6382612c38565b9050919050565b612c7381612c58565b82525050565b6000602082019050612c8e6000830184612c6a565b92915050565b612c9d81612c58565b8114612ca857600080fd5b50565b600081359050612cba81612c94565b92915050565b60008060408385031215612cd757612cd6612a5e565b5b6000612ce585828601612cab565b9250506020612cf685828601612a89565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4282612bcc565b810181811067ffffffffffffffff82111715612d6157612d60612d0a565b5b80604052505050565b6000612d74612a54565b9050612d808282612d39565b919050565b600067ffffffffffffffff821115612da057612d9f612d0a565b5b612da982612bcc565b9050602081019050919050565b82818337600083830152505050565b6000612dd8612dd384612d85565b612d6a565b905082815260208101848484011115612df457612df3612d05565b5b612dff848285612db6565b509392505050565b600082601f830112612e1c57612e1b612d00565b5b8135612e2c848260208601612dc5565b91505092915050565b600060208284031215612e4b57612e4a612a5e565b5b600082013567ffffffffffffffff811115612e6957612e68612a63565b5b612e7584828501612e07565b91505092915050565b612e8781612a68565b82525050565b6000602082019050612ea26000830184612e7e565b92915050565b600080600060608486031215612ec157612ec0612a5e565b5b6000612ecf86828701612cab565b9350506020612ee086828701612cab565b9250506040612ef186828701612a89565b9150509250925092565b60008060408385031215612f1257612f11612a5e565b5b6000612f2085828601612a89565b9250506020612f3185828601612cab565b9150509250929050565b6000819050919050565b6000612f60612f5b612f5684612c38565b612f3b565b612c38565b9050919050565b6000612f7282612f45565b9050919050565b6000612f8482612f67565b9050919050565b612f9481612f79565b82525050565b6000602082019050612faf6000830184612f8b565b92915050565b600080fd5b600080fd5b60008083601f840112612fd557612fd4612d00565b5b8235905067ffffffffffffffff811115612ff257612ff1612fb5565b5b60208301915083602082028301111561300e5761300d612fba565b5b9250929050565b6000806020838503121561302c5761302b612a5e565b5b600083013567ffffffffffffffff81111561304a57613049612a63565b5b61305685828601612fbf565b92509250509250929050565b61306b81612b50565b811461307657600080fd5b50565b60008135905061308881613062565b92915050565b6000602082840312156130a4576130a3612a5e565b5b60006130b284828501613079565b91505092915050565b6000602082840312156130d1576130d0612a5e565b5b60006130df84828501612cab565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311d81612a68565b82525050565b600061312f8383613114565b60208301905092915050565b6000602082019050919050565b6000613153826130e8565b61315d81856130f3565b935061316883613104565b8060005b838110156131995781516131808882613123565b975061318b8361313b565b92505060018101905061316c565b5085935050505092915050565b600060208201905081810360008301526131c08184613148565b905092915050565b600080604083850312156131df576131de612a5e565b5b60006131ed85828601612cab565b92505060206131fe85828601613079565b9150509250929050565b600067ffffffffffffffff82111561322357613222612d0a565b5b61322c82612bcc565b9050602081019050919050565b600061324c61324784613208565b612d6a565b90508281526020810184848401111561326857613267612d05565b5b613273848285612db6565b509392505050565b600082601f8301126132905761328f612d00565b5b81356132a0848260208601613239565b91505092915050565b600080600080608085870312156132c3576132c2612a5e565b5b60006132d187828801612cab565b94505060206132e287828801612cab565b93505060406132f387828801612a89565b925050606085013567ffffffffffffffff81111561331457613313612a63565b5b6133208782880161327b565b91505092959194509250565b6000806040838503121561334357613342612a5e565b5b600061335185828601612cab565b925050602061336285828601612cab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b357607f821691505b6020821081036133c6576133c561336c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261342e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826133f1565b61343886836133f1565b95508019841693508086168417925050509392505050565b600061346b61346661346184612a68565b612f3b565b612a68565b9050919050565b6000819050919050565b61348583613450565b61349961349182613472565b8484546133fe565b825550505050565b600090565b6134ae6134a1565b6134b981848461347c565b505050565b5b818110156134dd576134d26000826134a6565b6001810190506134bf565b5050565b601f821115613522576134f3816133cc565b6134fc846133e1565b8101602085101561350b578190505b61351f613517856133e1565b8301826134be565b50505b505050565b600082821c905092915050565b600061354560001984600802613527565b1980831691505092915050565b600061355e8383613534565b9150826002028217905092915050565b61357782612b86565b67ffffffffffffffff8111156135905761358f612d0a565b5b61359a825461339b565b6135a58282856134e1565b600060209050601f8311600181146135d857600084156135c6578287015190505b6135d08582613552565b865550613638565b601f1984166135e6866133cc565b60005b8281101561360e578489015182556001820191506020850194506020810190506135e9565b8683101561362b5784890151613627601f891682613534565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367a82612a68565b915061368583612a68565b925082820190508082111561369d5761369c613640565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136d9601483612b91565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b600081905092915050565b50565b600061372a60008361370f565b91506137358261371a565b600082019050919050565b600061374b8261371d565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061378f82612a68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137c1576137c0613640565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b6000613802601983612b91565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061386e601483612b91565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b60006138da601d83612b91565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b600061391b82612a68565b915061392683612a68565b925082820261393481612a68565b9150828204841483151761394b5761394a613640565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613988601383612b91565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a1a602f83612b91565b9150613a25826139be565b604082019050919050565b60006020820190508181036000830152613a4981613a0d565b9050919050565b600081905092915050565b6000613a6682612b86565b613a708185613a50565b9350613a80818560208601612ba2565b80840191505092915050565b60008154613a998161339b565b613aa38186613a50565b94506001821660008114613abe5760018114613ad357613b06565b60ff1983168652811515820286019350613b06565b613adc856133cc565b60005b83811015613afe57815481890152600182019150602081019050613adf565b838801955050505b50505092915050565b6000613b1b8286613a5b565b9150613b278285613a5b565b9150613b338284613a8c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b9c602683612b91565b9150613ba782613b40565b604082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c08602083612b91565b9150613c1382613bd2565b602082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b6000604082019050613c536000830185612c6a565b613c606020830184612c6a565b9392505050565b600081519050613c7681613062565b92915050565b600060208284031215613c9257613c91612a5e565b5b6000613ca084828501613c67565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cdf601f83612b91565b9150613cea82613ca9565b602082019050919050565b60006020820190508181036000830152613d0e81613cd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d6b82613d44565b613d758185613d4f565b9350613d85818560208601612ba2565b613d8e81612bcc565b840191505092915050565b6000608082019050613dae6000830187612c6a565b613dbb6020830186612c6a565b613dc86040830185612e7e565b8181036060830152613dda8184613d60565b905095945050505050565b600081519050613df481612af7565b92915050565b600060208284031215613e1057613e0f612a5e565b5b6000613e1e84828501613de5565b9150509291505056fea26469706673582212204c17ccd3c6190fcccf03835def2462871a56d86898673ecce80b583496ccf2af64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d615a69344a756b56454c427a653456624e575542787539647255684e626532386957556b59706278324b4b342f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmaZi4JukVELBze4VbNWUBxu9drUhNbe28iWUkYpbx2KK4/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d615a69344a756b56454c427a653456624e575542787539
Arg [3] : 647255684e626532386957556b59706278324b4b342f00000000000000000000


Deployed Bytecode Sourcemap

78682:6324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82435:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81655:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79237:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84381:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80868:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79464:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82685:174;;;;;;;;;;;;;:::i;:::-;;76100:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84552:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81080:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81761:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79514:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78934:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79407:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81916:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69410:103;;;;;;;;;;;;;:::i;:::-;;83007:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68762:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82332:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79318:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79577:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80174:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79159:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79015:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79660:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82032:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84731:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83826:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82187:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81478:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69668:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81573:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82435:102;68648:13;:11;:13::i;:::-;82519:12:::1;82505:11;:26;;;;82435:102:::0;:::o;18404:639::-;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;81655:100::-;68648:13;:11;:13::i;:::-;81739:10:::1;81727:9;:22;;;;;;:::i;:::-;;81655:100:::0;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;79237:33::-;;;;:::o;84381:165::-;84490:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;84503:37:::1;84522:4;84528:2;84532:7;84503:18;:37::i;:::-;84381:165:::0;;;;:::o;80868:204::-;68648:13;:11;:13::i;:::-;80990:11:::1;;80975;80959:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;80951:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;81033:33;81043:9;81054:11;81033:9;:33::i;:::-;80868:204:::0;;:::o;79464:30::-;;;;;;;;;;;;;:::o;82685:174::-;68648:13;:11;:13::i;:::-;72572:21:::1;:19;:21::i;:::-;82767:7:::2;82788;:5;:7::i;:::-;82780:21;;82809;82780:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82766:69;;;82850:2;82842:11;;;::::0;::::2;;82735:124;72616:20:::1;:18;:20::i;:::-;82685:174::o:0;76100:143::-;76200:42;76100:143;:::o;84552:173::-;84665:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;84678:41:::1;84701:4;84707:2;84711:7;84678:22;:41::i;:::-;84552:173:::0;;;;:::o;81080:238::-;68648:13;:11;:13::i;:::-;81162:9:::1;81157:156;81177:9;;:16;;81173:1;:20;81157:156;;;81238:11;;81233:1;81217:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:32;;81209:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;81283:22;81289:9;;81299:1;81289:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;81303:1;81283:5;:22::i;:::-;81195:3;;;;:::i;:::-;;;81157:156;;;;81080:238:::0;;:::o;81761:132::-;68648:13;:11;:13::i;:::-;81869:18:::1;81849:17;:38;;;;;;:::i;:::-;;81761:132:::0;:::o;79514:28::-;;;;;;;;;;;;;:::o;78934:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79407:36::-;;;;:::o;81916:95::-;68648:13;:11;:13::i;:::-;81994:11:::1;81981:10;;:24;;;;;;;;;;;;;;;;;;81916:95:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;69410:103::-;68648:13;:11;:13::i;:::-;69475:30:::1;69502:1;69475:18;:30::i;:::-;69410:103::o:0;83007:712::-;83068:16;83114:18;83149:16;83159:5;83149:9;:16::i;:::-;83135:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83114:52;;83178:11;83192:14;:12;:14::i;:::-;83178:28;;83217:19;83247:25;83288:9;83283:403;83303:3;83299:1;:7;83283:403;;;83328:31;83362:15;83375:1;83362:12;:15::i;:::-;83328:49;;83396:9;:16;;;83392:65;;;83433:8;;;83392:65;83501:1;83475:28;;:9;:14;;;:28;;;83471:103;;83544:9;:14;;;83524:34;;83471:103;83613:5;83592:26;;:17;:26;;;83588:87;;83658:1;83639;83641:13;;;;;;83639:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;83588:87;83313:373;83283:403;83308:3;;;;;;;83283:403;;;;83703:1;83696:8;;;;;;83007:712;;;:::o;68762:87::-;68808:7;68835:6;;;;;;;;;;;68828:13;;68762:87;:::o;82332:78::-;68648:13;:11;:13::i;:::-;82398:6:::1;82390:5;:14;;;;82332:78:::0;:::o;79318:37::-;;;;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;79577:50::-;;;;;;;;;;;;;;;;;:::o;80174:686::-;80280:10;;;;;;;;;;;80272:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;80349:1;80335:11;:15;:52;;;;;80369:18;;80354:11;:33;;80335:52;80327:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80458:11;;80443;80427:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;80419:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80554:17;;80539:11;80509:15;:27;80525:10;80509:27;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:62;;80501:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;80641:11;80633:5;;:19;;;;:::i;:::-;80620:9;:32;;80612:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;80704:36;80714:12;:10;:12::i;:::-;80728:11;80704:9;:36::i;:::-;80804:11;80773:15;:27;80789:10;80773:27;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;80840:11;80824:12;;:27;;;;;;;:::i;:::-;;;;;;;;80174:686;:::o;79159:34::-;;;;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;79015:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79660:27::-;;;;:::o;82032:130::-;68648:13;:11;:13::i;:::-;82137:19:::1;82116:18;:40;;;;82032:130:::0;:::o;84731:198::-;84863:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;84876:47:::1;84899:4;84905:2;84909:7;84918:4;84876:22;:47::i;:::-;84731:198:::0;;;;;:::o;83826:445::-;83900:13;83930:17;83938:8;83930:7;:17::i;:::-;83922:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;84024:5;84012:17;;:8;;;;;;;;;;;:17;;;84008:64;;84047:17;84040:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84008:64;84080:28;84111:10;:8;:10::i;:::-;84080:41;;84166:1;84141:14;84135:28;:32;:130;;;;;;;;;;;;;;;;;84203:14;84219:19;:8;:17;:19::i;:::-;84240:9;84186:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84135:130;84128:137;;;83826:445;;;;:::o;82187:126::-;68648:13;:11;:13::i;:::-;82289:18:::1;82269:17;:38;;;;82187:126:::0;:::o;81478:81::-;68648:13;:11;:13::i;:::-;81547:6:::1;81536:8;;:17;;;;;;;;;;;;;;;;;;81478:81:::0;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;69668:201::-;68648:13;:11;:13::i;:::-;69777:1:::1;69757:22;;:8;:22;;::::0;69749:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;69833:28;69852:8;69833:18;:28::i;:::-;69668:201:::0;:::o;81573:76::-;68648:13;:11;:13::i;:::-;81639:4:::1;81633:3;:10;;;;;;:::i;:::-;;81573:76:::0;:::o;68927:132::-;69002:12;:10;:12::i;:::-;68991:23;;:7;:5;:7::i;:::-;:23;;;68983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68927:132::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;83725:95::-;83790:7;83813:1;83806:8;;83725:95;:::o;77679:419::-;77918:1;76200:42;77870:45;;;:49;77866:225;;;76200:42;77941;;;77992:4;77999:8;77941:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77936:144;;78055:8;78036:28;;;;;;;;;;;:::i;:::-;;;;;;;;77936:144;77866:225;77679:419;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;72652:293::-;72054:1;72786:7;;:19;72778:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72054:1;72919:7;:18;;;;72652:293::o;72953:213::-;72010:1;73136:7;:22;;;;72953:213::o;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;70029:191::-;70103:16;70122:6;;;;;;;;;;;70103:25;;70148:8;70139:6;;:17;;;;;;;;;;;;;;;;;;70203:8;70172:40;;70193:8;70172:40;;;;;;;;;;;;70092:128;70029:191;:::o;14744:103::-;14799:7;14826:13;;14819:20;;14744:103;:::o;21302:161::-;21370:21;;:::i;:::-;21411:44;21430:17;:24;21448:5;21430:24;;;;;;;;;;;;21411:18;:44::i;:::-;21404:51;;21302:161;;;:::o;67313:98::-;67366:7;67393:10;67386:17;;67313:98;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;84277:98::-;84337:13;84366:3;84359:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84277:98;:::o;64740:716::-;64796:13;64847:14;64884:1;64864:17;64875:5;64864:10;:17::i;:::-;:21;64847:38;;64900:20;64934:6;64923:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64900:41;;64956:11;65085:6;65081:2;65077:15;65069:6;65065:28;65058:35;;65122:288;65129:4;65122:288;;;65154:5;;;;;;;;65296:8;65291:2;65284:5;65280:14;65275:30;65270:3;65262:44;65352:2;65343:11;;;;;;:::i;:::-;;;;;65386:1;65377:5;:10;65122:288;65373:21;65122:288;65431:6;65424:13;;;;;64740:716;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;23228:366::-;23294:31;;:::i;:::-;23371:6;23338:9;:14;;:41;;;;;;;;;;;11059:3;23424:6;:33;;23390:9;:24;;:68;;;;;;;;;;;23516:1;11176:8;23488:6;:24;:29;;23469:9;:16;;:48;;;;;;;;;;;11580:3;23557:6;:28;;23528:9;:19;;:58;;;;;;;;;;;23228:366;;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;61606:922::-;61659:7;61679:14;61696:1;61679:18;;61746:6;61737:5;:15;61733:102;;61782:6;61773:15;;;;;;:::i;:::-;;;;;61817:2;61807:12;;;;61733:102;61862:6;61853:5;:15;61849:102;;61898:6;61889:15;;;;;;:::i;:::-;;;;;61933:2;61923:12;;;;61849:102;61978:6;61969:5;:15;61965:102;;62014:6;62005:15;;;;;;:::i;:::-;;;;;62049:2;62039:12;;;;61965:102;62094:5;62085;:14;62081:99;;62129:5;62120:14;;;;;;:::i;:::-;;;;;62163:1;62153:11;;;;62081:99;62207:5;62198;:14;62194:99;;62242:5;62233:14;;;;;;:::i;:::-;;;;;62276:1;62266:11;;;;62194:99;62320:5;62311;:14;62307:99;;62355:5;62346:14;;;;;;:::i;:::-;;;;;62389:1;62379:11;;;;62307:99;62433:5;62424;:14;62420:66;;62469:1;62459:11;;;;62420:66;62514:6;62507:13;;;61606:922;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:149::-;1061:7;1101:66;1094:5;1090:78;1079:89;;1025:149;;;:::o;1180:120::-;1252:23;1269:5;1252:23;:::i;:::-;1245:5;1242:34;1232:62;;1290:1;1287;1280:12;1232:62;1180:120;:::o;1306:137::-;1351:5;1389:6;1376:20;1367:29;;1405:32;1431:5;1405:32;:::i;:::-;1306:137;;;;:::o;1449:327::-;1507:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:119;;;1562:79;;:::i;:::-;1524:119;1682:1;1707:52;1751:7;1742:6;1731:9;1727:22;1707:52;:::i;:::-;1697:62;;1653:116;1449:327;;;;:::o;1782:90::-;1816:7;1859:5;1852:13;1845:21;1834:32;;1782:90;;;:::o;1878:109::-;1959:21;1974:5;1959:21;:::i;:::-;1954:3;1947:34;1878:109;;:::o;1993:210::-;2080:4;2118:2;2107:9;2103:18;2095:26;;2131:65;2193:1;2182:9;2178:17;2169:6;2131:65;:::i;:::-;1993:210;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:246::-;2570:1;2580:113;2594:6;2591:1;2588:13;2580:113;;;2679:1;2674:3;2670:11;2664:18;2660:1;2655:3;2651:11;2644:39;2616:2;2613:1;2609:10;2604:15;;2580:113;;;2727:1;2718:6;2713:3;2709:16;2702:27;2551:184;2489:246;;;:::o;2741:102::-;2782:6;2833:2;2829:7;2824:2;2817:5;2813:14;2809:28;2799:38;;2741:102;;;:::o;2849:377::-;2937:3;2965:39;2998:5;2965:39;:::i;:::-;3020:71;3084:6;3079:3;3020:71;:::i;:::-;3013:78;;3100:65;3158:6;3153:3;3146:4;3139:5;3135:16;3100:65;:::i;:::-;3190:29;3212:6;3190:29;:::i;:::-;3185:3;3181:39;3174:46;;2941:285;2849:377;;;;:::o;3232:313::-;3345:4;3383:2;3372:9;3368:18;3360:26;;3432:9;3426:4;3422:20;3418:1;3407:9;3403:17;3396:47;3460:78;3533:4;3524:6;3460:78;:::i;:::-;3452:86;;3232:313;;;;:::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:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:60::-;9001:3;9022:5;9015:12;;8973:60;;;:::o;9039:142::-;9089:9;9122:53;9140:34;9149:24;9167:5;9149:24;:::i;:::-;9140:34;:::i;:::-;9122:53;:::i;:::-;9109:66;;9039:142;;;:::o;9187:126::-;9237:9;9270:37;9301:5;9270:37;:::i;:::-;9257:50;;9187:126;;;:::o;9319:158::-;9401:9;9434:37;9465:5;9434:37;:::i;:::-;9421:50;;9319:158;;;:::o;9483:195::-;9602:69;9665:5;9602:69;:::i;:::-;9597:3;9590:82;9483:195;;:::o;9684:286::-;9809:4;9847:2;9836:9;9832:18;9824:26;;9860:103;9960:1;9949:9;9945:17;9936:6;9860:103;:::i;:::-;9684:286;;;;:::o;9976:117::-;10085:1;10082;10075:12;10099:117;10208:1;10205;10198:12;10239:568;10312:8;10322:6;10372:3;10365:4;10357:6;10353:17;10349:27;10339:122;;10380:79;;:::i;:::-;10339:122;10493:6;10480:20;10470:30;;10523:18;10515:6;10512:30;10509:117;;;10545:79;;:::i;:::-;10509:117;10659:4;10651:6;10647:17;10635:29;;10713:3;10705:4;10697:6;10693:17;10683:8;10679:32;10676:41;10673:128;;;10720:79;;:::i;:::-;10673:128;10239:568;;;;;:::o;10813:559::-;10899:6;10907;10956:2;10944:9;10935:7;10931:23;10927:32;10924:119;;;10962:79;;:::i;:::-;10924:119;11110:1;11099:9;11095:17;11082:31;11140:18;11132:6;11129:30;11126:117;;;11162:79;;:::i;:::-;11126:117;11275:80;11347:7;11338:6;11327:9;11323:22;11275:80;:::i;:::-;11257:98;;;;11053:312;10813:559;;;;;:::o;11378:116::-;11448:21;11463:5;11448:21;:::i;:::-;11441:5;11438:32;11428:60;;11484:1;11481;11474:12;11428:60;11378:116;:::o;11500:133::-;11543:5;11581:6;11568:20;11559:29;;11597:30;11621:5;11597:30;:::i;:::-;11500:133;;;;:::o;11639:323::-;11695:6;11744:2;11732:9;11723:7;11719:23;11715:32;11712:119;;;11750:79;;:::i;:::-;11712:119;11870:1;11895:50;11937:7;11928:6;11917:9;11913:22;11895:50;:::i;:::-;11885:60;;11841:114;11639:323;;;;:::o;11968:329::-;12027:6;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;11968:329;;;;:::o;12303:114::-;12370:6;12404:5;12398:12;12388:22;;12303:114;;;:::o;12423:184::-;12522:11;12556:6;12551:3;12544:19;12596:4;12591:3;12587:14;12572:29;;12423:184;;;;:::o;12613:132::-;12680:4;12703:3;12695:11;;12733:4;12728:3;12724:14;12716:22;;12613:132;;;:::o;12751:108::-;12828:24;12846:5;12828:24;:::i;:::-;12823:3;12816:37;12751:108;;:::o;12865:179::-;12934:10;12955:46;12997:3;12989:6;12955:46;:::i;:::-;13033:4;13028:3;13024:14;13010:28;;12865:179;;;;:::o;13050:113::-;13120:4;13152;13147:3;13143:14;13135:22;;13050:113;;;:::o;13199:732::-;13318:3;13347:54;13395:5;13347:54;:::i;:::-;13417:86;13496:6;13491:3;13417:86;:::i;:::-;13410:93;;13527:56;13577:5;13527:56;:::i;:::-;13606:7;13637:1;13622:284;13647:6;13644:1;13641:13;13622:284;;;13723:6;13717:13;13750:63;13809:3;13794:13;13750:63;:::i;:::-;13743:70;;13836:60;13889:6;13836:60;:::i;:::-;13826:70;;13682:224;13669:1;13666;13662:9;13657:14;;13622:284;;;13626:14;13922:3;13915:10;;13323:608;;;13199:732;;;;:::o;13937:373::-;14080:4;14118:2;14107:9;14103:18;14095:26;;14167:9;14161:4;14157:20;14153:1;14142:9;14138:17;14131:47;14195:108;14298:4;14289:6;14195:108;:::i;:::-;14187:116;;13937:373;;;;:::o;14316:468::-;14381:6;14389;14438:2;14426:9;14417:7;14413:23;14409:32;14406:119;;;14444:79;;:::i;:::-;14406:119;14564:1;14589:53;14634:7;14625:6;14614:9;14610:22;14589:53;:::i;:::-;14579:63;;14535:117;14691:2;14717:50;14759:7;14750:6;14739:9;14735:22;14717:50;:::i;:::-;14707:60;;14662:115;14316:468;;;;;:::o;14790:307::-;14851:4;14941:18;14933:6;14930:30;14927:56;;;14963:18;;:::i;:::-;14927:56;15001:29;15023:6;15001:29;:::i;:::-;14993:37;;15085:4;15079;15075:15;15067:23;;14790:307;;;:::o;15103:423::-;15180:5;15205:65;15221:48;15262:6;15221:48;:::i;:::-;15205:65;:::i;:::-;15196:74;;15293:6;15286:5;15279:21;15331:4;15324:5;15320:16;15369:3;15360:6;15355:3;15351:16;15348:25;15345:112;;;15376:79;;:::i;:::-;15345:112;15466:54;15513:6;15508:3;15503;15466:54;:::i;:::-;15186:340;15103:423;;;;;:::o;15545:338::-;15600:5;15649:3;15642:4;15634:6;15630:17;15626:27;15616:122;;15657:79;;:::i;:::-;15616:122;15774:6;15761:20;15799:78;15873:3;15865:6;15858:4;15850:6;15846:17;15799:78;:::i;:::-;15790:87;;15606:277;15545:338;;;;:::o;15889:943::-;15984:6;15992;16000;16008;16057:3;16045:9;16036:7;16032:23;16028:33;16025:120;;;16064:79;;:::i;:::-;16025:120;16184:1;16209:53;16254:7;16245:6;16234:9;16230:22;16209:53;:::i;:::-;16199:63;;16155:117;16311:2;16337:53;16382:7;16373:6;16362:9;16358:22;16337:53;:::i;:::-;16327:63;;16282:118;16439:2;16465:53;16510:7;16501:6;16490:9;16486:22;16465:53;:::i;:::-;16455:63;;16410:118;16595:2;16584:9;16580:18;16567:32;16626:18;16618:6;16615:30;16612:117;;;16648:79;;:::i;:::-;16612:117;16753:62;16807:7;16798:6;16787:9;16783:22;16753:62;:::i;:::-;16743:72;;16538:287;15889:943;;;;;;;:::o;16838:474::-;16906:6;16914;16963:2;16951:9;16942:7;16938:23;16934:32;16931:119;;;16969:79;;:::i;:::-;16931:119;17089:1;17114:53;17159:7;17150:6;17139:9;17135:22;17114:53;:::i;:::-;17104:63;;17060:117;17216:2;17242:53;17287:7;17278:6;17267:9;17263:22;17242:53;:::i;:::-;17232:63;;17187:118;16838:474;;;;;:::o;17318:180::-;17366:77;17363:1;17356:88;17463:4;17460:1;17453:15;17487:4;17484:1;17477:15;17504:320;17548:6;17585:1;17579:4;17575:12;17565:22;;17632:1;17626:4;17622:12;17653:18;17643:81;;17709:4;17701:6;17697:17;17687:27;;17643:81;17771:2;17763:6;17760:14;17740:18;17737:38;17734:84;;17790:18;;:::i;:::-;17734:84;17555:269;17504:320;;;:::o;17830:141::-;17879:4;17902:3;17894:11;;17925:3;17922:1;17915:14;17959:4;17956:1;17946:18;17938:26;;17830:141;;;:::o;17977:93::-;18014:6;18061:2;18056;18049:5;18045:14;18041:23;18031:33;;17977:93;;;:::o;18076:107::-;18120:8;18170:5;18164:4;18160:16;18139:37;;18076:107;;;;:::o;18189:393::-;18258:6;18308:1;18296:10;18292:18;18331:97;18361:66;18350:9;18331:97;:::i;:::-;18449:39;18479:8;18468:9;18449:39;:::i;:::-;18437:51;;18521:4;18517:9;18510:5;18506:21;18497:30;;18570:4;18560:8;18556:19;18549:5;18546:30;18536:40;;18265:317;;18189:393;;;;;:::o;18588:142::-;18638:9;18671:53;18689:34;18698:24;18716:5;18698:24;:::i;:::-;18689:34;:::i;:::-;18671:53;:::i;:::-;18658:66;;18588:142;;;:::o;18736:75::-;18779:3;18800:5;18793:12;;18736:75;;;:::o;18817:269::-;18927:39;18958:7;18927:39;:::i;:::-;18988:91;19037:41;19061:16;19037:41;:::i;:::-;19029:6;19022:4;19016:11;18988:91;:::i;:::-;18982:4;18975:105;18893:193;18817:269;;;:::o;19092:73::-;19137:3;19092:73;:::o;19171:189::-;19248:32;;:::i;:::-;19289:65;19347:6;19339;19333:4;19289:65;:::i;:::-;19224:136;19171:189;;:::o;19366:186::-;19426:120;19443:3;19436:5;19433:14;19426:120;;;19497:39;19534:1;19527:5;19497:39;:::i;:::-;19470:1;19463:5;19459:13;19450:22;;19426:120;;;19366:186;;:::o;19558:543::-;19659:2;19654:3;19651:11;19648:446;;;19693:38;19725:5;19693:38;:::i;:::-;19777:29;19795:10;19777:29;:::i;:::-;19767:8;19763:44;19960:2;19948:10;19945:18;19942:49;;;19981:8;19966:23;;19942:49;20004:80;20060:22;20078:3;20060:22;:::i;:::-;20050:8;20046:37;20033:11;20004:80;:::i;:::-;19663:431;;19648:446;19558:543;;;:::o;20107:117::-;20161:8;20211:5;20205:4;20201:16;20180:37;;20107:117;;;;:::o;20230:169::-;20274:6;20307:51;20355:1;20351:6;20343:5;20340:1;20336:13;20307:51;:::i;:::-;20303:56;20388:4;20382;20378:15;20368:25;;20281:118;20230:169;;;;:::o;20404:295::-;20480:4;20626:29;20651:3;20645:4;20626:29;:::i;:::-;20618:37;;20688:3;20685:1;20681:11;20675:4;20672:21;20664:29;;20404:295;;;;:::o;20704:1395::-;20821:37;20854:3;20821:37;:::i;:::-;20923:18;20915:6;20912:30;20909:56;;;20945:18;;:::i;:::-;20909:56;20989:38;21021:4;21015:11;20989:38;:::i;:::-;21074:67;21134:6;21126;21120:4;21074:67;:::i;:::-;21168:1;21192:4;21179:17;;21224:2;21216:6;21213:14;21241:1;21236:618;;;;21898:1;21915:6;21912:77;;;21964:9;21959:3;21955:19;21949:26;21940:35;;21912:77;22015:67;22075:6;22068:5;22015:67;:::i;:::-;22009:4;22002:81;21871:222;21206:887;;21236:618;21288:4;21284:9;21276:6;21272:22;21322:37;21354:4;21322:37;:::i;:::-;21381:1;21395:208;21409:7;21406:1;21403:14;21395:208;;;21488:9;21483:3;21479:19;21473:26;21465:6;21458:42;21539:1;21531:6;21527:14;21517:24;;21586:2;21575:9;21571:18;21558:31;;21432:4;21429:1;21425:12;21420:17;;21395:208;;;21631:6;21622:7;21619:19;21616:179;;;21689:9;21684:3;21680:19;21674:26;21732:48;21774:4;21766:6;21762:17;21751:9;21732:48;:::i;:::-;21724:6;21717:64;21639:156;21616:179;21841:1;21837;21829:6;21825:14;21821:22;21815:4;21808:36;21243:611;;;21206:887;;20796:1303;;;20704:1395;;:::o;22105:180::-;22153:77;22150:1;22143:88;22250:4;22247:1;22240:15;22274:4;22271:1;22264:15;22291:191;22331:3;22350:20;22368:1;22350:20;:::i;:::-;22345:25;;22384:20;22402:1;22384:20;:::i;:::-;22379:25;;22427:1;22424;22420:9;22413:16;;22448:3;22445:1;22442:10;22439:36;;;22455:18;;:::i;:::-;22439:36;22291:191;;;;:::o;22488:170::-;22628:22;22624:1;22616:6;22612:14;22605:46;22488:170;:::o;22664:366::-;22806:3;22827:67;22891:2;22886:3;22827:67;:::i;:::-;22820:74;;22903:93;22992:3;22903:93;:::i;:::-;23021:2;23016:3;23012:12;23005:19;;22664:366;;;:::o;23036:419::-;23202:4;23240:2;23229:9;23225:18;23217:26;;23289:9;23283:4;23279:20;23275:1;23264:9;23260:17;23253:47;23317:131;23443:4;23317:131;:::i;:::-;23309:139;;23036:419;;;:::o;23461:147::-;23562:11;23599:3;23584:18;;23461:147;;;;:::o;23614:114::-;;:::o;23734:398::-;23893:3;23914:83;23995:1;23990:3;23914:83;:::i;:::-;23907:90;;24006:93;24095:3;24006:93;:::i;:::-;24124:1;24119:3;24115:11;24108:18;;23734:398;;;:::o;24138:379::-;24322:3;24344:147;24487:3;24344:147;:::i;:::-;24337:154;;24508:3;24501:10;;24138:379;;;:::o;24523:180::-;24571:77;24568:1;24561:88;24668:4;24665:1;24658:15;24692:4;24689:1;24682:15;24709:233;24748:3;24771:24;24789:5;24771:24;:::i;:::-;24762:33;;24817:66;24810:5;24807:77;24804:103;;24887:18;;:::i;:::-;24804:103;24934:1;24927:5;24923:13;24916:20;;24709:233;;;:::o;24948:175::-;25088:27;25084:1;25076:6;25072:14;25065:51;24948:175;:::o;25129:366::-;25271:3;25292:67;25356:2;25351:3;25292:67;:::i;:::-;25285:74;;25368:93;25457:3;25368:93;:::i;:::-;25486:2;25481:3;25477:12;25470:19;;25129:366;;;:::o;25501:419::-;25667:4;25705:2;25694:9;25690:18;25682:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25782:131;25908:4;25782:131;:::i;:::-;25774:139;;25501:419;;;:::o;25926:170::-;26066:22;26062:1;26054:6;26050:14;26043:46;25926:170;:::o;26102:366::-;26244:3;26265:67;26329:2;26324:3;26265:67;:::i;:::-;26258:74;;26341:93;26430:3;26341:93;:::i;:::-;26459:2;26454:3;26450:12;26443:19;;26102:366;;;:::o;26474:419::-;26640:4;26678:2;26667:9;26663:18;26655:26;;26727:9;26721:4;26717:20;26713:1;26702:9;26698:17;26691:47;26755:131;26881:4;26755:131;:::i;:::-;26747:139;;26474:419;;;:::o;26899:179::-;27039:31;27035:1;27027:6;27023:14;27016:55;26899:179;:::o;27084:366::-;27226:3;27247:67;27311:2;27306:3;27247:67;:::i;:::-;27240:74;;27323:93;27412:3;27323:93;:::i;:::-;27441:2;27436:3;27432:12;27425:19;;27084:366;;;:::o;27456:419::-;27622:4;27660:2;27649:9;27645:18;27637:26;;27709:9;27703:4;27699:20;27695:1;27684:9;27680:17;27673:47;27737:131;27863:4;27737:131;:::i;:::-;27729:139;;27456:419;;;:::o;27881:410::-;27921:7;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27978:20;27996:1;27978:20;:::i;:::-;27973:25;;28033:1;28030;28026:9;28055:30;28073:11;28055:30;:::i;:::-;28044:41;;28234:1;28225:7;28221:15;28218:1;28215:22;28195:1;28188:9;28168:83;28145:139;;28264:18;;:::i;:::-;28145:139;27929:362;27881:410;;;;:::o;28297:169::-;28437:21;28433:1;28425:6;28421:14;28414:45;28297:169;:::o;28472:366::-;28614:3;28635:67;28699:2;28694:3;28635:67;:::i;:::-;28628:74;;28711:93;28800:3;28711:93;:::i;:::-;28829:2;28824:3;28820:12;28813:19;;28472:366;;;:::o;28844:419::-;29010:4;29048:2;29037:9;29033:18;29025:26;;29097:9;29091:4;29087:20;29083:1;29072:9;29068:17;29061:47;29125:131;29251:4;29125:131;:::i;:::-;29117:139;;28844:419;;;:::o;29269:234::-;29409:34;29405:1;29397:6;29393:14;29386:58;29478:17;29473:2;29465:6;29461:15;29454:42;29269:234;:::o;29509:366::-;29651:3;29672:67;29736:2;29731:3;29672:67;:::i;:::-;29665:74;;29748:93;29837:3;29748:93;:::i;:::-;29866:2;29861:3;29857:12;29850:19;;29509:366;;;:::o;29881:419::-;30047:4;30085:2;30074:9;30070:18;30062:26;;30134:9;30128:4;30124:20;30120:1;30109:9;30105:17;30098:47;30162:131;30288:4;30162:131;:::i;:::-;30154:139;;29881:419;;;:::o;30306:148::-;30408:11;30445:3;30430:18;;30306:148;;;;:::o;30460:390::-;30566:3;30594:39;30627:5;30594:39;:::i;:::-;30649:89;30731:6;30726:3;30649:89;:::i;:::-;30642:96;;30747:65;30805:6;30800:3;30793:4;30786:5;30782:16;30747:65;:::i;:::-;30837:6;30832:3;30828:16;30821:23;;30570:280;30460:390;;;;:::o;30880:874::-;30983:3;31020:5;31014:12;31049:36;31075:9;31049:36;:::i;:::-;31101:89;31183:6;31178:3;31101:89;:::i;:::-;31094:96;;31221:1;31210:9;31206:17;31237:1;31232:166;;;;31412:1;31407:341;;;;31199:549;;31232:166;31316:4;31312:9;31301;31297:25;31292:3;31285:38;31378:6;31371:14;31364:22;31356:6;31352:35;31347:3;31343:45;31336:52;;31232:166;;31407:341;31474:38;31506:5;31474:38;:::i;:::-;31534:1;31548:154;31562:6;31559:1;31556:13;31548:154;;;31636:7;31630:14;31626:1;31621:3;31617:11;31610:35;31686:1;31677:7;31673:15;31662:26;;31584:4;31581:1;31577:12;31572:17;;31548:154;;;31731:6;31726:3;31722:16;31715:23;;31414:334;;31199:549;;30987:767;;30880:874;;;;:::o;31760:589::-;31985:3;32007:95;32098:3;32089:6;32007:95;:::i;:::-;32000:102;;32119:95;32210:3;32201:6;32119:95;:::i;:::-;32112:102;;32231:92;32319:3;32310:6;32231:92;:::i;:::-;32224:99;;32340:3;32333:10;;31760:589;;;;;;:::o;32355:225::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:8;32559:2;32551:6;32547:15;32540:33;32355:225;:::o;32586:366::-;32728:3;32749:67;32813:2;32808:3;32749:67;:::i;:::-;32742:74;;32825:93;32914:3;32825:93;:::i;:::-;32943:2;32938:3;32934:12;32927:19;;32586:366;;;:::o;32958:419::-;33124:4;33162:2;33151:9;33147:18;33139:26;;33211:9;33205:4;33201:20;33197:1;33186:9;33182:17;33175:47;33239:131;33365:4;33239:131;:::i;:::-;33231:139;;32958:419;;;:::o;33383:182::-;33523:34;33519:1;33511:6;33507:14;33500:58;33383:182;:::o;33571:366::-;33713:3;33734:67;33798:2;33793:3;33734:67;:::i;:::-;33727:74;;33810:93;33899:3;33810:93;:::i;:::-;33928:2;33923:3;33919:12;33912:19;;33571:366;;;:::o;33943:419::-;34109:4;34147:2;34136:9;34132:18;34124:26;;34196:9;34190:4;34186:20;34182:1;34171:9;34167:17;34160:47;34224:131;34350:4;34224:131;:::i;:::-;34216:139;;33943:419;;;:::o;34368:332::-;34489:4;34527:2;34516:9;34512:18;34504:26;;34540:71;34608:1;34597:9;34593:17;34584:6;34540:71;:::i;:::-;34621:72;34689:2;34678:9;34674:18;34665:6;34621:72;:::i;:::-;34368:332;;;;;:::o;34706:137::-;34760:5;34791:6;34785:13;34776:22;;34807:30;34831:5;34807:30;:::i;:::-;34706:137;;;;:::o;34849:345::-;34916:6;34965:2;34953:9;34944:7;34940:23;34936:32;34933:119;;;34971:79;;:::i;:::-;34933:119;35091:1;35116:61;35169:7;35160:6;35149:9;35145:22;35116:61;:::i;:::-;35106:71;;35062:125;34849:345;;;;:::o;35200:181::-;35340:33;35336:1;35328:6;35324:14;35317:57;35200:181;:::o;35387:366::-;35529:3;35550:67;35614:2;35609:3;35550:67;:::i;:::-;35543:74;;35626:93;35715:3;35626:93;:::i;:::-;35744:2;35739:3;35735:12;35728:19;;35387:366;;;:::o;35759:419::-;35925:4;35963:2;35952:9;35948:18;35940:26;;36012:9;36006:4;36002:20;35998:1;35987:9;35983:17;35976:47;36040:131;36166:4;36040:131;:::i;:::-;36032:139;;35759:419;;;:::o;36184:180::-;36232:77;36229:1;36222:88;36329:4;36326:1;36319:15;36353:4;36350:1;36343:15;36370:98;36421:6;36455:5;36449:12;36439:22;;36370:98;;;:::o;36474:168::-;36557:11;36591:6;36586:3;36579:19;36631:4;36626:3;36622:14;36607:29;;36474:168;;;;:::o;36648:373::-;36734:3;36762:38;36794:5;36762:38;:::i;:::-;36816:70;36879:6;36874:3;36816:70;:::i;:::-;36809:77;;36895:65;36953:6;36948:3;36941:4;36934:5;36930:16;36895:65;:::i;:::-;36985:29;37007:6;36985:29;:::i;:::-;36980:3;36976:39;36969:46;;36738:283;36648:373;;;;:::o;37027:640::-;37222:4;37260:3;37249:9;37245:19;37237:27;;37274:71;37342:1;37331:9;37327:17;37318:6;37274:71;:::i;:::-;37355:72;37423:2;37412:9;37408:18;37399:6;37355:72;:::i;:::-;37437;37505:2;37494:9;37490:18;37481:6;37437:72;:::i;:::-;37556:9;37550:4;37546:20;37541:2;37530:9;37526:18;37519:48;37584:76;37655:4;37646:6;37584:76;:::i;:::-;37576:84;;37027:640;;;;;;;:::o;37673:141::-;37729:5;37760:6;37754:13;37745:22;;37776:32;37802:5;37776:32;:::i;:::-;37673:141;;;;:::o;37820:349::-;37889:6;37938:2;37926:9;37917:7;37913:23;37909:32;37906:119;;;37944:79;;:::i;:::-;37906:119;38064:1;38089:63;38144:7;38135:6;38124:9;38120:22;38089:63;:::i;:::-;38079:73;;38035:127;37820:349;;;;:::o

Swarm Source

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