亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mpq.cpp

?? A*算法 A*算法 A*算法 A*算法A*算法A*算法
?? CPP
字號:
/* *  mpq.c -- functions for developers using libmpq. * *  Copyright (C) 2003 Maik Broemme <mbroemme@plusserver.de> * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * *  $Id: mpq.cpp,v 1.1 2005/04/09 22:09:18 ufoz Exp $ */#include <stdlib.h>#include <sys/stat.h>#include <fcntl.h>#include <stdio.h>#include <string.h>#include "libmpq/mpq.h"#include "libmpq/common.h"/* *  This function returns version information. *  format: MAJOR.MINOR.PATCH */char *libmpq_version() {	static char version[10];	snprintf(version, sizeof(version), "%i.%i.%i", LIBMPQ_MAJOR_VERSION, LIBMPQ_MINOR_VERSION, LIBMPQ_PATCH_VERSION);	return version;}/* *  This function reads a file and verify if it is a legit MPQ archive *  or not. Then it fills the mpq_header structure and reads the hash *  table. */int libmpq_archive_open(mpq_archive *mpq_a, unsigned char *mpq_filename) {	int fd = 0;	int rb = 0;	int ncnt = FALSE;	struct stat fileinfo;	memset((void*)mpq_a, 0, sizeof(mpq_archive));	/* allocate memory */	mpq_a->header = static_cast<mpq_header*>(malloc(sizeof(mpq_header)));	memset(mpq_a->header, 0, sizeof(mpq_header));	/* Check if file exists and is readable */	fd = open((const char*)mpq_filename, O_RDONLY|O_BINARY);	if (fd == LIBMPQ_EFILE) {		return LIBMPQ_EFILE;	}	/* fill the structures with informations */	strncpy((char*)mpq_a->filename, (const char*)mpq_filename, strlen((const char*)mpq_filename));	libmpq_init_buffer(mpq_a);	mpq_a->fd               = fd;	mpq_a->header->id       = 0;	mpq_a->maxblockindex    = 0;	mpq_a->header->offset	= 0;	while (!ncnt) {		mpq_a->header->id = 0;		lseek(mpq_a->fd, mpq_a->mpqpos, SEEK_SET);		rb = read(mpq_a->fd, mpq_a->header, sizeof(mpq_header));		/* if different number of bytes read, break the loop */		if (rb != sizeof(mpq_header)) {			return LIBMPQ_EFILE_FORMAT;		}		/* special offset for protected MPQs */		if (mpq_a->header->offset == LIBMPQ_HEADER_W3M) {			mpq_a->flags |= LIBMPQ_FLAG_PROTECTED;			mpq_a->header->offset = sizeof(mpq_header);		}		/* if valid signature has been found, break the loop */		if (mpq_a->header->id == LIBMPQ_ID_MPQ && mpq_a->header->hashtablepos < mpq_a->header->archivesize && mpq_a->header->blocktablepos < mpq_a->header->archivesize) { // && mpq_a->header->offset == sizeof(mpq_header)			ncnt = TRUE;		}		/* move to the next possible offset */		if (!ncnt) {			mpq_a->mpqpos += 0x200;		}	}	if (mpq_a->header->offset != sizeof(mpq_header)) {		lseek(mpq_a->fd, mpq_a->header->offset, SEEK_SET);	}	/* get the right positions of the hash table and the block table. */	mpq_a->blocksize = (0x200 << mpq_a->header->blocksize);	fstat(mpq_a->fd, &fileinfo);	/* Normal MPQs must have position of */	if ((mpq_a->header->hashtablepos + mpq_a->mpqpos < (unsigned int)fileinfo.st_size) && (mpq_a->header->blocktablepos + mpq_a->mpqpos < (unsigned int)fileinfo.st_size)) {		mpq_a->header->hashtablepos  += mpq_a->mpqpos;		mpq_a->header->blocktablepos += mpq_a->mpqpos;	} else {		return LIBMPQ_EFILE_FORMAT;	}	/* Try to read and decrypt the hashtable */	if (libmpq_read_hashtable(mpq_a) != 0) {		return LIBMPQ_EHASHTABLE;	}	/* Try to read and decrypt the blocktable */	if (libmpq_read_blocktable(mpq_a) != 0) {		return LIBMPQ_EBLOCKTABLE;	}	return LIBMPQ_TOOLS_SUCCESS;}/* *  This function closes the file descriptor opened by *  mpq_open_archive(); and frees the decryption buffer. */int libmpq_archive_close(mpq_archive *mpq_a) {	/* free the allocated memory. */	if (mpq_a->blockbuf) {		free(mpq_a->blockbuf);		mpq_a->blockbuf = NULL;	}	if (mpq_a->header) {		free(mpq_a->header);		mpq_a->header = NULL;	}	if (mpq_a->hashtable) {		free(mpq_a->hashtable);	/* Hash table */		mpq_a->hashtable = NULL;	}	if (mpq_a->blocktable) {		free(mpq_a->blocktable);	/* Block table */		mpq_a->blocktable = NULL;	}	/* Check if file descriptor is valid. */	if ((close(mpq_a->fd)) == LIBMPQ_EFILE) {		return LIBMPQ_EFILE;	}	/* // this isn't really needed	memset(mpq_a->buf, 0, sizeof(mpq_a->buf));	memset(mpq_a->filename, 0, sizeof(mpq_a->filename));	*/	free(mpq_a);	mpq_a = NULL;	return LIBMPQ_TOOLS_SUCCESS;}/* * This function returns the value for the given infotype. * If an error occurs something < 0 is returned. */int libmpq_archive_info(mpq_archive *mpq_a, unsigned int infotype) {	unsigned int filecount = 0;	unsigned int fsize = 0;	unsigned int csize = 0;	mpq_block *mpq_b_end = mpq_a->blocktable + mpq_a->header->blocktablesize;	mpq_block *mpq_b = NULL;	switch (infotype) {		case LIBMPQ_MPQ_ARCHIVE_SIZE:			return mpq_a->header->archivesize;		case LIBMPQ_MPQ_HASHTABLE_SIZE:			return mpq_a->header->hashtablesize;		case LIBMPQ_MPQ_BLOCKTABLE_SIZE:			return mpq_a->header->blocktablesize;		case LIBMPQ_MPQ_BLOCKSIZE:			return mpq_a->blocksize;		case LIBMPQ_MPQ_NUMFILES:			for (mpq_b = mpq_a->blocktable; mpq_b < mpq_b_end; mpq_b++) {				filecount++;			}			return filecount;		case LIBMPQ_MPQ_COMPRESSED_SIZE:			for (mpq_b = mpq_a->blocktable; mpq_b < mpq_b_end; mpq_b++) {				csize += mpq_b->csize;			}			return csize;		case LIBMPQ_MPQ_UNCOMPRESSED_SIZE:			for (mpq_b = mpq_a->blocktable; mpq_b < mpq_b_end; mpq_b++) {				fsize += mpq_b->fsize;			}			return fsize;		default:			return LIBMPQ_TOOLS_SUCCESS;	}}/* * This function returns some useful file information. */int libmpq_file_info(mpq_archive *mpq_a, unsigned int infotype, const int number) {	int blockindex = -1;	unsigned int i = 0;	mpq_block *mpq_b = NULL;	mpq_hash *mpq_h = NULL;	/* check if given number is not out of range */	if (number < 1 || (unsigned int)number > mpq_a->header->blocktablesize) {		return LIBMPQ_EINV_RANGE;	}	/* search for correct hashtable */	for (i = 0; i < mpq_a->header->hashtablesize; i++) {		if ((number - 1) == (int)(mpq_a->hashtable[i]).blockindex) {			blockindex = (mpq_a->hashtable[i]).blockindex;			mpq_h = &(mpq_a->hashtable[i]);			break;		}	}	/* check if file was found */	if (blockindex == -1 || blockindex > (int)mpq_a->header->blocktablesize) {		return LIBMPQ_EFILE_NOT_FOUND;	}	/* check if sizes are correct */	mpq_b = mpq_a->blocktable + blockindex;	if (mpq_b->filepos > (mpq_a->header->archivesize + mpq_a->mpqpos) || mpq_b->csize > mpq_a->header->archivesize) {		return LIBMPQ_EFILE_CORRUPT;	}	/* check if file exists */	if ((mpq_b->flags & LIBMPQ_FILE_EXISTS) == 0) {		return LIBMPQ_EFILE_NOT_FOUND;	}	switch (infotype) {		case LIBMPQ_FILE_COMPRESSED_SIZE:			return mpq_b->csize;		case LIBMPQ_FILE_UNCOMPRESSED_SIZE:			return mpq_b->fsize;		case LIBMPQ_FILE_HASH1:			return mpq_h->name1;		case LIBMPQ_FILE_HASH2:			return mpq_h->name2;		case LIBMPQ_FILE_COMPRESSION_TYPE:			if (mpq_b->flags & LIBMPQ_FILE_COMPRESS_PKWARE) {				return LIBMPQ_FILE_COMPRESS_PKWARE;			}			if (mpq_b->flags & LIBMPQ_FILE_COMPRESS_MULTI) {				return LIBMPQ_FILE_COMPRESS_MULTI;			}		default:			return LIBMPQ_TOOLS_SUCCESS;	}}/* *  This function returns the number to the given *  filename. */int libmpq_file_number(mpq_archive *mpq_a, const char *name) {	int i;    unsigned int hash1, hash2;        // Search by hash first    libmpq_hash_filename(mpq_a, (unsigned char*)name, &hash1, &hash2);    i = libmpq_file_number_from_hash(mpq_a, hash1, hash2);    if(i >= 0)        return i;	/* if no matching entry found return LIBMPQ_EFILE_NOT_FOUND */	return LIBMPQ_EFILE_NOT_FOUND;}/* *  This function returns the number to the given *  file. */int libmpq_file_number_from_hash(mpq_archive *mpq_a, unsigned int hash1, unsigned int hash2) {	/* search for correct hashtable */	for (unsigned int i=0; i < mpq_a->header->hashtablesize; i++) {		if((mpq_a->hashtable[i]).name1 == hash1 &&		   (mpq_a->hashtable[i]).name2 == hash2) {			return (mpq_a->hashtable[i]).blockindex + 1;		}	}	/* if no matching entry found return LIBMPQ_EFILE_NOT_FOUND */	return LIBMPQ_EFILE_NOT_FOUND;}/* *  This function verifies if a given file (by number *  or name) is in the opened mpq archive. On success *  it returns 0, otherwise LIBMPQ_EFILE_NOT_FOUND. */int libmpq_file_check(mpq_archive *mpq_a, void *file, int type) {	int found = 0;    unsigned int hash1, hash2;	switch (type) {		case LIBMPQ_FILE_TYPE_INT:			/* check if we are in the range of available files. */			if (*(int *)file > libmpq_archive_info(mpq_a, LIBMPQ_MPQ_NUMFILES) || *(int *)file < 1) {				return LIBMPQ_EFILE_NOT_FOUND;			} else {				return LIBMPQ_TOOLS_SUCCESS;			}		case LIBMPQ_FILE_TYPE_CHAR:            // Search by hash            libmpq_hash_filename(mpq_a, (unsigned char*)file, &hash1, &hash2);            if(libmpq_file_number_from_hash(mpq_a, hash1, hash2)>=0)                found = 1;            			/* if a file was found return 0 */			if (found == 1) {				return LIBMPQ_TOOLS_SUCCESS;			} else {				return LIBMPQ_EFILE_NOT_FOUND;			}		default:			return LIBMPQ_TOOLS_SUCCESS;	}}#if 0/* *  This function extracts a file from a MPQ archive *  by the given number. */int libmpq_file_extract(mpq_archive *mpq_a, const int number) {	int blockindex = -1;	int fd = 0;	int i = 0;	char buffer[0x1000];	char tempfile[PATH_MAX];	unsigned int transferred = 1;	mpq_file *mpq_f = NULL;	mpq_block *mpq_b = NULL;	mpq_hash *mpq_h = NULL;	if (number < 1 || number > mpq_a->header->blocktablesize) {		return LIBMPQ_EINV_RANGE;	}	snprintf(tempfile, PATH_MAX, libmpq_file_name(mpq_a, number));	/* check if mpq_f->filename could be written here. */	fd = open(tempfile, O_RDWR|O_CREAT|O_TRUNC, 0644);	if (fd == LIBMPQ_EFILE) {		return LIBMPQ_EFILE;	}	/* search for correct hashtable */	for (i = 0; i < mpq_a->header->hashtablesize; i++) {		if ((number - 1) == (mpq_a->hashtable[i]).blockindex) {			blockindex = (mpq_a->hashtable[i]).blockindex;			mpq_h = &(mpq_a->hashtable[i]);			break;		}	}	/* check if file was found */	if (blockindex == -1 || blockindex > mpq_a->header->blocktablesize) {		return LIBMPQ_EFILE_NOT_FOUND;	}	/* check if sizes are correct */	mpq_b = mpq_a->blocktable + blockindex;	if (mpq_b->filepos > (mpq_a->header->archivesize + mpq_a->mpqpos) || mpq_b->csize > mpq_a->header->archivesize) {		return LIBMPQ_EFILE_CORRUPT;	}	/* check if file exists */	if ((mpq_b->flags & LIBMPQ_FILE_EXISTS) == 0) {		return LIBMPQ_EFILE_NOT_FOUND;	}	/* allocate memory for file structure */	mpq_f = (mpq_file *)malloc(sizeof(mpq_file));	if (!mpq_f) {		return LIBMPQ_EALLOCMEM;	}	/* initialize file structure */	memset(mpq_f, 0, sizeof(mpq_file));	mpq_f->fd             = fd;	mpq_f->mpq_b          = mpq_b;	mpq_f->nblocks        = (mpq_f->mpq_b->fsize + mpq_a->blocksize - 1) / mpq_a->blocksize;	mpq_f->mpq_h          = mpq_h;	mpq_f->accessed       = FALSE;	mpq_f->blockposloaded = FALSE;	snprintf((char*)mpq_f->filename, PATH_MAX, tempfile);	/* allocate buffers for decompression. */	if (mpq_f->mpq_b->flags & LIBMPQ_FILE_COMPRESSED) {		/*		 *  Allocate buffer for block positions. At the begin of file are stored		 *  unsigned ints holding positions of each block relative from begin of		 *  file in the archive.		 */		if ((mpq_f->blockpos = (unsigned int*)malloc(sizeof(int) * mpq_f->nblocks + 1)) == NULL) {			return LIBMPQ_EALLOCMEM;		}	}	while (transferred > 0) {		transferred = libmpq_file_read_file(mpq_a, mpq_f, mpq_f->filepos, buffer, sizeof(buffer));		if (transferred == 0) {			break;		} else {			mpq_f->accessed  = TRUE;			mpq_f->filepos  += transferred;		}		transferred = write(mpq_f->fd, buffer, transferred);		if (transferred == 0) {			break;		}	}	close(fd);	/* freeing the file structure */	free(mpq_f);	return LIBMPQ_TOOLS_SUCCESS;}#endifint libmpq_file_getdata(mpq_archive *mpq_a, const int number, unsigned char *dest) {	int blockindex = -1;	unsigned int i=0;	mpq_file *mpq_f = NULL;	mpq_block *mpq_b = NULL;	mpq_hash *mpq_h = NULL;    int success = 0;	if (number < 1 || (unsigned int)number > mpq_a->header->blocktablesize) {		return LIBMPQ_EINV_RANGE;	}	/* search for correct hashtable */	for (i=0; i<mpq_a->header->hashtablesize; i++) {		if ((number - 1) == (mpq_a->hashtable[i]).blockindex) {			blockindex = (mpq_a->hashtable[i]).blockindex;			mpq_h = &(mpq_a->hashtable[i]);			break;		}	}	/* check if file was found */	if (blockindex == -1 || (unsigned int)blockindex > mpq_a->header->blocktablesize) {		return LIBMPQ_EFILE_NOT_FOUND;	}	/* check if sizes are correct */	mpq_b = mpq_a->blocktable + blockindex;	if (mpq_b->filepos > (mpq_a->header->archivesize + mpq_a->mpqpos) || mpq_b->csize > mpq_a->header->archivesize) {		return LIBMPQ_EFILE_CORRUPT;	}	/* check if file exists */	if ((mpq_b->flags & LIBMPQ_FILE_EXISTS) == 0) {		return LIBMPQ_EFILE_NOT_FOUND;	}	/* allocate memory for file structure */	mpq_f = (mpq_file*)malloc(sizeof(mpq_file));	if (!mpq_f) {		return LIBMPQ_EALLOCMEM;	}	/* initialize file structure */	memset(mpq_f, 0, sizeof(mpq_file));	mpq_f->mpq_b          = mpq_b;	mpq_f->nblocks        = (mpq_f->mpq_b->fsize + mpq_a->blocksize - 1) / mpq_a->blocksize;	mpq_f->mpq_h          = mpq_h;	mpq_f->accessed       = FALSE;	mpq_f->blockposloaded = FALSE;	/* allocate buffers for decompression. */	if (mpq_f->mpq_b->flags & LIBMPQ_FILE_COMPRESSED) {		/*		 *  Allocate buffer for block positions. At the begin of file are stored		 *  unsigned ints holding positions of each block relative from begin of		 *  file in the archive.		 */		if ((mpq_f->blockpos = (unsigned int*)malloc(sizeof(int) * (mpq_f->nblocks + 1))) == NULL) {			free(mpq_f);			return LIBMPQ_EALLOCMEM;		}	}    if(libmpq_file_read_file(mpq_a, mpq_f, 0, (char*)dest, mpq_b->fsize) == mpq_b->fsize)        success = 1;    if (mpq_f->mpq_b->flags & LIBMPQ_FILE_COMPRESSED) {        // Free buffer for block positions			       free(mpq_f->blockpos);	}	/* freeing the file structure */	free(mpq_f);	return success?LIBMPQ_TOOLS_SUCCESS:LIBMPQ_EFILE_CORRUPT;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品在线三区| 另类小说综合欧美亚洲| 蜜桃传媒麻豆第一区在线观看| 精品影视av免费| 欧美日韩另类国产亚洲欧美一级| 久久久久国产精品麻豆ai换脸| 亚洲国产毛片aaaaa无费看 | 成人av资源在线| 欧美α欧美αv大片| 亚洲一区二区三区四区的| 成人性生交大片免费看视频在线| 欧美精品日韩综合在线| 亚洲欧美日韩中文播放 | 韩国中文字幕2020精品| 欧美亚一区二区| 亚洲三级小视频| 99精品热视频| 中文字幕二三区不卡| 国产福利电影一区二区三区| 欧美刺激午夜性久久久久久久| 亚洲福利视频一区二区| 91精彩视频在线观看| 国产精品久久毛片av大全日韩| 国产在线精品一区二区不卡了 | 日韩成人一区二区| 91激情五月电影| 亚洲视频一二三| 91在线国内视频| 亚洲人xxxx| 在线精品国精品国产尤物884a| 国产精品国产三级国产有无不卡 | 色婷婷久久久综合中文字幕| 亚洲色图.com| 色吊一区二区三区| 亚洲第一激情av| 日韩亚洲欧美在线观看| 美女高潮久久久| 精品久久久久久无| 国产超碰在线一区| 国产精品久久久久久久久久久免费看 | 日韩电影一区二区三区| 日韩一区二区不卡| 国内成人精品2018免费看| 亚洲精品一区二区精华| 国产成人av电影在线| 国产精品亲子乱子伦xxxx裸| 99国产精品国产精品毛片| 亚洲黄色小视频| 91精品国产入口| 韩国欧美国产一区| 国产精品久久久久久久第一福利 | 一区二区三区 在线观看视频| 在线免费观看日本一区| 午夜国产精品影院在线观看| 日韩欧美一区二区免费| 国产一区二区在线免费观看| 中文字幕日韩av资源站| 欧美日韩一区二区欧美激情| 久久成人久久鬼色| 中文字幕中文在线不卡住| 欧美美女一区二区三区| 国产一区二区三区不卡在线观看| 1024亚洲合集| 欧美精品一区男女天堂| 色哟哟欧美精品| 久久精品久久综合| 亚洲欧美另类久久久精品| 日韩美女视频一区二区在线观看| 国产69精品久久777的优势| 性做久久久久久| 国产欧美一区二区精品仙草咪| 欧美亚洲动漫另类| 国产成人免费视频精品含羞草妖精 | 亚洲成国产人片在线观看| 久久久久久97三级| 欧美日韩在线一区二区| 国产91综合一区在线观看| 午夜电影网亚洲视频| 欧美国产一区二区在线观看| 欧美精品第1页| 91在线精品一区二区三区| 国产综合久久久久久久久久久久| 一区二区三区在线观看国产| 国产亚洲一本大道中文在线| 欧美美女直播网站| 色呦呦国产精品| 成人国产一区二区三区精品| 免费日本视频一区| 一区二区三区在线播放| 国产亚洲一区二区三区| 亚洲精品一区二区三区精华液| 7777精品久久久大香线蕉| 色综合网色综合| 成人动漫一区二区三区| 日本va欧美va精品发布| 一区二区三区免费在线观看| 国产精品久久毛片| 国产亚洲精品久| 久久久另类综合| 久久你懂得1024| 精品久久国产老人久久综合| 日韩一区国产二区欧美三区| 欧美精品一二三四| 在线看国产一区二区| 日本乱码高清不卡字幕| 色婷婷综合久色| 在线欧美一区二区| 在线视频一区二区免费| 欧美亚一区二区| 欧美日韩三级在线| 欧美日韩高清一区| 91精品国产乱码| www一区二区| 国产婷婷色一区二区三区| 久久久久久久综合色一本| 26uuu欧美| 中文一区二区完整视频在线观看| 国产目拍亚洲精品99久久精品| 久久精品一二三| 中文字幕中文字幕中文字幕亚洲无线| 中文字幕 久热精品 视频在线| 国产精品久久久久久久久图文区 | 久久尤物电影视频在线观看| 欧美精品一区二区在线观看| 久久久久久久网| 中文字幕亚洲综合久久菠萝蜜| 中文字幕中文乱码欧美一区二区| 国产精品成人免费在线| 亚洲国产综合91精品麻豆| 天天影视涩香欲综合网| 麻豆国产精品一区二区三区 | 免费精品99久久国产综合精品| 美女国产一区二区三区| 国产成人av影院| 色婷婷精品久久二区二区蜜臂av| 欧美午夜影院一区| 欧美zozozo| 亚洲免费观看在线观看| 五月天久久比比资源色| 狠狠狠色丁香婷婷综合久久五月| 成人黄色电影在线 | 欧美日韩成人在线| 久久亚区不卡日本| 亚洲人精品午夜| 久久国产精品99精品国产| 粉嫩一区二区三区性色av| 欧美性高清videossexo| 日韩女优毛片在线| 亚洲欧洲在线观看av| 日韩精品1区2区3区| 成人精品视频一区二区三区尤物| 欧美影视一区在线| 久久久久久久久99精品| 亚洲一区二区三区小说| 国产在线精品视频| 欧美精品 日韩| 国产精品欧美综合在线| 男男视频亚洲欧美| 色狠狠av一区二区三区| 久久女同互慰一区二区三区| 一区二区三区在线视频免费| 国内精品久久久久影院一蜜桃| 色美美综合视频| 国产三级一区二区三区| 日本午夜精品视频在线观看| 成人激情小说网站| 欧美mv日韩mv国产网站app| 亚洲靠逼com| 成人动漫精品一区二区| 精品成人在线观看| 亚洲一区二区三区激情| 99精品视频一区二区| 久久久天堂av| 久久精品理论片| 91精品久久久久久蜜臀| 亚洲主播在线播放| 91亚洲永久精品| 欧美国产日韩精品免费观看| 极品少妇xxxx偷拍精品少妇| 欧美日韩国产一二三| 亚洲精品久久久久久国产精华液| 国产精品一二三四| 精品国产免费一区二区三区四区| 亚洲电影第三页| 欧美综合欧美视频| 亚洲一区二区中文在线| 91麻豆免费看| 一区二区在线观看不卡| 93久久精品日日躁夜夜躁欧美| 日本一区二区三区久久久久久久久不| 精品一区二区在线免费观看| 日韩西西人体444www| 视频一区国产视频| 欧美一区二区免费| 久久精品久久久精品美女| 日韩欧美亚洲一区二区| 激情文学综合插| 国产亚洲精品资源在线26u| 国产电影精品久久禁18| 国产欧美日韩精品在线|