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

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

?? nnd15os.m

?? 《神經網絡設計》英文版的配套源代碼
?? M
?? 第 1 頁 / 共 2 頁
字號:
function nnd15os(cmd,arg1,arg2,arg3)
%NND15OS Unsupervised Hebb demonstration.
%
%  This demonstration requires either the MININNET functions
%  on the NND disk or the Neural Network Toolbox.

% $Revision: 1.7 $
% Copyright 1994-2002 PWS Publishing Company and The MathWorks, Inc.
% First Version, 8-31-95.

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

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

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

% FIND WINDOW IF IT EXISTS
fig = nndfgflg(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
  % ODJ 12/23/07 Check for NN Toolbox removed
  %if ~nnfexist(me), return, end

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

  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(15,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');

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲乱码日产精品bd| 激情文学综合网| 亚瑟在线精品视频| 日韩激情一二三区| 欧美日韩一卡二卡| 在线一区二区三区| 欧美日韩精品免费观看视频| 91精品国产乱码久久蜜臀| 欧美一二三四区在线| 久久女同互慰一区二区三区| 国产精品剧情在线亚洲| **欧美大码日韩| 舔着乳尖日韩一区| 韩国毛片一区二区三区| 不卡的av在线| 4438成人网| 精品欧美乱码久久久久久 | 欧美tickling网站挠脚心| 亚洲精品一线二线三线| 精品国产区一区| 亚洲美女在线一区| 卡一卡二国产精品| 成人v精品蜜桃久久一区| 欧美日韩在线三区| 日韩一区二区精品葵司在线| 久久免费的精品国产v∧| 国产精品色在线| 偷拍一区二区三区| 国产成人亚洲综合色影视| 在线欧美小视频| 精品国产99国产精品| 国产精品麻豆欧美日韩ww| 天天操天天综合网| 成人永久免费视频| 欧美日韩一区成人| 欧美极品xxx| 午夜av一区二区三区| 国产成人av一区二区三区在线| youjizz久久| 欧美日韩色一区| 欧美激情自拍偷拍| 蜜臀av性久久久久蜜臀aⅴ流畅| 成人av网在线| 日韩一级大片在线| 日韩美女啊v在线免费观看| 青青草国产成人av片免费| 99久久99久久免费精品蜜臀| 日韩精品在线一区| 亚洲精品国产无天堂网2021| 色婷婷av一区| av在线这里只有精品| 日韩三级电影网址| 欧美国产亚洲另类动漫| 欧美日韩国产另类一区| 国产日韩精品一区二区浪潮av| 香蕉影视欧美成人| 不卡高清视频专区| 久久综合色播五月| 亚洲成人动漫精品| aaa亚洲精品一二三区| 日韩精品一区二区三区四区| 午夜视频一区在线观看| 成人黄色免费短视频| 久久综合丝袜日本网| 亚洲女性喷水在线观看一区| 国产一区二区视频在线播放| 91麻豆精品国产| 亚洲永久精品国产| av在线不卡观看免费观看| 欧美精品一区二区三区在线| 亚洲自拍偷拍av| 91亚洲资源网| 中文字幕在线不卡一区| 国产乱码精品1区2区3区| 日韩一级黄色片| 亚洲欧美偷拍另类a∨色屁股| 风间由美性色一区二区三区| 精品理论电影在线观看| 日本成人在线电影网| 欧美在线视频不卡| 自拍偷拍亚洲综合| 成人av在线资源网| 国产欧美日本一区视频| 国产成人午夜片在线观看高清观看| 日韩一级视频免费观看在线| 午夜国产不卡在线观看视频| 在线观看区一区二| 亚洲综合偷拍欧美一区色| 99精品国产热久久91蜜凸| 国产精品嫩草99a| 粉嫩一区二区三区在线看| 国产日韩欧美不卡| 大胆欧美人体老妇| 国产欧美一区二区三区鸳鸯浴| 精品亚洲成a人在线观看| 91精品国产色综合久久久蜜香臀| 一区二区三区四区高清精品免费观看| 91日韩一区二区三区| 亚洲青青青在线视频| 91久久国产综合久久| 伊人夜夜躁av伊人久久| 欧美三区在线观看| 日韩高清不卡一区| 日韩写真欧美这视频| 韩国女主播一区二区三区| 久久美女高清视频| 不卡大黄网站免费看| 亚洲精品一二三区| 欧美精品乱码久久久久久按摩| 日韩国产欧美在线播放| 亚洲伊人伊色伊影伊综合网| 欧美午夜在线一二页| 狠狠色综合日日| 亚洲精品高清在线观看| 欧美一级夜夜爽| eeuss鲁片一区二区三区在线看| 午夜视频在线观看一区| 日本一区二区三区视频视频| 欧美在线播放高清精品| 狠狠色狠狠色综合| 一区二区三区资源| 日韩精品一区二区三区三区免费| 99久久国产免费看| 美国十次了思思久久精品导航| 国产精品久久久久久久久果冻传媒| 欧美日韩一区二区不卡| 成人午夜视频在线观看| 日日夜夜精品视频天天综合网| 中文字幕+乱码+中文字幕一区| 欧美人xxxx| av电影一区二区| 久久狠狠亚洲综合| 亚洲高清免费一级二级三级| 国产欧美一区二区三区在线老狼| 在线不卡一区二区| av电影在线观看完整版一区二区| 美女视频一区在线观看| 亚洲六月丁香色婷婷综合久久 | 偷窥少妇高潮呻吟av久久免费| 久久久午夜精品理论片中文字幕| 欧美三级午夜理伦三级中视频| 国产91在线观看| 久久国产剧场电影| 亚洲国产va精品久久久不卡综合| 欧美韩日一区二区三区四区| 91精品国产综合久久福利| 91久久香蕉国产日韩欧美9色| 福利一区二区在线| 狠狠色2019综合网| 日韩一区精品字幕| 亚洲精品自拍动漫在线| 国产精品高潮呻吟| 久久综合丝袜日本网| 欧美一二三区在线观看| 欧美日韩一区二区三区四区 | 亚洲精品中文字幕乱码三区| 国产欧美一区二区精品性色| 精品乱人伦一区二区三区| 欧美区视频在线观看| 色哦色哦哦色天天综合| 波波电影院一区二区三区| 国产大片一区二区| 精品写真视频在线观看| 免费成人深夜小野草| 天天操天天干天天综合网| 亚洲一区二区美女| 亚洲精品国产高清久久伦理二区| 1024精品合集| 日韩毛片视频在线看| 中文字幕一区二区三区在线播放| 国产日本欧美一区二区| 久久久精品一品道一区| 久久色成人在线| 久久久久久**毛片大全| 久久久99久久| 国产午夜亚洲精品理论片色戒| 久久久欧美精品sm网站| 国产日韩一级二级三级| 国产欧美一区二区精品忘忧草 | 懂色一区二区三区免费观看| 国产一区二区三区电影在线观看| 国产综合色精品一区二区三区| 久久精品久久99精品久久| 久久99精品视频| 国产一区二区三区美女| 国产盗摄精品一区二区三区在线| 国产成人精品1024| 成人午夜视频免费看| 99久久精品免费看国产| 色婷婷综合久色| 欧美视频日韩视频| 欧美精品丝袜中出| 欧美电影免费观看高清完整版 | 国产精品乡下勾搭老头1| 国产激情视频一区二区在线观看| 成人午夜av在线| 91在线小视频| 欧美日韩高清一区二区不卡| 6080日韩午夜伦伦午夜伦| 日韩欧美123|