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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? nnd13os.m

?? 神經(jīng)網(wǎng)絡(luò)的程序說(shuō)明,以及代碼 神經(jīng)網(wǎng)絡(luò)工具箱應(yīng)用
?? M
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
function nnd13os(cmd,arg1,arg2,arg3)
%NND13OS Unsupervised Hebb demonstration.
%
%	This demonstration requires either the MININNET functions
%	on the NND disk or the Neural Network Toolbox.

% First Version, 8-31-95.

%==================================================================

% CONSTANTS
me = 'nnd13os';
Fs = 8192;
pause1 = 0.7;
pause2 = 0.1;

% DEFAULTS
if nargin == 0, cmd = ''; else cmd = lower(cmd); end

% FIND WINDOW IF IT EXISTS
fig = nnfgflag(me);
if length(get(fig,'children')) == 0, fig = 0; end

% GET WINDOW DATA IF IT EXISTS
if fig
  H = get(fig,'userdata');
  fig_axis = H(1);         % window axis
  desc_text = H(2);        % handle to first line of text sequence
  lines = H(3:4);          % belt circle lines
  fruit_indicator = H(5);  % fruit entrance indicator
  top_indicator = H(6);    % top exit indicator
  bottom_indicator = H(7); % bottom exit indicator;
  sounds = H(8:15);        % pointers to sounds
  angle_ptr = H(16);       % angle (deg) of lines in conveyer ends
  fruit_ptr = H(17);       % pointer to fruit shape
  arrows = H(21:22);       % handles to arrows
  rb1 = H(23);             % Working radio button
  rb2 = H(24);             % Not working radio button
  cross = H(25);           % Not working cross
  p1_ptr = H(26);          % Input #1
  p2_ptr = H(27);          % Input #2
  a_ptr = H(28);           % Output
  W2_ptr = H(29);          % Weights #2
  p1_box1 = H(30);
  p1_text1 = H(31);
  p1_box2 = H(32);
  p1_text2 = H(33);
  p1_box3 = H(34);
  p1_text3 = H(35);
  p2_box = H(36);
  p2_text = H(37);
  a_box1 = H(38);
  a_text1 = H(39);
  a_box2 = H(40);
  a_text2 = H(41);
  a_box3 = H(42);
  a_text3 = H(43);
  go_button = H(44);
  mode_ptr = H(45);
  W2_box1 = H(46);
  W2_text1 = H(47);
  W2_box2 = H(48);
  W2_text2 = H(49);
  W2_box3 = H(50);
  W2_text3 = H(51);
  mode = get(mode_ptr,'userdata');
end

%==================================================================
% Activate the window.
%
% ME() or ME('')
%==================================================================

if strcmp(cmd,'')
  if fig
    figure(fig)
    set(fig,'visible','on')
  else
    feval(me,'init')
  end

%==================================================================
% Close the window.
%
% ME() or ME('')
%==================================================================

elseif strcmp(cmd,'close') & (fig)
  delete(fig)

%==================================================================
% Initialize the window.
%
% ME('init')
%==================================================================

