国产无遮挡裸体免费直播视频,久久精品国产蜜臀av,动漫在线视频一区二区,欧亚日韩一区二区三区,久艹在线 免费视频,国产精品美女网站免费,正在播放 97超级视频在线观看,斗破苍穹年番在线观看免费,51最新乱码中文字幕

php封裝的smarty類完整實(shí)例

 更新時(shí)間:2016年10月19日 08:52:34   作者:Love滿天星  
這篇文章主要介紹了php封裝的smarty類,針對(duì)Smarty的基本操作技巧進(jìn)行了封裝整理,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了php封裝的smarty類。分享給大家供大家參考,具體如下:

<?php
/**
 * Project:   Smarty: the PHP compiling template engine
 * File:    Smarty.class.php
 * SVN:     $Id: Smarty.class.php 4848 2014-06-08 18:12:09Z Uwe.Tews@googlemail.com $
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * This library 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
 * Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * For questions, help, comments, discussion, etc., please join the
 * Smarty mailing list. Send a blank e-mail to
 * smarty-discussion-subscribe@googlegroups.com
 *
 * @link   http://www.smarty.net/
 * @copyright 2008 New Digital Group, Inc.
 * @author  Monte Ohrt <monte at ohrt dot com>
 * @author  Uwe Tews
 * @author  Rodney Rehm
 * @package  Smarty
 * @version  3.1.19
 */
/**
 * define shorthand directory separator constant
 */
if (!defined('DS')) {
  define('DS', DIRECTORY_SEPARATOR);
}
/**
 * set SMARTY_DIR to absolute path to Smarty library files.
 * Sets SMARTY_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_DIR')) {
  define('SMARTY_DIR', dirname(__FILE__) . DS);
}
/**
 * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
 * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
  define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
if (!defined('SMARTY_PLUGINS_DIR')) {
  define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
}
if (!defined('SMARTY_MBSTRING')) {
  define('SMARTY_MBSTRING', function_exists('mb_split'));
}
if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
  // UTF-8 can only be done properly when mbstring is available!
  /**
   * @deprecated in favor of Smarty::$_CHARSET
   */
  define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1');
}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
  /**
   * @deprecated in favor of Smarty::$_DATE_FORMAT
   */
  define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * register the class autoloader
 */
if (!defined('SMARTY_SPL_AUTOLOAD')) {
  define('SMARTY_SPL_AUTOLOAD', 0);
}
if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) {
  $registeredAutoLoadFunctions = spl_autoload_functions();
  if (!isset($registeredAutoLoadFunctions['spl_autoload'])) {
    spl_autoload_register();
  }
} else {
  spl_autoload_register('smartyAutoload');
}
/**
 * Load always needed external class files
 */
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_resource_file.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_cacheresource_file.php';
/**
 * This is the main Smarty class
 *
 * @package Smarty
 */
class Smarty extends Smarty_Internal_TemplateBase
{
  /**#@+
   * constant definitions
   */
  /**
   * smarty version
   */
  const SMARTY_VERSION = 'Smarty-3.1.19';
  /**
   * define variable scopes
   */
  const SCOPE_LOCAL = 0;
  const SCOPE_PARENT = 1;
  const SCOPE_ROOT = 2;
  const SCOPE_GLOBAL = 3;
  /**
   * define caching modes
   */
  const CACHING_OFF = 0;
  const CACHING_LIFETIME_CURRENT = 1;
  const CACHING_LIFETIME_SAVED = 2;
  /**
   * define constant for clearing cache files be saved expiration datees
   */
  const CLEAR_EXPIRED = - 1;
  /**
   * define compile check modes
   */
  const COMPILECHECK_OFF = 0;
  const COMPILECHECK_ON = 1;
  const COMPILECHECK_CACHEMISS = 2;
  /**
   * modes for handling of "<?php ... ?>" tags in templates.
   */
  const PHP_PASSTHRU = 0; //-> print tags as plain text
  const PHP_QUOTE = 1; //-> escape tags as entities
  const PHP_REMOVE = 2; //-> escape tags as entities
  const PHP_ALLOW = 3; //-> escape tags as entities
  /**
   * filter types
   */
  const FILTER_POST = 'post';
  const FILTER_PRE = 'pre';
  const FILTER_OUTPUT = 'output';
  const FILTER_VARIABLE = 'variable';
  /**
   * plugin types
   */
  const PLUGIN_FUNCTION = 'function';
  const PLUGIN_BLOCK = 'block';
  const PLUGIN_COMPILER = 'compiler';
  const PLUGIN_MODIFIER = 'modifier';
  const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler';
  /**#@-*/
  /**
   * assigned global tpl vars
   */
  public static $global_tpl_vars = array();
  /**
   * error handler returned by set_error_hanlder() in Smarty::muteExpectedErrors()
   */
  public static $_previous_error_handler = null;
  /**
   * contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors()
   */
  public static $_muted_directories = array();
  /**
   * Flag denoting if Multibyte String functions are available
   */
  public static $_MBSTRING = SMARTY_MBSTRING;
  /**
   * The character set to adhere to (e.g. "UTF-8")
   */
  public static $_CHARSET = SMARTY_RESOURCE_CHAR_SET;
  /**
   * The date format to be used internally
   * (accepts date() and strftime())
   */
  public static $_DATE_FORMAT = SMARTY_RESOURCE_DATE_FORMAT;
  /**
   * Flag denoting if PCRE should run in UTF-8 mode
   */
  public static $_UTF8_MODIFIER = 'u';
  /**
   * Flag denoting if operating system is windows
   */
  public static $_IS_WINDOWS = false;
  /**#@+
   * variables
   */
  /**
   * auto literal on delimiters with whitspace
   *
   * @var boolean
   */
  public $auto_literal = true;
  /**
   * display error on not assigned variables
   *
   * @var boolean
   */
  public $error_unassigned = false;
  /**
   * look up relative filepaths in include_path
   *
   * @var boolean
   */
  public $use_include_path = false;
  /**
   * template directory
   *
   * @var array
   */
  private $template_dir = array();
  /**
   * joined template directory string used in cache keys
   *
   * @var string
   */
  public $joined_template_dir = null;
  /**
   * joined config directory string used in cache keys
   *
   * @var string
   */
  public $joined_config_dir = null;
  /**
   * default template handler
   *
   * @var callable
   */
  public $default_template_handler_func = null;
  /**
   * default config handler
   *
   * @var callable
   */
  public $default_config_handler_func = null;
  /**
   * default plugin handler
   *
   * @var callable
   */
  public $default_plugin_handler_func = null;
  /**
   * compile directory
   *
   * @var string
   */
  private $compile_dir = null;
  /**
   * plugins directory
   *
   * @var array
   */
  private $plugins_dir = array();
  /**
   * cache directory
   *
   * @var string
   */
  private $cache_dir = null;
  /**
   * config directory
   *
   * @var array
   */
  private $config_dir = array();
  /**
   * force template compiling?
   *
   * @var boolean
   */
  public $force_compile = false;
  /**
   * check template for modifications?
   *
   * @var boolean
   */
  public $compile_check = true;
  /**
   * use sub dirs for compiled/cached files?
   *
   * @var boolean
   */
  public $use_sub_dirs = false;
  /**
   * allow ambiguous resources (that are made unique by the resource handler)
   *
   * @var boolean
   */
  public $allow_ambiguous_resources = false;
  /**
   * caching enabled
   *
   * @var boolean
   */
  public $caching = false;
  /**
   * merge compiled includes
   *
   * @var boolean
   */
  public $merge_compiled_includes = false;
  /**
   * template inheritance merge compiled includes
   *
   * @var boolean
   */
  public $inheritance_merge_compiled_includes = true;
  /**
   * cache lifetime in seconds
   *
   * @var integer
   */
  public $cache_lifetime = 3600;
  /**
   * force cache file creation
   *
   * @var boolean
   */
  public $force_cache = false;
  /**
   * Set this if you want different sets of cache files for the same
   * templates.
   *
   * @var string
   */
  public $cache_id = null;
  /**
   * Set this if you want different sets of compiled files for the same
   * templates.
   *
   * @var string
   */
  public $compile_id = null;
  /**
   * template left-delimiter
   *
   * @var string
   */
  public $left_delimiter = "{";
  /**
   * template right-delimiter
   *
   * @var string
   */
  public $right_delimiter = "}";
  /**#@+
   * security
   */
  /**
   * class name
   * This should be instance of Smarty_Security.
   *
   * @var string
   * @see Smarty_Security
   */
  public $security_class = 'Smarty_Security';
  /**
   * implementation of security class
   *
   * @var Smarty_Security
   */
  public $security_policy = null;
  /**
   * controls handling of PHP-blocks
   *
   * @var integer
   */
  public $php_handling = self::PHP_PASSTHRU;
  /**
   * controls if the php template file resource is allowed
   *
   * @var bool
   */
  public $allow_php_templates = false;
  /**
   * Should compiled-templates be prevented from being called directly?
   * {@internal
   * Currently used by Smarty_Internal_Template only.
   * }}
   *
   * @var boolean
   */
  public $direct_access_security = true;
  /**#@-*/
  /**
   * debug mode
   * Setting this to true enables the debug-console.
   *
   * @var boolean
   */
  public $debugging = false;
  /**
   * This determines if debugging is enable-able from the browser.
   * <ul>
   * <li>NONE => no debugging control allowed</li>
   * <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
   * </ul>
   *
   * @var string
   */
  public $debugging_ctrl = 'NONE';
  /**
   * Name of debugging URL-param.
   * Only used when $debugging_ctrl is set to 'URL'.
   * The name of the URL-parameter that activates debugging.
   *
   * @var type
   */
  public $smarty_debug_id = 'SMARTY_DEBUG';
  /**
   * Path of debug template.
   *
   * @var string
   */
  public $debug_tpl = null;
  /**
   * When set, smarty uses this value as error_reporting-level.
   *
   * @var int
   */
  public $error_reporting = null;
  /**
   * Internal flag for getTags()
   *
   * @var boolean
   */
  public $get_used_tags = false;
  /**#@+
   * config var settings
   */
  /**
   * Controls whether variables with the same name overwrite each other.
   *
   * @var boolean
   */
  public $config_overwrite = true;
  /**
   * Controls whether config values of on/true/yes and off/false/no get converted to boolean.
   *
   * @var boolean
   */
  public $config_booleanize = true;
  /**
   * Controls whether hidden config sections/vars are read from the file.
   *
   * @var boolean
   */
  public $config_read_hidden = false;
  /**#@-*/
  /**#@+
   * resource locking
   */
  /**
   * locking concurrent compiles
   *
   * @var boolean
   */
  public $compile_locking = true;
  /**
   * Controls whether cache resources should emply locking mechanism
   *
   * @var boolean
   */
  public $cache_locking = false;
  /**
   * seconds to wait for acquiring a lock before ignoring the write lock
   *
   * @var float
   */
  public $locking_timeout = 10;
  /**#@-*/
  /**
   * global template functions
   *
   * @var array
   */
  public $template_functions = array();
  /**
   * resource type used if none given
   * Must be an valid key of $registered_resources.
   *
   * @var string
   */
  public $default_resource_type = 'file';
  /**
   * caching type
   * Must be an element of $cache_resource_types.
   *
   * @var string
   */
  public $caching_type = 'file';
  /**
   * internal config properties
   *
   * @var array
   */
  public $properties = array();
  /**
   * config type
   *
   * @var string
   */
  public $default_config_type = 'file';
  /**
   * cached template objects
   *
   * @var array
   */
  public $template_objects = array();
  /**
   * check If-Modified-Since headers
   *
   * @var boolean
   */
  public $cache_modified_check = false;
  /**
   * registered plugins
   *
   * @var array
   */
  public $registered_plugins = array();
  /**
   * plugin search order
   *
   * @var array
   */
  public $plugin_search_order = array('function', 'block', 'compiler', 'class');
  /**
   * registered objects
   *
   * @var array
   */
  public $registered_objects = array();
  /**
   * registered classes
   *
   * @var array
   */
  public $registered_classes = array();
  /**
   * registered filters
   *
   * @var array
   */
  public $registered_filters = array();
  /**
   * registered resources
   *
   * @var array
   */
  public $registered_resources = array();
  /**
   * resource handler cache
   *
   * @var array
   */
  public $_resource_handlers = array();
  /**
   * registered cache resources
   *
   * @var array
   */
  public $registered_cache_resources = array();
  /**
   * cache resource handler cache
   *
   * @var array
   */
  public $_cacheresource_handlers = array();
  /**
   * autoload filter
   *
   * @var array
   */
  public $autoload_filters = array();
  /**
   * default modifier
   *
   * @var array
   */
  public $default_modifiers = array();
  /**
   * autoescape variable output
   *
   * @var boolean
   */
  public $escape_html = false;
  /**
   * global internal smarty vars
   *
   * @var array
   */
  public static $_smarty_vars = array();
  /**
   * start time for execution time calculation
   *
   * @var int
   */
  public $start_time = 0;
  /**
   * default file permissions
   *
   * @var int
   */
  public $_file_perms = 0644;
  /**
   * default dir permissions
   *
   * @var int
   */
  public $_dir_perms = 0771;
  /**
   * block tag hierarchy
   *
   * @var array
   */
  public $_tag_stack = array();
  /**
   * self pointer to Smarty object
   *
   * @var Smarty
   */
  public $smarty;
  /**
   * required by the compiler for BC
   *
   * @var string
   */
  public $_current_file = null;
  /**
   * internal flag to enable parser debugging
   *
   * @var bool
   */
  public $_parserdebug = false;
  /**
   * Saved parameter of merged templates during compilation
   *
   * @var array
   */
  public $merged_templates_func = array();
  /**#@-*/
  /**
   * Initialize new Smarty object
   */
  public function __construct()
  {
    // selfpointer needed by some other class methods
    $this->smarty = $this;
    if (is_callable('mb_internal_encoding')) {
      mb_internal_encoding(Smarty::$_CHARSET);
    }
    $this->start_time = microtime(true);
    // set default dirs
    $this->setTemplateDir('.' . DS . 'templates' . DS)
      ->setCompileDir('.' . DS . 'templates_c' . DS)
      ->setPluginsDir(SMARTY_PLUGINS_DIR)
      ->setCacheDir('.' . DS . 'cache' . DS)
      ->setConfigDir('.' . DS . 'configs' . DS);
    $this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl';
    if (isset($_SERVER['SCRIPT_NAME'])) {
      $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
    }
  }
  /**
   * Class destructor
   */
  public function __destruct()
  {
    // intentionally left blank
  }
  /**
   * <<magic>> set selfpointer on cloned object
   */
  public function __clone()
  {
    $this->smarty = $this;
  }
  /**
   * <<magic>> Generic getter.
   * Calls the appropriate getter function.
   * Issues an E_USER_NOTICE if no valid getter is found.
   *
   * @param string $name property name
   *
   * @return mixed
   */
  public function __get($name)
  {
    $allowed = array(
      'template_dir' => 'getTemplateDir',
      'config_dir'  => 'getConfigDir',
      'plugins_dir' => 'getPluginsDir',
      'compile_dir' => 'getCompileDir',
      'cache_dir'  => 'getCacheDir',
    );
    if (isset($allowed[$name])) {
      return $this->{$allowed[$name]}();
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * <<magic>> Generic setter.
   * Calls the appropriate setter function.
   * Issues an E_USER_NOTICE if no valid setter is found.
   *
   * @param string $name property name
   * @param mixed $value parameter passed to setter
   */
  public function __set($name, $value)
  {
    $allowed = array(
      'template_dir' => 'setTemplateDir',
      'config_dir'  => 'setConfigDir',
      'plugins_dir' => 'setPluginsDir',
      'compile_dir' => 'setCompileDir',
      'cache_dir'  => 'setCacheDir',
    );
    if (isset($allowed[$name])) {
      $this->{$allowed[$name]}($value);
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * Check if a template resource exists
   *
   * @param string $resource_name template name
   *
   * @return boolean status
   */
  public function templateExists($resource_name)
  {
    // create template object
    $save = $this->template_objects;
    $tpl = new $this->template_class($resource_name, $this);
    // check if it does exists
    $result = $tpl->source->exists;
    $this->template_objects = $save;
    return $result;
  }
  /**
   * Returns a single or all global variables
   *
   * @param string $varname variable name or null
   *
   * @return string variable value or or array of variables
   */
  public function getGlobal($varname = null)
  {
    if (isset($varname)) {
      if (isset(self::$global_tpl_vars[$varname])) {
        return self::$global_tpl_vars[$varname]->value;
      } else {
        return '';
      }
    } else {
      $_result = array();
      foreach (self::$global_tpl_vars AS $key => $var) {
        $_result[$key] = $var->value;
      }
      return $_result;
    }
  }
  /**
   * Empty cache folder
   *
   * @param integer $exp_time expiration time
   * @param string $type   resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearAllCache($exp_time = null, $type = null)
  {
    // load cache resource and call clearAll
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clearAll($this, $exp_time);
  }
  /**
   * Empty cache for a specific template
   *
   * @param string $template_name template name
   * @param string $cache_id   cache id
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   * @param string $type     resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
  {
    // load cache resource and call clear
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
  }
  /**
   * Loads security class and enables security
   *
   * @param string|Smarty_Security $security_class if a string is used, it must be class-name
   *
   * @return Smarty         current Smarty instance for chaining
   * @throws SmartyException    when an invalid class name is provided
   */
  public function enableSecurity($security_class = null)
  {
    if ($security_class instanceof Smarty_Security) {
      $this->security_policy = $security_class;
      return $this;
    } elseif (is_object($security_class)) {
      throw new SmartyException("Class '" . get_class($security_class) . "' must extend Smarty_Security.");
    }
    if ($security_class == null) {
      $security_class = $this->security_class;
    }
    if (!class_exists($security_class)) {
      throw new SmartyException("Security class '$security_class' is not defined");
    } elseif ($security_class !== 'Smarty_Security' && !is_subclass_of($security_class, 'Smarty_Security')) {
      throw new SmartyException("Class '$security_class' must extend Smarty_Security.");
    } else {
      $this->security_policy = new $security_class($this);
    }
    return $this;
  }
  /**
   * Disable security
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function disableSecurity()
  {
    $this->security_policy = null;
    return $this;
  }
  /**
   * Set template directory
   *
   * @param string|array $template_dir directory(s) of template sources
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setTemplateDir($template_dir)
  {
    $this->template_dir = array();
    foreach ((array) $template_dir as $k => $v) {
      $this->template_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Add template directory(s)
   *
   * @param string|array $template_dir directory(s) of template sources
   * @param string    $key     of the array element to assign the template dir to
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException when the given template directory is not valid
   */
  public function addTemplateDir($template_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->template_dir = (array) $this->template_dir;
    if (is_array($template_dir)) {
      foreach ($template_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->template_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->template_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($template_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->template_dir[$key] = $v;
      } else {
        // append new directory
        $this->template_dir[] = $v;
      }
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Get template directories
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string list of template directories, or directory of $index
   */
  public function getTemplateDir($index = null)
  {
    if ($index !== null) {
      return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null;
    }
    return (array) $this->template_dir;
  }
  /**
   * Set config directory
   *
   * @param $config_dir
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setConfigDir($config_dir)
  {
    $this->config_dir = array();
    foreach ((array) $config_dir as $k => $v) {
      $this->config_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Add config directory(s)
   *
   * @param string|array    $config_dir directory(s) of config sources
   * @param mixed $key    key of the array element to assign the config dir to
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addConfigDir($config_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->config_dir = (array) $this->config_dir;
    if (is_array($config_dir)) {
      foreach ($config_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->config_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->config_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($config_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->config_dir[$key] = rtrim($v, '/\\') . DS;
      } else {
        // append new directory
        $this->config_dir[] = rtrim($v, '/\\') . DS;
      }
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Get config directory
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string configuration directory
   */
  public function getConfigDir($index = null)
  {
    if ($index !== null) {
      return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null;
    }
    return (array) $this->config_dir;
  }
  /**
   * Set plugins directory
   *
   * @param string|array $plugins_dir directory(s) of plugins
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setPluginsDir($plugins_dir)
  {
    $this->plugins_dir = array();
    foreach ((array) $plugins_dir as $k => $v) {
      $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
    }
    return $this;
  }
  /**
   * Adds directory of plugin files
   *
   * @param $plugins_dir
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addPluginsDir($plugins_dir)
  {
    // make sure we're dealing with an array
    $this->plugins_dir = (array) $this->plugins_dir;
    if (is_array($plugins_dir)) {
      foreach ($plugins_dir as $k => $v) {
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->plugins_dir[] = rtrim($v, '/\\') . DS;
        } else {
          // string indexes are overridden
          $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
        }
      }
    } else {
      // append new directory
      $this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS;
    }
    $this->plugins_dir = array_unique($this->plugins_dir);
    return $this;
  }
  /**
   * Get plugin directories
   *
   * @return array list of plugin directories
   */
  public function getPluginsDir()
  {
    return (array) $this->plugins_dir;
  }
  /**
   * Set compile directory
   *
   * @param string $compile_dir directory to store compiled templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCompileDir($compile_dir)
  {
    $this->compile_dir = rtrim($compile_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->compile_dir])) {
      Smarty::$_muted_directories[$this->compile_dir] = null;
    }
    return $this;
  }
  /**
   * Get compiled directory
   *
   * @return string path to compiled templates
   */
  public function getCompileDir()
  {
    return $this->compile_dir;
  }
  /**
   * Set cache directory
   *
   * @param string $cache_dir directory to store cached templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCacheDir($cache_dir)
  {
    $this->cache_dir = rtrim($cache_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->cache_dir])) {
      Smarty::$_muted_directories[$this->cache_dir] = null;
    }
    return $this;
  }
  /**
   * Get cache directory
   *
   * @return string path of cache directory
   */
  public function getCacheDir()
  {
    return $this->cache_dir;
  }
  /**
   * Set default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to set
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setDefaultModifiers($modifiers)
  {
    $this->default_modifiers = (array) $modifiers;
    return $this;
  }
  /**
   * Add default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to add
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function addDefaultModifiers($modifiers)
  {
    if (is_array($modifiers)) {
      $this->default_modifiers = array_merge($this->default_modifiers, $modifiers);
    } else {
      $this->default_modifiers[] = $modifiers;
    }
    return $this;
  }
  /**
   * Get default modifiers
   *
   * @return array list of default modifiers
   */
  public function getDefaultModifiers()
  {
    return $this->default_modifiers;
  }
  /**
   * Set autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      $this->autoload_filters[$type] = (array) $filters;
    } else {
      $this->autoload_filters = (array) $filters;
    }
    return $this;
  }
  /**
   * Add autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      if (!empty($this->autoload_filters[$type])) {
        $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
      } else {
        $this->autoload_filters[$type] = (array) $filters;
      }
    } else {
      foreach ((array) $filters as $key => $value) {
        if (!empty($this->autoload_filters[$key])) {
          $this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value);
        } else {
          $this->autoload_filters[$key] = (array) $value;
        }
      }
    }
    return $this;
  }
  /**
   * Get autoload filters
   *
   * @param string $type type of filter to get autoloads for. Defaults to all autoload filters
   *
   * @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified
   */
  public function getAutoloadFilters($type = null)
  {
    if ($type !== null) {
      return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array();
    }
    return $this->autoload_filters;
  }
  /**
   * return name of debugging template
   *
   * @return string
   */
  public function getDebugTemplate()
  {
    return $this->debug_tpl;
  }
  /**
   * set the debug template
   *
   * @param string $tpl_name
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException if file is not readable
   */
  public function setDebugTemplate($tpl_name)
  {
    if (!is_readable($tpl_name)) {
      throw new SmartyException("Unknown file '{$tpl_name}'");
    }
    $this->debug_tpl = $tpl_name;
    return $this;
  }
  /**
   * creates a template object
   *
   * @param string $template  the resource handle of the template file
   * @param mixed  $cache_id  cache id to be used with this template
   * @param mixed  $compile_id compile id to be used with this template
   * @param object $parent   next higher level of Smarty variables
   * @param boolean $do_clone  flag is Smarty object shall be cloned
   *
   * @return object template object
   */
  public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
  {
    if ($cache_id !== null && (is_object($cache_id) || is_array($cache_id))) {
      $parent = $cache_id;
      $cache_id = null;
    }
    if ($parent !== null && is_array($parent)) {
      $data = $parent;
      $parent = null;
    } else {
      $data = null;
    }
    // default to cache_id and compile_id of Smarty object
    $cache_id = $cache_id === null ? $this->cache_id : $cache_id;
    $compile_id = $compile_id === null ? $this->compile_id : $compile_id;
    // already in template cache?
    if ($this->allow_ambiguous_resources) {
      $_templateId = Smarty_Resource::getUniqueTemplateName($this, $template) . $cache_id . $compile_id;
    } else {
      $_templateId = $this->joined_template_dir . '#' . $template . $cache_id . $compile_id;
    }
    if (isset($_templateId[150])) {
      $_templateId = sha1($_templateId);
    }
    if ($do_clone) {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = clone $this->template_objects[$_templateId];
        $tpl->smarty = clone $tpl->smarty;
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
      }
    } else {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = $this->template_objects[$_templateId];
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
      }
    }
    // fill data if present
    if (!empty($data) && is_array($data)) {
      // set up variable values
      foreach ($data as $_key => $_val) {
        $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
      }
    }
    return $tpl;
  }
  /**
   * Takes unknown classes and loads plugin files for them
   * class name format: Smarty_PluginType_PluginName
   * plugin filename format: plugintype.pluginname.php
   *
   * @param string $plugin_name class plugin name to load
   * @param bool  $check    check if already loaded
   *
   * @throws SmartyException
   * @return string |boolean filepath of loaded file or false
   */
  public function loadPlugin($plugin_name, $check = true)
  {
    // if function or class exists, exit silently (already loaded)
    if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
      return true;
    }
    // Plugin name is expected to be: Smarty_[Type]_[Name]
    $_name_parts = explode('_', $plugin_name, 3);
    // class name must have three parts to be valid plugin
    // count($_name_parts) < 3 === !isset($_name_parts[2])
    if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') {
      throw new SmartyException("plugin {$plugin_name} is not a valid name format");
    }
    // if type is "internal", get plugin from sysplugins
    if (strtolower($_name_parts[1]) == 'internal') {
      $file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php';
      if (file_exists($file)) {
        require_once($file);
        return $file;
      } else {
        return false;
      }
    }
    // plugin filename is expected to be: [type].[name].php
    $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
    $_stream_resolve_include_path = function_exists('stream_resolve_include_path');
    // loop through plugin dirs and find the plugin
    foreach ($this->getPluginsDir() as $_plugin_dir) {
      $names = array(
        $_plugin_dir . $_plugin_filename,
        $_plugin_dir . strtolower($_plugin_filename),
      );
      foreach ($names as $file) {
        if (file_exists($file)) {
          require_once($file);
          return $file;
        }
        if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
          // try PHP include_path
          if ($_stream_resolve_include_path) {
            $file = stream_resolve_include_path($file);
          } else {
            $file = Smarty_Internal_Get_Include_Path::getIncludePath($file);
          }
          if ($file !== false) {
            require_once($file);
            return $file;
          }
        }
      }
    }
    // no plugin loaded
    return false;
  }
  /**
   * Compile all template files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllTemplates($extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllTemplates($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Compile all config files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllConfig($extension = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllConfig($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Delete compiled template file
   *
   * @param string $resource_name template name
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   *
   * @return integer number of template files deleted
   */
  public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
  {
    return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this);
  }
  /**
   * Return array of tag/attributes of all tags used by an template
   *
   * @param Smarty_Internal_Template $template
   *
   * @return array of tag/attributes
   */
  public function getTags(Smarty_Internal_Template $template)
  {
    return Smarty_Internal_Utility::getTags($template);
  }
  /**
   * Run installation test
   *
   * @param array $errors Array to write errors into, rather than outputting them
   *
   * @return boolean true if setup is fine, false if something is wrong
   */
  public function testInstall(&$errors = null)
  {
    return Smarty_Internal_Utility::testInstall($this, $errors);
  }
  /**
   * Error Handler to mute expected messages
   *
   * @link http://php.net/set_error_handler
   *
   * @param integer $errno Error level
   * @param     $errstr
   * @param     $errfile
   * @param     $errline
   * @param     $errcontext
   *
   * @return boolean
   */
  public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
  {
    $_is_muted_directory = false;
    // add the SMARTY_DIR to the list of muted directories
    if (!isset(Smarty::$_muted_directories[SMARTY_DIR])) {
      $smarty_dir = realpath(SMARTY_DIR);
      if ($smarty_dir !== false) {
        Smarty::$_muted_directories[SMARTY_DIR] = array(
          'file'  => $smarty_dir,
          'length' => strlen($smarty_dir),
        );
      }
    }
    // walk the muted directories and test against $errfile
    foreach (Smarty::$_muted_directories as $key => &$dir) {
      if (!$dir) {
        // resolve directory and length for speedy comparisons
        $file = realpath($key);
        if ($file === false) {
          // this directory does not exist, remove and skip it
          unset(Smarty::$_muted_directories[$key]);
          continue;
        }
        $dir = array(
          'file'  => $file,
          'length' => strlen($file),
        );
      }
      if (!strncmp($errfile, $dir['file'], $dir['length'])) {
        $_is_muted_directory = true;
        break;
      }
    }
    // pass to next error handler if this error did not occur inside SMARTY_DIR
    // or the error was within smarty but masked to be ignored
    if (!$_is_muted_directory || ($errno && $errno & error_reporting())) {
      if (Smarty::$_previous_error_handler) {
        return call_user_func(Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext);
      } else {
        return false;
      }
    }
  }
  /**
   * Enable error handler to mute expected messages
   *
   * @return void
   */
  public static function muteExpectedErrors()
  {
    /*
      error muting is done because some people implemented custom error_handlers using
      http://php.net/set_error_handler and for some reason did not understand the following paragraph:
        It is important to remember that the standard PHP error handler is completely bypassed for the
        error types specified by error_types unless the callback function returns FALSE.
        error_reporting() settings will have no effect and your error handler will be called regardless -
        however you are still able to read the current value of error_reporting and act appropriately.
        Of particular note is that this value will be 0 if the statement that caused the error was
        prepended by the @ error-control operator.
      Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include
        - @filemtime() is almost twice as fast as using an additional file_exists()
        - between file_exists() and filemtime() a possible race condition is opened,
         which does not exist using the simple @filemtime() approach.
    */
    $error_handler = array('Smarty', 'mutingErrorHandler');
    $previous = set_error_handler($error_handler);
    // avoid dead loops
    if ($previous !== $error_handler) {
      Smarty::$_previous_error_handler = $previous;
    }
  }
  /**
   * Disable error handler muting expected messages
   *
   * @return void
   */
  public static function unmuteExpectedErrors()
  {
    restore_error_handler();
  }
}
// Check if we're running on windows
Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
// let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8
if (Smarty::$_CHARSET !== 'UTF-8') {
  Smarty::$_UTF8_MODIFIER = '';
}
/**
 * Smarty exception class
 *
 * @package Smarty
 */
class SmartyException extends Exception
{
  public static $escape = false;
  public function __toString()
  {
    return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
  }
}
/**
 * Smarty compiler exception class
 *
 * @package Smarty
 */
class SmartyCompilerException extends SmartyException
{
  public function __toString()
  {
    return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
  }
  /**
   * The line number of the template error
   *
   * @type int|null
   */
  public $line = null;
  /**
   * The template source snippet relating to the error
   *
   * @type string|null
   */
  public $source = null;
  /**
   * The raw text of the error message
   *
   * @type string|null
   */
  public $desc = null;
  /**
   * The resource identifier or template name
   *
   * @type string|null
   */
  public $template = null;
}
/**
 * Autoloader
 */
function smartyAutoload($class)
{
  $_class = strtolower($class);
  static $_classes = array(
    'smarty_config_source'        => true,
    'smarty_config_compiled'       => true,
    'smarty_security'          => true,
    'smarty_cacheresource'        => true,
    'smarty_cacheresource_custom'    => true,
    'smarty_cacheresource_keyvaluestore' => true,
    'smarty_resource'          => true,
    'smarty_resource_custom'       => true,
    'smarty_resource_uncompiled'     => true,
    'smarty_resource_recompiled'     => true,
  );
  if (!strncmp($_class, 'smarty_internal_', 16) || isset($_classes[$_class])) {
    include SMARTY_SYSPLUGINS_DIR . $_class . '.php';
  }
}
<?php
/**
 * Project:   Smarty: the PHP compiling template engine
 * File:    Smarty.class.php
 * SVN:     $Id: Smarty.class.php 4848 2014-06-08 18:12:09Z Uwe.Tews@googlemail.com $
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * This library 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
 * Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * For questions, help, comments, discussion, etc., please join the
 * Smarty mailing list. Send a blank e-mail to
 * smarty-discussion-subscribe@googlegroups.com
 *
 * @link   http://www.smarty.net/
 * @copyright 2008 New Digital Group, Inc.
 * @author  Monte Ohrt <monte at ohrt dot com>
 * @author  Uwe Tews
 * @author  Rodney Rehm
 * @package  Smarty
 * @version  3.1.19
 */
/**
 * define shorthand directory separator constant
 */
if (!defined('DS')) {
  define('DS', DIRECTORY_SEPARATOR);
}
/**
 * set SMARTY_DIR to absolute path to Smarty library files.
 * Sets SMARTY_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_DIR')) {
  define('SMARTY_DIR', dirname(__FILE__) . DS);
}
/**
 * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
 * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
  define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
if (!defined('SMARTY_PLUGINS_DIR')) {
  define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
}
if (!defined('SMARTY_MBSTRING')) {
  define('SMARTY_MBSTRING', function_exists('mb_split'));
}
if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
  // UTF-8 can only be done properly when mbstring is available!
  /**
   * @deprecated in favor of Smarty::$_CHARSET
   */
  define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1');
}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
  /**
   * @deprecated in favor of Smarty::$_DATE_FORMAT
   */
  define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * register the class autoloader
 */
