国产无遮挡裸体免费直播视频,久久精品国产蜜臀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)論

中文字幕一区二 区二三区四区| 晚上一个人看操B片| 精品美女福利在线观看| 亚洲av色香蕉一区二区三区| 久久久超爽一二三av| 中国熟女一区二区性xx| 黑人巨大精品欧美视频| 在线观看免费岛国av| 91九色porny国产在线| 国产激情av网站在线观看| 91免费黄片可看视频| 在线免费观看欧美小视频| 不卡一区一区三区在线| 熟女视频一区,二区,三区| 成人sm视频在线观看| 国产久久久精品毛片| 天天做天天爽夜夜做少妇| 一区二区三区四区中文| 欧美日本在线观看一区二区| 精品美女久久久久久| 激情啪啪啪啪一区二区三区| 天天干夜夜操天天舔| 日本18禁久久久久久| 欧美香蕉人妻精品一区二区| 亚洲av自拍天堂网| 日韩视频一区二区免费观看| 亚洲女人的天堂av| 天天色天天舔天天射天天爽| 成人伊人精品色xxxx视频| 99热国产精品666| 麻豆性色视频在线观看| sspd152中文字幕在线| 色综合久久五月色婷婷综合| 中文字幕av男人天堂| 久久免看30视频口爆视频| 青青青青青免费视频| 国产麻豆剧果冻传媒app| 中文字幕人妻熟女在线电影| 日韩精品激情在线观看| 又色又爽又黄的美女裸体| 亚洲精品国产综合久久久久久久久| 91麻豆精品久久久久| 2022天天干天天操| 丰满少妇人妻xxxxx| 日韩欧美国产精品91| 中文字幕 人妻精品| 91免费观看在线网站 | 日本午夜爽爽爽爽爽视频在线观看| xxx日本hd高清| 人人爽亚洲av人人爽av| 极品性荡少妇一区二区色欲| 欧美久久一区二区伊人| 91久久综合男人天堂| 午夜成午夜成年片在线观看 | 日韩精品中文字幕播放| 色综合天天综合网国产成人| 懂色av蜜桃a v| 日本熟女精品一区二区三区| 亚洲免费国产在线日韩| 一区二区三区欧美日韩高清播放| 人妻丝袜诱惑我操她视频| 精品老妇女久久9g国产| huangse网站在线观看| 色狠狠av线不卡香蕉一区二区| 超碰公开大香蕉97| 久久艹在线观看视频| 国产又粗又硬又猛的毛片视频| 亚洲午夜精品小视频| xxx日本hd高清| 成人av免费不卡在线观看| 国产在线观看黄色视频| 又粗又硬又猛又爽又黄的| 亚洲无线观看国产高清在线| 亚洲成高清a人片在线观看| 性感美女福利视频网站| 一区二区视频视频视频| av在线播放国产不卡| 国产自拍在线观看成人| 成人午夜电影在线观看 久久| 国产午夜福利av导航| 国产精品久久久久久美女校花| 在线播放 日韩 av| 摧残蹂躏av一二三区| 日本韩国在线观看一区二区| 揄拍成人国产精品免费看视频| 亚洲成a人片777777| 老司机福利精品视频在线| 精品久久久久久久久久久a√国产| 亚洲av日韩精品久久久久久hd| 2021国产一区二区| 天天干天天搞天天摸| 不卡一区一区三区在线| 免费看国产av网站| 欧美爆乳肉感大码在线观看 | 午夜久久久久久久99| 亚洲一级av大片免费观看| 国产V亚洲V天堂无码欠欠| 国产97视频在线精品| 国产av福利网址大全| 曰本无码人妻丰满熟妇啪啪| 日日夜夜大香蕉伊人| 天天日天天干天天插舔舔| 中国视频一区二区三区| 天天通天天透天天插| 在线免费观看欧美小视频| 中英文字幕av一区| 久久久久久99国产精品| 中文字幕av熟女人妻| 女同互舔一区二区三区| av手机在线免费观看日韩av| 青娱乐在线免费视频盛宴| 青青青青青青青青青青草青青| 亚洲在线一区二区欧美| 成人av中文字幕一区| aaa久久久久久久久| 青青青青爽手机在线| 在线免费观看日本伦理| 自拍偷拍亚洲另类色图| 天天操天天干天天艹| 亚洲国产欧美一区二区三区久久| 午夜久久久久久久精品熟女| 少妇人妻久久久久视频黄片| 日韩欧美国产一区不卡| 国产黑丝高跟鞋视频在线播放| 亚洲日产av一区二区在线| 中文字幕乱码av资源| 天堂av狠狠操蜜桃| 99av国产精品欲麻豆| 亚洲av男人天堂久久| 在线免费观看视频一二区| 青青社区2国产视频| 国产欧美日韩在线观看不卡| 天天做天天干天天操天天射| 一区国内二区日韩三区欧美| 伊人成人在线综合网| 亚洲天堂有码中文字幕视频| 精品国产乱码一区二区三区乱| 女生自摸在线观看一区二区三区| av中文字幕在线观看第三页| 日本女大学生的黄色小视频| www天堂在线久久| 国产日韩一区二区在线看| 国产一区av澳门在线观看| 2020久久躁狠狠躁夜夜躁 | 亚洲国产40页第21页| 岛国一区二区三区视频在线| 亚洲图片偷拍自拍区| 国产精品国产三级麻豆| 班长撕开乳罩揉我胸好爽| 国产不卡av在线免费| 欧美精产国品一二三产品价格| 熟女少妇激情五十路| 青青青青草手机在线视频免费看| 亚洲 国产 成人 在线| 99人妻视频免费在线| 日韩成人性色生活片| 欧美一区二区三区乱码在线播放| 欧美在线一二三视频| 女警官打开双腿沦为性奴| 538精品在线观看视频| 伊人综合aⅴ在线网| 青青青aaaa免费| 狠狠地躁夜夜躁日日躁| 日韩欧美制服诱惑一区在线| 大鸡八强奸视频在线观看| 日本少妇人妻xxxxx18| 欧美日韩人妻久久精品高清国产| 亚洲人妻视频在线网| 91一区精品在线观看| 欧美va不卡视频在线观看| 一区二区久久成人网| 青草亚洲视频在线观看| 深夜男人福利在线观看| 黄色片年轻人在线观看| 欧美成人猛片aaaaaaa| 三级等保密码要求条款| 精品首页在线观看视频| av中文字幕在线观看第三页| 午夜国产免费福利av| 天天操天天爽天天干| 嫩草aⅴ一区二区三区| 成人av天堂丝袜在线观看| jiujiure精品视频在线| 伊拉克及约旦宣布关闭领空| 免费黄高清无码国产| 沈阳熟妇28厘米大战黑人| 欧美日韩一级黄片免费观看| 偷拍美女一区二区三区| 亚洲高清免费在线观看视频| 亚洲精品国产久久久久久| v888av在线观看视频| 偷拍美女一区二区三区| 日本中文字幕一二区视频| 国产熟妇人妻ⅹxxxx麻豆| 青青青视频自偷自拍38碰| 二区中出在线观看老师| 婷婷综合亚洲爱久久| 亚洲图片欧美校园春色| 日日日日日日日日夜夜夜夜夜夜| 欧美精品激情在线最新观看视频| 91福利在线视频免费观看| 国产午夜男女爽爽爽爽爽视频| 中文字幕一区二区三区人妻大片| 和邻居少妇愉情中文字幕| 中文字幕AV在线免费看 | 国产精品久久久久久久女人18| 天天日天天干天天要| 国产chinesehd精品麻豆| 日本性感美女视频网站| 国产一区二区久久久裸臀| www天堂在线久久| 超pen在线观看视频公开97| 97国产在线av精品| 亚洲天堂精品福利成人av| 亚洲国产免费av一区二区三区| 都市家庭人妻激情自拍视频| 人妻丝袜av在线播放网址| 91免费放福利在线观看| 欧美综合婷婷欧美综合| 日韩美女福利视频网| 男女啪啪视频免费在线观看| 少妇深喉口爆吞精韩国| 亚洲欧美久久久久久久久| 岛国一区二区三区视频在线| 五十路熟女人妻一区二区9933| 天天摸天天日天天操| 午夜91一区二区三区| 少妇与子乱在线观看| 被大鸡吧操的好舒服视频免费| 2022国产综合在线干| 一个色综合男人天堂| 国产精品系列在线观看一区二区 | 搞黄色在线免费观看| 五十路息与子猛烈交尾视频| 免费看国产又粗又猛又爽又黄视频| 亚洲欧美另类自拍偷拍色图| 91传媒一区二区三区| 人妻最新视频在线免费观看| 99精品久久久久久久91蜜桃| 日本精品美女在线观看| 亚洲欧美成人综合在线观看| 快点插进来操我逼啊视频| 成年午夜影片国产片| 性色蜜臀av一区二区三区| 国产精品中文av在线播放| 一区二区三区四区中文| 五十路熟女人妻一区二区9933| 亚洲一区二区三区偷拍女厕91| 婷婷激情四射在线观看视频| 2021年国产精品自拍| 懂色av之国产精品| 人人妻人人爽人人澡人人精品| 亚洲精品乱码久久久本| 精品人妻每日一部精品| 精品一区二区三区在线观看| jul—619中文字幕在线| 日本一本午夜在线播放| 粉嫩小穴流水视频在线观看| 久久这里只有精品热视频| 久久三久久三久久三久久| 成年人午夜黄片视频资源| 四虎永久在线精品免费区二区| av在线观看网址av| 日曰摸日日碰夜夜爽歪歪| 日本人竟这样玩学生妹| 日本三极片中文字幕| 大鸡吧插入女阴道黄色片| 91av中文视频在线| 成人资源在线观看免费官网| 色天天天天射天天舔| 亚洲av色图18p| 老司机免费福利视频网| 免费人成黄页网站在线观看国产| 国产va在线观看精品| 最新国产精品拍在线观看| 91一区精品在线观看| 国际av大片在线免费观看| 中文字幕1卡1区2区3区| 高清成人av一区三区| 国产丰满熟女成人视频| chinese国产盗摄一区二区| 精品久久久久久高潮| 91极品新人『兔兔』精品新作| 可以在线观看的av中文字幕| 最新国产亚洲精品中文在线| 国产亚洲成人免费在线观看| 黄色片黄色片wyaa| 区一区二区三国产中文字幕| 蜜桃专区一区二区在线观看| 中文字幕午夜免费福利视频| 久久这里只有精品热视频| 亚洲 人妻 激情 中文| 91传媒一区二区三区| 国产女人露脸高潮对白视频| 特大黑人巨大xxxx| 啊啊好大好爽啊啊操我啊啊视频| 一区国内二区日韩三区欧美| 51国产成人精品视频| 亚洲福利精品视频在线免费观看 | 青青草成人福利电影| 日韩在线中文字幕色| 成人av亚洲一区二区| 99re6热在线精品| 91精品国产91青青碰| 国产高潮无码喷水AV片在线观看| 日本丰满熟妇大屁股久久| 最新欧美一二三视频| 91国产在线视频免费观看| 黄色成人在线中文字幕| 男女第一次视频在线观看| 亚洲国产香蕉视频在线播放| 福利片区一区二体验区| 亚洲成人黄色一区二区三区| 亚洲欧美人精品高清| 老有所依在线观看完整版| 国产黄色片蝌蚪九色91| 黄色成人在线中文字幕| 黄色片一级美女黄色片| 午夜的视频在线观看| 2019av在线视频| 亚洲国产在人线放午夜| 中文字幕人妻被公上司喝醉在线| 老司机福利精品免费视频一区二区| 日本男女操逼视频免费看| 色综合色综合色综合色| 中文字幕最新久久久| 亚洲另类图片蜜臀av| 国产视频一区在线观看| 一区二区麻豆传媒黄片| 欧美偷拍自拍色图片| 欧美亚洲牲夜夜综合久久| 亚洲免费在线视频网站| 啊啊啊想要被插进去视频| 欧美爆乳肉感大码在线观看| 免费在线观看污污视频网站| 2022天天干天天操| 久草福利电影在线观看| 在线亚洲天堂色播av电影| 中国产一级黄片免费视频播放| 不戴胸罩引我诱的隔壁的人妻| 青娱乐最新视频在线| 二区中出在线观看老师| 中文字幕 亚洲av| 超碰97免费人妻麻豆| 天天日天天透天天操| 一区二区免费高清黄色视频| 日韩二区视频一线天婷婷五| 久草电影免费在线观看| 成人综合亚洲欧美一区| 成人午夜电影在线观看 久久| 黄色片年轻人在线观看| 色秀欧美视频第一页| 国产精品国产三级麻豆| 黑人巨大的吊bdsm| 2022天天干天天操| 最后99天全集在线观看| 污污小视频91在线观看| av手机在线免费观看日韩av| 色婷婷久久久久swag精品| 中文字幕人妻一区二区视频| 93精品视频在线观看| 3D动漫精品啪啪一区二区下载| 人妻素人精油按摩中出| 亚洲激情,偷拍视频| 99久久99一区二区三区| 国产精品熟女久久久久浪潮| 狠狠嗨日韩综合久久| 欧美特级特黄a大片免费| 亚洲 中文字幕在线 日韩| 在线成人日韩av电影| 亚洲人妻视频在线网| heyzo蜜桃熟女人妻| 亚洲精品国品乱码久久久久| 日辽宁老肥女在线观看视频| 天天射夜夜操狠狠干| 精品久久久久久久久久久a√国产| 福利视频一区二区三区筱慧| 2021久久免费视频| 亚洲国产第一页在线观看| 国产 在线 免费 精品| 国产高清在线观看1区2区| 中文字幕 人妻精品| 中文字幕日韩人妻在线三区| 一区二区免费高清黄色视频| av老司机亚洲一区二区| 最后99天全集在线观看| 喷水视频在线观看这里只有精品| 五十路熟女av天堂| 午夜久久久久久久精品熟女| 成人蜜桃美臀九一一区二区三区| 亚洲av香蕉一区区二区三区犇| 97人妻人人澡爽人人精品| 99国内小视频在现欢看| 天天草天天色天天干| 天天摸天天干天天操科普| 99精品国产免费久久| 人妻av无码专区久久绿巨人| 老司机福利精品视频在线| 91国偷自产一区二区三区精品| 麻豆性色视频在线观看| 欧美乱妇无乱码一区二区| 在线不卡成人黄色精品| 特黄老太婆aa毛毛片| 大香蕉福利在线观看| 久久久极品久久蜜桃| 国产普通话插插视频| 日韩一个色综合导航| 美女被肏内射视频网站| 青草青永久在线视频18| 999九九久久久精品| 日本三极片中文字幕| 熟女人妻在线中出观看完整版| 精品视频一区二区三区四区五区| 亚洲 人妻 激情 中文| 在线免费观看欧美小视频| 激情伦理欧美日韩中文字幕 | 亚洲黄色av网站免费播放| 日本三极片视频网站观看| 新婚人妻聚会被中出| 精品91自产拍在线观看一区| 亚洲 欧美 自拍 偷拍 在线| 日本黄在免费看视频| 亚洲国产欧美一区二区三区…| 中文字幕第一页国产在线| 天堂av中文在线最新版| 老鸭窝日韩精品视频观看| 久久精品国产23696| 免费高清自慰一区二区三区网站| 中英文字幕av一区| 欧美视频综合第一页| 亚洲午夜福利中文乱码字幕| 91中文字幕最新合集| 在线免费观看日本伦理| 久久久久91精品推荐99| 亚洲中文字幕人妻一区| 91国语爽死我了不卡| 免费黄高清无码国产| 久久农村老妇乱69系列| 日韩成人综艺在线播放| 伊人成人在线综合网| 日比视频老公慢点好舒服啊| 在线新三级黄伊人网| www日韩a级s片av| 亚洲人妻av毛片在线| 久草视频在线一区二区三区资源站 | 超级碰碰在线视频免费观看| brazzers欧熟精品系列| 在线免费视频 自拍| 欧美怡红院视频在线观看| 中文字幕在线观看国产片| 久久精品视频一区二区三区四区| 综合精品久久久久97| 色综合久久五月色婷婷综合| 狠狠躁夜夜躁人人爽天天天天97| 2020韩国午夜女主播在线| 午夜免费体验区在线观看| 福利在线视频网址导航| 91国产在线视频免费观看| 一区二区三区四区视频在线播放 | asmr福利视频在线观看| 日本性感美女三级视频| 精品国产亚洲av一淫| 91国偷自产一区二区三区精品| 亚洲Av无码国产综合色区| 国产老熟女伦老熟妇ⅹ| 日韩美女搞黄视频免费| 欧美国品一二三产区区别| 大鸡巴操娇小玲珑的女孩逼| 免费观看国产综合视频| 久草视频在线看免费| 天天操天天干天天插| 东京干手机福利视频| 欧美久久久久久三级网| 91国语爽死我了不卡| 少妇高潮无套内谢麻豆| 白白操白白色在线免费视频| 国产性感美女福利视频| av在线观看网址av| 日本乱人一区二区三区| 国产日韩av一区二区在线| 国产精品精品精品999| 在线视频自拍第三页| 中文字幕高清免费在线人妻| 久草视频在线一区二区三区资源站 | 少妇人妻100系列| 天天摸天天干天天操科普| jiuse91九色视频| 啊啊好大好爽啊啊操我啊啊视频 | 93视频一区二区三区| 欧美日韩熟女一区二区三区| 麻豆精品成人免费视频| 五月天色婷婷在线观看视频免费| 最新的中文字幕 亚洲| 欧美亚洲牲夜夜综合久久| 美女 午夜 在线视频| 超碰中文字幕免费观看| 久久亚洲天堂中文对白| 一级黄片久久久久久久久| 搞黄色在线免费观看| 亚洲变态另类色图天堂网| 国产又粗又硬又大视频| 91精品高清一区二区三区| 非洲黑人一级特黄片| 蜜桃久久久久久久人妻| 55夜色66夜色国产精品站| 国产第一美女一区二区三区四区| av在线观看网址av| 午夜精品九一唐人麻豆嫩草成人| 影音先锋女人av噜噜色| 绯色av蜜臀vs少妇| 国产免费av一区二区凹凸四季| 超级av免费观看一区二区三区| 精内国产乱码久久久久久| 在线视频国产欧美日韩| 人妻激情图片视频小说| 激情国产小视频在线| 超碰97免费人妻麻豆| 亚洲一区二区人妻av| 欧美黑人性暴力猛交喷水| 欧美一级色视频美日韩| 在线免费观看亚洲精品电影| 天天躁日日躁狠狠躁av麻豆| 青青草成人福利电影| 天天日天天干天天舔天天射| 美女福利视频网址导航| 乱亲女秽乱长久久久| 热思思国产99re| 在线不卡成人黄色精品| aaa久久久久久久久| 亚洲 中文 自拍 另类 欧美| 超碰中文字幕免费观看| 国产精品国色综合久久| 日本免费视频午夜福利视频| 自拍偷拍,中文字幕| 大陆精品一区二区三区久久| 在线观看一区二区三级| 国产精品日韩欧美一区二区| 一区二区三区四区视频在线播放| 免费在线黄色观看网站| 亚洲一区二区三区五区| 久久久久久cao我的性感人妻| 天堂中文字幕翔田av| 丰满少妇人妻xxxxx| 国产一区av澳门在线观看| 97黄网站在线观看| 国产欧美精品免费观看视频| 99精品国产自在现线观看| 久久久久久久久久一区二区三区 | 亚洲国产成人在线一区| 男女啪啪视频免费在线观看| 日本精品一区二区三区在线视频。 | 亚洲日产av一区二区在线| 秋霞午夜av福利经典影视| www日韩毛片av| 久草视频在线一区二区三区资源站 | 久久久久久国产精品| 韩国黄色一级二级三级| 久碰精品少妇中文字幕av| 91香蕉成人app下载| 999九九久久久精品| 日韩人妻xxxxx| 亚洲av日韩精品久久久| 18禁网站一区二区三区四区 | 传媒在线播放国产精品一区| 国产精品久久9999| 欧美3p在线观看一区二区三区| 中文字幕熟女人妻久久久| 97国产福利小视频合集| 激情伦理欧美日韩中文字幕| 成人高潮aa毛片免费| 日韩欧美在线观看不卡一区二区| 青青青青青操视频在线观看| 国产精品久久久久国产三级试频| 欧美专区日韩专区国产专区| 欧美精品资源在线观看| 亚洲一级av大片免费观看| 成人性爱在线看四区| 日本裸体熟妇区二区欧美| 精品91自产拍在线观看一区| 99精品视频之69精品视频| 高清成人av一区三区| 99热久久极品热亚洲| 自拍偷拍亚洲欧美在线视频| 大鸡巴后入爆操大屁股美女| 端庄人妻堕落挣扎沉沦| 亚洲少妇高潮免费观看| 18禁美女黄网站色大片下载| 中文字幕在线观看国产片| 欧美一区二区三区久久久aaa| 国产综合精品久久久久蜜臀| 国际av大片在线免费观看| 最新97国产在线视频| 欧美一区二区三区久久久aaa| 老司机在线精品福利视频| 亚洲中文精品人人免费| 日本一区美女福利视频| 国产 在线 免费 精品| 最新国产精品拍在线观看| 91免费福利网91麻豆国产精品 | 亚洲精品在线资源站| 色综合久久五月色婷婷综合| 国产精品自拍在线视频| 天堂av在线最新版在线| 2021久久免费视频| 18禁污污污app下载| 韩国女主播精品视频网站| 亚洲成人激情视频免费观看了 | 精品亚洲在线免费观看| 传媒在线播放国产精品一区| av手机在线免费观看日韩av| 天天日天天日天天射天天干 | 天天日天天干天天搡| 国产V亚洲V天堂无码欠欠| 91色九色porny| 日本黄色三级高清视频| 亚洲蜜臀av一区二区三区九色| 国产精品黄色的av| 欧美国品一二三产区区别| 日韩不卡中文在线视频网站| 久青青草视频手机在线免费观看| 国产精品手机在线看片| 国产清纯美女al在线| 福利片区一区二体验区| 男人在床上插女人视频| 一区二区视频在线观看免费观看| 午夜福利资源综合激情午夜福利资| 天天日天天玩天天摸| 激情综合治理六月婷婷| 婷婷久久久综合中文字幕| 国产揄拍高清国内精品对白| 日本三极片视频网站观看| 唐人色亚洲av嫩草| 亚欧在线视频你懂的| 超碰97人人澡人人| 女生被男生插的视频网站| 亚洲免费福利一区二区三区| 硬鸡巴动态操女人逼视频| 美女福利视频导航网站| 在线视频国产欧美日韩| 国产欧美精品不卡在线| 2020av天堂网在线观看| sejizz在线视频| 国产精品久久综合久久| 99久久99一区二区三区| 51国产偷自视频在线播放| 欧美乱妇无乱码一区二区| 日本欧美视频在线观看三区| 国产午夜亚洲精品麻豆| 欧美精品中文字幕久久二区| 人妻在线精品录音叫床| 懂色av蜜桃a v| 久久久久久国产精品| 国产露脸对白在线观看| 伊人成人在线综合网| av中文字幕电影在线看| av中文字幕国产在线观看| 亚洲视频乱码在线观看| 人人妻人人爽人人澡人人精品| 久久香蕉国产免费天天| 欧美日韩激情啪啪啪| av大全在线播放免费| 偷偷玩弄新婚人妻h视频| 亚洲av可乐操首页| 国产麻豆乱子伦午夜视频观看| 亚洲国产最大av综合| 在线观看欧美黄片一区二区三区| 免费黄高清无码国产| 国产亚洲天堂天天一区| 青青青国产免费视频| 天天操夜夜操天天操天天操 | 免费看美女脱光衣服的视频| okirakuhuhu在线观看| 都市激情校园春色狠狠| 天天操天天射天天操天天天 | 啪啪啪18禁一区二区三区| 欧美性感尤物人妻在线免费看| 日本韩国免费一区二区三区视频| 在线观看黄色成年人网站| 亚洲av香蕉一区区二区三区犇| 在线免费观看欧美小视频| caoporn蜜桃视频| 91国产在线视频免费观看| 亚洲综合图片20p| 青青青青爽手机在线| 大香蕉大香蕉大香蕉大香蕉大香蕉| 人人爽亚洲av人人爽av| 国产日韩欧美美利坚蜜臀懂色| 欧美麻豆av在线播放| 欧美一区二区三区激情啪啪啪| 无忧传媒在线观看视频| 国产精品三级三级三级| 亚洲一级 片内射视正片| h国产小视频福利在线观看| 青青青aaaa免费| 午夜精品一区二区三区福利视频| 97年大学生大白天操逼| 精品美女福利在线观看| 青青草国内在线视频精选| 日本免费一级黄色录像| 一区二区三区久久久91| 免费无码人妻日韩精品一区二区| 中文字幕日韩精品就在这里| 婷婷综合亚洲爱久久| 免费看国产又粗又猛又爽又黄视频 | 福利视频一区二区三区筱慧| 一个色综合男人天堂| 国产又粗又猛又爽又黄的视频在线 | 日本少妇人妻xxxxxhd| 99热久久这里只有精品8| 国产实拍勾搭女技师av在线| 中国老熟女偷拍第一页| 91天堂精品一区二区| 一区二区三区四区视频| 天天日天天敢天天干| 欧亚乱色一区二区三区| 夫妻在线观看视频91| mm131美女午夜爽爽爽| 日韩美女福利视频网| 中文字幕 人妻精品| 亚洲国产欧美一区二区丝袜黑人 | av亚洲中文天堂字幕网| av大全在线播放免费| 日韩加勒比东京热二区| 国产高清在线在线视频| 日本午夜福利免费视频| 日本a级视频老女人| 国产麻豆91在线视频| 欧美精品黑人性xxxx| 97人妻色免费视频| 欧美3p在线观看一区二区三区| 亚洲视频在线视频看视频在线| 久久农村老妇乱69系列| 午夜极品美女福利视频| 强行扒开双腿猛烈进入免费版| 精品欧美一区二区vr在线观看 | 9色在线视频免费观看| 黑人变态深video特大巨大| 91精品国产91青青碰| 免费成人va在线观看| 午夜国产免费福利av| aⅴ精产国品一二三产品| 亚洲1069综合男同| 日韩欧美国产一区不卡| 偷拍自拍视频图片免费| 亚洲成人熟妇一区二区三区 | 水蜜桃一区二区三区在线观看视频 | 色婷婷六月亚洲综合香蕉| 亚洲精品午夜久久久久| 欧美一区二区三区激情啪啪啪| 东京热男人的av天堂| 久久久久久cao我的性感人妻| 亚洲熟妇x久久av久久| 日本啪啪啪啪啪啪啪| 中文字幕欧美日韩射射一| 四川五十路熟女av| 国产视频网站国产视频| 中文亚洲欧美日韩无线码| 欧美精品 日韩国产| 欧洲亚洲欧美日韩综合| 97精品成人一区二区三区| 少妇人妻二三区视频| 国产精品精品精品999| 亚洲av无码成人精品区辽| 人妻久久久精品69系列| 国产日韩欧美美利坚蜜臀懂色| 国产精品女邻居小骚货| 亚洲va国产va欧美va在线| 午夜dv内射一区区| 在线观看av2025| 亚洲乱码中文字幕在线| 黄网十四区丁香社区激情五月天| 大香蕉日本伊人中文在线| 国产三级精品三级在线不卡| 中文字幕在线免费第一页| 午夜福利人人妻人人澡人人爽| gogo国模私拍视频| 一区二区三区麻豆福利视频| 国产精品sm调教视频| 欧美一级片免费在线成人观看| 国产日韩欧美美利坚蜜臀懂色| 亚洲偷自拍高清视频| 少妇被强干到高潮视频在线观看| 国产精品一区二区av国| 国产视频一区二区午夜| 国产janese在线播放| 国产极品美女久久久久久| av手机在线观播放网站| 欧美久久久久久三级网| 中文字幕在线观看国产片| 中国视频一区二区三区| 人人妻人人爽人人澡人人精品| 欧美地区一二三专区| 国产夫妻视频在线观看免费| 亚洲高清国产拍青青草原| 91九色porny国产蝌蚪视频| 在线不卡成人黄色精品| 亚洲蜜臀av一区二区三区九色| 国产中文精品在线观看| 久久久精品欧洲亚洲av| 免费看国产av网站| 91p0rny九色露脸熟女| 77久久久久国产精产品| 亚洲天堂第一页中文字幕| 国产一级麻豆精品免费| 亚洲成人三级在线播放| 午夜久久久久久久99| 免费在线观看视频啪啪| 日韩一个色综合导航| 91老师蜜桃臀大屁股| 又粗又长 明星操逼小视频| 国产密臀av一区二区三| 午夜激情高清在线观看| 38av一区二区三区| 日本少妇在线视频大香蕉在线观看| 国产清纯美女al在线| 久久久麻豆精亚洲av麻花| 久久久久久久精品成人热| 扒开腿挺进肉嫩小18禁视频| 男人的网址你懂的亚洲欧洲av| 高清成人av一区三区| 国产亚洲欧美45p| 国产精品自拍视频大全| 天天操夜夜操天天操天天操| 天天干夜夜操啊啊啊| 少妇深喉口爆吞精韩国| 国产精品三级三级三级| 伊人情人综合成人久久网小说| 亚洲蜜臀av一区二区三区九色| 一区二区三区日韩久久| 黄色黄色黄片78在线| v888av在线观看视频| 天天操天天干天天日狠狠插| 国产va精品免费观看| 特级欧美插插插插插bbbbb| 国产精品亚洲а∨天堂免| 玖玖一区二区在线观看| 国产精品久久综合久久| 综合一区二区三区蜜臀| 欧美乱妇无乱码一区二区| 久久精品亚洲成在人线a| 久久这里只有精品热视频| 中国熟女@视频91| 97人妻无码AV碰碰视频| 91老熟女连续高潮对白| 日韩加勒比东京热二区| 美女张开腿让男生操在线看| 日韩欧美中文国产在线| 日本五十路熟新垣里子| 久久久精品999精品日本| 国产性色生活片毛片春晓精品| 91www一区二区三区| 熟女人妻一区二区精品视频| 国产黄色片蝌蚪九色91| 91亚洲手机在线视频播放| 91‖亚洲‖国产熟女| 天美传媒mv视频在线观看| 极品性荡少妇一区二区色欲| 国产视频精品资源网站| av日韩在线免费播放| 大鸡巴操娇小玲珑的女孩逼| 粉嫩欧美美人妻小视频| 欧美国品一二三产区区别| 2020av天堂网在线观看| 成人av亚洲一区二区| 18禁美女黄网站色大片下载| 国产精品黄大片在线播放| 久草极品美女视频在线观看| 欧美成人精品欧美一级黄色| 国产又粗又猛又爽又黄的视频美国| 91p0rny九色露脸熟女| 无码精品一区二区三区人| 精品人人人妻人人玩日产欧| 亚洲精品国品乱码久久久久| 国产在线自在拍91国语自产精品| 五十路息与子猛烈交尾视频| 人妻少妇精品久久久久久| 视频一区 视频二区 视频| 2017亚洲男人天堂| 91精品国产91久久自产久强| 精品一线二线三线日本| 在线免费观看日本伦理| 97精品人妻一区二区三区精品| 阴茎插到阴道里面的视频| 色综合久久无码中文字幕波多| 国产久久久精品毛片| 任你操任你干精品在线视频| 国产剧情演绎系列丝袜高跟| 69精品视频一区二区在线观看| 91国产资源在线视频| 超污视频在线观看污污污| 午夜美女少妇福利视频| 国产又粗又猛又爽又黄的视频在线| 亚洲va国产va欧美精品88| 美洲精品一二三产区区别| 日辽宁老肥女在线观看视频| 成人亚洲精品国产精品 | 成年午夜免费无码区| 夜夜嗨av蜜臀av| 免费大片在线观看视频网站| 婷婷久久一区二区字幕网址你懂得| 沈阳熟妇28厘米大战黑人| 欧美色婷婷综合在线| 黑人进入丰满少妇视频| 国产精品手机在线看片| 熟女视频一区,二区,三区| 成人蜜桃美臀九一一区二区三区| 91精品国产91青青碰| 国产日韩精品免费在线| 日本韩国亚洲综合日韩欧美国产| 亚洲 欧美 自拍 偷拍 在线| 人妻3p真实偷拍一二区| 最近中文字幕国产在线| 粉嫩av蜜乳av蜜臀| 亚洲高清国产自产av| 蜜臀成人av在线播放| 无码日韩人妻精品久久| 国产欧美日韩在线观看不卡| 中文字幕一区的人妻欧美日韩| 中文乱理伦片在线观看| 欧美偷拍自拍色图片| 99久久99一区二区三区| 中文字母永久播放1区2区3区 | 日韩中文字幕福利av| 久久这里有免费精品| 天天干天天操天天扣| 2025年人妻中文字幕乱码在线| 又色又爽又黄又刺激av网站| 91 亚洲视频在线观看| 国产黄色大片在线免费播放| 在线 中文字幕 一区| av久久精品北条麻妃av观看| 中国黄片视频一区91| 亚洲高清国产拍青青草原| 黄色男人的天堂视频| 天天草天天色天天干| 亚洲精品乱码久久久本| 欧美成人黄片一区二区三区| 午夜国产福利在线观看| 九九热99视频在线观看97| 在线观看911精品国产| 日本少妇精品免费视频| 欧美伊人久久大香线蕉综合| 亚洲精品在线资源站| 婷婷色中文亚洲网68| 亚洲 清纯 国产com| 国产精品中文av在线播放| 国产自拍在线观看成人| 国产内射中出在线观看| 免费无码人妻日韩精品一区二区| 中文字幕高清资源站| 清纯美女在线观看国产| 少妇高潮一区二区三区| 超碰在线观看免费在线观看| 亚洲av无码成人精品区辽| 中文字幕国产专区欧美激情| 亚洲人妻30pwc| 天天草天天色天天干| 五十路av熟女松本翔子| 天堂资源网av中文字幕| av网址国产在线观看| 第一福利视频在线观看| 亚洲成人av一区久久| 阴茎插到阴道里面的视频| 最近中文2019年在线看| 天天操夜夜操天天操天天操| 青青青国产片免费观看视频| 老鸭窝日韩精品视频观看| 人妻熟女在线一区二区| 九一传媒制片厂视频在线免费观看| 国产成人无码精品久久久电影| 欧美一级片免费在线成人观看| 啊啊好大好爽啊啊操我啊啊视频 | 国产日韩欧美视频在线导航| 日韩一个色综合导航| 玖玖一区二区在线观看| 免费69视频在线看| 黄色大片男人操女人逼| 可以在线观看的av中文字幕| 极品丝袜一区二区三区| 黄网十四区丁香社区激情五月天| 三级等保密码要求条款| 搡老熟女一区二区在线观看| 福利片区一区二体验区| 成人福利视频免费在线| 亚洲偷自拍高清视频| 污污小视频91在线观看| 91精品啪在线免费| yy6080国产在线视频| 懂色av之国产精品| 天天射夜夜操综合网| 做爰视频毛片下载蜜桃视频1| 精品suv一区二区69| 青青青青青青青青青青草青青| 91香蕉成人app下载| 成人亚洲精品国产精品| 天天日天天日天天射天天干| 最新国产精品拍在线观看| 爱有来生高清在线中文字幕| 日本免费视频午夜福利视频| 岛国一区二区三区视频在线| 欧美aa一级一区三区四区| 国产午夜男女爽爽爽爽爽视频 | 欧美爆乳肉感大码在线观看| 欧美日韩情色在线观看| 欧美中文字幕一区最新网址| 亚洲中文字幕国产日韩| 丰满熟女午夜福利视频| 免费男阳茎伸入女阳道视频| 欧美亚洲少妇福利视频| 久久免费看少妇高潮完整版| 亚洲成人激情视频免费观看了| 999热精品视频在线| ka0ri在线视频| 欧美爆乳肉感大码在线观看 | 日本美女性生活一级片| 伊人开心婷婷国产av| 久久久麻豆精亚洲av麻花| 亚洲熟妇无码一区二区三区| 日韩av免费观看一区| 亚洲欧美一区二区三区电影| 自拍偷拍 国产资源| 欧美爆乳肉感大码在线观看| 天天通天天透天天插| 综合激情网激情五月五月婷婷| 美女在线观看日本亚洲一区| 青青尤物在线观看视频网站| 人妻最新视频在线免费观看| 日本真人性生活视频免费看| 欧美一区二区三区四区性视频| 91人妻人人做人人爽在线| 亚洲Av无码国产综合色区| 成年人黄视频在线观看| 欧美精品久久久久久影院| 精品日产卡一卡二卡国色天香 | 国产精品黄色的av| 美女 午夜 在线视频| 亚洲精品 日韩电影| 97超碰免费在线视频| 亚洲av日韩高清hd| 亚洲超碰97人人做人人爱| 日本a级视频老女人| 九色porny九色9l自拍视频| 91欧美在线免费观看| 人人超碰国字幕观看97| 欧美精品久久久久久影院| 亚洲午夜高清在线观看| 一区二区三区激情在线| 国产实拍勾搭女技师av在线| 新婚人妻聚会被中出| 久久久制服丝袜中文字幕| 人人妻人人澡人人爽人人dvl| 狠狠躁夜夜躁人人爽天天天天97| 天天日天天干天天要| 熟女人妻在线中出观看完整版| 久久丁香花五月天色婷婷| 青青青激情在线观看视频| 亚洲国产欧美国产综合在线| 天天操天天干天天艹| 五月色婷婷综合开心网4438| 亚洲一区二区三区五区| 久青青草视频手机在线免费观看 | 自拍偷拍日韩欧美一区二区| japanese五十路熟女熟妇| 粉嫩欧美美人妻小视频| 91中文字幕最新合集| 成人av亚洲一区二区| 毛片av在线免费看| 91色网站免费在线观看| 青青青青爽手机在线| 97年大学生大白天操逼| 欧美黑人与人妻精品| mm131美女午夜爽爽爽| 后入美女人妻高清在线| 国产一区二区欧美三区| 国产午夜无码福利在线看| 亚洲欧美激情人妻偷拍| 欧美va亚洲va天堂va| 亚洲天堂av最新网址| 东京热男人的av天堂| 97超碰免费在线视频| 国产精品3p和黑人大战| 在线免费视频 自拍| 国产乱子伦精品视频潮优女| 成人激情文学网人妻| 日韩午夜福利精品试看| 免费观看国产综合视频| 亚洲推理片免费看网站| 国产成人精品av网站| 亚洲成人黄色一区二区三区| 天天摸天天日天天操| 激情色图一区二区三区| 91精品国产91久久自产久强| 亚洲一级美女啪啪啪| 精品久久久久久高潮| 亚洲精品av在线观看| 91精品高清一区二区三区| 亚洲成人国产av在线| 天天草天天色天天干| 日本www中文字幕| 亚洲国际青青操综合网站| 亚洲av男人的天堂你懂的| 伊人网中文字幕在线视频| 狠狠嗨日韩综合久久| 人妻丝袜榨强中文字幕| 视频一区 二区 三区 综合| 国产刺激激情美女网站| 五月天中文字幕内射| 超黄超污网站在线观看| 欧美黑人性暴力猛交喷水| 国产真实乱子伦a视频| 久草电影免费在线观看| 在线观看视频网站麻豆| 国产精品久久久黄网站| 精内国产乱码久久久久久| 国产在线一区二区三区麻酥酥| 韩国亚洲欧美超一级在线播放视频| 中文字幕AV在线免费看 | 亚洲一区二区人妻av| 亚洲激情偷拍一区二区| 孕妇奶水仑乱A级毛片免费看| 91麻豆精品秘密入口在线观看 | 在线观看视频一区麻豆| 天天日天天操天天摸天天舔| 丰满的继坶3中文在线观看| 亚洲一级特黄特黄黄色录像片| 亚洲av成人免费网站| 国产精品久久久久久久女人18| 极品丝袜一区二区三区| 18禁免费av网站| 精品少妇一二三视频在线| 福利视频一区二区三区筱慧 | 大陆av手机在线观看| 久久久久久久久久一区二区三区| 中文字幕在线乱码一区二区| 中文字幕之无码色多多| 2012中文字幕在线高清| wwwxxx一级黄色片| 午夜精品福利一区二区三区p| 日美女屁股黄邑视频| 欧美伊人久久大香线蕉综合| 国产欧美精品一区二区高清| mm131美女午夜爽爽爽| 欧美成一区二区三区四区| 社区自拍揄拍尻屁你懂的| 亚洲免费视频欧洲免费视频| 欧美亚洲一二三区蜜臀| 国产在线一区二区三区麻酥酥| 任你操任你干精品在线视频| 中文字幕高清免费在线人妻| 新97超碰在线观看| 国产精选一区在线播放| 国产午夜福利av导航| 久久久久五月天丁香社区| 韩国爱爱视频中文字幕| 天天射夜夜操综合网| 欧美精产国品一二三产品价格| 中文字幕网站你懂的| 老鸭窝在线观看一区| 天天操夜夜操天天操天天操| 天天日天天透天天操| 男人和女人激情视频| 欧美一级片免费在线成人观看| yellow在线播放av啊啊啊| 大鸡巴插入美女黑黑的阴毛| 国产女人被做到高潮免费视频| 91色秘乱一区二区三区| 国产一区av澳门在线观看| 国产精品国产精品一区二区| 精品少妇一二三视频在线| 人妻久久无码中文成人| 91精品一区二区三区站长推荐| 日韩熟女av天堂系列| 一区二区三区在线视频福利| 欧美男人大鸡吧插女人视频| 中文字幕国产专区欧美激情| 男人天堂av天天操| 亚洲精品av在线观看| 北条麻妃肉色丝袜视频| nagger可以指黑人吗| 欧美精品亚洲精品日韩在线| 青青青青在线视频免费观看| 欧美精品一区二区三区xxxx| 日本成人不卡一区二区| 青青草亚洲国产精品视频| 9久在线视频只有精品| 美洲精品一二三产区区别| 中文字幕亚洲久久久| 视频在线亚洲一区二区| 少妇一区二区三区久久久| 在线观看免费视频网| 91人妻精品久久久久久久网站 | 天天日天天爽天天爽| 五月色婷婷综合开心网4438| 超碰中文字幕免费观看| 亚洲视频在线观看高清| 一区二区三区蜜臀在线| 97年大学生大白天操逼| 亚洲国产在线精品国偷产拍| 国产麻豆乱子伦午夜视频观看| 四川乱子伦视频国产vip| 在线观看一区二区三级| 91在线视频在线精品3| 亚洲综合自拍视频一区| 亚洲激情唯美亚洲激情图片| 亚洲第一伊人天堂网| 大胸性感美女羞爽操逼毛片| 亚洲欧美另类自拍偷拍色图| 2022中文字幕在线| 在线观看av亚洲情色| 超污视频在线观看污污污| 国产精品一区二区av国| 一区二区三区毛片国产一区| 日本高清在线不卡一区二区| 欧美偷拍亚洲一区二区| av一本二本在线观看| 久久久久只精品国产三级| 国产之丝袜脚在线一区二区三区| av欧美网站在线观看| 人人爱人人妻人人澡39| 久久丁香花五月天色婷婷| 亚洲天堂有码中文字幕视频| 80电影天堂网官网| 中文字幕—97超碰网| 天天想要天天操天天干| 免费国产性生活视频| 天天操天天干天天插| 福利一二三在线视频观看| 欧美va不卡视频在线观看| 亚洲欧美成人综合视频| 成人国产激情自拍三区| 国产日韩av一区二区在线| 亚洲成人黄色一区二区三区| 97精品成人一区二区三区| 大香蕉伊人中文字幕| 人妻无码中文字幕专区| 亚洲色偷偷综合亚洲AV伊人| 无码中文字幕波多野不卡| 国产欧美日韩在线观看不卡| 欧美va亚洲va天堂va| 熟女少妇激情五十路| 熟女少妇激情五十路| 久久久久久国产精品| 亚洲精品国品乱码久久久久| 成人18禁网站在线播放| 久久精品亚洲国产av香蕉| 2012中文字幕在线高清| 肏插流水妹子在线乐播下载| 国产成人无码精品久久久电影| 亚洲成人情色电影在线观看| 精品少妇一二三视频在线| 日韩精品电影亚洲一区| 欧美日韩v中文在线| 人人人妻人人澡人人| 啪啪啪18禁一区二区三区| 午夜毛片不卡免费观看视频 | 女人精品内射国产99| 天天日天天干天天要| 第一福利视频在线观看 | 夜夜嗨av一区二区三区中文字幕| 久久精品视频一区二区三区四区| 欧美综合婷婷欧美综合| 91亚洲精品干熟女蜜桃频道| 91亚洲手机在线视频播放| 国产a级毛久久久久精品| 亚洲Av无码国产综合色区| 国产精品福利小视频a| 成人亚洲国产综合精品| 丝袜亚洲另类欧美变态| 欧美一区二区三区啪啪同性| 午夜的视频在线观看| 国产精品黄片免费在线观看| 亚洲特黄aaaa片| 一区二区三区毛片国产一区| 最新欧美一二三视频| 亚洲精品 日韩电影| 人妻熟女在线一区二区| 青青青青青青青青青国产精品视频| 午夜在线一区二区免费| 亚洲 图片 欧美 图片| 老司机99精品视频在线观看| 麻豆性色视频在线观看| 国产va在线观看精品| 五十路人妻熟女av一区二区| 欧美美女人体视频一区| 亚洲国产成人最新资源| 亚洲一区二区人妻av| 欧美一区二区中文字幕电影 | 国产福利小视频免费观看| 女同性ⅹxx女同h偷拍| 天天做天天干天天操天天射| 色综合久久久久久久久中文| 国产精品自偷自拍啪啪啪| 91精品一区二区三区站长推荐| 男人的天堂在线黄色| 乱亲女秽乱长久久久| 天天色天天舔天天射天天爽| 伊人网中文字幕在线视频| 久久久制服丝袜中文字幕| 国产日韩精品一二三区久久久| 亚洲午夜精品小视频| 天堂av在线播放免费| 免费看国产av网站| 中文字幕日韩无敌亚洲精品| 一区二区三区久久久91| 我想看操逼黄色大片| 熟妇一区二区三区高清版| 亚洲免费在线视频网站| 免费观看成年人视频在线观看| 热思思国产99re| 国产麻豆国语对白露脸剧情| 少妇高潮无套内谢麻豆| 精品视频国产在线观看| 激情图片日韩欧美人妻| 国产视频网站一区二区三区 | 精品区一区二区三区四区人妻| 99热色原网这里只有精品| 日本av高清免费网站| 不卡一区一区三区在线| 日本丰满熟妇BBXBBXHD| 狠狠操操操操操操操操操 | 老师啊太大了啊啊啊尻视频| 免费高清自慰一区二区三区网站| 伊拉克及约旦宣布关闭领空| 日韩加勒比东京热二区| 100%美女蜜桃视频| 婷婷综合亚洲爱久久| 中文字幕一区二区三区蜜月| 青草久久视频在线观看| 亚洲av无码成人精品区辽| 亚洲免费av在线视频| 丝袜亚洲另类欧美变态| 亚洲精品中文字幕下载| 国产麻豆乱子伦午夜视频观看| 亚洲 清纯 国产com| 亚洲码av无色中文| 亚洲午夜福利中文乱码字幕| 国产精品久久久久久久久福交| 人妻无码色噜噜狠狠狠狠色| 亚洲熟妇久久无码精品| 高潮视频在线快速观看国家快速| av天堂加勒比在线| 久久永久免费精品人妻专区| 青娱乐最新视频在线| 一区二区三区美女毛片| 啪啪啪啪啪啪啪啪av| 免费av岛国天堂网站| 国产亚洲欧美另类在线观看| 日韩中文字幕福利av| 国产自拍在线观看成人| 亚洲av天堂在线播放| 日韩伦理短片在线观看| 日韩近亲视频在线观看| 在线观看一区二区三级| 国产女人叫床高潮大片视频| 亚洲国产在线精品国偷产拍| av中文字幕电影在线看| 五十路熟女av天堂| 国产av一区2区3区| 中文字幕 码 在线视频| 欧美一区二区三区高清不卡tv| 熟女妇女老妇一二三区| 久青青草视频手机在线免费观看| 亚洲国产成人最新资源| 婷婷五月亚洲综合在线| 青青色国产视频在线| 老司机欧美视频在线看| 免费岛国喷水视频在线观看| 国产+亚洲+欧美+另类| 91国内精品久久久久精品一| 少妇被强干到高潮视频在线观看| 亚洲av极品精品在线观看| 另类av十亚洲av| 久草视频中文字幕在线观看| 大陆精品一区二区三区久久| 欧美精品亚洲精品日韩在线| 国产精品日韩欧美一区二区| 姐姐的朋友2在线观看中文字幕 | 3D动漫精品啪啪一区二区下载| 中文字幕在线乱码一区二区| 粉嫩av懂色av蜜臀av | 黄页网视频在线免费观看| 午夜在线观看一区视频| 国产美女午夜福利久久| 亚洲av日韩精品久久久| 天天躁日日躁狠狠躁av麻豆| 青青青视频手机在线观看| 精品人妻每日一部精品| 自拍 日韩 欧美激情| 蜜桃专区一区二区在线观看| 中文字幕亚洲久久久| 国产成人精品久久二区91| 国产一级精品综合av| 国产午夜无码福利在线看| 一色桃子人妻一区二区三区| 午夜福利人人妻人人澡人人爽| 中文字幕中文字幕 亚洲国产| 亚洲一区二区三区偷拍女厕91| 黄色三级网站免费下载| 99人妻视频免费在线| 天堂女人av一区二区| 人妻少妇一区二区三区蜜桃| www久久久久久久久久久| 国产在线观看黄色视频| 精品91高清在线观看| 丰满熟女午夜福利视频| 三级等保密码要求条款| 欧美在线精品一区二区三区视频| 偷拍自拍视频图片免费| 日本少妇高清视频xxxxx| 懂色av蜜桃a v| 91福利在线视频免费观看| 国产日韩欧美视频在线导航| av在线资源中文字幕| 免费在线播放a级片| 日韩精品中文字幕在线| 亚洲天堂精品久久久| 欧美区一区二区三视频| 91九色porny国产在线| 国产性色生活片毛片春晓精品| 亚洲精品国品乱码久久久久| 国产综合高清在线观看| 亚洲欧美成人综合视频| 动漫美女的小穴视频| 人妻另类专区欧美制服| 日本一区精品视频在线观看| 好男人视频在线免费观看网站| 亚洲综合一区二区精品久久| 欧美一区二区三区激情啪啪啪| 国产成人一区二区三区电影网站| 黄色中文字幕在线播放| 国产自拍在线观看成人| 不卡一区一区三区在线| 久久久久久性虐视频| 亚洲国际青青操综合网站| 青青青青青青草国产| 久久久久五月天丁香社区| 91九色国产熟女一区二区| lutube在线成人免费看| 欧美精品国产综合久久| 夏目彩春在线中文字幕| 岛国黄色大片在线观看| 偷青青国产精品青青在线观看| 熟女国产一区亚洲中文字幕| 天天日天天干天天搡| 91精品综合久久久久3d动漫| 果冻传媒av一区二区三区| 激情五月婷婷综合色啪| 欧美视频一区免费在线| 91麻豆精品久久久久| 绝顶痉挛大潮喷高潮无码| 干逼又爽又黄又免费的视频| 偷拍自拍亚洲视频在线观看| 班长撕开乳罩揉我胸好爽| 青娱乐在线免费视频盛宴| 亚洲精品国产久久久久久| 日本韩国免费福利精品| 日本韩国亚洲综合日韩欧美国产| 亚洲高清国产自产av| 天天操天天插天天色| 日韩美女综合中文字幕pp| 韩国AV无码不卡在线播放| huangse网站在线观看| 精品老妇女久久9g国产| 天天日天天摸天天爱| 日本韩国亚洲综合日韩欧美国产| 特级欧美插插插插插bbbbb| 亚洲中文字幕人妻一区| 年轻的人妻被夫上司侵犯| 中文字幕视频一区二区在线观看 | 精品国产高潮中文字幕| 五十路在线观看完整版| 福利国产视频在线观看| av天堂中文字幕最新| 亚洲一级 片内射视正片| 日韩亚洲高清在线观看| av中文字幕电影在线看| 欧美日韩在线精品一区二区三| 沙月文乃人妻侵犯中文字幕在线 | 天天操夜夜骑日日摸| 天天艹天天干天天操| 欧美成人综合色在线噜噜| 国产日韩一区二区在线看| 欧美偷拍自拍色图片| 一级黄色片夫妻性生活| 天天夜天天日天天日| 一区二区视频在线观看免费观看| 绝顶痉挛大潮喷高潮无码| 一级黄片大鸡巴插入美女| 熟女人妻一区二区精品视频| 人妻av无码专区久久绿巨人| 免费啪啪啪在线观看视频| 青青青青草手机在线视频免费看| 老司机你懂得福利视频| 中国老熟女偷拍第一页| 丰满的继坶3中文在线观看| 中文乱理伦片在线观看| 欧美日韩人妻久久精品高清国产| 在线观看911精品国产| 9色精品视频在线观看| 护士特殊服务久久久久久久| 97人妻无码AV碰碰视频| 日日夜夜精品一二三| 大白屁股精品视频国产| 岛国免费大片在线观看| 日韩a级黄色小视频| 久久三久久三久久三久久| 色婷婷精品大在线观看| 亚洲欧美人精品高清| 国产揄拍高清国内精品对白| 日韩一区二区三区三州| 日韩伦理短片在线观看| 黑人变态深video特大巨大| 黄色黄色黄片78在线| 日本一区精品视频在线观看| www日韩毛片av| 午夜精品九一唐人麻豆嫩草成人| 欧美亚洲一二三区蜜臀| 国产精品黄色的av| 亚洲一区自拍高清免费视频| 日本人妻欲求不满中文字幕| 久草视频福利在线首页| 超碰97人人澡人人| 91破解版永久免费| 男人操女人的逼免费视频| 91国内精品久久久久精品一| 欧美怡红院视频在线观看| 硬鸡巴动态操女人逼视频| 亚洲av第国产精品| 毛片av在线免费看| h国产小视频福利在线观看| 大香蕉伊人国产在线| 欧美成人黄片一区二区三区| 亚洲va国产va欧美精品88| 国产女人露脸高潮对白视频| 亚洲国产精品久久久久蜜桃| 亚洲精品一区二区三区老狼| 亚洲成人激情av在线| 国产精品一区二区久久久av| 中文字幕日本人妻中出| 色综合久久无码中文字幕波多| 精品国产亚洲av一淫| 中国视频一区二区三区| 一区二区视频在线观看视频在线| 亚洲成人线上免费视频观看| 日本xx片在线观看| 韩国一级特黄大片做受| 亚洲无码一区在线影院| 污污小视频91在线观看| 欧美黄色录像免费看的| 久久热这里这里只有精品| av中文字幕在线导航| 亚洲1区2区3区精华液| 国产在线观看黄色视频| 日本美女成人在线视频| 亚洲成人免费看电影| 亚洲另类综合一区小说| 黑人大几巴狂插日本少妇| 99国内小视频在现欢看| 欧美日本在线视频一区| 亚洲国产美女一区二区三区软件 | 99热99re在线播放| 国产福利在线视频一区| 午夜精品一区二区三区更新| 久久精品国产亚洲精品166m| 国产美女一区在线观看| 97a片免费在线观看| 又粗又硬又猛又爽又黄的| 五十路人妻熟女av一区二区| 亚洲成人三级在线播放| 日本www中文字幕| 国产精品久久久久久久女人18| 涩涩的视频在线观看视频| 亚洲av琪琪男人的天堂| 日本五十路熟新垣里子| 十八禁在线观看地址免费 | 色婷婷综合激情五月免费观看| 亚洲 清纯 国产com| 亚洲中文字幕校园春色| 亚洲精品av在线观看| 午夜的视频在线观看| okirakuhuhu在线观看| 国产内射中出在线观看| 色哟哟国产精品入口| 色综合久久五月色婷婷综合| 日日夜夜狠狠干视频| 91 亚洲视频在线观看| 午夜婷婷在线观看视频| 婷婷久久一区二区字幕网址你懂得| 日韩美av高清在线| 真实国产乱子伦一区二区| 日本一道二三区视频久久 | 国产视频一区二区午夜| 国产精品人妻一区二区三区网站 | 久久h视频在线观看| chinese国产盗摄一区二区| 人妻熟女中文字幕aⅴ在线| 日本免费一级黄色录像| 国产精品视频一区在线播放| 在线观看免费岛国av| 红桃av成人在线观看| 99国内精品永久免费视频| 日本人妻精品久久久久久| 亚洲的电影一区二区三区| 九色porny九色9l自拍视频| 都市激情校园春色狠狠| 青青社区2国产视频| 97超碰国语国产97超碰| yellow在线播放av啊啊啊| 在线视频自拍第三页| 日韩精品激情在线观看| 国产高潮无码喷水AV片在线观看| 中文人妻AV久久人妻水| 国产剧情演绎系列丝袜高跟| 午夜免费体验区在线观看 | 欧美一区二区三区久久久aaa| 亚洲欧美国产综合777| 中文字幕午夜免费福利视频| 久久久久久9999久久久久| 欧美怡红院视频在线观看| 国产中文字幕四区在线观看| 亚洲精品亚洲人成在线导航| 不卡精品视频在线观看| 日本av熟女在线视频| 在线观看av亚洲情色| 首之国产AV医生和护士小芳| 日韩欧美高清免费在线| 姐姐的朋友2在线观看中文字幕 | 久久久久只精品国产三级| 日本少妇在线视频大香蕉在线观看| 免费大片在线观看视频网站| 91破解版永久免费| 绯色av蜜臀vs少妇| 一级A一级a爰片免费免会员| 日本性感美女视频网站| 五月色婷婷综合开心网4438| 天天做天天干天天舔| 日韩剧情片电影在线收看| 在线免费观看国产精品黄色| 久久三久久三久久三久久| av完全免费在线观看av| 偷拍美女一区二区三区| 2020中文字幕在线播放| 99久久中文字幕一本人| 91九色国产porny蝌蚪| 亚洲av男人天堂久久| 黄工厂精品视频在线观看| 美女日逼视频免费观看| 午夜精品久久久久麻豆影视| 亚洲一区二区三区av网站| 黄色av网站免费在线| 人妻丝袜精品中文字幕| 女人精品内射国产99| 日本少妇精品免费视频| 粉嫩av蜜乳av蜜臀| 成人性爱在线看四区| 看一级特黄a大片日本片黑人| 国产亚洲成人免费在线观看 | 国产三级影院在线观看| 成人午夜电影在线观看 久久| 夜色17s精品人妻熟女| 91啪国自产中文字幕在线| 精品久久久久久久久久久久人妻| 久草免费人妻视频在线| 国产午夜福利av导航| 中文字幕一区二区亚洲一区| 中文字幕+中文字幕| 日本一区二区三区免费小视频| 偷拍自拍国产在线视频| 中文字幕无码一区二区免费| 日韩精品中文字幕福利| 九一传媒制片厂视频在线免费观看| 天天日天天玩天天摸| 综合色区亚洲熟妇shxstz| 亚洲图片偷拍自拍区| 在线观看欧美黄片一区二区三区| 日韩一区二区电国产精品| 婷婷激情四射在线观看视频| 99精品国产aⅴ在线观看| 在线观看视频 你懂的| 啪啪啪啪啪啪啪啪av| 久久久久久cao我的性感人妻| 好了av中文字幕在线| 欧美日本aⅴ免费视频| 亚洲激情av一区二区| 亚洲国产欧美国产综合在线| 久久热久久视频在线观看| 在线 中文字幕 一区| 久久久精品精品视频视频| 欧美成人黄片一区二区三区 | 青青青青青青草国产| 偷拍自拍亚洲视频在线观看| 99热这里只有国产精品6| 传媒在线播放国产精品一区| 国产成人综合一区2区| 天码人妻一区二区三区在线看| 四川五十路熟女av| 成熟熟女国产精品一区| 黑人3p华裔熟女普通话| 国产精品视频一区在线播放| 91桃色成人网络在线观看| 1000小视频在线| 日韩加勒比东京热二区| 男人插女人视频网站| 中文字幕av一区在线观看| 亚洲av日韩精品久久久| 黄色av网站免费在线| 中文人妻AV久久人妻水| 黄色录像鸡巴插进去| 99re久久这里都是精品视频| 亚洲成人av在线一区二区| 久久久极品久久蜜桃| 国产精品自拍偷拍a| 日韩欧美国产一区ab| 大胆亚洲av日韩av| 五十路人妻熟女av一区二区| 亚洲综合一区二区精品久久| 护士特殊服务久久久久久久| 精品久久久久久久久久久久人妻| 欧美亚洲国产成人免费在线| 亚洲熟妇久久无码精品| 直接能看的国产av| 极品粉嫩小泬白浆20p主播| 亚洲高清一区二区三区视频在线| 久草极品美女视频在线观看| 一区二区免费高清黄色视频| 国产精品久久综合久久| 美女视频福利免费看| 欧美va不卡视频在线观看| 北条麻妃av在线免费观看| 乱亲女秽乱长久久久| 天天操夜夜骑日日摸| 伊拉克及约旦宣布关闭领空| 亚洲成人黄色一区二区三区| 视频久久久久久久人妻| 麻豆性色视频在线观看| 馒头大胆亚洲一区二区| 四虎永久在线精品免费区二区| 精品国产亚洲av一淫| 毛片一级完整版免费| 一区二区三区 自拍偷拍| 成年人中文字幕在线观看| 亚洲 中文 自拍 另类 欧美| 青娱乐在线免费视频盛宴| 亚洲护士一区二区三区| 国产真实乱子伦a视频| 亚洲成人av在线一区二区| 93精品视频在线观看| 91久久精品色伊人6882| 粉嫩小穴流水视频在线观看| 天天日天天爽天天爽| 中文字幕日韩人妻在线三区| 欧美综合婷婷欧美综合| 老司机福利精品免费视频一区二区 | 国产精品一区二区久久久av| 不卡日韩av在线观看| 91福利视频免费在线观看| 日比视频老公慢点好舒服啊| 午夜精品福利91av| 大香蕉伊人国产在线| aⅴ五十路av熟女中出| 97黄网站在线观看| 99精品国产aⅴ在线观看| 亚洲区美熟妇久久久久| 91天堂天天日天天操| 日韩精品激情在线观看| 9l人妻人人爽人人爽| 亚洲精品中文字幕下载| 韩国男女黄色在线观看| 熟女妇女老妇一二三区| 久久久久91精品推荐99| 亚洲图库另类图片区| 成人亚洲国产综合精品| 午夜福利资源综合激情午夜福利资| 开心 色 六月 婷婷| 精品美女在线观看视频在线观看| 亚洲va国产va欧美精品88| 男生舔女生逼逼的视频| 亚洲国产美女一区二区三区软件 | 日本女人一级免费片| 天堂av在线最新版在线| 日本黄色三级高清视频| 日本黄在免费看视频| 成年人该看的视频黄免费| 天天干天天操天天爽天天摸| 亚洲av天堂在线播放| 超碰中文字幕免费观看| 久久久久久9999久久久久| 中文字幕熟女人妻久久久| 国产欧美日韩在线观看不卡| 一区二区三区综合视频| 亚洲欧美综合在线探花| 黄色视频在线观看高清无码| 视频在线免费观看你懂得| 好吊操视频这里只有精品| 日本阿v视频在线免费观看| 青青草精品在线视频观看| 成人H精品动漫在线无码播放| 一级a看免费观看网站| 激情图片日韩欧美人妻| 中文字幕免费福利视频6| 好吊操视频这里只有精品| 日本熟女50视频免费| 宅男噜噜噜666国产| 青青热久免费精品视频在线观看| 亚洲欧美国产综合777| 国产一区二区久久久裸臀| 亚洲国产在线精品国偷产拍 | 国产老熟女伦老熟妇ⅹ| 涩涩的视频在线观看视频| 在线免费观看欧美小视频| 不卡一不卡二不卡三| 免费高清自慰一区二区三区网站| 99国内精品永久免费视频| 香蕉aⅴ一区二区三区| 亚洲av日韩av网站| 激情小视频国产在线| 午夜青青草原网在线观看| 在线观看成人国产电影| 人妻少妇中文有码精品| free性日本少妇| 三级等保密码要求条款| 护士特殊服务久久久久久久| 国产精品久久久久久久精品视频| av手机在线免费观看日韩av| 成人精品视频99第一页| 国产伦精品一区二区三区竹菊| 99久久99久国产黄毛片| 青青青青青青青青青青草青青| 中文字幕在线免费第一页| 日韩av有码中文字幕| 黑人巨大精品欧美视频| 一本久久精品一区二区| 国产精品污污污久久| 最新91精品视频在线 | 中文字幕人妻av在线观看| 亚洲另类伦春色综合小| 国产变态另类在线观看| 骚逼被大屌狂草视频免费看| 传媒在线播放国产精品一区| 久久这里有免费精品| 日本欧美视频在线观看三区| 中文字幕午夜免费福利视频| 少妇露脸深喉口爆吞精| 2022国产综合在线干| 大鸡吧插入女阴道黄色片| 综合精品久久久久97| 欧美 亚洲 另类综合| av亚洲中文天堂字幕网| 色花堂在线av中文字幕九九| 免费在线观看污污视频网站| 青青草原色片网站在线观看| 久久久久久久久久一区二区三区| 伊人综合免费在线视频| 亚国产成人精品久久久| 动漫黑丝美女的鸡巴| 久久精品国产999| 日韩中文字幕在线播放第二页 | 国产亚洲精品欧洲在线观看| 啊啊啊想要被插进去视频| 亚洲欧美精品综合图片小说| 亚洲一区自拍高清免费视频| mm131美女午夜爽爽爽| 好太好爽好想要免费| 在线观看成人国产电影| 熟女国产一区亚洲中文字幕| 午夜毛片不卡免费观看视频| 亚洲 国产 成人 在线| 搡老妇人老女人老熟女| 少妇人妻久久久久视频黄片| 国产真实灌醉下药美女av福利| 又粗又硬又猛又黄免费30| 高潮喷水在线视频观看| 北条麻妃高跟丝袜啪啪| 东京热男人的av天堂| 午夜免费观看精品视频| 一区二区三区四区中文| 一区二区三区四区视频在线播放| 欧美成人精品在线观看| 日比视频老公慢点好舒服啊| 色秀欧美视频第一页| 99久久99久国产黄毛片| 久久久精品国产亚洲AV一| 亚洲伊人久久精品影院一美女洗澡 | 东京热男人的av天堂| 亚洲欧美国产综合777| 国产露脸对白在线观看| free性日本少妇| 在线视频这里只有精品自拍| 久久三久久三久久三久久| 同居了嫂子在线播高清中文| jul—619中文字幕在线| 亚洲一级 片内射视正片| 亚洲av天堂在线播放| 男人和女人激情视频| 中文字幕亚洲久久久| 国产欧美精品不卡在线| 一区二区三区日本伦理| 国产亚洲精品视频合集| brazzers欧熟精品系列| 真实国产乱子伦一区二区| 91九色国产熟女一区二区| jul—619中文字幕在线| 黄色视频成年人免费观看| 久久久久久久精品成人热| 亚洲av人人澡人人爽人人爱| 韩国AV无码不卡在线播放| 国产污污污污网站在线| 在线观看成人国产电影| 青青青国产免费视频| 免费在线黄色观看网站| 综合精品久久久久97| 激情图片日韩欧美人妻| 亚洲精品午夜aaa久久| 色狠狠av线不卡香蕉一区二区 | 亚洲国产精品黑丝美女| 后入美女人妻高清在线| 亚洲图库另类图片区| 18禁网站一区二区三区四区| 日韩特级黄片高清在线看| 中文字幕人妻三级在线观看| 白白操白白色在线免费视频| 狠狠的往里顶撞h百合| 久久热久久视频在线观看| 午夜成午夜成年片在线观看| 国产又粗又硬又猛的毛片视频| 中国黄色av一级片| 国产亚洲精品欧洲在线观看| 精品视频一区二区三区四区五区| 男人和女人激情视频| 欧美精品免费aaaaaa| 免费观看污视频网站| 一区二区三区精品日本| 91欧美在线免费观看| 999热精品视频在线| 欧美成人综合视频一区二区| 午夜久久久久久久99| 欧美男人大鸡吧插女人视频| 男人靠女人的逼视频| 沈阳熟妇28厘米大战黑人| 五十路在线观看完整版| 欧美一区二区三区激情啪啪啪| 大尺度激情四射网站| 1区2区3区不卡视频| 传媒在线播放国产精品一区 | 欧美黄片精彩在线免费观看| 亚洲av男人的天堂你懂的| 一区二区三区在线视频福利| 青青擦在线视频国产在线| 777奇米久久精品一区| 红桃av成人在线观看| 啪啪啪操人视频在线播放| 亚洲精品欧美日韩在线播放| 77久久久久国产精产品| 日韩成人免费电影二区| 亚洲国产欧美一区二区三区…| 国产精品视频资源在线播放| 在线观看视频 你懂的| 国产亚洲欧美另类在线观看| 色哟哟国产精品入口| 免费在线观看污污视频网站| 午夜婷婷在线观看视频| 不卡一区一区三区在线| 国产午夜无码福利在线看| 欧亚日韩一区二区三区观看视频| 大尺度激情四射网站| 热思思国产99re| 特级无码毛片免费视频播放| 亚洲 欧美 自拍 偷拍 在线| 国产乱子伦一二三区| 都市家庭人妻激情自拍视频| 亚洲精品无码久久久久不卡| 无码国产精品一区二区高潮久久4| 91免费放福利在线观看| 免费人成黄页网站在线观看国产| 韩国爱爱视频中文字幕| 亚洲在线一区二区欧美| 亚洲欧美日韩视频免费观看| 欧美色婷婷综合在线| 国产麻豆91在线视频| 免费看国产又粗又猛又爽又黄视频| 888欧美视频在线| 亚洲中文字幕人妻一区| nagger可以指黑人吗| 天堂资源网av中文字幕| 中文字幕—97超碰网| 国产综合高清在线观看| 九一传媒制片厂视频在线免费观看| 中文字母永久播放1区2区3区 | 欧美国产亚洲中英文字幕| 国产日韩欧美视频在线导航| 99精品国产自在现线观看| 国产激情av网站在线观看| 国产高清在线观看1区2区| 日本午夜久久女同精女女| 男人天堂av天天操| 欧美老妇精品另类不卡片| 在线观看视频 你懂的| 国产午夜亚洲精品不卡在线观看| 水蜜桃国产一区二区三区| 午夜激情高清在线观看| 亚洲av无硬久久精品蜜桃| 91国内精品久久久久精品一| 中国熟女@视频91| 男女啪啪视频免费在线观看| 顶级尤物粉嫩小尤物网站| 人妻少妇亚洲精品中文字幕| 人人爱人人妻人人澡39| 99国产精品窥熟女精品| 99国产精品窥熟女精品| 80电影天堂网官网| 在线观看免费av网址大全| 国产janese在线播放| 中文字幕视频一区二区在线观看| 日韩人妻丝袜中文字幕| 色婷婷精品大在线观看| 国产精品久久综合久久| 91亚洲精品干熟女蜜桃频道| 韩国爱爱视频中文字幕| 99精品国产aⅴ在线观看| 欧美亚洲中文字幕一区二区三区 | 93视频一区二区三区| 国产亚洲四十路五十路| 青青青青青青青青青青草青青| 青青青青青青青青青青草青青| 亚洲精品一线二线在线观看| 黑人借宿ntr人妻的沦陷2| 激情小视频国产在线| 自拍偷区二区三区麻豆| 国产熟妇一区二区三区av| 91福利视频免费在线观看| 大骚逼91抽插出水视频| 国产黄网站在线观看播放| 欧美色婷婷综合在线| www天堂在线久久| 大香蕉大香蕉在线看| 日本www中文字幕| 韩国爱爱视频中文字幕| 五月婷婷在线观看视频免费| 天码人妻一区二区三区在线看 | 国产一区二区三免费视频| 男人在床上插女人视频| 欧美熟妇一区二区三区仙踪林| 国产实拍勾搭女技师av在线| 综合激情网激情五月天| 自拍 日韩 欧美激情| 99精品国自产在线人| 91在线免费观看成人| 青青草原色片网站在线观看| 黑人解禁人妻叶爱071| 天天摸天天干天天操科普| 色综合色综合色综合色| 成人sm视频在线观看| 欧美激情电影免费在线| 男人操女人的逼免费视频| 亚洲综合在线视频可播放| 91大神福利视频网| 91色网站免费在线观看| 精品视频国产在线观看| 爱爱免费在线观看视频| 国产视频网站一区二区三区| 日本免费视频午夜福利视频| 亚洲特黄aaaa片| 水蜜桃一区二区三区在线观看视频| 欧美精品黑人性xxxx| 粉嫩小穴流水视频在线观看| 国产精品黄页网站视频| 日本高清在线不卡一区二区| 绯色av蜜臀vs少妇| 19一区二区三区在线播放| 美女在线观看日本亚洲一区| 国产精品久久久久久久女人18| 日韩av有码中文字幕| 无忧传媒在线观看视频| 日本人妻欲求不满中文字幕| 亚洲国产精品黑丝美女| 成人影片高清在线观看| 中文字幕在线欧美精品| 一区二区三区在线视频福利| 午夜福利资源综合激情午夜福利资 | 亚洲av无码成人精品区辽| 欧美日韩熟女一区二区三区| 欧美激情电影免费在线| 在线免费观看日本片| 女蜜桃臀紧身瑜伽裤| 天天干天天操天天摸天天射| 天天操天天干天天插| 国产chinesehd精品麻豆| 日韩三级电影华丽的外出| 色吉吉影音天天干天天操| 国内精品在线播放第一页| 亚洲精品久久视频婷婷| 成人av在线资源网站| 熟女91pooyn熟女| 人妻少妇av在线观看| 岛国黄色大片在线观看| 福利视频一区二区三区筱慧| 美女张开腿让男生操在线看| 视频在线免费观看你懂得| 青娱乐最新视频在线| 欧美亚洲自偷自拍 在线| 国产女人被做到高潮免费视频| 亚洲免费成人a v| 亚洲特黄aaaa片| 亚洲熟妇无码一区二区三区| 开心 色 六月 婷婷| 93人妻人人揉人人澡人人| 农村胖女人操逼视频| 青青青青在线视频免费观看| 国产精品免费不卡av| 特级无码毛片免费视频播放 | 美女 午夜 在线视频| 国产日韩精品一二三区久久久| 一区二区熟女人妻视频| 亚洲熟女久久久36d| 激情图片日韩欧美人妻| 国产视频在线视频播放| 偷偷玩弄新婚人妻h视频| 人妻自拍视频中国大陆| 国产成人综合一区2区| 不卡一不卡二不卡三| 四川五十路熟女av| 日本成人一区二区不卡免费在线 | 青青青青操在线观看免费| 国产视频在线视频播放| 在线播放 日韩 av| 熟女国产一区亚洲中文字幕| 加勒比视频在线免费观看| 成人性爱在线看四区| 早川濑里奈av黑人番号| 女生自摸在线观看一区二区三区 | 夜女神免费福利视频| 亚洲综合图片20p| 激情国产小视频在线| 日本午夜久久女同精女女| 亚洲国际青青操综合网站| 国产欧美精品一区二区高清 | 2021年国产精品自拍| 熟女人妻在线观看视频| 色伦色伦777国产精品| av日韩在线观看大全| 乱亲女秽乱长久久久| 日日摸夜夜添夜夜添毛片性色av| 日美女屁股黄邑视频| 亚洲男人的天堂a在线| 免费男阳茎伸入女阳道视频| 成人av亚洲一区二区| 人妻在线精品录音叫床| 香港一级特黄大片在线播放| 粗大的内捧猛烈进出爽大牛汉子| 嫩草aⅴ一区二区三区| 日本性感美女三级视频| 国产实拍勾搭女技师av在线| 人妻少妇亚洲一区二区| 国产卡一卡二卡三乱码手机| 中文字幕高清资源站| 久草电影免费在线观看| 91国内精品久久久久精品一| 日本女人一级免费片| 日韩美女福利视频网| 国产91精品拍在线观看| 国产综合视频在线看片| 少妇深喉口爆吞精韩国| 美女被肏内射视频网站| 亚洲福利精品视频在线免费观看| 亚洲黄色av网站免费播放| 欧美国品一二三产区区别| 天天插天天狠天天操| 黄色视频成年人免费观看| 性色av一区二区三区久久久| 黄色av网站免费在线| 中文字幕在线乱码一区二区| 亚洲人成精品久久久久久久| 一级黄色片夫妻性生活| 啪啪啪操人视频在线播放| 欧美日韩国产一区二区三区三州| 人妻丝袜av在线播放网址| 亚洲专区激情在线观看视频| 特黄老太婆aa毛毛片| 日本熟妇喷水xxx| 一区二区三区四区中文| 国产性生活中老年人视频网站| 老有所依在线观看完整版| 40道精品招牌菜特色| 99久久激情婷婷综合五月天| 青青青青操在线观看免费| 视频一区二区综合精品| 亚洲精品麻豆免费在线观看| 亚洲欧美国产综合777| 国产一区成人在线观看视频| 激情啪啪啪啪一区二区三区| 国产熟妇一区二区三区av| 91国内视频在线观看| 青青青青青青青青青青草青青 | 国产精品久久9999| 91色秘乱一区二区三区| 午夜成午夜成年片在线观看| 一区二区免费高清黄色视频| 国产午夜亚洲精品麻豆| 亚洲综合色在线免费观看| 国产中文精品在线观看| 超级av免费观看一区二区三区| 久久精品亚洲成在人线a| 亚洲专区激情在线观看视频| 日日摸夜夜添夜夜添毛片性色av| 免费观看丰满少妇做受| 久草视频中文字幕在线观看| AV无码一区二区三区不卡| 国产成人小视频在线观看无遮挡 | 国产黄色大片在线免费播放| 性色蜜臀av一区二区三区| 91国内视频在线观看| av完全免费在线观看av| 国产+亚洲+欧美+另类| 亚洲成人黄色一区二区三区| 在线观看911精品国产| 日韩精品二区一区久久| 色哟哟在线网站入口| 国产91久久精品一区二区字幕 | 久久久久久久精品成人热| 国产实拍勾搭女技师av在线| 一区二区在线观看少妇| 国产性生活中老年人视频网站| 亚国产成人精品久久久| 日本三极片中文字幕| 一级黄色片夫妻性生活| 久青青草视频手机在线免费观看| 亚洲成人av一区久久| 色97视频在线播放| 国产三级影院在线观看| 懂色av之国产精品| 中国熟女@视频91| 日比视频老公慢点好舒服啊| 黑人借宿ntr人妻的沦陷2| jiujiure精品视频在线| av新中文天堂在线网址| 骚货自慰被发现爆操| 日曰摸日日碰夜夜爽歪歪| 99精品视频之69精品视频 | 日韩人妻丝袜中文字幕| 亚洲 中文 自拍 另类 欧美| 狠狠躁夜夜躁人人爽天天久天啪| 欧洲欧美日韩国产在线| 干逼又爽又黄又免费的视频| 久久精品亚洲成在人线a| 日韩三级黄色片网站| 亚洲精品欧美日韩在线播放| 亚洲免费成人a v| 亚洲精品国产久久久久久| 97年大学生大白天操逼| 中文字幕最新久久久| 国产日本欧美亚洲精品视| 狠狠操操操操操操操操操| 亚洲精品在线资源站| 93视频一区二区三区| 夫妻在线观看视频91| 超pen在线观看视频公开97| 91亚洲国产成人精品性色| 男人在床上插女人视频| 日本熟女精品一区二区三区| 久久久制服丝袜中文字幕| 欧美偷拍自拍色图片| 国产视频在线视频播放| 沈阳熟妇28厘米大战黑人| 久久热久久视频在线观看| 在线免费观看黄页视频| 337p日本大胆欧美人| 午夜大尺度无码福利视频| 又粗又长 明星操逼小视频| 人妻久久无码中文成人| 欧美偷拍亚洲一区二区| 成人av天堂丝袜在线观看| 亚洲av男人的天堂你懂的| 欧美中文字幕一区最新网址 | 在线观看免费视频色97| 亚洲 自拍 色综合图| 制丝袜业一区二区三区| 中文字幕一区二区自拍| 大白屁股精品视频国产| 亚洲日本一区二区久久久精品| 99热国产精品666| 久久久久久9999久久久久| 天天色天天操天天舔| 国产视频网站国产视频| 亚洲激情av一区二区| 欧美视频中文一区二区三区| 自拍偷区二区三区麻豆| 在线观看欧美黄片一区二区三区| okirakuhuhu在线观看| 亚洲精品一区二区三区老狼| 国产麻豆精品人妻av| 午夜大尺度无码福利视频| 亚洲国产在人线放午夜| 国产精彩福利精品视频| 在线观看欧美黄片一区二区三区| 大屁股熟女一区二区三区| 美女小视频网站在线| 男生舔女生逼逼视频| 人妻素人精油按摩中出| 亚洲成人情色电影在线观看| 天天草天天色天天干| 97国产在线av精品| 国产精品人久久久久久| 在线不卡成人黄色精品| 国产精品自拍偷拍a| 蜜臀av久久久久久久| 一区国内二区日韩三区欧美| 国产精品国产三级麻豆| 性生活第二下硬不起来| 精品乱子伦一区二区三区免费播| 福利视频网久久91| 香港一级特黄大片在线播放| 国产精品三级三级三级| 国产精品久久久久久久久福交| 91成人精品亚洲国产| 男人操女人逼逼视频网站| 最近中文字幕国产在线| 亚洲欧美成人综合视频| 亚洲中文字幕乱码区| av在线资源中文字幕| 午夜av一区二区三区| 538精品在线观看视频| 一区二区三区四区中文| 东京热男人的av天堂| 亚洲的电影一区二区三区 | 欧美精产国品一二三产品区别大吗| 午夜久久久久久久99| 亚洲特黄aaaa片| 亚洲免费视频欧洲免费视频| 久久久久久cao我的性感人妻 | 欧美另类z0z变态| 国产精品大陆在线2019不卡| 午夜dv内射一区区| 中国黄片视频一区91| 中国把吊插入阴蒂的视频| 老司机在线精品福利视频| 国产chinesehd精品麻豆| 一二三中文乱码亚洲乱码one| 水蜜桃一区二区三区在线观看视频| 国产精品熟女久久久久浪潮| 蜜桃色婷婷久久久福利在线| 老司机在线精品福利视频| 沙月文乃人妻侵犯中文字幕在线 | 亚洲av色图18p| 精品国产高潮中文字幕| 国产又粗又硬又猛的毛片视频| 爱有来生高清在线中文字幕| 国产美女精品福利在线| 人妻少妇亚洲精品中文字幕| 国产精品人久久久久久| 亚洲精品久久综合久| 老有所依在线观看完整版| 大白屁股精品视频国产| 亚洲精品麻豆免费在线观看| 伊人网中文字幕在线视频| 白白操白白色在线免费视频| 福利视频广场一区二区| 天天日天天透天天操| 白白操白白色在线免费视频 | 一区二区视频在线观看视频在线| 中文字幕av第1页中文字幕| 国产精品伦理片一区二区| 在线免费视频 自拍| 伊人情人综合成人久久网小说| 欧美亚洲牲夜夜综合久久| 午夜激情精品福利视频| 老熟妇xxxhd老熟女| 亚洲精品在线资源站| 超碰公开大香蕉97| 欧美另类z0z变态| 国产av国片精品一区二区| 人妻少妇中文有码精品| 激情啪啪啪啪一区二区三区| 亚洲av极品精品在线观看| 亚洲av午夜免费观看| 阿v天堂2014 一区亚洲| yy96视频在线观看| 啪啪啪啪啪啪啪免费视频| 丰满少妇人妻xxxxx| 久久综合老鸭窝色综合久久| 国产精品大陆在线2019不卡| 5528327男人天堂| 日韩一个色综合导航| 日本高清撒尿pissing| 插逼视频双插洞国产操逼插洞| 国产成人精品久久二区91| 欧美精品黑人性xxxx| 成人福利视频免费在线| 亚洲成人免费看电影| 中文字幕亚洲久久久| 国产亚洲欧美45p| 精品美女久久久久久| 岳太深了紧紧的中文字幕| 亚洲在线一区二区欧美| 日本丰满熟妇BBXBBXHD| 蜜桃视频17c在线一区二区| 国产精品久久久久久久久福交 | 白白操白白色在线免费视频| 自拍偷拍日韩欧美亚洲| 操操网操操伊剧情片中文字幕网| 伊拉克及约旦宣布关闭领空| 岛国毛片视频免费在线观看| 国产美女一区在线观看| 偷拍自拍福利视频在线观看| 久久午夜夜伦痒痒想咳嗽P| 亚洲一区自拍高清免费视频| 色爱av一区二区三区| 久久久久久久久久久久久97| 国产成人午夜精品福利| 亚洲精品av在线观看| 91人妻精品一区二区在线看| 亚洲欧美色一区二区| 欧美特色aaa大片| 黑人变态深video特大巨大| 扒开让我视频在线观看| 国产免费av一区二区凹凸四季| 一区二区三区av高清免费| 在线视频免费观看网| 国产chinesehd精品麻豆| 亚洲粉嫩av一区二区三区| 91老熟女连续高潮对白| 最新激情中文字幕视频| 视频 国产 精品 熟女 | 少妇高潮无套内谢麻豆| 国产精品欧美日韩区二区| 国产黄色a级三级三级三级| 日韩精品激情在线观看| 91中文字幕最新合集| av森泽佳奈在线观看| 精品黑人巨大在线一区|