elseif strcmp(cmd,'init') & (~fig)

  % CHECK FOR TRANSFER FUNCTIONS
  if ~nnfexist(me), return, end

  % NEW DEMO FIGURE
  fig = nndemof2(me,'DESIGN','Outstar','','Chapter 13');

  set(fig, ...
    'windowbuttondownfcn',nncallbk(me,'down'), ...
    'BackingStore','off',...
    'nextplot','add');
  H = get(fig,'userdata');
  fig_axis = H(1);
  desc_text = H(2);

  % SOUND POINTERS
  wind = uicontrol('visible','off','userdata',nndsnd(3));
  knock = uicontrol('visible','off','userdata',nndsnd(5));
  scan = uicontrol('visible','off','userdata',nndsnd(1));
  classify = uicontrol('visible','off','userdata',nndsnd(4));
  blip = uicontrol('visible','off','userdata',nndsnd(6));
  bloop = uicontrol('visible','off','userdata',nndsnd(7));
  blp = uicontrol('visible','off','userdata',nndsnd(9));
  tribble = uicontrol('visible','off','userdata',nndsnd(8));

  % ICON
  nndicon(13,458,363,'shadow')

  % CONVEYER BELT
  deg = pi/180;
  angle = [0:5:360]*deg;
  cx = cos(angle);
  cy = sin(angle);

  % ENTRANCE BOX
  x = 60;
  y = 20;
  fill([0 0 x+10 x+10],y+[70 50 50 70],nndkblue,...
    'edgecolor','none')
  fill(x+[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([0 x+[10 10 50 50 10 10] 0],...
    y+[50 50 40 40 80 80 70 70],...
    'color',nnred)
  left_arrow = fill(x+30+[-5 -5 -10 0 10 5 5],y+60+[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  fruit_ind = text(x-25,y+60,'Fruit',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');

  % LEFT CIRCLE
  line_angle = 45*deg;
  fill(x-10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_1 = plot(x-10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % RIGHT CIRCLE
  x = 320;
  fill(x+10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_2 = plot(x+10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % BELT
  plot([50 330],[y y]+20,...
    'color',nndkblue,...
    'linewidth',2)
  plot([50 330],[y y],...
    'color',nndkblue,...
    'linewidth',2)
  
  % SENSOR BOX #1
  x = 130;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)
  cross = plot(x+[15 25 20 25 15],y+[50 60 55 50 60],...
    'color',nndkblue,...
    'linewidth',3,...
    'erasemode','none');
  
  % SENSOR BOX #2
  x = 210;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)

  % EXIT BOX
  x = 320;
  fill([310 310 380 380],y+[70 50 50 70],nndkblue,...
    'edgecolor','none')
  fill(x-[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([378 x-[10 10 50 50 10 10] 378],y+[70 70 80 80 40 40 50 50],...
    'color',nnred)
  right_arrow = fill(x-30+[-5 -5 -10 0 10 5 5],y+60-[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  top_ind = text(x+25,y+60,'Out',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');
  bottom_ind = [0];

  % BUTTONS
  go_button = uicontrol(...
    'units','points',...
    'position',[400 150 60 20],...
    'string','Fruit',...
    'callback',[me '(''go'')']);
  uicontrol(...
    'units','points',...
    'position',[400 120 60 20],...
    'string','Clear',...
    'callback',[me '(''clear'')'])
  uicontrol(...
    'units','points',...
    'position',[400 90 60 20],...
    'string','Contents',...
    'callback','nndtoc')
  uicontrol(...
    'units','points',...
    'position',[400 60 60 20],...
    'string','Close',...
    'callback',[me '(''close'')'])

  % LOWER SEPERATION BAR
  fill([0 0 380 380],130+[0 4 4 0],nndkblue,...
    'edgecolor','none')

  % UPPER SEPERATION BAR
  fill([0 0 380 380],160+[0 4 4 0],nndkblue,...
    'edgecolor','none')
 
  % RADIO BUTTONS
  set(nndtext(20,147,'First Scanner:','left'),...
    'fontsize',12)
  rb1 = uicontrol(...
    'units','points',...
    'position',[140 139 100 20],...
    'string','Working',...
    'style','radio',...
    'value',1,...
    'callback',[me '(''working'')']);
  rb2 = uicontrol(...
    'units','points',...
    'position',[250 139 100 20],...
    'string','Not Working',...
    'style','radio',...
    'callback',[me '(''notworking'')']);

  W1 = eye(3);
  W2 = [0; 0; 0];
  set(fig,'nextplot','add')
  
  % NETWORK INPUT #1
  x1 = 83;
  y1 = 320;
  dy1 = 55;
  ddy1 = -25;
  nndtext(x1-5,y1,'Shape','right');
  p1_box1 = fill(x1+[0 20 20 0 0],y1-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p1_text1 = nndtext(x1+10,y1,'?');
  nndtext(x1-5,y1+ddy1,'Texture','right');
  p1_box2 = fill(x1+[0 20 20 0 0],y1-10+[0 0 20 20 0]+ddy1,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p1_text2 = nndtext(x1+10,y1+ddy1,'?');
  nndtext(x1-5,y1+2*ddy1,'Weight','right');
  p1_box3 = fill(x1+[0 20 20 0 0],y1-10+[0 0 20 20 0]+2*ddy1,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p1_text3 = nndtext(x1+10,y1+2*ddy1,'?');

  % NETWORK INPUT #2
  y3 = y1-2*dy1;
  dy3 = 20;
  nndtext(x1-5,y3,'Pineapple?','right');
  p2_box = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text = nndtext(x1+10,y3,'?');

  % NEURONS
  x2 = x1+155;
  y2 = y1-dy1-12.5;
  dy2 = 67.5;
  sumdist = 50;
  sz = 15;

  plot(x2+[0 sumdist],y2+[0 0]+dy2,'linewidth',2,'color',nnred);
  plot(x2+sumdist+sz+[10 20 0 20 10],y2+[10 0 0 0 -10]+dy2,'linewidth',2,'color',nnred);
  nndtext(x2+sumdist+sz+45,y2+25+dy2,'Shape');
  nndsicon('sum',x2,y2+dy2,sz)
  nndsicon('satlins',x2+sumdist,y2+dy2,sz)
  a_box1 = fill(x2+sumdist+sz+25+[0 40 40 0 0],y2-10+[0 0 20 20 0]+dy2,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  a_text1 = nndtext(x2+sumdist+sz+45,y2+dy2,'?');

  plot(x2+[0 sumdist],y2+[0 0],'linewidth',2,'color',nnred);
  plot(x2+sumdist+sz+[10 20 0 20 10],y2+[10 0 0 0 -10],'linewidth',2,'color',nnred);
  nndtext(x2+sumdist+sz+45,y2+25,'Texture');
  nndsicon('sum',x2,y2,sz)
  nndsicon('satlins',x2+sumdist,y2,sz)
  a_box2 = fill(x2+sumdist+sz+25+[0 40 40 0 0],y2-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  a_text2 = nndtext(x2+sumdist+sz+45,y2,'?');
  
  plot(x2+[0 sumdist],y2+[0 0]-dy2,'linewidth',2,'color',nnred);
  plot(x2+sumdist+sz+[10 20 0 20 10],y2+[10 0 0 0 -10]-dy2,'linewidth',2,'color',nnred);
  nndtext(x2+sumdist+sz+45,y2+25-dy2,'Weight');
  nndsicon('sum',x2,y2-dy2,sz)
  nndsicon('satlins',x2+sumdist,y2-dy2,sz)
  a_box3 = fill(x2+sumdist+sz+25+[0 40 40 0 0],y2-10+[0 0 20 20 0]-dy2,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  a_text3 = nndtext(x2+sumdist+sz+45,y2-dy2,'?');

  % WEIGHTS #1
  straight = 95;
  plot([x1+20 x1+straight-50],[y1 y1],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y1 y1 y2+dy2],'linewidth',2,'color',nnred);
  plot(x1+straight-50+[0 40 40 0 0],y1-10+[0 0 20 20 0],'color',nnred,'linewidth',2);
  nndtext(x1+straight-30,y1,'1');

  plot([x1+20 x1+straight-50],[y1 y1]+ddy1,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y1+ddy1 y1+ddy1 y2],'linewidth',2,'color',nnred);
  plot(x1+straight-50+[0 40 40 0 0],y1-10+[0 0 20 20 0]+ddy1,'color',nnred,'linewidth',2);
  nndtext(x1+straight-30,y1+ddy1,'1');

  plot([x1+20 x1+straight-50],[y1 y1]+2*ddy1,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y1+2*ddy1 y1+2*ddy1 y2-dy2],'linewidth',2,'color',nnred);
  plot(x1+straight-50+[0 40 40 0 0],y1-10+[0 0 20 20 0]+2*ddy1,'color',nnred,'linewidth',2);
  nndtext(x1+straight-30,y1+2*ddy1,'1');

  % WEIGHTS #2
  straight_dist = 100;
  plot([x1+20 x1+straight-50],[y3 y3-ddy1],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3-ddy1 y3-ddy1 y2+dy2],'linewidth',2,'color',nnred);
  W2_box1 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]-ddy1,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text1 = nndtext(x1+straight-30,y3-ddy1,sprintf('%5.2f',W2(1)));

  plot([x1+20 x1+straight-50],[y3 y3],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3 y3 y2],'linewidth',2,'color',nnred);
  W2_box2 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text2 = nndtext(x1+straight-30,y3,sprintf('%5.2f',W2(2)));

  plot([x1+20 x1+straight-50],[y3 y3+ddy1],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3+ddy1 y3+ddy1 y2-dy2],'linewidth',2,'color',nnred);
  W2_box3 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]+ddy1,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text3 = nndtext(x1+straight-30,y3+ddy1,sprintf('%5.2f',W2(3)));

  % INPUT HEADING
  temp = nndtext(x1+10,y1+25,'Inputs');

  % WEIGHT HEADING
  nndtext(x1+straight_dist-35,y1+25,'Weights');

  % SCANNER NAMES
  set(nndtext(150,122,'Shape, Texture,'),...
    'fontsize',10)
  set(nndtext(150,108,'& Weight'),...
    'fontsize',10)
  set(nndtext(230,122,''),...
    'fontsize',10)
  set(nndtext(230,108,'Pineapple?'),...
    'fontsize',10)

  % SAVE WINDOW DATA AND LOCK
  angle_ptr = uicontrol('visible','off','userdata',line_angle);
  fruit_ptr = uicontrol('visible','off','userdata',[]);

  p1_ptr = uicontrol('visible','off','userdata',[]);
  p2_ptr = uicontrol('visible','off','userdata',[]);
  a_ptr = uicontrol('visible','off','userdata',[]);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  mode_ptr = uicontrol('visible','off','userdata',1);

  H = [fig_axis, ...
       desc_text, ...
       line_1 line_2, ...
       fruit_ind top_ind bottom_ind, ...
       wind knock scan classify blip bloop blp tribble, ...
       angle_ptr fruit_ptr 0 0 0, ...
       left_arrow right_arrow,rb1 rb2 cross, ...
       p1_ptr p2_ptr a_ptr W2_ptr,...
       p1_box1 p1_text1 p1_box2 p1_text2 p1_box3 p1_text3, ...
       p2_box p2_text, ...
       a_box1 a_text1 a_box2 a_text2 a_box3 a_text3,...
       go_button mode_ptr, ...
       W2_box1 W2_text1 W2_box2 W2_text2 W2_box3 W2_text3];

  set(fig,'userdata',H,'nextplot','new')

  % INSTRUCTION TEXT
  feval(me,'instr');

  % LOCK WINDOW
  set(fig,...
   'nextplot','new',...
   'color',nnltgray);

  nnchkfs;

%==================================================================
% Display the instructions.
%
% ME('instr')
%==================================================================

elseif strcmp(cmd,'instr') & (fig)
  nnsettxt(desc_text,...
    'Click [Fruit] to send',...
    'a fruit down the belt.',...
    'Click [Update] to apply',...
    'the outstar rule.',...
    '',...
    'Once the network has',...
    'seen several',...
    'pineapples with both',...
    'scanners, it will',...
    'recall their',...
    'measurements with',...
    'the first scanner off.') 
    
%==================================================================
% Respond to fruit.
%
% ME('fruit')
%==================================================================

elseif strcmp(cmd,'go') & (fig) & (nargin == 1) & (mode == 1);

  % GET DATA
  wind = get(sounds(1),'userdata');
  knock = get(sounds(2),'userdata');
  scan = get(sounds(3),'userdata');
  classify = get(sounds(4),'userdata');
  blip = get(sounds(5),'userdata');
  bloop = get(sounds(6),'userdata');

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久综合国产精品| 欧美日韩免费观看一区二区三区| 国产一区福利在线| 免费精品视频最新在线| 日韩一区精品字幕| 首页国产丝袜综合| 美女在线观看视频一区二区| 天堂久久一区二区三区| 视频一区视频二区中文| 麻豆精品在线播放| 国产高清在线精品| 成人av网站免费| 91视频精品在这里| 欧美午夜精品理论片a级按摩| 欧美午夜精品久久久久久孕妇 | 国产激情视频一区二区在线观看| 久久99精品国产麻豆不卡| 麻豆国产91在线播放| 国产在线看一区| 国产成人亚洲精品青草天美| 成人爱爱电影网址| 在线观看不卡视频| 欧美丰满美乳xxx高潮www| 日韩欧美中文一区二区| 久久综合网色—综合色88| 久久精品视频在线看| 国产精品少妇自拍| 亚洲欧美一区二区不卡| 天天色天天爱天天射综合| 麻豆精品国产传媒mv男同| 成人免费观看视频| 欧美日韩在线综合| 精品三级在线看| 国产精品欧美久久久久无广告| 一区二区三区四区乱视频| 日日欢夜夜爽一区| 国内成人免费视频| 色综合色综合色综合| 555夜色666亚洲国产免| 国产日产欧美一区二区三区| 亚洲欧美在线aaa| 午夜精品久久久久久不卡8050| 九色|91porny| 色呦呦日韩精品| 88在线观看91蜜桃国自产| 国产色爱av资源综合区| 亚洲最快最全在线视频| 激情五月激情综合网| 在线亚洲+欧美+日本专区| 日韩欧美综合在线| 亚洲激情图片qvod| 国产在线视频一区二区| 欧美自拍偷拍午夜视频| 久久久精品天堂| 亚洲第一电影网| 国产成人av一区二区三区在线| 欧美三级电影一区| 国产无人区一区二区三区| 午夜一区二区三区在线观看| 国产成人综合精品三级| 69精品人人人人| 成人免费小视频| 国产很黄免费观看久久| 欧美一区永久视频免费观看| 综合精品久久久| 韩国欧美一区二区| 欧美精品久久天天躁| 国产精品大尺度| 国产美女一区二区| 777xxx欧美| 亚洲精品乱码久久久久久日本蜜臀| 国产一区二区精品久久91| 制服视频三区第一页精品| 亚洲久本草在线中文字幕| 国产成人精品一区二区三区四区 | 欧美国产日韩精品免费观看| 毛片av一区二区| 欧美三级日本三级少妇99| 亚洲欧美一区二区视频| 国产不卡一区视频| 欧美精品一区二区蜜臀亚洲| 日韩在线一区二区| 在线欧美小视频| 亚洲人成在线观看一区二区| 国产寡妇亲子伦一区二区| 精品国产乱码91久久久久久网站| 婷婷久久综合九色综合伊人色| 91热门视频在线观看| 国产欧美精品一区二区色综合朱莉| 日本成人中文字幕| 7777精品伊人久久久大香线蕉完整版 | 一区二区三区四区亚洲| 91香蕉视频污| 国产精品对白交换视频| 国产精品一区在线| 精品成人免费观看| 美国十次了思思久久精品导航| 欧美日韩精品电影| 亚洲国产乱码最新视频| 欧美性一区二区| 亚洲永久免费av| 色八戒一区二区三区| 亚洲欧美偷拍三级| 色哟哟在线观看一区二区三区| 中文字幕一区二区三中文字幕| 成人视屏免费看| 国产精品青草久久| 99视频在线精品| 亚洲视频你懂的| 在线亚洲免费视频| 亚洲成人手机在线| 欧美日韩一区三区| 亚洲777理论| 51精品秘密在线观看| 日韩不卡一二三区| 精品国产91乱码一区二区三区| 韩日欧美一区二区三区| 国产午夜精品久久久久久免费视| 久久精品国产精品亚洲红杏| 久久久亚洲精品石原莉奈 | 久久综合99re88久久爱| 国产精品一区二区男女羞羞无遮挡| 国产调教视频一区| 99久久99久久精品免费观看| 一区二区三区不卡在线观看| 在线不卡中文字幕播放| 久久99国产精品久久99 | 激情五月激情综合网| 中文字幕成人在线观看| 色婷婷av一区| 日韩**一区毛片| 久久久久久久综合狠狠综合| 不卡的看片网站| 亚洲3atv精品一区二区三区| 日韩三级视频在线观看| 国产成人一区二区精品非洲| 一区二区三区国产精品| 欧美一区二区三区视频| 国产91高潮流白浆在线麻豆 | 日本va欧美va瓶| 国产香蕉久久精品综合网| 91浏览器打开| 免费日本视频一区| 中文字幕一区二区三| 欧美老人xxxx18| 国产.欧美.日韩| 亚洲高清三级视频| 国产日韩欧美麻豆| 欧美日韩另类一区| 国产精品亚洲专一区二区三区| 亚洲美女在线一区| 精品久久久久久久久久久院品网 | 欧美日本一区二区三区| 国产精品18久久久久久vr| 亚洲激情网站免费观看| 久久综合中文字幕| 欧美浪妇xxxx高跟鞋交| 国产98色在线|日韩| 青青草国产成人av片免费| 亚洲欧美综合在线精品| 欧美精品一区二区三区视频| 日本韩国欧美三级| 国产成人午夜片在线观看高清观看| 亚洲制服丝袜在线| 国产嫩草影院久久久久| 欧美高清视频不卡网| jvid福利写真一区二区三区| 青青草视频一区| 亚洲在线视频免费观看| 国产精品国产三级国产有无不卡| 日韩一区二区免费高清| 日本丰满少妇一区二区三区| 国产成人一区二区精品非洲| 日本女优在线视频一区二区| 亚洲精品成人在线| 日本一区二区成人| 日韩精品在线看片z| 欧美三区在线视频| 91天堂素人约啪| 国产白丝网站精品污在线入口| 久久激情五月激情| 日韩**一区毛片| 天天综合日日夜夜精品| 一区二区三区在线不卡| 国产精品久久久久国产精品日日| 精品电影一区二区| 日韩欧美在线不卡| 欧美美女网站色| 欧美日免费三级在线| 色婷婷久久99综合精品jk白丝| 丁香婷婷综合五月| 国产精品综合在线视频| 久久精品国产在热久久| 视频在线观看91| 亚洲大型综合色站| 亚洲一区中文日韩| 亚洲综合激情小说| 夜色激情一区二区| 亚洲国产综合在线| 亚洲18影院在线观看|