if (!defined('SMARTY_SPL_AUTOLOAD')) {
  define('SMARTY_SPL_AUTOLOAD', 0);
}
if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) {
  $registeredAutoLoadFunctions = spl_autoload_functions();
  if (!isset($registeredAutoLoadFunctions['spl_autoload'])) {
    spl_autoload_register();
  }
} else {
  spl_autoload_register('smartyAutoload');
}
/**
 * Load always needed external class files
 */
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_resource_file.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_cacheresource_file.php';
/**
 * This is the main Smarty class
 *
 * @package Smarty
 */
class Smarty extends Smarty_Internal_TemplateBase
{
  /**#@+
   * constant definitions
   */
  /**
   * smarty version
   */
  const SMARTY_VERSION = 'Smarty-3.1.19';
  /**
   * define variable scopes
   */
  const SCOPE_LOCAL = 0;
  const SCOPE_PARENT = 1;
  const SCOPE_ROOT = 2;
  const SCOPE_GLOBAL = 3;
  /**
   * define caching modes
   */
  const CACHING_OFF = 0;
  const CACHING_LIFETIME_CURRENT = 1;
  const CACHING_LIFETIME_SAVED = 2;
  /**
   * define constant for clearing cache files be saved expiration datees
   */
  const CLEAR_EXPIRED = - 1;
  /**
   * define compile check modes
   */
  const COMPILECHECK_OFF = 0;
  const COMPILECHECK_ON = 1;
  const COMPILECHECK_CACHEMISS = 2;
  /**
   * modes for handling of "<?php ... ?>" tags in templates.
   */
  const PHP_PASSTHRU = 0; //-> print tags as plain text
  const PHP_QUOTE = 1; //-> escape tags as entities
  const PHP_REMOVE = 2; //-> escape tags as entities
  const PHP_ALLOW = 3; //-> escape tags as entities
  /**
   * filter types
   */
  const FILTER_POST = 'post';
  const FILTER_PRE = 'pre';
  const FILTER_OUTPUT = 'output';
  const FILTER_VARIABLE = 'variable';
  /**
   * plugin types
   */
  const PLUGIN_FUNCTION = 'function';
  const PLUGIN_BLOCK = 'block';
  const PLUGIN_COMPILER = 'compiler';
  const PLUGIN_MODIFIER = 'modifier';
  const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler';
  /**#@-*/
  /**
   * assigned global tpl vars
   */
  public static $global_tpl_vars = array();
  /**
   * error handler returned by set_error_hanlder() in Smarty::muteExpectedErrors()
   */
  public static $_previous_error_handler = null;
  /**
   * contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors()
   */
  public static $_muted_directories = array();
  /**
   * Flag denoting if Multibyte String functions are available
   */
  public static $_MBSTRING = SMARTY_MBSTRING;
  /**
   * The character set to adhere to (e.g. "UTF-8")
   */
  public static $_CHARSET = SMARTY_RESOURCE_CHAR_SET;
  /**
   * The date format to be used internally
   * (accepts date() and strftime())
   */
  public static $_DATE_FORMAT = SMARTY_RESOURCE_DATE_FORMAT;
  /**
   * Flag denoting if PCRE should run in UTF-8 mode
   */
  public static $_UTF8_MODIFIER = 'u';
  /**
   * Flag denoting if operating system is windows
   */
  public static $_IS_WINDOWS = false;
  /**#@+
   * variables
   */
  /**
   * auto literal on delimiters with whitspace
   *
   * @var boolean
   */
  public $auto_literal = true;
  /**
   * display error on not assigned variables
   *
   * @var boolean
   */
  public $error_unassigned = false;
  /**
   * look up relative filepaths in include_path
   *
   * @var boolean
   */
  public $use_include_path = false;
  /**
   * template directory
   *
   * @var array
   */
  private $template_dir = array();
  /**
   * joined template directory string used in cache keys
   *
   * @var string
   */
  public $joined_template_dir = null;
  /**
   * joined config directory string used in cache keys
   *
   * @var string
   */
  public $joined_config_dir = null;
  /**
   * default template handler
   *
   * @var callable
   */
  public $default_template_handler_func = null;
  /**
   * default config handler
   *
   * @var callable
   */
  public $default_config_handler_func = null;
  /**
   * default plugin handler
   *
   * @var callable
   */
  public $default_plugin_handler_func = null;
  /**
   * compile directory
   *
   * @var string
   */
  private $compile_dir = null;
  /**
   * plugins directory
   *
   * @var array
   */
  private $plugins_dir = array();
  /**
   * cache directory
   *
   * @var string
   */
  private $cache_dir = null;
  /**
   * config directory
   *
   * @var array
   */
  private $config_dir = array();
  /**
   * force template compiling?
   *
   * @var boolean
   */
  public $force_compile = false;
  /**
   * check template for modifications?
   *
   * @var boolean
   */
  public $compile_check = true;
  /**
   * use sub dirs for compiled/cached files?
   *
   * @var boolean
   */
  public $use_sub_dirs = false;
  /**
   * allow ambiguous resources (that are made unique by the resource handler)
   *
   * @var boolean
   */
  public $allow_ambiguous_resources = false;
  /**
   * caching enabled
   *
   * @var boolean
   */
  public $caching = false;
  /**
   * merge compiled includes
   *
   * @var boolean
   */
  public $merge_compiled_includes = false;
  /**
   * template inheritance merge compiled includes
   *
   * @var boolean
   */
  public $inheritance_merge_compiled_includes = true;
  /**
   * cache lifetime in seconds
   *
   * @var integer
   */
  public $cache_lifetime = 3600;
  /**
   * force cache file creation
   *
   * @var boolean
   */
  public $force_cache = false;
  /**
   * Set this if you want different sets of cache files for the same
   * templates.
   *
   * @var string
   */
  public $cache_id = null;
  /**
   * Set this if you want different sets of compiled files for the same
   * templates.
   *
   * @var string
   */
  public $compile_id = null;
  /**
   * template left-delimiter
   *
   * @var string
   */
  public $left_delimiter = "{";
  /**
   * template right-delimiter
   *
   * @var string
   */
  public $right_delimiter = "}";
  /**#@+
   * security
   */
  /**
   * class name
   * This should be instance of Smarty_Security.
   *
   * @var string
   * @see Smarty_Security
   */
  public $security_class = 'Smarty_Security';
  /**
   * implementation of security class
   *
   * @var Smarty_Security
   */
  public $security_policy = null;
  /**
   * controls handling of PHP-blocks
   *
   * @var integer
   */
  public $php_handling = self::PHP_PASSTHRU;
  /**
   * controls if the php template file resource is allowed
   *
   * @var bool
   */
  public $allow_php_templates = false;
  /**
   * Should compiled-templates be prevented from being called directly?
   * {@internal
   * Currently used by Smarty_Internal_Template only.
   * }}
   *
   * @var boolean
   */
  public $direct_access_security = true;
  /**#@-*/
  /**
   * debug mode
   * Setting this to true enables the debug-console.
   *
   * @var boolean
   */
  public $debugging = false;
  /**
   * This determines if debugging is enable-able from the browser.
   * <ul>
   * <li>NONE => no debugging control allowed</li>
   * <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
   * </ul>
   *
   * @var string
   */
  public $debugging_ctrl = 'NONE';
  /**
   * Name of debugging URL-param.
   * Only used when $debugging_ctrl is set to 'URL'.
   * The name of the URL-parameter that activates debugging.
   *
   * @var type
   */
  public $smarty_debug_id = 'SMARTY_DEBUG';
  /**
   * Path of debug template.
   *
   * @var string
   */
  public $debug_tpl = null;
  /**
   * When set, smarty uses this value as error_reporting-level.
   *
   * @var int
   */
  public $error_reporting = null;
  /**
   * Internal flag for getTags()
   *
   * @var boolean
   */
  public $get_used_tags = false;
  /**#@+
   * config var settings
   */
  /**
   * Controls whether variables with the same name overwrite each other.
   *
   * @var boolean
   */
  public $config_overwrite = true;
  /**
   * Controls whether config values of on/true/yes and off/false/no get converted to boolean.
   *
   * @var boolean
   */
  public $config_booleanize = true;
  /**
   * Controls whether hidden config sections/vars are read from the file.
   *
   * @var boolean
   */
  public $config_read_hidden = false;
  /**#@-*/
  /**#@+
   * resource locking
   */
  /**
   * locking concurrent compiles
   *
   * @var boolean
   */
  public $compile_locking = true;
  /**
   * Controls whether cache resources should emply locking mechanism
   *
   * @var boolean
   */
  public $cache_locking = false;
  /**
   * seconds to wait for acquiring a lock before ignoring the write lock
   *
   * @var float
   */
  public $locking_timeout = 10;
  /**#@-*/
  /**
   * global template functions
   *
   * @var array
   */
  public $template_functions = array();
  /**
   * resource type used if none given
   * Must be an valid key of $registered_resources.
   *
   * @var string
   */
  public $default_resource_type = 'file';
  /**
   * caching type
   * Must be an element of $cache_resource_types.
   *
   * @var string
   */
  public $caching_type = 'file';
  /**
   * internal config properties
   *
   * @var array
   */
  public $properties = array();
  /**
   * config type
   *
   * @var string
   */
  public $default_config_type = 'file';
  /**
   * cached template objects
   *
   * @var array
   */
  public $template_objects = array();
  /**
   * check If-Modified-Since headers
   *
   * @var boolean
   */
  public $cache_modified_check = false;
  /**
   * registered plugins
   *
   * @var array
   */
  public $registered_plugins = array();
  /**
   * plugin search order
   *
   * @var array
   */
  public $plugin_search_order = array('function', 'block', 'compiler', 'class');
  /**
   * registered objects
   *
   * @var array
   */
  public $registered_objects = array();
  /**
   * registered classes
   *
   * @var array
   */
  public $registered_classes = array();
  /**
   * registered filters
   *
   * @var array
   */
  public $registered_filters = array();
  /**
   * registered resources
   *
   * @var array
   */
  public $registered_resources = array();
  /**
   * resource handler cache
   *
   * @var array
   */
  public $_resource_handlers = array();
  /**
   * registered cache resources
   *
   * @var array
   */
  public $registered_cache_resources = array();
  /**
   * cache resource handler cache
   *
   * @var array
   */
  public $_cacheresource_handlers = array();
  /**
   * autoload filter
   *
   * @var array
   */
  public $autoload_filters = array();
  /**
   * default modifier
   *
   * @var array
   */
  public $default_modifiers = array();
  /**
   * autoescape variable output
   *
   * @var boolean
   */
  public $escape_html = false;
  /**
   * global internal smarty vars
   *
   * @var array
   */
  public static $_smarty_vars = array();
  /**
   * start time for execution time calculation
   *
   * @var int
   */
  public $start_time = 0;
  /**
   * default file permissions
   *
   * @var int
   */
  public $_file_perms = 0644;
  /**
   * default dir permissions
   *
   * @var int
   */
  public $_dir_perms = 0771;
  /**
   * block tag hierarchy
   *
   * @var array
   */
  public $_tag_stack = array();
  /**
   * self pointer to Smarty object
   *
   * @var Smarty
   */
  public $smarty;
  /**
   * required by the compiler for BC
   *
   * @var string
   */
  public $_current_file = null;
  /**
   * internal flag to enable parser debugging
   *
   * @var bool
   */
  public $_parserdebug = false;
  /**
   * Saved parameter of merged templates during compilation
   *
   * @var array
   */
  public $merged_templates_func = array();
  /**#@-*/
  /**
   * Initialize new Smarty object
   */
  public function __construct()
  {
    // selfpointer needed by some other class methods
    $this->smarty = $this;
    if (is_callable('mb_internal_encoding')) {
      mb_internal_encoding(Smarty::$_CHARSET);
    }
    $this->start_time = microtime(true);
    // set default dirs
    $this->setTemplateDir('.' . DS . 'templates' . DS)
      ->setCompileDir('.' . DS . 'templates_c' . DS)
      ->setPluginsDir(SMARTY_PLUGINS_DIR)
      ->setCacheDir('.' . DS . 'cache' . DS)
      ->setConfigDir('.' . DS . 'configs' . DS);
    $this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl';
    if (isset($_SERVER['SCRIPT_NAME'])) {
      $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
    }
  }
  /**
   * Class destructor
   */
  public function __destruct()
  {
    // intentionally left blank
  }
  /**
   * <<magic>> set selfpointer on cloned object
   */
  public function __clone()
  {
    $this->smarty = $this;
  }
  /**
   * <<magic>> Generic getter.
   * Calls the appropriate getter function.
   * Issues an E_USER_NOTICE if no valid getter is found.
   *
   * @param string $name property name
   *
   * @return mixed
   */
  public function __get($name)
  {
    $allowed = array(
      'template_dir' => 'getTemplateDir',
      'config_dir'  => 'getConfigDir',
      'plugins_dir' => 'getPluginsDir',
      'compile_dir' => 'getCompileDir',
      'cache_dir'  => 'getCacheDir',
    );
    if (isset($allowed[$name])) {
      return $this->{$allowed[$name]}();
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * <<magic>> Generic setter.
   * Calls the appropriate setter function.
   * Issues an E_USER_NOTICE if no valid setter is found.
   *
   * @param string $name property name
   * @param mixed $value parameter passed to setter
   */
  public function __set($name, $value)
  {
    $allowed = array(
      'template_dir' => 'setTemplateDir',
      'config_dir'  => 'setConfigDir',
      'plugins_dir' => 'setPluginsDir',
      'compile_dir' => 'setCompileDir',
      'cache_dir'  => 'setCacheDir',
    );
    if (isset($allowed[$name])) {
      $this->{$allowed[$name]}($value);
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * Check if a template resource exists
   *
   * @param string $resource_name template name
   *
   * @return boolean status
   */
  public function templateExists($resource_name)
  {
    // create template object
    $save = $this->template_objects;
    $tpl = new $this->template_class($resource_name, $this);
    // check if it does exists
    $result = $tpl->source->exists;
    $this->template_objects = $save;
    return $result;
  }
  /**
   * Returns a single or all global variables
   *
   * @param string $varname variable name or null
   *
   * @return string variable value or or array of variables
   */
  public function getGlobal($varname = null)
  {
    if (isset($varname)) {
      if (isset(self::$global_tpl_vars[$varname])) {
        return self::$global_tpl_vars[$varname]->value;
      } else {
        return '';
      }
    } else {
      $_result = array();
      foreach (self::$global_tpl_vars AS $key => $var) {
        $_result[$key] = $var->value;
      }
      return $_result;
    }
  }
  /**
   * Empty cache folder
   *
   * @param integer $exp_time expiration time
   * @param string $type   resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearAllCache($exp_time = null, $type = null)
  {
    // load cache resource and call clearAll
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clearAll($this, $exp_time);
  }
  /**
   * Empty cache for a specific template
   *
   * @param string $template_name template name
   * @param string $cache_id   cache id
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   * @param string $type     resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
  {
    // load cache resource and call clear
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
  }
  /**
   * Loads security class and enables security
   *
   * @param string|Smarty_Security $security_class if a string is used, it must be class-name
   *
   * @return Smarty         current Smarty instance for chaining
   * @throws SmartyException    when an invalid class name is provided
   */
  public function enableSecurity($security_class = null)
  {
    if ($security_class instanceof Smarty_Security) {
      $this->security_policy = $security_class;
      return $this;
    } elseif (is_object($security_class)) {
      throw new SmartyException("Class '" . get_class($security_class) . "' must extend Smarty_Security.");
    }
    if ($security_class == null) {
      $security_class = $this->security_class;
    }
    if (!class_exists($security_class)) {
      throw new SmartyException("Security class '$security_class' is not defined");
    } elseif ($security_class !== 'Smarty_Security' && !is_subclass_of($security_class, 'Smarty_Security')) {
      throw new SmartyException("Class '$security_class' must extend Smarty_Security.");
    } else {
      $this->security_policy = new $security_class($this);
    }
    return $this;
  }
  /**
   * Disable security
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function disableSecurity()
  {
    $this->security_policy = null;
    return $this;
  }
  /**
   * Set template directory
   *
   * @param string|array $template_dir directory(s) of template sources
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setTemplateDir($template_dir)
  {
    $this->template_dir = array();
    foreach ((array) $template_dir as $k => $v) {
      $this->template_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Add template directory(s)
   *
   * @param string|array $template_dir directory(s) of template sources
   * @param string    $key     of the array element to assign the template dir to
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException when the given template directory is not valid
   */
  public function addTemplateDir($template_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->template_dir = (array) $this->template_dir;
    if (is_array($template_dir)) {
      foreach ($template_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->template_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->template_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($template_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->template_dir[$key] = $v;
      } else {
        // append new directory
        $this->template_dir[] = $v;
      }
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Get template directories
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string list of template directories, or directory of $index
   */
  public function getTemplateDir($index = null)
  {
    if ($index !== null) {
      return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null;
    }
    return (array) $this->template_dir;
  }
  /**
   * Set config directory
   *
   * @param $config_dir
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setConfigDir($config_dir)
  {
    $this->config_dir = array();
    foreach ((array) $config_dir as $k => $v) {
      $this->config_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Add config directory(s)
   *
   * @param string|array    $config_dir directory(s) of config sources
   * @param mixed $key    key of the array element to assign the config dir to
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addConfigDir($config_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->config_dir = (array) $this->config_dir;
    if (is_array($config_dir)) {
      foreach ($config_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->config_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->config_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($config_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->config_dir[$key] = rtrim($v, '/\\') . DS;
      } else {
        // append new directory
        $this->config_dir[] = rtrim($v, '/\\') . DS;
      }
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Get config directory
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string configuration directory
   */
  public function getConfigDir($index = null)
  {
    if ($index !== null) {
      return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null;
    }
    return (array) $this->config_dir;
  }
  /**
   * Set plugins directory
   *
   * @param string|array $plugins_dir directory(s) of plugins
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setPluginsDir($plugins_dir)
  {
    $this->plugins_dir = array();
    foreach ((array) $plugins_dir as $k => $v) {
      $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
    }
    return $this;
  }
  /**
   * Adds directory of plugin files
   *
   * @param $plugins_dir
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addPluginsDir($plugins_dir)
  {
    // make sure we're dealing with an array
    $this->plugins_dir = (array) $this->plugins_dir;
    if (is_array($plugins_dir)) {
      foreach ($plugins_dir as $k => $v) {
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->plugins_dir[] = rtrim($v, '/\\') . DS;
        } else {
          // string indexes are overridden
          $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
        }
      }
    } else {
      // append new directory
      $this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS;
    }
    $this->plugins_dir = array_unique($this->plugins_dir);
    return $this;
  }
  /**
   * Get plugin directories
   *
   * @return array list of plugin directories
   */
  public function getPluginsDir()
  {
    return (array) $this->plugins_dir;
  }
  /**
   * Set compile directory
   *
   * @param string $compile_dir directory to store compiled templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCompileDir($compile_dir)
  {
    $this->compile_dir = rtrim($compile_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->compile_dir])) {
      Smarty::$_muted_directories[$this->compile_dir] = null;
    }
    return $this;
  }
  /**
   * Get compiled directory
   *
   * @return string path to compiled templates
   */
  public function getCompileDir()
  {
    return $this->compile_dir;
  }
  /**
   * Set cache directory
   *
   * @param string $cache_dir directory to store cached templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCacheDir($cache_dir)
  {
    $this->cache_dir = rtrim($cache_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->cache_dir])) {
      Smarty::$_muted_directories[$this->cache_dir] = null;
    }
    return $this;
  }
  /**
   * Get cache directory
   *
   * @return string path of cache directory
   */
  public function getCacheDir()
  {
    return $this->cache_dir;
  }
  /**
   * Set default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to set
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setDefaultModifiers($modifiers)
  {
    $this->default_modifiers = (array) $modifiers;
    return $this;
  }
  /**
   * Add default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to add
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function addDefaultModifiers($modifiers)
  {
    if (is_array($modifiers)) {
      $this->default_modifiers = array_merge($this->default_modifiers, $modifiers);
    } else {
      $this->default_modifiers[] = $modifiers;
    }
    return $this;
  }
  /**
   * Get default modifiers
   *
   * @return array list of default modifiers
   */
  public function getDefaultModifiers()
  {
    return $this->default_modifiers;
  }
  /**
   * Set autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      $this->autoload_filters[$type] = (array) $filters;
    } else {
      $this->autoload_filters = (array) $filters;
    }
    return $this;
  }
  /**
   * Add autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      if (!empty($this->autoload_filters[$type])) {
        $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
      } else {
        $this->autoload_filters[$type] = (array) $filters;
      }
    } else {
      foreach ((array) $filters as $key => $value) {
        if (!empty($this->autoload_filters[$key])) {
          $this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value);
        } else {
          $this->autoload_filters[$key] = (array) $value;
        }
      }
    }
    return $this;
  }
  /**
   * Get autoload filters
   *
   * @param string $type type of filter to get autoloads for. Defaults to all autoload filters
   *
   * @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified
   */
  public function getAutoloadFilters($type = null)
  {
    if ($type !== null) {
      return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array();
    }
    return $this->autoload_filters;
  }
  /**
   * return name of debugging template
   *
   * @return string
   */
  public function getDebugTemplate()
  {
    return $this->debug_tpl;
  }
  /**
   * set the debug template
   *
   * @param string $tpl_name
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException if file is not readable
   */
  public function setDebugTemplate($tpl_name)
  {
    if (!is_readable($tpl_name)) {
      throw new SmartyException("Unknown file '{$tpl_name}'");
    }
    $this->debug_tpl = $tpl_name;
    return $this;
  }
  /**
   * creates a template object
   *
   * @param string $template  the resource handle of the template file
   * @param mixed  $cache_id  cache id to be used with this template
   * @param mixed  $compile_id compile id to be used with this template
   * @param object $parent   next higher level of Smarty variables
   * @param boolean $do_clone  flag is Smarty object shall be cloned
   *
   * @return object template object
   */
  public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
  {
    if ($cache_id !== null && (is_object($cache_id) || is_array($cache_id))) {
      $parent = $cache_id;
      $cache_id = null;
    }
    if ($parent !== null && is_array($parent)) {
      $data = $parent;
      $parent = null;
    } else {
      $data = null;
    }
    // default to cache_id and compile_id of Smarty object
    $cache_id = $cache_id === null ? $this->cache_id : $cache_id;
    $compile_id = $compile_id === null ? $this->compile_id : $compile_id;
    // already in template cache?
    if ($this->allow_ambiguous_resources) {
      $_templateId = Smarty_Resource::getUniqueTemplateName($this, $template) . $cache_id . $compile_id;
    } else {
      $_templateId = $this->joined_template_dir . '#' . $template . $cache_id . $compile_id;
    }
    if (isset($_templateId[150])) {
      $_templateId = sha1($_templateId);
    }
    if ($do_clone) {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = clone $this->template_objects[$_templateId];
        $tpl->smarty = clone $tpl->smarty;
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
      }
    } else {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = $this->template_objects[$_templateId];
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
      }
    }
    // fill data if present
    if (!empty($data) && is_array($data)) {
      // set up variable values
      foreach ($data as $_key => $_val) {
        $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
      }
    }
    return $tpl;
  }
  /**
   * Takes unknown classes and loads plugin files for them
   * class name format: Smarty_PluginType_PluginName
   * plugin filename format: plugintype.pluginname.php
   *
   * @param string $plugin_name class plugin name to load
   * @param bool  $check    check if already loaded
   *
   * @throws SmartyException
   * @return string |boolean filepath of loaded file or false
   */
  public function loadPlugin($plugin_name, $check = true)
  {
    // if function or class exists, exit silently (already loaded)
    if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
      return true;
    }
    // Plugin name is expected to be: Smarty_[Type]_[Name]
    $_name_parts = explode('_', $plugin_name, 3);
    // class name must have three parts to be valid plugin
    // count($_name_parts) < 3 === !isset($_name_parts[2])
    if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') {
      throw new SmartyException("plugin {$plugin_name} is not a valid name format");
    }
    // if type is "internal", get plugin from sysplugins
    if (strtolower($_name_parts[1]) == 'internal') {
      $file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php';
      if (file_exists($file)) {
        require_once($file);
        return $file;
      } else {
        return false;
      }
    }
    // plugin filename is expected to be: [type].[name].php
    $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
    $_stream_resolve_include_path = function_exists('stream_resolve_include_path');
    // loop through plugin dirs and find the plugin
    foreach ($this->getPluginsDir() as $_plugin_dir) {
      $names = array(
        $_plugin_dir . $_plugin_filename,
        $_plugin_dir . strtolower($_plugin_filename),
      );
      foreach ($names as $file) {
        if (file_exists($file)) {
          require_once($file);
          return $file;
        }
        if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
          // try PHP include_path
          if ($_stream_resolve_include_path) {
            $file = stream_resolve_include_path($file);
          } else {
            $file = Smarty_Internal_Get_Include_Path::getIncludePath($file);
          }
          if ($file !== false) {
            require_once($file);
            return $file;
          }
        }
      }
    }
    // no plugin loaded
    return false;
  }
  /**
   * Compile all template files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllTemplates($extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllTemplates($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Compile all config files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllConfig($extension = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllConfig($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Delete compiled template file
   *
   * @param string $resource_name template name
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   *
   * @return integer number of template files deleted
   */
  public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
  {
    return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this);
  }
  /**
   * Return array of tag/attributes of all tags used by an template
   *
   * @param Smarty_Internal_Template $template
   *
   * @return array of tag/attributes
   */
  public function getTags(Smarty_Internal_Template $template)
  {
    return Smarty_Internal_Utility::getTags($template);
  }
  /**
   * Run installation test
   *
   * @param array $errors Array to write errors into, rather than outputting them
   *
   * @return boolean true if setup is fine, false if something is wrong
   */
  public function testInstall(&$errors = null)
  {
    return Smarty_Internal_Utility::testInstall($this, $errors);
  }
  /**
   * Error Handler to mute expected messages
   *
   * @link http://php.net/set_error_handler
   *
   * @param integer $errno Error level
   * @param     $errstr
   * @param     $errfile
   * @param     $errline
   * @param     $errcontext
   *
   * @return boolean
   */
  public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
  {
    $_is_muted_directory = false;
    // add the SMARTY_DIR to the list of muted directories
    if (!isset(Smarty::$_muted_directories[SMARTY_DIR])) {
      $smarty_dir = realpath(SMARTY_DIR);
      if ($smarty_dir !== false) {
        Smarty::$_muted_directories[SMARTY_DIR] = array(
          'file'  => $smarty_dir,
          'length' => strlen($smarty_dir),
        );
      }
    }
    // walk the muted directories and test against $errfile
    foreach (Smarty::$_muted_directories as $key => &$dir) {
      if (!$dir) {
        // resolve directory and length for speedy comparisons
        $file = realpath($key);
        if ($file === false) {
          // this directory does not exist, remove and skip it
          unset(Smarty::$_muted_directories[$key]);
          continue;
        }
        $dir = array(
          'file'  => $file,
          'length' => strlen($file),
        );
      }
      if (!strncmp($errfile, $dir['file'], $dir['length'])) {
        $_is_muted_directory = true;
        break;
      }
    }
    // pass to next error handler if this error did not occur inside SMARTY_DIR
    // or the error was within smarty but masked to be ignored
    if (!$_is_muted_directory || ($errno && $errno & error_reporting())) {
      if (Smarty::$_previous_error_handler) {
        return call_user_func(Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext);
      } else {
        return false;
      }
    }
  }
  /**
   * Enable error handler to mute expected messages
   *
   * @return void
   */
  public static function muteExpectedErrors()
  {
    /*
      error muting is done because some people implemented custom error_handlers using
      http://php.net/set_error_handler and for some reason did not understand the following paragraph:
        It is important to remember that the standard PHP error handler is completely bypassed for the
        error types specified by error_types unless the callback function returns FALSE.
        error_reporting() settings will have no effect and your error handler will be called regardless -
        however you are still able to read the current value of error_reporting and act appropriately.
        Of particular note is that this value will be 0 if the statement that caused the error was
        prepended by the @ error-control operator.
      Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include
        - @filemtime() is almost twice as fast as using an additional file_exists()
        - between file_exists() and filemtime() a possible race condition is opened,
         which does not exist using the simple @filemtime() approach.
    */
    $error_handler = array('Smarty', 'mutingErrorHandler');
    $previous = set_error_handler($error_handler);
    // avoid dead loops
    if ($previous !== $error_handler) {
      Smarty::$_previous_error_handler = $previous;
    }
  }
  /**
   * Disable error handler muting expected messages
   *
   * @return void
   */
  public static function unmuteExpectedErrors()
  {
    restore_error_handler();
  }
}
// Check if we're running on windows
Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
// let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8
if (Smarty::$_CHARSET !== 'UTF-8') {
  Smarty::$_UTF8_MODIFIER = '';
}
/**
 * Smarty exception class
 *
 * @package Smarty
 */
class SmartyException extends Exception
{
  public static $escape = false;
  public function __toString()
  {
    return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
  }
}
/**
 * Smarty compiler exception class
 *
 * @package Smarty
 */
class SmartyCompilerException extends SmartyException
{
  public function __toString()
  {
    return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
  }
  /**
   * The line number of the template error
   *
   * @type int|null
   */
  public $line = null;
  /**
   * The template source snippet relating to the error
   *
   * @type string|null
   */
  public $source = null;
  /**
   * The raw text of the error message
   *
   * @type string|null
   */
  public $desc = null;
  /**
   * The resource identifier or template name
   *
   * @type string|null
   */
  public $template = null;
}
/**
 * Autoloader
 */
function smartyAutoload($class)
{
  $_class = strtolower($class);
  static $_classes = array(
    'smarty_config_source'        => true,
    'smarty_config_compiled'       => true,
    'smarty_security'          => true,
    'smarty_cacheresource'        => true,
    'smarty_cacheresource_custom'    => true,
    'smarty_cacheresource_keyvaluestore' => true,
    'smarty_resource'          => true,
    'smarty_resource_custom'       => true,
    'smarty_resource_uncompiled'     => true,
    'smarty_resource_recompiled'     => true,
  );
  if (!strncmp($_class, 'smarty_internal_', 16) || isset($_classes[$_class])) {
    include SMARTY_SYSPLUGINS_DIR . $_class . '.php';
  }
}

更多關(guān)于Smarty相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《smarty模板入門基礎(chǔ)教程》、《PHP模板技術(shù)總結(jié)》、《PHP基于pdo操作數(shù)據(jù)庫(kù)技巧總結(jié)》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語(yǔ)法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總

希望本文所述對(duì)大家基于smarty模板的PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • php微信開發(fā)之上傳臨時(shí)素材

    php微信開發(fā)之上傳臨時(shí)素材

    這篇文章主要為大家詳細(xì)介紹了PHP微信開發(fā)之簡(jiǎn)單實(shí)現(xiàn)上傳臨時(shí)素材的相關(guān)資料,感興趣的小伙伴們可以參考一下
    2016-06-06
  • TP5框架頁(yè)面跳轉(zhuǎn)樣式操作示例

    TP5框架頁(yè)面跳轉(zhuǎn)樣式操作示例

    這篇文章主要介紹了TP5框架頁(yè)面跳轉(zhuǎn)樣式操作,結(jié)合實(shí)例形式分析了TP5框架移動(dòng)設(shè)備支持及頁(yè)面跳轉(zhuǎn)樣式定義相關(guān)操作技巧,需要的朋友可以參考下
    2020-04-04
  • Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié)

    Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié)

    本篇文章主要介紹了Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-02-02
  • 使用phpQuery獲取數(shù)組的實(shí)例

    使用phpQuery獲取數(shù)組的實(shí)例

    下面小編就為大家?guī)硪黄褂胮hpQuery獲取數(shù)組的實(shí)例.小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-03-03
  • Yii中CGridView關(guān)聯(lián)表搜索排序方法實(shí)例詳解

    Yii中CGridView關(guān)聯(lián)表搜索排序方法實(shí)例詳解

    這篇文章主要介紹了Yii中CGridView關(guān)聯(lián)表搜索排序方法,以實(shí)例形式詳細(xì)分析了CGridView關(guān)聯(lián)表搜索排序的實(shí)現(xiàn)過程與搜索結(jié)果出現(xiàn)問題的解決方法,是非常實(shí)用的技巧,需要的朋友可以參考下
    2014-12-12
  • php生成縮略圖填充白邊(等比縮略圖方案)

    php生成縮略圖填充白邊(等比縮略圖方案)

    上傳圖片直接縮放的話就會(huì)導(dǎo)致圖片變形,這樣體驗(yàn)肯定就不好了。下面提供一種解決方法,縮小后添加白邊的方法看下面的代碼實(shí)現(xiàn)
    2013-12-12
  • php讀取excel文件的簡(jiǎn)單實(shí)例

    php讀取excel文件的簡(jiǎn)單實(shí)例

    這篇文章介紹了php讀取excel文件的簡(jiǎn)單實(shí)例,有需要的朋友可以參考一下
    2013-08-08
  • thinkphp5.1框架模板布局與模板繼承用法分析

    thinkphp5.1框架模板布局與模板繼承用法分析

    這篇文章主要介紹了thinkphp5.1框架模板布局與模板繼承用法,結(jié)合實(shí)例形式分析了thinkPHP5.1框架模板布局與模板繼承相關(guān)配置、調(diào)用、操作技巧與注意事項(xiàng),需要的朋友可以參考下
    2019-07-07
  • ThinkPHP之N方法實(shí)例詳解

    ThinkPHP之N方法實(shí)例詳解

    ThinkPHP的N方法屬于計(jì)數(shù)器方法,這篇文章主要介紹了ThinkPHP的N方法,需要的朋友可以參考下
    2014-06-06
  • Yii2實(shí)現(xiàn)ActiveForm ajax提交

    Yii2實(shí)現(xiàn)ActiveForm ajax提交

    這篇文章主要 為大家詳細(xì)介紹了Yii2實(shí)現(xiàn)ActiveForm ajax提交的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-05-05

最新評(píng)論

亚洲一区二区三区在线高清| 播放日本一区二区三区电影| 2o22av在线视频| 人人爱人人妻人人澡39| 揄拍成人国产精品免费看视频| 搡老熟女一区二区在线观看| 日本高清撒尿pissing| 亚洲一区二区三区久久午夜| 超碰中文字幕免费观看| yy96视频在线观看| 日韩人妻xxxxx| 黄片大全在线观看观看| 亚洲欧美自拍另类图片| 中文字幕日韩无敌亚洲精品| 亚洲天堂有码中文字幕视频| 亚洲男人的天堂a在线| 五十路人妻熟女av一区二区| 91中文字幕免费在线观看| 日韩三级电影华丽的外出| 日本熟妇丰满厨房55| 二区中出在线观看老师| 亚洲国产中文字幕啊啊啊不行了| 中文字幕之无码色多多| 97超碰免费在线视频| 天干天天天色天天日天天射| 99热这里只有国产精品6| 2021久久免费视频| 老鸭窝在线观看一区| 久久久久久9999久久久久| 韩国三级aaaaa高清视频| 国产精品一区二区久久久av| 人妻另类专区欧美制服| 中文字幕第1页av一天堂网| 成人av亚洲一区二区| 91精品国产91青青碰| 丰满的继坶3中文在线观看| 91福利视频免费在线观看| 老司机99精品视频在线观看| 91精品一区二区三区站长推荐| 91精品一区二区三区站长推荐| a v欧美一区=区三区| 在线观看的a站 最新| 一区二区视频视频视频| 99热99re在线播放| 亚洲人妻30pwc| 精品一区二区三区欧美| 黄页网视频在线免费观看| 18禁污污污app下载| 亚洲伊人色一综合网| 青春草视频在线免费播放| 狠狠躁夜夜躁人人爽天天天天97| 黄色中文字幕在线播放| av天堂资源最新版在线看| 午夜毛片不卡在线看| 国产在线免费观看成人| 一二三中文乱码亚洲乱码one| 日韩欧美制服诱惑一区在线| 国产精品视频男人的天堂| 亚洲av男人的天堂你懂的| 国产欧美日韩第三页| 在线观看av亚洲情色| 偷拍自拍福利视频在线观看| 在线观看911精品国产 | 好了av中文字幕在线| 国产实拍勾搭女技师av在线| 男人在床上插女人视频| 亚洲精品国品乱码久久久久| 97香蕉碰碰人妻国产樱花| 精品一区二区三区午夜| av网址在线播放大全| 中文亚洲欧美日韩无线码| 在线观看操大逼视频| 午夜大尺度无码福利视频| 久久久久久久久久一区二区三区| 91p0rny九色露脸熟女| 亚洲一区二区三区精品乱码| mm131美女午夜爽爽爽| 成人性黑人一级av| 欧美精品黑人性xxxx| 欧美老鸡巴日小嫩逼| mm131美女午夜爽爽爽| 在线观看黄色成年人网站| 男人插女人视频网站| 午夜免费体验区在线观看| 日韩欧美国产精品91| 日韩伦理短片在线观看| 天堂av狠狠操蜜桃| 国产中文字幕四区在线观看| 红桃av成人在线观看| 亚洲av男人天堂久久| 人人超碰国字幕观看97| 丰满少妇人妻xxxxx| 天天操天天弄天天射| 亚洲欧美自拍另类图片| 高潮喷水在线视频观看| 亚洲一区二区激情在线| 一色桃子人妻一区二区三区| 欧美偷拍自拍色图片| 一二三区在线观看视频| 日韩二区视频一线天婷婷五| chinese国产盗摄一区二区| 欧美乱妇无乱码一区二区| 国产 在线 免费 精品| 换爱交换乱高清大片| 亚洲最大黄 嗯色 操 啊| 五月天中文字幕内射| 特一级特级黄色网片| 护士小嫩嫩又紧又爽20p| av天堂中文字幕最新| 自拍偷拍日韩欧美一区二区| 蜜臀成人av在线播放| 国产午夜福利av导航| 3D动漫精品啪啪一区二区下载| 天码人妻一区二区三区在线看| 中文字幕高清在线免费播放| 午夜久久久久久久99| 男人的天堂av日韩亚洲| 亚洲高清国产自产av| 成年女人免费播放视频| 天堂v男人视频在线观看| 78色精品一区二区三区| 色综合久久五月色婷婷综合 | 岳太深了紧紧的中文字幕| 国产成人精品av网站| 国产亚洲视频在线二区| 狠狠操操操操操操操操操| 78色精品一区二区三区| av手机在线免费观看日韩av| 狠狠操操操操操操操操操| 五十路av熟女松本翔子| 国产精品手机在线看片| 一个色综合男人天堂| 久久热久久视频在线观看| 日本人妻少妇18—xx| 日韩精品一区二区三区在线播放| 免费在线黄色观看网站| 亚洲综合自拍视频一区| 国产极品美女久久久久久| 人人妻人人人操人人人爽| 人人在线视频一区二区| 在线观看一区二区三级| 国产janese在线播放| 人妻少妇精品久久久久久| 3D动漫精品啪啪一区二区下载| 成人资源在线观看免费官网| 日本真人性生活视频免费看| 国产在线观看免费人成短视频| 亚洲天堂成人在线观看视频网站| 东游记中文字幕版哪里可以看到| 日本av在线一区二区三区| 中国黄色av一级片| 动漫av网站18禁| 青青青青青青青在线播放视频| 日本一本午夜在线播放| 国产日本欧美亚洲精品视| 日韩av有码一区二区三区4 | 国产麻豆剧传媒精品国产av蜜桃| 国产黄色高清资源在线免费观看| 中文字幕 亚洲av| 国产亚洲精品品视频在线| 9国产精品久久久久老师| 精品一区二区三区午夜| 2020国产在线不卡视频| 日本女人一级免费片| 青娱乐极品视频青青草| 国产97在线视频观看| 亚洲卡1卡2卡三卡四老狼| 超碰在线中文字幕一区二区| av中文字幕电影在线看| 日本少妇高清视频xxxxx| 国产精品久久久久久美女校花| 黄色片黄色片wyaa| 人人超碰国字幕观看97| 中文字幕无码一区二区免费| 中文字幕亚洲久久久| www日韩毛片av| 天堂中文字幕翔田av| 中文字幕 亚洲av| 欧美亚洲免费视频观看| 国产性色生活片毛片春晓精品| 人人妻人人爽人人添夜| 中文字幕人妻三级在线观看| 久久久噜噜噜久久熟女av| 国产精品3p和黑人大战| 91社福利《在线观看| 美女吃鸡巴操逼高潮视频| 国产精品一区二区三区蜜臀av| 国产欧美日韩在线观看不卡| 99久久99久国产黄毛片| 国产一区二区火爆视频| 国产熟妇一区二区三区av | 2020av天堂网在线观看| 超污视频在线观看污污污| 欧美精品免费aaaaaa| 亚洲欧美一区二区三区电影| 日韩中文字幕福利av| 午夜激情久久不卡一区二区| 一区二区三区毛片国产一区| 99国内小视频在现欢看| 少妇人妻久久久久视频黄片| 亚洲熟女女同志女同| 欧美精品亚洲精品日韩在线| 2018在线福利视频| 欧美精品欧美极品欧美视频| 亚洲av成人网在线观看| 欧美成人综合视频一区二区| av中文在线天堂精品| 一区二区三区麻豆福利视频| 女生被男生插的视频网站| 欧美第一页在线免费观看视频| 欧美久久久久久三级网| 97青青青手机在线视频| 成年午夜影片国产片| 天天日天天干天天干天天日| 欧美中国日韩久久精品| 国产在线免费观看成人| 91精品国产综合久久久蜜 | 欧美亚洲中文字幕一区二区三区| 久草视频在线看免费| 肏插流水妹子在线乐播下载| 国产又粗又硬又猛的毛片视频| 初美沙希中文字幕在线| 日韩黄色片在线观看网站| 天天爽夜夜爽人人爽QC| 免费无码人妻日韩精品一区二区| av一本二本在线观看| 2021国产一区二区| 人人爱人人妻人人澡39| 国产一区二区久久久裸臀| 日噜噜噜夜夜噜噜噜天天噜噜噜| 亚洲蜜臀av一区二区三区九色| 久久美欧人妻少妇一区二区三区| av老司机亚洲一区二区| 特黄老太婆aa毛毛片| 国产超码片内射在线| 亚洲最大黄了色网站| 免费在线观看污污视频网站| 色综合天天综合网国产成人| 把腿张开让我插进去视频| 日韩欧美国产精品91| 免费无码人妻日韩精品一区二区 | 欧美专区日韩专区国产专区| 天天躁日日躁狠狠躁av麻豆| 亚洲综合在线观看免费| 亚洲综合在线视频可播放| 在线播放一区二区三区Av无码| 老司机免费视频网站在线看| 人人爱人人妻人人澡39| 人妻无码色噜噜狠狠狠狠色| 超黄超污网站在线观看| 国产视频精品资源网站| 国产污污污污网站在线| 美女在线观看日本亚洲一区| 一个色综合男人天堂| 偷青青国产精品青青在线观看| 女同性ⅹxx女同h偷拍| 女蜜桃臀紧身瑜伽裤| 直接观看免费黄网站| 一区二区三区蜜臀在线| 日本阿v视频在线免费观看| 欧美日韩精品永久免费网址 | heyzo蜜桃熟女人妻| 91极品新人『兔兔』精品新作| 福利片区一区二体验区| 99热国产精品666| 少妇露脸深喉口爆吞精| 天天操天天爽天天干| 国产91嫩草久久成人在线视频| 97精品成人一区二区三区| 99热99re在线播放| 强行扒开双腿猛烈进入免费版 | 中国产一级黄片免费视频播放| 中英文字幕av一区| 国产97在线视频观看| 色天天天天射天天舔| 蜜桃臀av蜜桃臀av| 男人在床上插女人视频| 国产精品人妻熟女毛片av久| 久久永久免费精品人妻专区| 青娱乐蜜桃臀av色| 第一福利视频在线观看| 精品久久久久久久久久久99| 日本美女成人在线视频| 自拍偷区二区三区麻豆| 久久久精品国产亚洲AV一| 亚洲熟女综合色一区二区三区四区| caoporn蜜桃视频| 欧美成一区二区三区四区| 91试看福利一分钟| 国产精品久久久久久美女校花| 老司机99精品视频在线观看 | 熟女人妻三十路四十路人妻斩| 最近的中文字幕在线mv视频| 中文字母永久播放1区2区3区| 色花堂在线av中文字幕九九| 最近中文2019年在线看| 伊人成人在线综合网| 美女福利写真在线观看视频| 国产高清97在线观看视频| 欧美成人综合色在线噜噜| 2020国产在线不卡视频 | 国产免费av一区二区凹凸四季| 白白操白白色在线免费视频| 91国内精品久久久久精品一 | 成人性黑人一级av| 91 亚洲视频在线观看| 国产精品国产精品一区二区| 日本高清撒尿pissing| 中出中文字幕在线观看| 日本一二三中文字幕| 天天插天天色天天日| 日日夜夜狠狠干视频| 粉嫩欧美美人妻小视频| av高潮迭起在线观看| 国产真实乱子伦a视频| 国产黄色片蝌蚪九色91| 3337p日本欧洲大胆色噜噜| 最新的中文字幕 亚洲| 大白屁股精品视频国产| 快插进小逼里大鸡吧视频| 人妻爱爱 中文字幕| 人人爱人人妻人人澡39| 欧美日韩一级黄片免费观看| 97年大学生大白天操逼| 2022精品久久久久久中文字幕| 我想看操逼黄色大片| 最新中文字幕免费视频| 91色网站免费在线观看| 经典av尤物一区二区| 精品视频中文字幕在线播放| 1769国产精品视频免费观看| 日本一区美女福利视频| 欧美va不卡视频在线观看| 欧美老鸡巴日小嫩逼| 日本人妻欲求不满中文字幕| 2020韩国午夜女主播在线| 亚洲人一区二区中文字幕| 午夜的视频在线观看| 一级黄色av在线观看| 一个人免费在线观看ww视频| 亚洲人妻30pwc| 初美沙希中文字幕在线| 在线观看911精品国产| 国产激情av网站在线观看| 99re久久这里都是精品视频| 成人久久精品一区二区三区| 久久精品在线观看一区二区| 亚洲综合图片20p| 99国内小视频在现欢看| 久久久人妻一区二区| 一级黄色av在线观看| 日本av熟女在线视频| 中文字幕一区二区自拍| 一区二区三区久久久91| 99久久超碰人妻国产| 天天操天天插天天色| 日本三极片视频网站观看| 久草视频 久草视频2| 精品黑人巨大在线一区| 老司机免费视频网站在线看| 黄色视频在线观看高清无码 | 欧美一区二区中文字幕电影| av手机在线观播放网站| 人妻少妇亚洲精品中文字幕| 5528327男人天堂| 综合色区亚洲熟妇shxstz| 中文字幕av一区在线观看| 色97视频在线播放| 91九色国产porny蝌蚪| 日本少妇高清视频xxxxx| 香蕉片在线观看av| 亚洲最大黄 嗯色 操 啊| 国产真实乱子伦a视频| 91国内精品久久久久精品一| 一区二区三区国产精选在线播放| 日韩熟女系列一区二区三区| 动漫美女的小穴视频| 偷拍自拍国产在线视频| 国产精品成人xxxx| 亚洲精品乱码久久久久久密桃明| 中文字幕 人妻精品| 欧美国产亚洲中英文字幕| 亚洲欧美一卡二卡三卡| 99精品国产免费久久| 欧美亚洲自偷自拍 在线| 91桃色成人网络在线观看| 亚洲少妇人妻无码精品| 狠狠鲁狠狠操天天晚上干干| 很黄很污很色的午夜网站在线观看 | 精品一区二区三区三区88| 免费观看国产综合视频| 一区二区三区麻豆福利视频| 亚洲成高清a人片在线观看| 成年女人免费播放视频| 国产日韩欧美美利坚蜜臀懂色| 午夜蜜桃一区二区三区| 无忧传媒在线观看视频| 国产精品中文av在线播放| 亚洲粉嫩av一区二区三区| 国产真实灌醉下药美女av福利| 久碰精品少妇中文字幕av| 成人免费毛片aaaa| 日本免费视频午夜福利视频| 久久久麻豆精亚洲av麻花| 国内自拍第一页在线观看| 亚洲成av人无码不卡影片一| 国产在线免费观看成人| 日视频免费在线观看| 久久精品36亚洲精品束缚| 岛国毛片视频免费在线观看| 国产使劲操在线播放| 精品久久久久久久久久中文蒉| 成人sm视频在线观看| 成人免费公开视频无毒| 三上悠亚和黑人665番号| 欧美精品一区二区三区xxxx| 欧美精品久久久久久影院| 动漫黑丝美女的鸡巴| av在线免费资源站| 欧美亚洲偷拍自拍色图| 99热99这里精品6国产| 婷婷午夜国产精品久久久| 久久久久久久久久久久久97| av一区二区三区人妻| 1000部国产精品成人观看视频| 97瑟瑟超碰在线香蕉| 蝴蝶伊人久久中文娱乐网| 亚洲国产欧美一区二区丝袜黑人| 国产+亚洲+欧美+另类| 亚洲人妻30pwc| gay gay男男瑟瑟在线网站| 青青草视频手机免费在线观看| 亚洲天堂av最新网址| 免费在线看的黄网站| 天天日天天透天天操| 5528327男人天堂| 91天堂精品一区二区| 欧美另类一区二区视频| free性日本少妇| 国产亚洲国产av网站在线| 午夜精品一区二区三区福利视频| 精品成人午夜免费看| 粉嫩欧美美人妻小视频| 亚洲av日韩高清hd| 黄色大片男人操女人逼| 中文字幕av一区在线观看| 2025年人妻中文字幕乱码在线| 美女少妇亚洲精选av| 男人的网址你懂的亚洲欧洲av| 亚洲中文字幕国产日韩| avjpm亚洲伊人久久| 国产伊人免费在线播放| 四川五十路熟女av| av高潮迭起在线观看| 免费观看理论片完整版| 精品av久久久久久久| 护士特殊服务久久久久久久| 亚洲卡1卡2卡三卡四老狼| 91国内视频在线观看| 亚洲青青操骚货在线视频| 91国产在线视频免费观看| 97超碰免费在线视频| 一区二区视频在线观看视频在线| 国产剧情演绎系列丝袜高跟| 免费国产性生活视频| 懂色av蜜桃a v| 中文字幕无码日韩专区免费| 99精品视频之69精品视频| 国产麻豆剧果冻传媒app| 久精品人妻一区二区三区| 人妻少妇中文有码精品| 99久久中文字幕一本人| 超级福利视频在线观看| 精品久久久久久久久久久久人妻| 2019av在线视频| 91九色国产熟女一区二区| 欧美爆乳肉感大码在线观看| 天天做天天爽夜夜做少妇| 日本人妻精品久久久久久| 成人30分钟免费视频| 国产janese在线播放| 天天干夜夜操啊啊啊| 精品91自产拍在线观看一区| 9色在线视频免费观看| 一区二区三区 自拍偷拍| 久久久超爽一二三av| 99热色原网这里只有精品| 国产女人被做到高潮免费视频| 男大肉棒猛烈插女免费视频| 亚洲美女高潮喷浆视频| 91色秘乱一区二区三区| 亚洲狠狠婷婷综合久久app| 国产久久久精品毛片| 青青青青青免费视频| 欧美一区二区三区乱码在线播放| 岳太深了紧紧的中文字幕| 韩国AV无码不卡在线播放| 777奇米久久精品一区| 97年大学生大白天操逼| 青青青爽视频在线播放| 中文字幕无码一区二区免费 | 亚洲免费成人a v| 久久三久久三久久三久久| 国产亚洲欧美45p| 天天日天天日天天擦| 午夜精品福利91av| 国产精品3p和黑人大战| 久久精品国产23696| 中文字幕午夜免费福利视频| 中文字幕乱码av资源| 日本成人一区二区不卡免费在线| 久久久制服丝袜中文字幕| 91综合久久亚洲综合| 黑人乱偷人妻中文字幕| 91色网站免费在线观看| av中文字幕福利网| 人妻av无码专区久久绿巨人| 丰满熟女午夜福利视频| 不卡精品视频在线观看| 在线亚洲天堂色播av电影| 日本裸体熟妇区二区欧美| 黄色在线观看免费观看在线| 精品国产午夜视频一区二区| 动漫黑丝美女的鸡巴| AV无码一区二区三区不卡| 青青青青在线视频免费观看| 精品美女在线观看视频在线观看| 在线观看国产网站资源| 成人av天堂丝袜在线观看| 老师让我插进去69AV| 欧美乱妇无乱码一区二区| 亚洲午夜电影之麻豆 | 亚洲成人激情视频免费观看了| 日韩a级精品一区二区| 亚洲成高清a人片在线观看| 精品视频一区二区三区四区五区| 欧美3p在线观看一区二区三区| 欧美特级特黄a大片免费| 国产成人精品福利短视频| 和邻居少妇愉情中文字幕| 日日爽天天干夜夜操| 亚洲欧美激情国产综合久久久| 男人和女人激情视频| 秋霞午夜av福利经典影视| 99re久久这里都是精品视频| 特一级特级黄色网片| 999热精品视频在线| 99热久久这里只有精品| 天天做天天干天天舔| 又粗又长 明星操逼小视频 | 人人妻人人澡欧美91精品| 无码中文字幕波多野不卡 | 韩国爱爱视频中文字幕| 91极品新人『兔兔』精品新作| 天天通天天透天天插| 青青青青青青草国产| 香蕉片在线观看av| 日本www中文字幕| jiuse91九色视频| 狍和女人的王色毛片| 11久久久久久久久久久| 日韩北条麻妃一区在线| 亚洲麻豆一区二区三区| 欧美视频一区免费在线| 国产美女一区在线观看| 久久久久久久久久一区二区三区| 免费看国产av网站| 水蜜桃国产一区二区三区| 99久久超碰人妻国产| 日本高清成人一区二区三区 | 中文字幕无码一区二区免费| 抽查舔水白紧大视频| 九色视频在线观看免费| 成年午夜免费无码区| 天天射,天天操,天天说| 99精品免费久久久久久久久a| 爱爱免费在线观看视频| 精品久久久久久久久久中文蒉| 欧美精品一区二区三区xxxx| 欧美性受xx黑人性猛交| 欧洲精品第一页欧洲精品亚洲 | 自拍偷拍亚洲精品第2页| 最新黄色av网站在线观看| 夜色撩人久久7777| 久草视频在线免播放| 一级黄色av在线观看| 午夜精品久久久久麻豆影视| 在线观看欧美黄片一区二区三区| 国产性生活中老年人视频网站| jiuse91九色视频| 国内资源最丰富的网站| 中文字幕,亚洲人妻| 午夜dv内射一区区| 在线国产日韩欧美视频| 任你操视频免费在线观看| 91中文字幕免费在线观看| 国产精品久久久久久久久福交| 欧美视频中文一区二区三区| 国产日韩精品电影7777| 在线免费观看靠比视频的网站| 91精品一区二区三区站长推荐| 蜜臀av久久久久久久| 男生舔女生逼逼视频| 亚洲最大黄了色网站| 大陆胖女人与丈夫操b国语高清| 福利在线视频网址导航| 亚洲欧美激情人妻偷拍| 在线观看的a站 最新| 日本精品一区二区三区在线视频。| 十八禁在线观看地址免费| 亚洲 图片 欧美 图片| 在线观看免费视频色97| 亚洲一区二区三区av网站| 国产在线拍揄自揄视频网站| 日本精品美女在线观看| 国产一区二区在线欧美| 天天通天天透天天插| 国产精品中文av在线播放 | 视频久久久久久久人妻| 在线亚洲天堂色播av电影| 好吊操视频这里只有精品| 78色精品一区二区三区| 成人动漫大肉棒插进去视频| 亚洲另类综合一区小说| 亚洲卡1卡2卡三卡四老狼| 天天日天天透天天操| 一级A一级a爰片免费免会员| 扒开腿挺进肉嫩小18禁视频| 国产av一区2区3区| 3D动漫精品啪啪一区二区下载| 天天日天天爽天天爽| 亚洲成人国产av在线| 亚洲精品欧美日韩在线播放| 国产chinesehd精品麻豆| 在线视频自拍第三页| 播放日本一区二区三区电影| 国产使劲操在线播放| 亚洲卡1卡2卡三卡四老狼| 91精品国产综合久久久蜜| 漂亮 人妻被中出中文| 亚洲一区二区三区在线高清| 久久99久久99精品影院| 色哟哟国产精品入口| 国产内射中出在线观看| 夜色撩人久久7777| 日比视频老公慢点好舒服啊| 天天做天天干天天舔| 在线观看免费岛国av| 91九色国产porny蝌蚪| 亚洲国产欧美一区二区三区久久| 在线观看视频 你懂的| 男人天堂最新地址av| av久久精品北条麻妃av观看| 精品av国产一区二区三区四区| 国产在线91观看免费观看| 国产精品日韩欧美一区二区| 不卡精品视频在线观看| 偷拍自拍视频图片免费| 国产麻豆国语对白露脸剧情| 激情人妻校园春色亚洲欧美| 超碰97人人做人人爱| 欧美黑人性猛交xxxxⅹooo| 午夜精品一区二区三区4| 国产视频网站一区二区三区| 久久这里只有精品热视频| 91精品国产黑色丝袜| 亚洲午夜在线视频福利| 毛片一级完整版免费| 九九热99视频在线观看97| 色在线观看视频免费的| 91社福利《在线观看| 91香蕉成人app下载| 久久精品亚洲成在人线a| 91精品国产91青青碰| 成人sm视频在线观看| 久久久久久久久久久久久97| 97资源人妻免费在线视频| 任你操视频免费在线观看| 亚洲综合色在线免费观看| 亚洲第一黄色在线观看| 国产在线免费观看成人| 边摸边做超爽毛片18禁色戒| 欧美日韩不卡一区不区二区| 成熟丰满熟妇高潮xx×xx | 特一级特级黄色网片| 国产欧美日韩第三页| 国产之丝袜脚在线一区二区三区 | 天天日天天干天天舔天天射| 日本一区精品视频在线观看| 一区二区三区久久久91| 97人妻无码AV碰碰视频| 超碰中文字幕免费观看| 午夜在线观看岛国av,com| 亚洲成人熟妇一区二区三区 | 成熟丰满熟妇高潮xx×xx| 久久丁香花五月天色婷婷| 精品高潮呻吟久久av| 国产亚洲四十路五十路| 大白屁股精品视频国产| 粉嫩小穴流水视频在线观看| 玩弄人妻熟妇性色av少妇| 中文字幕亚洲中文字幕| 日本人竟这样玩学生妹| 中文字幕在线观看极品视频| 欧美成人精品在线观看| 偷拍美女一区二区三区| 91在线视频在线精品3| 哥哥姐姐综合激情小说| 播放日本一区二区三区电影| 日本熟妇一区二区x x| 懂色av之国产精品| 国产视频精品资源网站| 97资源人妻免费在线视频| 成人av天堂丝袜在线观看| av老司机亚洲一区二区| 少妇系列一区二区三区视频| 国产精选一区在线播放| 偷拍自拍国产在线视频| 日韩少妇人妻精品无码专区| 欧美一级视频一区二区| 国产一区二区视频观看| 亚洲激情av一区二区| 亚洲欧美综合另类13p| 极品性荡少妇一区二区色欲| 天天日天天添天天爽| 夫妻在线观看视频91| 男人的网址你懂的亚洲欧洲av| 无套猛戳丰满少妇人妻| 青青青青操在线观看免费| 日本女大学生的黄色小视频| 色伦色伦777国产精品| 密臀av一区在线观看| 1024久久国产精品| 又粗又长 明星操逼小视频| 日本韩国在线观看一区二区| 日本人妻欲求不满中文字幕| 色伦色伦777国产精品| www日韩毛片av| 一区二区三区另类在线| 早川濑里奈av黑人番号| 91人妻精品久久久久久久网站| 免费黄页网站4188| 亚洲区美熟妇久久久久| 日日操综合成人av| 国产精品成人xxxx| 2021年国产精品自拍| 亚洲va天堂va国产va久| 成人国产小视频在线观看| 粉嫩av懂色av蜜臀av| av成人在线观看一区| 亚洲一级av无码一级久久精品| 欧美在线一二三视频| 日韩亚洲高清在线观看| 在线亚洲天堂色播av电影| 日本特级片中文字幕| av高潮迭起在线观看| 中文字幕,亚洲人妻| 国产欧美日韩在线观看不卡| 一区二区三区的久久的蜜桃的视频 | 国产精品视频资源在线播放| 免费成人va在线观看| 天天综合天天综合天天网| 100%美女蜜桃视频| 亚洲成人国产综合一区| 亚洲精品精品国产综合| 欧美特级特黄a大片免费| 欧美精品伦理三区四区| 国产精品亚洲在线观看| 一区二区三区另类在线 | 91国产在线视频免费观看| 偷青青国产精品青青在线观看| 日本丰满熟妇大屁股久久| 91精品免费久久久久久| 传媒在线播放国产精品一区| 亚洲精品麻豆免费在线观看| 成人网18免费视频版国产| 五月天久久激情视频| 经典国语激情内射视频| 日韩精品啪啪视频一道免费| 午夜福利资源综合激情午夜福利资 | 色综合久久无码中文字幕波多| 成年人黄色片免费网站| 97人人妻人人澡人人爽人人精品| 亚洲最大黄 嗯色 操 啊| 亚洲 色图 偷拍 欧美| 端庄人妻堕落挣扎沉沦| aaa久久久久久久久| 成人免费毛片aaaa| 精品欧美一区二区vr在线观看| 玖玖一区二区在线观看| 国产视频网站一区二区三区 | 白嫩白嫩美女极品国产在线观看| 国产精品一区二区三区蜜臀av| 91精品一区二区三区站长推荐| 亚洲 人妻 激情 中文| 久久精品亚洲成在人线a| 亚洲麻豆一区二区三区| 天天操天天爽天天干| 亚洲国产香蕉视频在线播放| www日韩毛片av| 在线国产中文字幕视频| 色花堂在线av中文字幕九九| 黑人进入丰满少妇视频| 日韩国产乱码中文字幕| 任你操视频免费在线观看| 五十路熟女av天堂| 超级av免费观看一区二区三区| 久久精品亚洲国产av香蕉| 国产在线自在拍91国语自产精品| 日日夜夜精品一二三| 老师啊太大了啊啊啊尻视频| 99久久成人日韩欧美精品| 青青青爽视频在线播放| 亚洲精品欧美日韩在线播放| 亚洲特黄aaaa片| 日本少妇在线视频大香蕉在线观看| 91久久精品色伊人6882| 在线观看的a站 最新| 中文字幕奴隷色的舞台50| 亚洲一区二区三区av网站| 亚洲av男人天堂久久| 一区二区三区精品日本| 欧美亚洲牲夜夜综合久久| 18禁美女黄网站色大片下载| 精品suv一区二区69| 1000小视频在线| a v欧美一区=区三区| 久久久久久性虐视频| 成年人啪啪视频在线观看| 国产视频在线视频播放| 色婷婷综合激情五月免费观看| 国产品国产三级国产普通话三级| 视频啪啪啪免费观看| 姐姐的朋友2在线观看中文字幕 | 国产三级片久久久久久久| 亚洲 人妻 激情 中文| 啊啊啊视频试看人妻| 日韩精品激情在线观看| 国产janese在线播放| 色综合久久无码中文字幕波多| 久久免费看少妇高潮完整版| 97瑟瑟超碰在线香蕉| 国产精品视频男人的天堂| 五十路熟女av天堂| 欧美精产国品一二三产品区别大吗| 成人av在线资源网站| 九色精品视频在线播放| 黄片三级三级三级在线观看| 老司机在线精品福利视频| 夜女神免费福利视频| 亚洲高清一区二区三区视频在线| 一级a看免费观看网站| 午夜精品福利91av| 日韩成人性色生活片| 日本最新一二三区不卡在线| 成人高清在线观看视频| 国产精品国产三级麻豆| 免费无毒热热热热热热久| 五十路老熟女码av| 日本少妇高清视频xxxxx| 在线观看视频污一区| 精品一区二区三四区| 亚洲欧美激情国产综合久久久| 黄色片黄色片wyaa| 午夜久久久久久久99| 天天操天天干天天插| 自拍 日韩 欧美激情| 成人久久精品一区二区三区| 大尺度激情四射网站| 国产一区二区在线欧美| 中文字幕日韩人妻在线三区| 日韩特级黄片高清在线看| 在线观看国产网站资源| 亚洲超碰97人人做人人爱| 99国内小视频在现欢看| 日本精品美女在线观看| 欧美va亚洲va天堂va| 久久丁香婷婷六月天| 一区二区三区毛片国产一区| 动漫精品视频在线观看| 国产美女午夜福利久久| 欧美日韩在线精品一区二区三| 人人妻人人爽人人澡人人精品| 日韩二区视频一线天婷婷五| 亚洲欧美福利在线观看| 男人的网址你懂的亚洲欧洲av| 97国产福利小视频合集| 91超碰青青中文字幕| 久久综合老鸭窝色综合久久| www天堂在线久久| 亚洲超碰97人人做人人爱| 污污小视频91在线观看| 水蜜桃国产一区二区三区| 好太好爽好想要免费| 亚洲精品 日韩电影| 2018最新中文字幕在线观看| 宅男噜噜噜666免费观看| 一级黄片久久久久久久久| 欧美aa一级一区三区四区 | 91国内精品自线在拍白富美| 日本熟妇一区二区x x| 亚洲精品在线资源站| 日本免费午夜视频网站| mm131美女午夜爽爽爽| weyvv5国产成人精品的视频| 欧美在线精品一区二区三区视频| 年轻的人妻被夫上司侵犯| 99re6热在线精品| 久久久久久久一区二区三 | 国产日韩一区二区在线看| 国产妇女自拍区在线观看| 欧美aa一级一区三区四区| 97少妇精品在线观看| 国产变态另类在线观看| 久久农村老妇乱69系列| 日本成人不卡一区二区| 抽查舔水白紧大视频| 中国黄色av一级片| 一级黄片大鸡巴插入美女| 91综合久久亚洲综合| 精品国产在线手机在线| 国产之丝袜脚在线一区二区三区| 国产一区二区久久久裸臀| 一区二区三区久久久91| 亚洲成人三级在线播放| 中文字幕之无码色多多| 日本av熟女在线视频| 亚洲综合另类欧美久久| 日韩不卡中文在线视频网站| 亚洲午夜电影在线观看| 日本精品一区二区三区在线视频。| 亚国产成人精品久久久| 国产乱子伦一二三区| 国产精品成久久久久三级蜜臀av | 人妻少妇中文有码精品| 国产综合视频在线看片| 国产精品国产三级麻豆| 国产老熟女伦老熟妇ⅹ| 午夜精品久久久久久99热| 日本熟妇色熟妇在线观看| 国产普通话插插视频| 9久在线视频只有精品| 首之国产AV医生和护士小芳| 亚洲va欧美va人人爽3p| 欧美特色aaa大片| 久久综合老鸭窝色综合久久| 天天干天天搞天天摸| 亚洲成人黄色一区二区三区| 91精品资源免费观看| 亚洲综合另类精品小说| 大陆胖女人与丈夫操b国语高清| 91精品视频在线观看免费| 在线观看日韩激情视频| 香港三日本三韩国三欧美三级| 日韩中文字幕在线播放第二页| 亚洲成人三级在线播放| 免费一级黄色av网站| 国产av国片精品一区二区| 9l人妻人人爽人人爽| 天天操夜夜操天天操天天操| 男人的天堂av日韩亚洲| 九九热99视频在线观看97| 男生舔女生逼逼视频| av中文字幕国产在线观看| 晚上一个人看操B片| 极品丝袜一区二区三区| 欧美麻豆av在线播放| 午夜成午夜成年片在线观看| 中文字幕人妻av在线观看| 91免费观看国产免费| 丝袜肉丝一区二区三区四区在线| 精品国产成人亚洲午夜| 亚洲天堂有码中文字幕视频| 亚洲av成人网在线观看| 激情图片日韩欧美人妻| 亚洲va国产va欧美精品88| 久久久久久国产精品| 国产麻豆国语对白露脸剧情| 特一级特级黄色网片| 蝴蝶伊人久久中文娱乐网| 超鹏97历史在线观看| 青青青艹视频在线观看| 姐姐的朋友2在线观看中文字幕 | 久草视频在线看免费| 日本中文字幕一二区视频| 久久精品久久精品亚洲人| 日比视频老公慢点好舒服啊| 亚洲激情唯美亚洲激情图片| 国产污污污污网站在线| huangse网站在线观看| 欧美久久久久久三级网| 不卡一区一区三区在线| 人妻激情图片视频小说| 亚洲熟妇久久无码精品| 在线播放国产黄色av| 青青青青操在线观看免费| okirakuhuhu在线观看| 免费一级黄色av网站| 亚洲欧美日韩视频免费观看| 国产日韩精品免费在线| 亚洲成高清a人片在线观看| 日本脱亚入欧是指什么| 欧美女同性恋免费a| 40道精品招牌菜特色| 久久精品久久精品亚洲人| 国产成人小视频在线观看无遮挡| 亚洲av日韩精品久久久| 在线国产日韩欧美视频| 国产日韩av一区二区在线| 最新日韩av传媒在线| 免费成人va在线观看| 亚洲综合在线视频可播放| 最后99天全集在线观看| 欧美激情电影免费在线| 日本午夜福利免费视频| 快插进小逼里大鸡吧视频| 91在线免费观看成人| 一区二区熟女人妻视频| 亚洲中文字幕综合小综合| 国产精品中文av在线播放| 国产美女一区在线观看| 欧美一级色视频美日韩| 五十路人妻熟女av一区二区| 无忧传媒在线观看视频| 国产精品熟女久久久久浪潮| tube69日本少妇| 天天日天天透天天操| 青青青青青操视频在线观看| 欧美美女人体视频一区| 中文字幕高清在线免费播放| 18禁免费av网站| 国产麻豆剧传媒精品国产av蜜桃| 人妻自拍视频中国大陆| 国产内射中出在线观看| 美女在线观看日本亚洲一区| 国产91嫩草久久成人在线视频| brazzers欧熟精品系列| 色吉吉影音天天干天天操| 国产一区二区三免费视频| 免费费一级特黄真人片| 欧洲国产成人精品91铁牛tv| 亚洲av午夜免费观看| 11久久久久久久久久久| 最近的中文字幕在线mv视频| av日韩在线免费播放| 中文字幕无码日韩专区免费| 五十路人妻熟女av一区二区| 成人激情文学网人妻| 亚洲综合另类精品小说| 大白屁股精品视频国产| 亚洲欧美综合另类13p| 欲乱人妻少妇在线视频裸| 亚洲最大黄 嗯色 操 啊| 国产亚洲四十路五十路| 欧美日韩国产一区二区三区三州| 中文字幕日韩精品日本| 中文字幕欧美日韩射射一| 视频一区二区三区高清在线| 中文字幕一区二区三区蜜月| 国产janese在线播放| 99精品亚洲av无码国产另类| 女生自摸在线观看一区二区三区 | 91精品国产黑色丝袜| 换爱交换乱高清大片| 欧美精产国品一二三产品区别大吗| 亚洲av天堂在线播放| 人妻少妇中文有码精品| 欧美日韩精品永久免费网址| 国产精品成久久久久三级蜜臀av| 亚洲精品福利网站图片| 日韩精品二区一区久久| 国产欧美精品不卡在线| 午夜精品一区二区三区更新| huangse网站在线观看| 日本阿v视频在线免费观看| 亚洲av自拍天堂网| 一区二区三区四区中文| 成人24小时免费视频| 亚洲av人人澡人人爽人人爱| 久久久久久性虐视频| 国产福利小视频大全| 粉嫩小穴流水视频在线观看| 极品粉嫩小泬白浆20p主播| 在线免费91激情四射 | 18禁美女无遮挡免费| 亚洲av色图18p| av完全免费在线观看av| 超级福利视频在线观看| 亚洲一区二区三区久久午夜| 嫩草aⅴ一区二区三区| 十八禁在线观看地址免费| 精品久久久久久久久久久a√国产 日本女大学生的黄色小视频 | 超碰中文字幕免费观看| 亚洲国产免费av一区二区三区| 国产熟妇人妻ⅹxxxx麻豆| 91av精品视频在线| 成人午夜电影在线观看 久久| 天天爽夜夜爽人人爽QC| 激情五月婷婷综合色啪| yellow在线播放av啊啊啊| 亚洲区美熟妇久久久久| 人妻丝袜榨强中文字幕| 一区二区在线观看少妇| 一区二区在线视频中文字幕| av在线免费资源站| 亚洲av日韩精品久久久| 97少妇精品在线观看| 亚洲公开视频在线观看| 亚洲精品精品国产综合| 91精品国产高清自在线看香蕉网| 蝴蝶伊人久久中文娱乐网| 欧美美女人体视频一区| 91人妻精品一区二区久久| 91一区精品在线观看| 日本少妇人妻xxxxx18| 免费在线看的黄网站| 天天日天天舔天天射进去| 亚洲卡1卡2卡三卡四老狼| 国产乱子伦一二三区| 久久久久只精品国产三级| 一区二区三区av高清免费| 91精品综合久久久久3d动漫| 亚洲精品av在线观看| 亚洲一区久久免费视频| xxx日本hd高清| 中文字幕在线观看国产片| 亚洲 清纯 国产com| 热久久只有这里有精品| 一区二区三区在线视频福利| 午夜在线观看一区视频| 骚逼被大屌狂草视频免费看| 久久精品亚洲国产av香蕉| 熟女人妻在线中出观看完整版| 国产白袜脚足J棉袜在线观看| 九九热99视频在线观看97| 成人av在线资源网站| 抽查舔水白紧大视频| 天天干天天爱天天色| 国产精品一区二区三区蜜臀av| 国产va在线观看精品| 男人操女人逼逼视频网站| 夫妻在线观看视频91| 伊人综合aⅴ在线网| 不卡一不卡二不卡三| 中文字幕+中文字幕| 亚洲Av无码国产综合色区| 亚洲免费在线视频网站| 国产精品污污污久久| 日韩欧美在线观看不卡一区二区| 99热99这里精品6国产| 2022国产综合在线干| free性日本少妇| 欧美在线精品一区二区三区视频| 97人人模人人爽人人喊| 全国亚洲男人的天堂| 欧美va不卡视频在线观看| 亚洲另类图片蜜臀av| 亚洲精品无码久久久久不卡| 在线免费观看亚洲精品电影| 夏目彩春在线中文字幕| 午夜91一区二区三区| 大陆胖女人与丈夫操b国语高清| 亚洲男人在线天堂网| 人妻久久久精品69系列| 日本少妇精品免费视频| 激情内射在线免费观看| 日本阿v视频在线免费观看| 男生舔女生逼逼视频| 亚洲国产精品免费在线观看| 91精品视频在线观看免费| 亚洲激情av一区二区| 亚洲免费va在线播放| 久久精品国产23696| 果冻传媒av一区二区三区| 熟女少妇激情五十路| 大香蕉玖玖一区2区| 日本五十路熟新垣里子| 亚洲高清自偷揄拍自拍| 欧美成人综合视频一区二区 | 夫妻在线观看视频91| 午夜国产福利在线观看| 丰满少妇人妻xxxxx| 日本人妻欲求不满中文字幕| 中文字幕av熟女人妻| 免费国产性生活视频| 一个人免费在线观看ww视频| 久久久91蜜桃精品ad| 2017亚洲男人天堂| 天天躁日日躁狠狠躁躁欧美av| 亚洲免费在线视频网站| 免费成人va在线观看| 91极品大一女神正在播放| 国产精品久久久久久久久福交| 韩国三级aaaaa高清视频| 午夜在线精品偷拍一区二| 人妻久久久精品69系列| 狠狠躁夜夜躁人人爽天天天天97 | 日本av熟女在线视频| 亚洲图片欧美校园春色| 38av一区二区三区| 亚洲综合图片20p| 成人亚洲精品国产精品| 欧美伊人久久大香线蕉综合| 啪啪啪啪啪啪啪啪啪啪黄色| 亚洲综合乱码一区二区| 99精品免费久久久久久久久a| 欧美黄片精彩在线免费观看 | 成人av电影免费版| 操日韩美女视频在线免费看 | 摧残蹂躏av一二三区| 亚洲av自拍天堂网| 在线免费观看视频一二区| 亚洲天堂av最新网址| 伊人开心婷婷国产av| 欧美亚洲少妇福利视频| av网址在线播放大全| 在线视频免费观看网| 成年人该看的视频黄免费| 国产午夜亚洲精品不卡在线观看| 天堂av在线最新版在线| 中文字幕中文字幕 亚洲国产| 日本脱亚入欧是指什么| 一区二区视频在线观看免费观看| 天天日天天日天天擦| 涩涩的视频在线观看视频| 97欧洲一区二区精品免费| 97成人免费在线观看网站| 91国内视频在线观看| 国内资源最丰富的网站| 女警官打开双腿沦为性奴| 欧美国产亚洲中英文字幕| 超级av免费观看一区二区三区| 加勒比视频在线免费观看| 特大黑人巨大xxxx| 视频二区在线视频观看| 亚洲精品亚洲人成在线导航| 国产综合高清在线观看| 青青青青青免费视频| 国际av大片在线免费观看| 啪啪啪操人视频在线播放| 中文字幕在线一区精品| 午夜在线一区二区免费| 大香蕉伊人中文字幕| 超污视频在线观看污污污 | www日韩毛片av| 伊人日日日草夜夜草| sw137 中文字幕 在线| 久碰精品少妇中文字幕av| 国产亚洲视频在线观看| 国产亚洲欧美视频网站| 亚洲欧美激情中文字幕| 日美女屁股黄邑视频| 成人av亚洲一区二区| 国产精品自拍偷拍a| 国产精品久久久久久久久福交| 国产精品欧美日韩区二区| 男人的天堂一区二区在线观看| 日本www中文字幕| 青青青国产片免费观看视频| 在线网站你懂得老司机| 国产精品黄色的av| 91av精品视频在线| 久精品人妻一区二区三区| 中字幕人妻熟女人妻a62v网 | 精品人妻一二三区久久| 久久免看30视频口爆视频| 在线国产精品一区二区三区| 国产内射中出在线观看| 久精品人妻一区二区三区| 成人18禁网站在线播放| 啊用力插好舒服视频| wwwxxx一级黄色片| 青青青国产片免费观看视频| 毛茸茸的大外阴中国视频| 人妻最新视频在线免费观看| 国产精品久久久久网| 国产91精品拍在线观看| 五月精品丁香久久久久福利社| 亚洲第17页国产精品| 麻豆性色视频在线观看| huangse网站在线观看| 亚洲蜜臀av一区二区三区九色 | 经典亚洲伊人第一页| 亚洲青青操骚货在线视频| 在线观看免费视频色97| 欧美性感尤物人妻在线免费看 | 日辽宁老肥女在线观看视频| 加勒比视频在线免费观看| 五十路av熟女松本翔子| 中字幕人妻熟女人妻a62v网 | 女同互舔一区二区三区| 中文字幕 亚洲av| 亚洲熟妇无码一区二区三区| 干逼又爽又黄又免费的视频| 顶级尤物粉嫩小尤物网站| 午夜蜜桃一区二区三区| 午夜激情精品福利视频| 一区二区视频在线观看视频在线| 青青尤物在线观看视频网站| 粉嫩av懂色av蜜臀av| 中文字幕日韩精品日本| 亚洲va国产va欧美va在线| 一区二区三区四区中文| 久久综合老鸭窝色综合久久| 91‖亚洲‖国产熟女| 日日夜夜狠狠干视频| 97精品视频在线观看| 国产亚洲国产av网站在线| 欧美成人综合色在线噜噜| 黄工厂精品视频在线观看| 亚洲午夜在线视频福利| 日韩a级精品一区二区| 日韩av有码中文字幕| 少妇人妻久久久久视频黄片| 国产janese在线播放| 亚洲视频在线视频看视频在线| 大屁股熟女一区二区三区| 欧美一区二区三区在线资源 | 久久精品国产999| 91国产资源在线视频| 国产视频精品资源网站| 伊人网中文字幕在线视频| 深田咏美亚洲一区二区| 国产精品久久久久久久女人18| 五月精品丁香久久久久福利社| 骚货自慰被发现爆操| 晚上一个人看操B片| av乱码一区二区三区| 女生被男生插的视频网站| 91精品资源免费观看| 国产丰满熟女成人视频| 日韩三级黄色片网站| 春色激情网欧美成人| 国产免费av一区二区凹凸四季| 久精品人妻一区二区三区 | 一区二区在线视频中文字幕| 午夜av一区二区三区| 欧美日本在线视频一区| 六月婷婷激情一区二区三区| 第一福利视频在线观看| 在线观看黄色成年人网站| 日本黄在免费看视频| 天天干天天爱天天色| 狠狠鲁狠狠操天天晚上干干| 国产伦精品一区二区三区竹菊| 亚洲成人情色电影在线观看| 激情色图一区二区三区| 黄工厂精品视频在线观看| 日本人妻少妇18—xx| 色天天天天射天天舔| 自拍偷拍一区二区三区图片| 91av中文视频在线| 亚洲综合一区成人在线| 熟女国产一区亚洲中文字幕| 硬鸡巴动态操女人逼视频| 黄色男人的天堂视频| 中文字幕在线乱码一区二区| 91色网站免费在线观看| 中文字幕亚洲久久久| 十八禁在线观看地址免费| 午夜毛片不卡免费观看视频| 538精品在线观看视频| 国产一区成人在线观看视频 | 成年午夜影片国产片| 中文字幕在线欧美精品| 丝袜国产专区在线观看| 丰满少妇人妻xxxxx| 97人人妻人人澡人人爽人人精品| 亚洲第一伊人天堂网| 同居了嫂子在线播高清中文| 亚洲国产精品免费在线观看| 国产午夜无码福利在线看| 国产日韩一区二区在线看 | 亚洲一级av无码一级久久精品| 精品久久久久久久久久久a√国产| 日韩av熟妇在线观看| 青青青青草手机在线视频免费看| 欧美黑人性猛交xxxxⅹooo| 日本性感美女三级视频| 高清一区二区欧美系列| 亚洲青青操骚货在线视频| 中文字幕日本人妻中出| 视频 一区二区在线观看| 日本三极片视频网站观看| wwwxxx一级黄色片| 午夜国产福利在线观看| 蜜臀av久久久久久久| 久久久久久久一区二区三| 日本高清成人一区二区三区| 国产精品3p和黑人大战| 日韩av免费观看一区| 人妻少妇精品久久久久久| 特级无码毛片免费视频播放| 又粗又长 明星操逼小视频 | 熟女俱乐部一二三区| 9l人妻人人爽人人爽| 一区二区在线视频中文字幕| 国产视频一区二区午夜| 中文字幕亚洲久久久| 天天摸天天日天天操| 自拍偷拍日韩欧美亚洲| 亚欧在线视频你懂的| 黄色男人的天堂视频| 97瑟瑟超碰在线香蕉| 亚洲va国产va欧美va在线| 日韩av有码中文字幕| 亚洲欧美日韩视频免费观看| 日韩在线视频观看有码在线| 偷拍自拍国产在线视频| 国产精品精品精品999| 极品性荡少妇一区二区色欲| 亚洲专区激情在线观看视频| 日韩美av高清在线| 99热这里只有国产精品6| 77久久久久国产精产品| 午夜毛片不卡免费观看视频| 粗大的内捧猛烈进出爽大牛汉子| 综合国产成人在线观看| 自拍偷拍亚洲欧美在线视频| 午夜激情久久不卡一区二区| 大香蕉福利在线观看| 中文字幕免费福利视频6| 班长撕开乳罩揉我胸好爽| 亚洲天堂精品久久久| 亚洲欧美综合另类13p| 动漫美女的小穴视频| 春色激情网欧美成人| 五月色婷婷综合开心网4438| 精品人妻一二三区久久| 中文字幕日本人妻中出| 色伦色伦777国产精品| 国产成人午夜精品福利| 亚洲精品国品乱码久久久久| 国产三级影院在线观看| 精品国产成人亚洲午夜| 国产福利小视频免费观看| 最新的中文字幕 亚洲| 国产欧美精品不卡在线| 免费黄高清无码国产| 欧美一级片免费在线成人观看| 久草极品美女视频在线观看| 97超碰最新免费在线观看| 日本熟女50视频免费| 女警官打开双腿沦为性奴| 欧洲欧美日韩国产在线| brazzers欧熟精品系列| xxx日本hd高清| 亚洲男人的天堂a在线| 久久这里只有精彩视频免费| 国产精品女邻居小骚货| 亚洲av无乱一区二区三区性色| 五月精品丁香久久久久福利社| av成人在线观看一区| 国产高清精品一区二区三区| 国产亚洲四十路五十路| 少妇系列一区二区三区视频| 亚洲中文字幕校园春色| 2022中文字幕在线| 中文字幕亚洲久久久| 黑人3p华裔熟女普通话| 毛片一级完整版免费| 欧美亚洲国产成人免费在线 | 99久久99一区二区三区| 中文字幕日本人妻中出| 大香蕉日本伊人中文在线| 日本免费午夜视频网站| 91‖亚洲‖国产熟女| 国产精品自偷自拍啪啪啪| 亚洲欧美自拍另类图片| 久久美欧人妻少妇一区二区三区| 大陆胖女人与丈夫操b国语高清| 自拍偷拍亚洲另类色图| 大香蕉伊人中文字幕| 这里有精品成人国产99| 亚洲成高清a人片在线观看| 日本av高清免费网站| 亚洲天堂成人在线观看视频网站| 久久免费看少妇高潮完整版| 亚洲成人激情视频免费观看了| 亚洲欧美国产麻豆综合| 亚洲精品成人网久久久久久小说| 亚洲美女美妇久久字幕组| 一个人免费在线观看ww视频| 亚洲国产精品免费在线观看| 巨乳人妻日下部加奈被邻居中出 | 国产精品大陆在线2019不卡| 青青擦在线视频国产在线| 97国产在线观看高清| 成人综合亚洲欧美一区 | 久久久久久久亚洲午夜综合福利| 日本午夜爽爽爽爽爽视频在线观看| 97色视频在线观看| 真实国模和老外性视频| 黑人3p华裔熟女普通话| www,久久久,com| 国产精彩对白一区二区三区| 国产性感美女福利视频| 日本少妇高清视频xxxxx| 久久久久久久亚洲午夜综合福利| 国产美女午夜福利久久| 大胸性感美女羞爽操逼毛片| 亚洲国产精品黑丝美女| 日韩熟女av天堂系列| 精品人人人妻人人玩日产欧| 免费看国产av网站| 天天通天天透天天插| 亚洲国产精品免费在线观看| 护士特殊服务久久久久久久| 日本少妇在线视频大香蕉在线观看 | 日本精品视频不卡一二三| 自拍 日韩 欧美激情| 男人靠女人的逼视频| 天天综合天天综合天天网| 少妇系列一区二区三区视频| 亚洲成人午夜电影在线观看 | 国产女孩喷水在线观看| 美女被肏内射视频网站| 北条麻妃高跟丝袜啪啪| 91试看福利一分钟| 欧美区一区二区三视频| 最新国产亚洲精品中文在线| 午夜青青草原网在线观看| 五十路熟女人妻一区二区9933| 黄片三级三级三级在线观看| 91超碰青青中文字幕| 91亚洲精品干熟女蜜桃频道| 欧美亚洲少妇福利视频| 亚洲综合图片20p| 五月精品丁香久久久久福利社| 国产伦精品一区二区三区竹菊| 久草电影免费在线观看| 美女福利视频网址导航| 亚洲午夜伦理视频在线 | 国产使劲操在线播放| 喷水视频在线观看这里只有精品 | 2018在线福利视频| 精品美女福利在线观看| 亚洲粉嫩av一区二区三区| 国产午夜亚洲精品不卡在线观看| 成年人午夜黄片视频资源| 日本一区二区三区免费小视频| 亚洲粉嫩av一区二区三区| 天天爽夜夜爽人人爽QC| 手机看片福利盒子日韩在线播放| 又色又爽又黄又刺激av网站| sspd152中文字幕在线| av高潮迭起在线观看| 一二三中文乱码亚洲乱码one| 大黑人性xxxxbbbb| 91久久国产成人免费网站| 91中文字幕最新合集| 日本成人一区二区不卡免费在线| 免费高清自慰一区二区三区网站| 日本黄色特一级视频| 日本高清撒尿pissing| 午夜激情高清在线观看| 激情国产小视频在线| 91人妻人人做人人爽在线| 和邻居少妇愉情中文字幕| av天堂资源最新版在线看| 精品久久久久久久久久久a√国产| 一区二区在线视频中文字幕| 亚洲综合在线视频可播放| 亚洲成人av一区在线| 久久久久久9999久久久久| 精品人妻每日一部精品| 免费观看成年人视频在线观看| 色综合色综合色综合色| 中文字幕免费福利视频6| aⅴ精产国品一二三产品| 成年人啪啪视频在线观看| 天天色天天操天天透| 亚洲成人国产综合一区| 中文字幕人妻三级在线观看| 99热99这里精品6国产| 天天操天天操天天碰| 77久久久久国产精产品| 黄色三级网站免费下载| 天天干狠狠干天天操| 亚洲一区二区三区偷拍女厕91| 18禁污污污app下载| 首之国产AV医生和护士小芳| 国产成人无码精品久久久电影| 亚洲欧美综合另类13p| 午夜大尺度无码福利视频| 18禁网站一区二区三区四区| 亚洲精品ww久久久久久| 综合国产成人在线观看| 亚洲欧美福利在线观看| 内射久久久久综合网| 精品视频一区二区三区四区五区| 中文字幕一区二 区二三区四区| 少妇人妻100系列| 欧美精品 日韩国产| 青青伊人一精品视频| 色综合久久久久久久久中文| 日本一区美女福利视频| 久久免看30视频口爆视频| 中文 成人 在线 视频| 懂色av之国产精品| 国产极品美女久久久久久| 丝袜美腿欧美另类 中文字幕| 午夜福利人人妻人人澡人人爽 | 亚洲成人午夜电影在线观看| 男生舔女生逼逼视频| 亚洲区美熟妇久久久久| 国产精品视频男人的天堂| 日本人妻精品久久久久久| 欧美另类z0z变态| 大屁股熟女一区二区三区| 精品人妻一二三区久久| 亚洲国产成人最新资源| 亚洲av极品精品在线观看| 天天摸天天亲天天舔天天操天天爽| 超碰在线观看免费在线观看| 亚洲国产精品美女在线观看| 哥哥姐姐综合激情小说| 精品av国产一区二区三区四区| 天天操天天爽天天干| 后入美女人妻高清在线| 午夜影院在线观看视频羞羞羞| 午夜大尺度无码福利视频| 免费av岛国天堂网站| 日本特级片中文字幕| 老鸭窝在线观看一区| 福利视频广场一区二区| 日韩精品电影亚洲一区| 亚洲 图片 欧美 图片| 日本韩国在线观看一区二区| 日本av高清免费网站| 极品丝袜一区二区三区| 大胸性感美女羞爽操逼毛片| 亚洲成人情色电影在线观看| 一区二区三区毛片国产一区| 一区二区麻豆传媒黄片| 国产又色又刺激在线视频| 果冻传媒av一区二区三区| 国产黄色大片在线免费播放| 日韩近亲视频在线观看| 亚洲偷自拍高清视频| 国产麻豆精品人妻av| 在线制服丝袜中文字幕| 99热碰碰热精品a中文| 日韩不卡中文在线视频网站| 青青色国产视频在线| 在线观看视频污一区| 久久久久国产成人精品亚洲午夜| 美女福利视频网址导航| 少妇一区二区三区久久久| 日日夜夜精品一二三| 国产精品国色综合久久 | 欧美香蕉人妻精品一区二区| 在线 中文字幕 一区| 久久久超爽一二三av| 日曰摸日日碰夜夜爽歪歪| 免费大片在线观看视频网站| 91精品国产麻豆国产| 欧美特色aaa大片| 亚洲综合另类精品小说| 日韩精品中文字幕在线| 国产一线二线三线的区别在哪 | 换爱交换乱高清大片| 极品粉嫩小泬白浆20p主播| 亚洲一区二区人妻av| 国产1区,2区,3区| 亚洲av极品精品在线观看| 亚洲中文精品人人免费| 最近中文字幕国产在线| 天天操,天天干,天天射| 都市激情校园春色狠狠| 老司机福利精品免费视频一区二区| 骚货自慰被发现爆操| 亚洲成人av一区在线| 久碰精品少妇中文字幕av| 亚洲1卡2卡三卡4卡在线观看| 欧美日韩中文字幕欧美| 日韩av中文在线免费观看| 天天夜天天日天天日| nagger可以指黑人吗| 超级福利视频在线观看| 免费男阳茎伸入女阳道视频 | 天天日天天日天天擦| 亚洲欧美激情国产综合久久久 | 欧美黑人性猛交xxxxⅹooo| 国产亚洲四十路五十路| 日本韩国免费一区二区三区视频| 午夜毛片不卡在线看| 最近中文字幕国产在线| 亚洲中文字幕校园春色| 中文字幕无码一区二区免费| av乱码一区二区三区| 成人综合亚洲欧美一区| 亚洲人妻av毛片在线| 日视频免费在线观看| 91麻豆精品传媒国产黄色片| 91麻豆精品久久久久| 韩国三级aaaaa高清视频| 在线亚洲天堂色播av电影| 欧美男人大鸡吧插女人视频| 美女 午夜 在线视频| 性色av一区二区三区久久久| 国产精品一二三不卡带免费视频| 中国把吊插入阴蒂的视频| 男人的天堂av日韩亚洲| 亚洲嫩模一区二区三区| av一本二本在线观看| 果冻传媒av一区二区三区| 经典国语激情内射视频| 免费男阳茎伸入女阳道视频| 国产成人小视频在线观看无遮挡| 精品视频一区二区三区四区五区| 直接能看的国产av| 视频一区 二区 三区 综合| 岛国黄色大片在线观看| 午夜精品福利91av| 国产片免费观看在线观看| 中文字幕奴隷色的舞台50| 久久久超爽一二三av| 成人综合亚洲欧美一区| 欧美成人猛片aaaaaaa| 在线国产中文字幕视频| 国产成人综合一区2区| 大骚逼91抽插出水视频| 无码国产精品一区二区高潮久久4| 亚洲国产精品黑丝美女| 深夜男人福利在线观看| 鸡巴操逼一级黄色气| 国产熟妇一区二区三区av| 亚洲国产在人线放午夜| 国产午夜男女爽爽爽爽爽视频| 男人天堂色男人av| 中文字幕人妻av在线观看| 国产密臀av一区二区三| 亚洲精品无码久久久久不卡| 日韩a级黄色小视频| 亚洲一区二区三区久久午夜| 亚洲欧美一区二区三区爱爱动图| 18禁美女无遮挡免费| 黄色大片免费观看网站| 欲满人妻中文字幕在线| avjpm亚洲伊人久久| 日视频免费在线观看| 水蜜桃一区二区三区在线观看视频| 97资源人妻免费在线视频| 免费69视频在线看| 久久精品亚洲国产av香蕉| 国产又大又黄免费观看| 亚洲激情唯美亚洲激情图片| 欧美精品中文字幕久久二区| 天天操天天干天天艹| 91极品新人『兔兔』精品新作| 蜜桃臀av蜜桃臀av| 97人人模人人爽人人喊| 丝袜肉丝一区二区三区四区在线| 中国视频一区二区三区| 岛国黄色大片在线观看| 五色婷婷综合狠狠爱| 久久99久久99精品影院| 日韩精品中文字幕播放| 亚洲综合一区成人在线| 激情人妻校园春色亚洲欧美| 大香蕉福利在线观看| 国产在线一区二区三区麻酥酥| 亚洲图片欧美校园春色| 日本午夜久久女同精女女| 午夜dv内射一区区| 亚洲高清自偷揄拍自拍| 天天日夜夜操天天摸| 亚洲精品一区二区三区老狼| 国产精品自拍在线视频| 亚洲中文字幕国产日韩| 青青青青青手机视频| 日韩成人免费电影二区| 成人福利视频免费在线| 亚洲伊人久久精品影院一美女洗澡 | 大鸡巴操b视频在线| 动漫av网站18禁| 欧亚日韩一区二区三区观看视频| 国产激情av网站在线观看| 亚洲精品午夜久久久久| okirakuhuhu在线观看| 国产欧美精品不卡在线| 99久久超碰人妻国产| 久久www免费人成一看片| 日韩中文字幕在线播放第二页| 午夜在线观看岛国av,com| 视频久久久久久久人妻| 亚洲欧美综合另类13p| 亚洲 中文字幕在线 日韩| 在线免费91激情四射| 欧美成人一二三在线网| 天天操天天干天天插| 一色桃子久久精品亚洲 | 精品久久久久久久久久久久人妻 | 色婷婷综合激情五月免费观看| 中文字幕人妻三级在线观看| 在线观看免费av网址大全| 精彩视频99免费在线| 亚洲成人av在线一区二区| 欧美日本aⅴ免费视频| 国产一区二区神马久久| 精品av国产一区二区三区四区| 国产精选一区在线播放| 九一传媒制片厂视频在线免费观看| 香蕉av影视在线观看| 又色又爽又黄的美女裸体| 成年午夜影片国产片| 福利午夜视频在线合集| 玖玖一区二区在线观看| 性色蜜臀av一区二区三区| 成人18禁网站在线播放| 狠狠鲁狠狠操天天晚上干干| 亚洲欧美国产综合777| sejizz在线视频| 精品av久久久久久久| 亚洲视频在线观看高清| 天堂av在线最新版在线| 亚洲成人线上免费视频观看| 精品人妻一二三区久久| 小穴多水久久精品免费看| tube69日本少妇| 日本美女成人在线视频| 亚洲精品乱码久久久本| 一区二区视频在线观看视频在线 | 偷拍自拍国产在线视频| 北条麻妃高跟丝袜啪啪| 亚洲综合乱码一区二区| 丰满的继坶3中文在线观看| 99热碰碰热精品a中文| 午夜福利资源综合激情午夜福利资 | 国产九色91在线视频| 黑人巨大精品欧美视频| 少妇深喉口爆吞精韩国| 免费高清自慰一区二区三区网站| 欧美亚洲牲夜夜综合久久| 3337p日本欧洲大胆色噜噜| 成人av免费不卡在线观看| 激情啪啪啪啪一区二区三区| 日本裸体熟妇区二区欧美| 国产午夜激情福利小视频在线| 色综合天天综合网国产成人| 日本欧美视频在线观看三区| 55夜色66夜色国产精品站| 啪啪啪18禁一区二区三区 | 亚洲熟女综合色一区二区三区四区| 日本韩国免费一区二区三区视频| 曰本无码人妻丰满熟妇啪啪| 国产午夜亚洲精品麻豆| 久草视频首页在线观看| 中文字幕综合一区二区| 午夜影院在线观看视频羞羞羞| huangse网站在线观看| 欧美黑人性猛交xxxxⅹooo| 国产精品国产三级麻豆| 久久99久久99精品影院| 97资源人妻免费在线视频| 阿v天堂2014 一区亚洲| 摧残蹂躏av一二三区| 成人18禁网站在线播放| 国产又粗又猛又爽又黄的视频在线 | 97超碰国语国产97超碰| 97超碰最新免费在线观看| 日本熟女50视频免费| 亚洲高清自偷揄拍自拍| 人妻丝袜精品中文字幕| 91精品国产91久久自产久强| 午夜精彩视频免费一区| 成人精品在线观看视频| 五月天久久激情视频| 成人30分钟免费视频| 亚洲伊人色一综合网| 黄色在线观看免费观看在线| 亚洲 中文 自拍 另类 欧美| 香蕉片在线观看av| 亚洲第一黄色在线观看| 日韩欧美一级aa大片| 男人的网址你懂的亚洲欧洲av| yy96视频在线观看| 亚洲精品福利网站图片| 精品国产在线手机在线| 日韩a级黄色小视频| 夜色福利视频在线观看| 亚洲另类综合一区小说| 人妻爱爱 中文字幕| japanese五十路熟女熟妇| 99精品视频在线观看免费播放| 国产乱子伦一二三区| 亚洲高清国产拍青青草原| 日本成人不卡一区二区| 国产日本精品久久久久久久| 老师让我插进去69AV| 久久永久免费精品人妻专区| 亚洲图片欧美校园春色| 亚洲高清国产拍青青草原| 91大神福利视频网| 99亚洲美女一区二区三区| 日韩人妻丝袜中文字幕| 91成人在线观看免费视频| 93精品视频在线观看| 2021久久免费视频| 99av国产精品欲麻豆| 中文字幕一区二区三区蜜月 | 99精品久久久久久久91蜜桃| 特级无码毛片免费视频播放| 亚洲精品乱码久久久久久密桃明 | 亚洲天堂有码中文字幕视频| 91精品视频在线观看免费| 天天想要天天操天天干| 午夜大尺度无码福利视频| 国产精彩对白一区二区三区| 黄色成人在线中文字幕| 午夜激情高清在线观看| 午夜频道成人在线91| yellow在线播放av啊啊啊| jiuse91九色视频| 精品一区二区三区三区色爱| 欧美亚洲偷拍自拍色图| 欧美成人精品欧美一级黄色| 美女少妇亚洲精选av| 国产精品中文av在线播放| 久久久久久99国产精品| 天天摸天天日天天操| 中文亚洲欧美日韩无线码| 亚洲欧美一卡二卡三卡| 国产成人精品福利短视频| 亚洲av黄色在线网站| 93精品视频在线观看| 久久久久五月天丁香社区| www日韩毛片av| 97国产在线观看高清| 亚洲av日韩高清hd| 久久久精品精品视频视频| 国产一区成人在线观看视频| 福利视频网久久91| 亚洲精品国产综合久久久久久久久| 国产日韩精品电影7777| 人妻熟女在线一区二区| 青青草视频手机免费在线观看| 扒开腿挺进肉嫩小18禁视频| 日日操综合成人av| 欧美偷拍自拍色图片| 女生自摸在线观看一区二区三区 | 精品91高清在线观看| 黄色男人的天堂视频| 精品高潮呻吟久久av| 国产日本精品久久久久久久| 国产麻豆91在线视频| 国产精品3p和黑人大战| 高清成人av一区三区| 亚洲欧美另类手机在线| 国产麻豆精品人妻av| 黄色在线观看免费观看在线| 日韩熟女系列一区二区三区| 护士小嫩嫩又紧又爽20p| 久久久久久97三级| 成人av久久精品一区二区| 国产内射中出在线观看| 狠狠躁夜夜躁人人爽天天久天啪| 国产白嫩美女一区二区| 青青青青草手机在线视频免费看| 精品国产在线手机在线| 亚洲欧洲av天堂综合| 久久久久久久一区二区三| 亚洲欧美成人综合视频| 成年午夜免费无码区| 啪啪啪啪啪啪啪啪啪啪黄色| 免费在线看的黄网站| 91亚洲手机在线视频播放| 欧美视频不卡一区四区| 18禁美女羞羞免费网站| 91在线免费观看成人| 男人在床上插女人视频| 亚洲欧洲av天堂综合| 国产使劲操在线播放| 亚洲中文字幕人妻一区| 2020韩国午夜女主播在线| 国产一线二线三线的区别在哪| 日本精品一区二区三区在线视频。| av线天堂在线观看| 久久www免费人成一看片| 亚洲精品午夜久久久久| 国产黄色高清资源在线免费观看| 91天堂天天日天天操| 老司机午夜精品视频资源 | 亚洲特黄aaaa片| 狠狠操操操操操操操操操| 国产夫妻视频在线观看免费| 中文字幕人妻三级在线观看| 中文字幕人妻一区二区视频| 成人av在线资源网站| 天天操天天爽天天干| 美女 午夜 在线视频| 91久久国产成人免费网站| 中文字幕在线免费第一页| 国产伦精品一区二区三区竹菊| 人妻少妇一区二区三区蜜桃| 欧洲黄页网免费观看| 福利午夜视频在线合集| 久久精品在线观看一区二区| 久久尻中国美女视频| 国产精品久久久久久美女校花| 午夜精品一区二区三区4| 天天日夜夜干天天操| 黄网十四区丁香社区激情五月天 | 天天日天天干天天爱| 色综合色综合色综合色| 亚洲午夜高清在线观看| 黄页网视频在线免费观看| 亚洲欧美另类自拍偷拍色图| 色综合久久无码中文字幕波多| 亚洲免费在线视频网站| 伊拉克及约旦宣布关闭领空| 国产麻豆精品人妻av| 精品国产成人亚洲午夜| 黑人变态深video特大巨大| 国产在线拍揄自揄视频网站| 日韩av有码中文字幕| 自拍偷拍 国产资源| 亚洲1069综合男同| 夜女神免费福利视频| 91免费黄片可看视频| 最近的中文字幕在线mv视频| 国产精品黄色的av| 五十路老熟女码av| 国产91精品拍在线观看| 手机看片福利盒子日韩在线播放| 亚洲美女美妇久久字幕组| 777奇米久久精品一区| 亚洲午夜福利中文乱码字幕| 青青热久免费精品视频在线观看| 亚洲精品成人网久久久久久小说| 清纯美女在线观看国产| 啊用力插好舒服视频| 亚洲欧洲一区二区在线观看| 91人妻人人做人人爽在线| 中文字幕国产专区欧美激情| 国产日韩精品免费在线| 欧美精品久久久久久影院| 久久精品36亚洲精品束缚| 免费看国产又粗又猛又爽又黄视频 | 国产精品黄色的av| 自拍偷区二区三区麻豆| 国产中文字幕四区在线观看| 亚洲国产成人在线一区| 成人区人妻精品一区二视频| 国产真实灌醉下药美女av福利| 亚洲欧美另类手机在线| 成年女人免费播放视频| 国产在线免费观看成人| 国产之丝袜脚在线一区二区三区| 91免费福利网91麻豆国产精品| 99一区二区在线观看| 亚洲av在线观看尤物| 操的小逼流水的文章| 人妻少妇一区二区三区蜜桃| 美女在线观看日本亚洲一区| 一区二区三区蜜臀在线| 岛国黄色大片在线观看 | 日韩中文字幕福利av| 欧美亚洲牲夜夜综合久久| 日韩欧美国产精品91| 91极品大一女神正在播放| ka0ri在线视频| 免费男阳茎伸入女阳道视频 | 夜女神免费福利视频| 在线观看国产免费麻豆| 天天日天天玩天天摸| 免费黄高清无码国产| 国产a级毛久久久久精品| 亚洲高清免费在线观看视频| 2020av天堂网在线观看| 国产亚洲国产av网站在线| 性欧美日本大妈母与子| 好吊视频—区二区三区| 欧美视频中文一区二区三区| 黄色资源视频网站日韩| 91小伙伴中女熟女高潮| 国际av大片在线免费观看| 啪啪啪18禁一区二区三区| 中文字幕日韩91人妻在线| 91久久人澡人人添人人爽乱| 成人18禁网站在线播放| av无限看熟女人妻另类av| 亚洲国产在人线放午夜| 国产伦精品一区二区三区竹菊| 开心 色 六月 婷婷| 性生活第二下硬不起来| 影音先锋女人av噜噜色| 亚洲成人午夜电影在线观看| 日本丰满熟妇BBXBBXHD| 欧美黑人性暴力猛交喷水| 大肉大捧一进一出好爽在线视频| 免费av岛国天堂网站| 偷偷玩弄新婚人妻h视频| 人妻另类专区欧美制服| av高潮迭起在线观看| 欧美黑人性猛交xxxxⅹooo| 天天干狠狠干天天操| 亚洲一区二区三区uij| 青青草国内在线视频精选| 日日操综合成人av| 中国熟女一区二区性xx| 91天堂精品一区二区| 深田咏美亚洲一区二区| 91麻豆精品秘密入口在线观看 | 91精品资源免费观看| 清纯美女在线观看国产| 二区中出在线观看老师| 天天插天天狠天天操| 国产福利在线视频一区| 特一级特级黄色网片| 综合激情网激情五月五月婷婷| 亚洲欧美成人综合在线观看| 天堂资源网av中文字幕| 精品久久久久久久久久久99| 国产视频网站一区二区三区| 91色秘乱一区二区三区| 亚洲av在线观看尤物| 免费看高清av的网站| 国内资源最丰富的网站| 天天射夜夜操综合网| 五十路息与子猛烈交尾视频| 国产黄色a级三级三级三级| 亚洲国产成人最新资源| 午夜在线一区二区免费| 青青青青操在线观看免费| 亚洲Av无码国产综合色区| 偷偷玩弄新婚人妻h视频| 欧美一区二区三区在线资源| 在线网站你懂得老司机| 色97视频在线播放| 精品国产污污免费网站入口自 | 天堂av在线官网中文| 老司机99精品视频在线观看 | 亚洲国产最大av综合| 香蕉aⅴ一区二区三区| 天天日天天操天天摸天天舔| 亚洲av香蕉一区区二区三区犇| 大鸡八强奸视频在线观看| 天天日天天鲁天天操| 国产在线自在拍91国语自产精品 | 五月天色婷婷在线观看视频免费| 久久一区二区三区人妻欧美| 开心 色 六月 婷婷| 精内国产乱码久久久久久| 成年人中文字幕在线观看| 亚洲嫩模一区二区三区| 粉嫩av懂色av蜜臀av| 久久精品国产亚洲精品166m| 护士特殊服务久久久久久久| 亚洲va国产va欧美精品88| 无码中文字幕波多野不卡| 日韩中文字幕精品淫| 岛国一区二区三区视频在线| 美女日逼视频免费观看| 搡老熟女一区二区在线观看| 日本熟女50视频免费| 国产又大又黄免费观看| 欧美亚洲一二三区蜜臀| 后入美女人妻高清在线| 内射久久久久综合网| 青青青青青手机视频| 亚洲成人午夜电影在线观看| 中文字幕免费在线免费| 在线免费观看靠比视频的网站| 久草视频首页在线观看| 天天干天天操天天摸天天射| 国产九色91在线观看精品| 久久久久久久亚洲午夜综合福利| 99精品国自产在线人| 欧美日韩中文字幕欧美| 香港三日本三韩国三欧美三级| 特一级特级黄色网片| 美女吃鸡巴操逼高潮视频| 婷婷久久久久深爱网| 国产va精品免费观看 | 性欧美激情久久久久久久| 熟女视频一区,二区,三区| 国产精品免费不卡av| 黄色中文字幕在线播放| 又黄又刺激的午夜小视频| 亚洲综合自拍视频一区| 动漫美女的小穴视频| 国产欧美精品一区二区高清| 在线观看av亚洲情色| 巨乳人妻日下部加奈被邻居中出| 亚洲av午夜免费观看| 人妻熟女在线一区二区| 亚洲va天堂va国产va久| 大香蕉伊人中文字幕| 日本最新一二三区不卡在线| 亚洲av成人网在线观看| 99久久久无码国产精品性出奶水 | 青青青青操在线观看免费| 亚洲欧美在线视频第一页| 亚洲中文字幕乱码区| 99视频精品全部15| 班长撕开乳罩揉我胸好爽| 蜜桃色婷婷久久久福利在线| 国内自拍第一页在线观看| 2022中文字幕在线| 超黄超污网站在线观看| 端庄人妻堕落挣扎沉沦| 欧美日韩v中文在线| 在线免费视频 自拍| 97资源人妻免费在线视频| 加勒比视频在线免费观看| 日本性感美女写真视频| 日美女屁股黄邑视频| 啊用力插好舒服视频| 亚洲欧美久久久久久久久| 亚洲av第国产精品| 亚洲熟女久久久36d| 日韩激情文学在线视频| 日本人妻少妇18—xx| 成人av久久精品一区二区| 农村胖女人操逼视频| 国产黄色大片在线免费播放 | 日本在线一区二区不卡视频| 久久99久久99精品影院| 蜜桃久久久久久久人妻| 日本熟妇色熟妇在线观看| 日韩欧美一级aa大片| 国产福利在线视频一区| 人妻自拍视频中国大陆| 天天日天天添天天爽| 国产精品自拍视频大全| tube69日本少妇| 91自产国产精品视频| 久久久人妻一区二区| 中文字幕在线一区精品| 懂色av蜜桃a v| 亚洲精品 欧美日韩| 天天躁日日躁狠狠躁躁欧美av| 美女福利写真在线观看视频| 东游记中文字幕版哪里可以看到| 狠狠操狠狠操免费视频| 日本人妻精品久久久久久| 激情五月婷婷综合色啪| 国产亚洲国产av网站在线| 99精品国自产在线人| 最新的中文字幕 亚洲| 亚洲av无码成人精品区辽| 粉嫩欧美美人妻小视频| 国产午夜激情福利小视频在线| 日本后入视频在线观看| 夜色撩人久久7777| 国产精品久久久黄网站| 男人天堂av天天操| 91色秘乱一区二区三区| 任你操视频免费在线观看| 日本在线一区二区不卡视频| 国产成人精品久久二区91| 美女 午夜 在线视频| 亚洲成人线上免费视频观看| 黄色视频在线观看高清无码| 四川五十路熟女av| 日韩欧美制服诱惑一区在线| 青青擦在线视频国产在线| 日韩北条麻妃一区在线| 男人天堂av天天操| 动漫黑丝美女的鸡巴| 日韩中文字幕精品淫| 天天操天天弄天天射| 夏目彩春在线中文字幕| 2o22av在线视频| 伊人成人在线综合网| 欧美另类重口味极品在线观看| 最新91精品视频在线| 天天操天天操天天碰| 91中文字幕最新合集| 精品欧美一区二区vr在线观看 | 亚洲人妻视频在线网| 日韩美在线观看视频黄| 又大又湿又爽又紧A视频| 骚货自慰被发现爆操| 中文字幕日韩精品就在这里| 日韩伦理短片在线观看| 国产av国片精品一区二区| 国产精品自拍在线视频| 一二三中文乱码亚洲乱码one | 社区自拍揄拍尻屁你懂的| 天天摸天天干天天操科普| 无忧传媒在线观看视频| 中文字幕在线观看极品视频| 成人精品视频99第一页| 日本高清成人一区二区三区| 天堂av在线播放免费| av成人在线观看一区| 成年人的在线免费视频| 天天日天天透天天操| 亚洲免费国产在线日韩| 久草免费人妻视频在线| 免费观看丰满少妇做受| 国产精品久久久黄网站| 亚洲av无码成人精品区辽| 极品粉嫩小泬白浆20p主播| 老司机深夜免费福利视频在线观看| 91久久综合男人天堂| 丝袜肉丝一区二区三区四区在线| 岛国毛片视频免费在线观看| 国产露脸对白在线观看| 动漫黑丝美女的鸡巴| 国产在线一区二区三区麻酥酥| 成人av电影免费版| 人妻无码色噜噜狠狠狠狠色| 在线观看日韩激情视频| 97国产在线av精品| 中文字幕午夜免费福利视频| 国产又粗又硬又猛的毛片视频| 欧美亚洲国产成人免费在线| 中文字幕在线观看极品视频| 最新中文字幕乱码在线| 超碰公开大香蕉97| av网址在线播放大全| 国产精品黄页网站视频| 日韩二区视频一线天婷婷五| 六月婷婷激情一区二区三区| 久久精品国产999| 91综合久久亚洲综合| 亚洲一区二区三区精品视频在线| 日本午夜久久女同精女女| 色97视频在线播放| 福利视频广场一区二区| 男人的天堂在线黄色| 亚洲老熟妇日本老妇| 91人妻人人做人人爽在线| 日韩近亲视频在线观看| 一区二区三区久久久91| 超级福利视频在线观看| 欧美一区二区三区激情啪啪啪| 亚洲一级av大片免费观看| 国产精品3p和黑人大战| 狍和女人的王色毛片| 男人天堂色男人av| 88成人免费av网站| 亚洲国产最大av综合| 人妻激情图片视频小说| 丰满少妇人妻xxxxx| 日本免费午夜视频网站| 日本一区精品视频在线观看| 亚洲高清一区二区三区视频在线 | 黄页网视频在线免费观看| 偷拍美女一区二区三区| 午夜美女少妇福利视频| 亚洲综合色在线免费观看| 538精品在线观看视频| 亚洲区美熟妇久久久久| 久久精品亚洲国产av香蕉| 日韩精品中文字幕福利| 亚洲另类图片蜜臀av| 国产 在线 免费 精品| 亚洲第17页国产精品| 在线观看免费av网址大全| 美女骚逼日出水来了| 日本人妻精品久久久久久| 黄色视频在线观看高清无码 | 东游记中文字幕版哪里可以看到| 日韩人妻xxxxx| 黄页网视频在线免费观看| okirakuhuhu在线观看| 女蜜桃臀紧身瑜伽裤| 日比视频老公慢点好舒服啊| avjpm亚洲伊人久久| 日日夜夜狠狠干视频| 第一福利视频在线观看| 午夜精品福利91av| 最新日韩av传媒在线| 日本18禁久久久久久| 视频一区二区综合精品| 亚洲码av无色中文| 国产精彩福利精品视频| 中文乱理伦片在线观看| 东游记中文字幕版哪里可以看到| 少妇与子乱在线观看| 91精品激情五月婷婷在线| 2020久久躁狠狠躁夜夜躁| yellow在线播放av啊啊啊| 色伦色伦777国产精品| 成人在线欧美日韩国产| 精品av国产一区二区三区四区| 亚洲中文字幕校园春色| 国产一级精品综合av| 亚洲av成人网在线观看| yellow在线播放av啊啊啊| 国产精品视频欧美一区二区 | 夏目彩春在线中文字幕| 日本少妇人妻xxxxx18| 无码精品一区二区三区人| 亚洲国产欧美一区二区丝袜黑人| 老鸭窝日韩精品视频观看| 97a片免费在线观看| 日本韩国在线观看一区二区| 国产九色91在线观看精品| 中文字幕日韩精品就在这里| 日本熟妇色熟妇在线观看| 老司机免费福利视频网| 精品黑人一区二区三区久久国产| 日本啪啪啪啪啪啪啪| 亚洲人妻av毛片在线| 天天色天天爱天天爽| 人妻久久久精品69系列| 亚洲av日韩高清hd| 亚洲超碰97人人做人人爱| 黄色录像鸡巴插进去| 免费看国产av网站| 888欧美视频在线| 婷婷激情四射在线观看视频| 亚洲色偷偷综合亚洲AV伊人| 亚洲视频在线观看高清| 红桃av成人在线观看| 婷婷色国产黑丝少妇勾搭AV| 国产视频一区二区午夜| 区一区二区三国产中文字幕| 男女第一次视频在线观看| 好了av中文字幕在线| 97国产精品97久久| 93人妻人人揉人人澡人人| 18禁美女黄网站色大片下载| 大胸性感美女羞爽操逼毛片| 99热色原网这里只有精品| 韩国女主播精品视频网站| 日日夜夜精品一二三| 日韩一区二区三区三州| 国产av福利网址大全| 自拍偷拍亚洲另类色图| 国产精品人妻66p| 欧美成人精品欧美一级黄色| 91色网站免费在线观看|