diff --git a/wp-content/plugins/wordpress-popular-posts/admin/class-wordpress-popular-posts-admin.php b/wp-content/plugins/wordpress-popular-posts/admin/class-wordpress-popular-posts-admin.php deleted file mode 100644 index 26fc7d51f294c3101b29bd42c47cf0116cbb9c6a..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/class-wordpress-popular-posts-admin.php +++ /dev/null @@ -1,1323 +0,0 @@ -<?php - -/** - * The admin-facing functionality of the plugin. - * - * @link http://cabrerahector.com/ - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/public - */ - -/** - * The public-facing functionality of the plugin. - * - * Defines the plugin name, version, and hooks to - * enqueue the admin-specific stylesheet and JavaScript. - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/public - * @author Hector Cabrera <me@cabrerahector.com> - */ -class WPP_Admin { - - /** - * The ID of this plugin. - * - * @since 4.0.0 - * @access private - * @var string $plugin_name The ID of this plugin. - */ - private $plugin_name; - - /** - * The version of this plugin. - * - * @since 4.0.0 - * @access private - * @var string $version The current version of this plugin. - */ - private $version; - - /** - * Administrative settings. - * - * @since 2.3.3 - * @var array - */ - private $options = array(); - - /** - * Slug of the plugin screen. - * - * @since 3.0.0 - * @var string - */ - protected $plugin_screen_hook_suffix = NULL; - - /** - * Initialize the class and set its properties. - * - * @since 4.0.0 - * @param string $plugin_name The name of the plugin. - * @param string $version The version of this plugin. - */ - public function __construct( $plugin_name, $version ) { - - $this->plugin_name = $plugin_name; - $this->version = $version; - $this->options = WPP_Settings::get( 'admin_options' ); - - // Delete old data on demand - if ( 1 == $this->options['tools']['log']['limit'] ) { - - if ( !wp_next_scheduled( 'wpp_cache_event' ) ) { - $tomorrow = time() + 86400; - $midnight = mktime( - 0, - 0, - 0, - date( "m", $tomorrow ), - date( "d", $tomorrow ), - date( "Y", $tomorrow ) - ); - wp_schedule_event( $midnight, 'daily', 'wpp_cache_event' ); - } - - } else { - // Remove the scheduled event if exists - if ( $timestamp = wp_next_scheduled( 'wpp_cache_event' ) ) { - wp_unschedule_event( $timestamp, 'wpp_cache_event' ); - } - - } - - // Allow WP themers / coders to override data sampling status (active/inactive) - $this->options['tools']['sampling']['active'] = apply_filters( 'wpp_data_sampling', $this->options['tools']['sampling']['active'] ); - - } - - /** - * Fired when a new blog is activated on WP Multisite. - * - * @since 3.0.0 - * @param int blog_id New blog ID - */ - public function activate_new_site( $blog_id ){ - - if ( 1 !== did_action( 'wpmu_new_blog' ) ) - return; - - // run activation for the new blog - switch_to_blog( $blog_id ); - WPP_Activator::track_new_site(); - - // switch back to current blog - restore_current_blog(); - - } // end activate_new_site - - /** - * Fired when a blog is deleted on WP Multisite. - * - * @since 4.0.0 - * @param array $tables - * @param int $blog_id - * @return array - */ - public function delete_site_data( $tables, $blog_id ){ - - global $wpdb; - - $tables[] = $wpdb->prefix . 'popularpostsdata'; - $tables[] = $wpdb->prefix . 'popularpostssummary'; - - return $tables; - - } // end delete_site_data - - /** - * Register the stylesheets for the public-facing side of the site. - * - * @since 4.0.0 - */ - public function enqueue_styles() { - - if ( !isset( $this->plugin_screen_hook_suffix ) ) { - return; - } - - $screen = get_current_screen(); - - if ( isset( $screen->id ) && $screen->id == $this->plugin_screen_hook_suffix ) { - wp_enqueue_style( 'font-awesome', plugin_dir_url( __FILE__ ) . 'css/vendor/font-awesome.min.css', array(), '4.7.0', 'all' ); - wp_enqueue_style( 'wpp-datepicker-theme', plugin_dir_url( __FILE__ ) . 'css/datepicker.css', array(), $this->version, 'all' ); - wp_enqueue_style( 'wordpress-popular-posts-admin-styles', plugin_dir_url( __FILE__ ) . 'css/admin.css', array(), $this->version, 'all' ); - } - - } - - /** - * Register the stylesheets for the public-facing side of the site. - * - * @since 4.0.0 - */ - public function enqueue_scripts() { - - if ( ! isset( $this->plugin_screen_hook_suffix ) ) { - return; - } - - $screen = get_current_screen(); - - if ( $screen->id == $this->plugin_screen_hook_suffix ) { - - wp_enqueue_script( 'thickbox' ); - wp_enqueue_style( 'thickbox' ); - wp_enqueue_script( 'media-upload' ); - wp_enqueue_script( 'jquery-ui-datepicker' ); - wp_enqueue_script( 'chartjs', plugin_dir_url( __FILE__ ) . 'js/vendor/Chart.min.js', array(), $this->version ); - wp_enqueue_script( 'wpp-chart', plugin_dir_url( __FILE__ ) . 'js/chart.js', array('chartjs'), $this->version ); - wp_register_script( 'wordpress-popular-posts-admin-script', plugin_dir_url( __FILE__ ) . 'js/admin.js', array('jquery'), $this->version, true ); - wp_localize_script( 'wordpress-popular-posts-admin-script', 'wpp_admin_params', array( - 'nonce' => wp_create_nonce( "wpp_admin_nonce" ) - )); - wp_enqueue_script( 'wordpress-popular-posts-admin-script' ); - - } - - } - - /** - * Hooks into getttext to change upload button text when uploader is called by WPP. - * - * @since 2.3.4 - */ - public function thickbox_setup() { - - global $pagenow; - - if ( 'media-upload.php' == $pagenow || 'async-upload.php' == $pagenow ) { - add_filter( 'gettext', array( $this, 'replace_thickbox_text' ), 1, 3 ); - } - - } // end thickbox_setup - - /** - * Replaces upload button text when uploader is called by WPP. - * - * @since 2.3.4 - * @param string translated_text - * @param string text - * @param string domain - * @return string - */ - public function replace_thickbox_text( $translated_text, $text, $domain ) { - - if ( 'Insert into Post' == $text ) { - $referer = strpos( wp_get_referer(), 'wpp_admin' ); - if ( $referer != '' ) { - return __( 'Upload', 'wordpress-popular-posts' ); - } - } - - return $translated_text; - - } // end replace_thickbox_text - - public function add_contextual_help(){ - - //get the current screen object - $screen = get_current_screen(); - - if ( isset( $screen->id ) && $screen->id == $this->plugin_screen_hook_suffix ){ - $screen->add_help_tab( - array( - 'id' => 'wpp_help_overview', - 'title' => __('Overview', 'wordpress-popular-posts'), - 'content' => "<p>" . __( "Welcome to WordPress Popular Posts' Dashboard! In this screen you will find statistics on what's popular on your site, tools to further tweak WPP to your needs, and more!", "wordpress-popular-posts" ) . "</p>" - ) - ); - $screen->add_help_tab( - array( - 'id' => 'wpp_help_donate', - 'title' => __('Like this plugin?', 'wordpress-popular-posts'), - 'content' => ' - <p style="text-align: center;">' . __( 'Each donation motivates me to keep releasing free stuff for the WordPress community!', 'wordpress-popular-posts' ) . '</p> - <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" style="margin: 0; padding: 0; text-align: center;"> - <input type="hidden" name="cmd" value="_s-xclick"> - <input type="hidden" name="hosted_button_id" value="RP9SK8KVQHRKS"> - <input type="image" src="//www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="display: inline; margin: 0;"> - <img alt="" border="0" src="//www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> - </form> - <p style="text-align: center;">' . sprintf( __('You can <a href="%s" target="_blank">leave a review</a>, too!', 'wordpress-popular-posts'), 'https://wordpress.org/support/view/plugin-reviews/wordpress-popular-posts?rate=5#postform' ) . '</p>' - ) - ); - - //$screen->remove_help_tabs(); - - // Help sidebar - $screen->set_help_sidebar( - sprintf( - __( '<p><strong>For more information:</strong></p><ul><li><a href="%1$s">Documentation</a></li><li><a href="%2$s">Support</a></li></ul>', 'wordpress-popular-posts' ), - "https://github.com/cabrerahector/wordpress-popular-posts/", - "https://wordpress.org/support/plugin/wordpress-popular-posts/" - ) - ); - } - - } - - /** - * Register the administration menu for this plugin into the WordPress Dashboard menu. - * - * @since 1.0.0 - */ - public function add_plugin_admin_menu() { - - $this->plugin_screen_hook_suffix = add_options_page( - 'WordPress Popular Posts', - 'WordPress Popular Posts', - 'manage_options', - 'wordpress-popular-posts', - array( $this, 'display_plugin_admin_page' ) - ); - - } - - public function chart_query_fields( $fields, $options ){ - - if ( 'comments' == $options['order_by'] ) { - return "DATE(c.comment_date_gmt) AS 'date', COUNT(c.comment_post_ID) AS 'comment_count'"; - } - - return "v.view_date AS 'date', SUM(v.pageviews) AS 'pageviews'"; - - } - - public function chart_query_table( $table, $options ){ - - if ( 'comments' == $options['order_by'] ) { - global $wpdb; - return "`{$wpdb->prefix}comments` c"; - } - - return $table; - - } - - public function chart_query_join( $join, $options ){ - - if ( 'comments' == $options['order_by'] ) { - global $wpdb; - return "INNER JOIN `{$wpdb->prefix}posts` p ON c.comment_post_ID = p.ID"; - } - - return $table; - - } - - public function chart_query_where( $where, $options ){ - - global $wpdb; - - $now = WPP_Helper::now(); - - // Check if custom date range has been requested - $dates = null; - - if ( isset( $_GET['dates']) ) { - - $dates = explode( " ~ ", $_GET['dates'] ); - - if ( - !is_array( $dates ) - || empty( $dates ) - || !WPP_Helper::is_valid_date( $dates[0] ) - ) - { - $dates = null; - } - else { - if ( - !isset( $dates[1] ) - || !WPP_Helper::is_valid_date( $dates[1] ) - ) { - $dates[1] = $dates[0]; - } - } - - } - - $where = "WHERE 1 = 1"; - - // Determine time range - switch( $options['range'] ){ - case "last24hours": - case "daily": - $interval = "24 HOUR"; - break; - - case "last7days": - case "weekly": - $interval = "6 DAY"; - break; - - case "last30days": - case "monthly": - $interval = "29 DAY"; - break; - - case "custom": - $time_units = array( "MINUTE", "HOUR", "DAY" ); - $interval = "24 HOUR"; - - // Valid time unit - if ( - isset( $options['time_unit'] ) - && in_array( strtoupper( $options['time_unit'] ), $time_units ) - && isset( $options['time_quantity'] ) - && filter_var( $options['time_quantity'], FILTER_VALIDATE_INT ) - && $options['time_quantity'] > 0 - ) { - $interval = "{$options['time_quantity']} " . strtoupper( $options['time_unit'] ); - } - - break; - - default: - $interval = "1 DAY"; - break; - } - - $post_types = array_map( 'trim', explode( ',', $options['post_type'] ) ); - $placeholders = array(); - - if ( empty($post_types) ) { - $post_types = array('post', 'page'); - } - - foreach ( $post_types as $post_type ){ - $placeholders[] = '%s'; - } - - $where .= $wpdb->prepare( - " AND p.post_type IN(" . implode( ', ', $placeholders ) . ") ", - $post_types - ); - - // Get entries published within the specified time range - if ( isset( $options['freshness'] ) && $options['freshness'] ) { - - if ( $dates ) { - $where .= " AND p.post_date BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59'"; - } - else { - $where .= " AND p.post_date > DATE_SUB('{$now}', INTERVAL {$interval})"; - } - - } - - if ( 'comments' == $options['order_by'] ) { - - if ( $dates ) { - return $where . " AND c.comment_date_gmt BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND c.comment_approved = 1 AND p.post_password = '' AND p.post_status = 'publish'"; - } - - return $where . " AND c.comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND c.comment_approved = 1 AND p.post_password = '' AND p.post_status = 'publish'"; - } - - if ( $dates ) { - return $where . " AND v.view_datetime BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND p.post_password = '' AND p.post_status = 'publish' "; - } - - return $where . " AND v.view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) AND p.post_password = '' AND p.post_status = 'publish' "; - - } - - public function chart_query_group_by( $groupby, $options ){ - return "GROUP BY date"; - } - - public function chart_query_order_by( $orderby, $options ){ - return "ORDER BY date ASC"; - } - - public function chart_query_limit( $fields, $options ){ - return ""; - } - - public function get_chart_data( $range ){ - - $now = new DateTime( WPP_Helper::now() ); - $data = array( - 'dates' => null, - 'totals' => array( - 'views' => 0, - 'comments' => 0, - 'label_summary' => '', - 'label_date_range' => '' - ) - ); - - // Determine time range - switch( $range ){ - case "last24hours": - case "daily": - /*$start_date = $now->format('Y-m-d'); - $end_date = $start_date;*/ - $end_date = $now->format('Y-m-d'); - $start_date = $now->modify('-1 day')->format('Y-m-d'); - break; - - case "today": - $start_date = $now->format('Y-m-d'); - $end_date = $start_date; - break; - - case "last7days": - case "weekly": - $end_date = $now->format('Y-m-d'); - $start_date = $now->modify('-6 day')->format('Y-m-d'); - break; - - case "last30days": - case "monthly": - $end_date = $now->format('Y-m-d'); - $start_date = $now->modify('-29 day')->format('Y-m-d'); - break; - - case "custom": - $time_units = array( - "MINUTE" => array("minute", "minutes"), - "HOUR" => array("hour", "hours"), - "DAY" => array("day", "days") - ); - $interval = "-24 hours"; - - // Valid time unit - if ( - isset( $this->options['stats']['time_unit'] ) - && isset( $time_units[ strtoupper( $this->options['stats']['time_unit'] ) ] ) - && isset( $this->options['stats']['time_quantity'] ) - && filter_var( $this->options['stats']['time_quantity'], FILTER_VALIDATE_INT ) - && $this->options['stats']['time_quantity'] > 0 - ) { - $interval = "-{$this->options['stats']['time_quantity']} " . ( $this->options['stats']['time_quantity'] > 1 ? $time_units[ strtoupper( $this->options['stats']['time_unit'] ) ][1] : $time_units[ strtoupper( $this->options['stats']['time_unit'] ) ][0] ); - } - - $end_date = date( 'Y-m-d', strtotime( $now->format('Y-m-d H:i:s') ) ); - $start_date = date( 'Y-m-d', strtotime( $now->modify($interval)->format('Y-m-d H:i:s') ) ); - - // Check if custom date range has been requested - $dates = null; - - if ( isset( $_GET['dates']) ) { - - $dates = explode( " ~ ", $_GET['dates'] ); - - if ( - !is_array( $dates ) - || empty( $dates ) - || !WPP_Helper::is_valid_date( $dates[0] ) - ) - { - $dates = null; - } - else { - if ( - !isset( $dates[1] ) - || !WPP_Helper::is_valid_date( $dates[1] ) - ) { - $dates[1] = $dates[0]; - } - - $end_date = $dates[1]; - $start_date = $dates[0]; - } - - } - - break; - - default: - $end_date = $now->format('Y-m-d'); - $start_date = $now->modify('-6 days')->format('Y-m-d'); - break; - } - - $dates = WPP_Helper::get_date_range( $start_date, $end_date ); - - if ( $dates ) { - - for( $d = 0; $d < count($dates); $d++ ) { - $data['dates'][ $dates[$d] ] = array( - 'nicename' => date_i18n( 'D d', strtotime( $dates[$d] ) ), - 'views' => 0, - 'comments' => 0 - ); - } - - } - - add_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1, 2 ); - add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 ); - add_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1, 2 ); - add_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1, 2 ); - add_filter( 'wpp_query_limit', array( $this, 'chart_query_limit' ), 1, 2 ); - - $most_viewed = new WPP_query( array( - 'post_type' => $this->options['stats']['post_type'], - 'range' => $this->options['stats']['range'], - 'time_unit' => $this->options['stats']['time_unit'], - 'time_quantity' => $this->options['stats']['time_quantity'], - 'order_by' => 'views' - ) ); - $views_data = $most_viewed->get_posts(); - - remove_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1 ); - remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 ); - remove_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1 ); - remove_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1 ); - remove_filter( 'wpp_query_limit', array( $this, 'chart_query_limit' ), 1 ); - - add_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1, 2 ); - add_filter( 'wpp_query_table', array( $this, 'chart_query_table' ), 1, 2 ); - add_filter( 'wpp_query_join', array( $this, 'chart_query_join' ), 1, 2 ); - add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 ); - add_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1, 2 ); - add_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1, 2 ); - add_filter( 'wpp_query_limit', array( $this, 'chart_query_limit' ), 1, 2 ); - - $most_commented = new WPP_query( array( - 'post_type' => $this->options['stats']['post_type'], - 'range' => $this->options['stats']['range'], - 'time_unit' => $this->options['stats']['time_unit'], - 'time_quantity' => $this->options['stats']['time_quantity'], - 'order_by' => 'comments' - ) ); - $comments_data = $most_commented->get_posts(); - - remove_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1 ); - remove_filter( 'wpp_query_table', array( $this, 'chart_query_table' ), 1 ); - remove_filter( 'wpp_query_join', array( $this, 'chart_query_join' ), 1 ); - remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 ); - remove_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1 ); - remove_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1 ); - remove_filter( 'wpp_query_limit', array( $this, 'chart_query_limit' ), 1 ); - - if ( - ( is_array($views_data) && !empty($views_data) ) - || ( is_array($comments_data) && !empty($comments_data) ) - ) { - - if ( ( is_array($views_data) && !empty($views_data) ) ) { - foreach( $views_data as $views ) { - if ( isset( $data['dates'][$views->date] ) ) { - $data['dates'][$views->date]['views'] = $views->pageviews; - $data['totals']['views'] += $views->pageviews; - } - } - } - - if ( ( is_array($comments_data) && !empty($comments_data) ) ) { - foreach( $comments_data as $comments ) { - if ( isset( $data['dates'][$comments->date] ) ) { - $data['dates'][$comments->date]['comments'] = $comments->comment_count; - $data['totals']['comments'] += $comments->comment_count; - } - } - } - - $data['totals']['label_summary'] = sprintf( _n( '1 view', '%s views', $data['totals']['views'], 'wordpress-popular-posts' ), '<strong>' . number_format_i18n( $data['totals']['views'] ) . '</strong>' ) . '<br style="display: none;" /> / ' . sprintf( _n( '1 comment', '%s comments', $data['totals']['comments'], 'wordpress-popular-posts' ), '<strong>' . number_format_i18n( $data['totals']['comments'] ) . '</strong>' ); - - $data['totals']['label_date_range'] = date_i18n( 'M, D d', strtotime( $start_date ) ) . ' — ' . date_i18n( 'M, D d', strtotime( $end_date ) ); - } - - return $data; - - } - - public function print_chart_script( $data, $containter_id ){ - - reset( $data['dates'] ); - $start_date = key( $data['dates'] ); - $end_date = key( end($data['dates']) ); - reset( $data['dates'] ); - - $color_scheme = $this->get_admin_color_scheme(); - - ?> - <script> - - if ( WPPChart.canRender() ) { - - jQuery("#<?php echo $containter_id; ?> p").remove(); - - var wpp_chart_views_color = '<?php echo $color_scheme[2]; ?>'; - var wpp_chart_comments_color = '<?php echo $color_scheme[3]; ?>'; - - var wpp_chart_data = { - labels: [ <?php foreach( $data['dates'] as $date => $date_data ) : echo "'" . date_i18n( 'D d', strtotime( $date ) ) . "', "; endforeach; ?>], - datasets: [ - { - label: "<?php _e( "Comments", "wordpress-popular-posts" ); ?>", - data: [<?php foreach( $data['dates'] as $date => $date_data ) : echo ( isset($date_data['comments']) ? $date_data['comments'] : '0' ) . ", "; endforeach; ?>], - }, - { - label: "<?php _e( "Views", "wordpress-popular-posts" ); ?>", - data: [<?php foreach( $data['dates'] as $date => $date_data ) : echo ( isset($date_data['views']) ? $date_data['views'] : '0' ) . ", "; endforeach; ?>], - } - ] - }; - - WPPChart.init( '<?php echo $containter_id; ?>' ); - WPPChart.populate( wpp_chart_data ); - - } - - </script> - <?php - } - - public function update_chart(){ - - $response = array( - 'status' => 'error' - ); - $nonce = isset( $_GET['nonce'] ) ? $_GET['nonce'] : null; - - if ( wp_verify_nonce( $nonce, 'wpp_admin_nonce' ) ) { - - $valid_ranges = array( 'daily', 'last24hours', 'weekly', 'last7days', 'monthly', 'last30days', 'all', 'custom' ); - $time_units = array( "MINUTE", "HOUR", "DAY" ); - - $range = ( isset( $_GET['range'] ) && in_array( $_GET['range'], $valid_ranges ) ) ? $_GET['range'] : 'last7days'; - $time_quantity = ( isset( $_GET['time_quantity'] ) && filter_var( $_GET['time_quantity'], FILTER_VALIDATE_INT ) ) ? $_GET['time_quantity'] : 24; - $time_unit = ( isset( $_GET['time_unit'] ) && in_array( strtoupper( $_GET['time_unit'] ), $time_units ) ) ? $_GET['time_unit'] : 'hour'; - - $admin_options = WPP_Settings::get( 'admin_options' ); - $admin_options['stats']['range'] = $range; - $admin_options['stats']['time_quantity'] = $time_quantity; - $admin_options['stats']['time_unit'] = $time_unit; - $this->options = $admin_options; - - update_option( 'wpp_settings_config', $this->options ); - - $response = array( - 'status' => 'ok', - 'data' => $this->get_chart_data( $range ) - ); - - } - - wp_send_json( $response ); - - } - - public function get_most_viewed(){ - - $args = array( - 'range' => $this->options['stats']['range'], - 'time_quantity' => $this->options['stats']['time_quantity'], - 'time_unit' => $this->options['stats']['time_unit'], - 'post_type' => $this->options['stats']['post_type'], - 'freshness' => $this->options['stats']['freshness'], - 'limit' => $this->options['stats']['limit'], - 'stats_tag' => array( - 'comment_count' => 0, - 'date' => array( - 'active' => 1 - ) - ) - ); - add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 ); - $most_viewed = new WPP_query( $args ); - remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 ); - $posts = $most_viewed->get_posts(); - - if ( - is_array( $posts ) - && !empty( $posts ) - ) { - ?> - <ol class="popular-posts-list"> - <?php - foreach ( $posts as $post ) { ?> - <li> - <p> - <a href="<?php echo get_permalink( $post->id ); ?>"><?php echo sanitize_text_field( $post->title ); ?></a> - <br /> - <span><?php printf( _n( '1 view', '%s views', $post->pageviews, 'wordpress-popular-posts' ), number_format_i18n( $post->pageviews ) ); ?></span> - <small> — <a href="<?php echo get_permalink( $post->id ); ?>"><?php _e("View"); ?></a> | <a href="<?php echo get_edit_post_link( $post->id ); ?>"><?php _e("Edit"); ?></a></small> - </p> - </li> - <?php - } - ?> - </ol> - <?php - } - else { - ?> - <p style="text-align: center;"><?php _e("Looks like traffic to your site is a little light right now. <br />Spread the word and come back later!", "wordpress-popular-posts"); ?></p> - <?php - } - - if ( defined('DOING_AJAX') && DOING_AJAX ) wp_die(); - - } - - public function get_most_commented(){ - - $args = array( - 'range' => $this->options['stats']['range'], - 'time_quantity' => $this->options['stats']['time_quantity'], - 'time_unit' => $this->options['stats']['time_unit'], - 'post_type' => $this->options['stats']['post_type'], - 'freshness' => $this->options['stats']['freshness'], - 'order_by' => 'comments', - 'limit' => $this->options['stats']['limit'], - 'stats_tag' => array( - 'comment_count' => 1, - 'views' => 0, - 'date' => array( - 'active' => 1 - ) - ) - ); - add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 ); - $most_commented = new WPP_query( $args ); - remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 ); - $posts = $most_commented->get_posts(); - - if ( - is_array( $posts ) - && !empty( $posts ) - ) { - ?> - <ol class="popular-posts-list"> - <?php - foreach ( $posts as $post ) { ?> - <li> - <p> - <a href="<?php echo get_permalink( $post->id ); ?>"><?php echo sanitize_text_field( $post->title ); ?></a> - <br /> - <span><?php printf( _n( '1 comment', '%s comments', $post->comment_count, 'wordpress-popular-posts' ), number_format_i18n( $post->comment_count ) ); ?></span> - <small> — <a href="<?php echo get_permalink( $post->id ); ?>"><?php _e("View"); ?></a> | <a href="<?php echo get_edit_post_link( $post->id ); ?>"><?php _e("Edit"); ?></a></small> - </p> - </li> - <?php - } - ?> - </ol> - <?php - } - else { - ?> - <p style="text-align: center;"><?php _e("Looks like traffic to your site is a little light right now. <br />Spread the word and come back later!", "wordpress-popular-posts"); ?></p> - <?php - } - - if ( defined('DOING_AJAX') && DOING_AJAX ) wp_die(); - - } - - /* - * Gets current admin color scheme. - * - * @return stdClass - */ - private function get_admin_color_scheme(){ - - global $_wp_admin_css_colors; - - if ( - is_array( $_wp_admin_css_colors ) - && count( $_wp_admin_css_colors ) - ) { - - $current_user = wp_get_current_user(); - $color_scheme = get_user_option( 'admin_color', $current_user->ID ); - - if ( - empty( $color_scheme ) - || !isset( $_wp_admin_css_colors[ $color_scheme ] ) - ) { - $color_scheme = 'fresh'; - } - - if ( isset($_wp_admin_css_colors[ $color_scheme ]) && isset($_wp_admin_css_colors[ $color_scheme ]->colors) ) { - return $_wp_admin_css_colors[ $color_scheme ]->colors; - } - - } - - // Fallback, just in case - return array( '#333', '#999', '#881111', '#a80000' ); - - } - - /** - * Render the settings page for this plugin. - * - * @since 1.0.0 - */ - public function display_plugin_admin_page() { - include_once( plugin_dir_path(__FILE__) . 'partials/admin.php' ); - } - - /** - * Registers Settings link on plugin description. - * - * @since 2.3.3 - * @param array $links - * @param string $file - * @return array - */ - public function add_plugin_settings_link( $links, $file ){ - - $plugin_file = 'wordpress-popular-posts/wordpress-popular-posts.php'; - - if ( - is_plugin_active( $plugin_file ) - && $plugin_file == $file - ) { - $links[] = '<a href="' . admin_url( 'options-general.php?page=wordpress-popular-posts' ) . '">' . __( 'Settings' ) . '</a>'; - } - - return $links; - - } - - /** - * Register the WPP widget. - * - * @since 4.0.0 - */ - public function register_widget() { - register_widget( 'WPP_Widget' ); - } - - /** - * Flushes post's cached thumbnail(s) when the image is changed. - * - * @since 3.3.4 - * - * @param integer $meta_id ID of the meta data field - * @param integer $object_id Object ID - * @param string $meta_key Name of meta field - * @param string $meta_value Value of meta field - */ - public function flush_post_thumbnail( $meta_id, $object_id, $meta_key, $meta_value ) { - - // User changed the featured image - if ( '_thumbnail_id' == $meta_key ) { - - $wpp_image = WPP_Image::get_instance(); - - if ( $wpp_image->can_create_thumbnails() ) { - - $wpp_uploads_dir = $wpp_image->get_plugin_uploads_dir(); - - if ( is_array($wpp_uploads_dir) && !empty($wpp_uploads_dir) ) { - - $files = glob( "{$wpp_uploads_dir['basedir']}/{$object_id}-featured-*.*" ); // get all related images - - if ( is_array($files) && !empty($files) ) { - - foreach( $files as $file ){ // iterate files - if ( is_file( $file ) ) { - @unlink( $file ); // delete file - } - } - - } - - } - - } - - } - - } - - /** - * Truncates thumbnails cache on demand. - * - * @since 2.0.0 - * @global object wpdb - */ - public function clear_thumbnails() { - - $wpp_image = WPP_Image::get_instance(); - - if ( $wpp_image->can_create_thumbnails() ) { - - $wpp_uploads_dir = $wpp_image->get_plugin_uploads_dir(); - - if ( is_array($wpp_uploads_dir) && !empty($wpp_uploads_dir) ) { - - $token = isset( $_POST['token'] ) ? $_POST['token'] : null; - $key = get_option( "wpp_rand" ); - - if ( - current_user_can( 'manage_options' ) - && ( $token === $key ) - ) { - - if ( is_dir( $wpp_uploads_dir['basedir'] ) ) { - - $files = glob( "{$wpp_uploads_dir['basedir']}/*" ); // get all related images - - if ( is_array($files) && !empty($files) ) { - - foreach( $files as $file ){ // iterate files - if ( is_file( $file ) ) { - @unlink( $file ); // delete file - } - } - - echo 1; - - } else { - echo 2; - } - - } else { - echo 3; - } - - } else { - echo 4; - } - - } - - } else { - echo 3; - } - - wp_die(); - - } - - /** - * Truncates data and cache on demand. - * - * @since 2.0.0 - * @global object wpdb - */ - public function clear_data() { - - $token = $_POST['token']; - $clear = isset( $_POST['clear'] ) ? $_POST['clear'] : null; - $key = get_option( "wpp_rand" ); - - if ( - current_user_can( 'manage_options' ) - && ( $token === $key ) - && $clear - ) { - - global $wpdb; - - // set table name - $prefix = $wpdb->prefix . "popularposts"; - - if ( $clear == 'cache' ) { - - if ( $wpdb->get_var("SHOW TABLES LIKE '{$prefix}summary'") ) { - - $wpdb->query("TRUNCATE TABLE {$prefix}summary;"); - $this->flush_transients(); - - echo 1; - - } else { - echo 2; - } - - } elseif ( $clear == 'all' ) { - - if ( $wpdb->get_var("SHOW TABLES LIKE '{$prefix}data'") && $wpdb->get_var("SHOW TABLES LIKE '{$prefix}summary'") ) { - - $wpdb->query("TRUNCATE TABLE {$prefix}data;"); - $wpdb->query("TRUNCATE TABLE {$prefix}summary;"); - $this->flush_transients(); - - echo 1; - - } else { - echo 2; - } - - } else { - echo 3; - } - } else { - echo 4; - } - - wp_die(); - - } - - /** - * Deletes cached (transient) data. - * - * @since 3.0.0 - * @access private - */ - private function flush_transients() { - - $wpp_transients = get_option( 'wpp_transients' ); - - if ( $wpp_transients && is_array( $wpp_transients ) && !empty( $wpp_transients ) ) { - - for ( $t=0; $t < count( $wpp_transients ); $t++ ) - delete_transient( $wpp_transients[$t] ); - - update_option( 'wpp_transients', array() ); - - } - - } - - /** - * Purges post from data/summary tables. - * - * @since 3.3.0 - */ - public function purge_post_data() { - - if ( current_user_can( 'delete_posts' ) ) - add_action( 'delete_post', array( $this, 'purge_post' ) ); - - } - - /** - * Purges post from data/summary tables. - * - * @since 3.3.0 - * @global object $wpdb - * @return bool - */ - public function purge_post( $post_ID ) { - - global $wpdb; - - if ( $wpdb->get_var( $wpdb->prepare( "SELECT postid FROM {$wpdb->prefix}popularpostsdata WHERE postid = %d", $post_ID ) ) ) { - // Delete from data table - $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}popularpostsdata WHERE postid = %d;", $post_ID ) ); - // Delete from summary table - $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}popularpostssummary WHERE postid = %d;", $post_ID ) ); - } - - } - - /** - * Purges old post data from summary table. - * - * @since 2.0.0 - * @global object $wpdb - */ - public function purge_data() { - - global $wpdb; - - $wpdb->query( "DELETE FROM {$wpdb->prefix}popularpostssummary WHERE view_date < DATE_SUB('" . WPP_Helper::curdate() . "', INTERVAL {$this->options['tools']['log']['expires_after']} DAY);" ); - - } // end purge_data - - /** - * Checks if an upgrade procedure is required. - * - * @since 2.4.0 - */ - public function upgrade_check(){ - - // Multisite setup, upgrade all sites - if ( function_exists( 'is_multisite' ) && is_multisite() ) { - global $wpdb; - - $original_blog_id = get_current_blog_id(); - $blogs_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" ); - - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); - - foreach( $blogs_ids as $blog_id ) { - switch_to_blog( $blog_id ); - $this->upgrade_site(); - } - - // Switch back to current blog - switch_to_blog( $original_blog_id ); - } - else { - $this->upgrade_site(); - } - - } // end upgrade_check - - /** - * Upgrades single site. - * - * @since 4.0.7 - */ - private function upgrade_site() { - // Get WPP version - $wpp_ver = get_option( 'wpp_ver' ); - - if ( !$wpp_ver ) { - add_option( 'wpp_ver', $this->version ); - } elseif ( version_compare( $wpp_ver, $this->version, '<' ) ) { - $this->upgrade(); - } - } - - /** - * On plugin upgrade, performs a number of actions: update WPP database tables structures (if needed), - * run the setup wizard (if needed), and some other checks. - * - * @since 2.4.0 - * @access private - * @global object wpdb - */ - private function upgrade() { - - // Keep the upgrade process from running too many times - if ( get_option('wpp_update') ) - return; - - add_option( 'wpp_update', '1' ); - - global $wpdb; - - // Set table name - $prefix = $wpdb->prefix . "popularposts"; - - // Validate the structure of the tables, create missing tables / fields if necessary - WPP_Activator::track_new_site(); - - // Update data table structure and indexes - $dataFields = $wpdb->get_results( "SHOW FIELDS FROM {$prefix}data;" ); - foreach ( $dataFields as $column ) { - if ( "day" == $column->Field ) { - $wpdb->query( "ALTER TABLE {$prefix}data ALTER COLUMN day DROP DEFAULT;" ); - } - - if ( "last_viewed" == $column->Field ) { - $wpdb->query( "ALTER TABLE {$prefix}data ALTER COLUMN last_viewed DROP DEFAULT;" ); - } - } - - // Update summary table structure and indexes - $summaryFields = $wpdb->get_results( "SHOW FIELDS FROM {$prefix}summary;" ); - foreach ( $summaryFields as $column ) { - if ( "last_viewed" == $column->Field ) { - $wpdb->query( "ALTER TABLE {$prefix}summary CHANGE last_viewed view_datetime datetime NOT NULL, ADD KEY view_datetime (view_datetime);" ); - } - - if ( "view_date" == $column->Field ) { - $wpdb->query( "ALTER TABLE {$prefix}summary ALTER COLUMN view_date DROP DEFAULT;" ); - } - - if ( "view_datetime" == $column->Field ) { - $wpdb->query( "ALTER TABLE {$prefix}summary ALTER COLUMN view_datetime DROP DEFAULT;" ); - } - } - - $summaryIndexes = $wpdb->get_results( "SHOW INDEX FROM {$prefix}summary;" ); - foreach( $summaryIndexes as $index ) { - if ( 'ID_date' == $index->Key_name ) { - $wpdb->query( "ALTER TABLE {$prefix}summary DROP INDEX ID_date, DROP INDEX last_viewed;" ); - break; - } - } - - // Check storage engine - $storage_engine_data = $wpdb->get_var( "SELECT `ENGINE` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`='{$wpdb->dbname}' AND `TABLE_NAME`='{$prefix}data';" ); - - if ( 'InnoDB' != $storage_engine_data ) { - $wpdb->query( "ALTER TABLE {$prefix}data ENGINE=InnoDB;" ); - } - - $storage_engine_summary = $wpdb->get_var( "SELECT `ENGINE` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`='{$wpdb->dbname}' AND `TABLE_NAME`='{$prefix}summary';" ); - - if ( 'InnoDB' != $storage_engine_summary ) { - $wpdb->query( "ALTER TABLE {$prefix}summary ENGINE=InnoDB;" ); - } - - // Update WPP version - update_option( 'wpp_ver', $this->version ); - - // Remove upgrade flag - delete_option( 'wpp_update' ); - - } // end __upgrade - - /** - * Checks if the technical requirements are met. - * - * @since 2.4.0 - * @access private - * @link http://wordpress.stackexchange.com/questions/25910/uninstall-activate-deactivate-a-plugin-typical-features-how-to/25979#25979 - * @global string $wp_version - * @return array - */ - private function check_requirements() { - - global $wp_version; - - $php_min_version = '5.2'; - $wp_min_version = '4.1'; - $php_current_version = phpversion(); - $errors = array(); - - if ( version_compare( $php_min_version, $php_current_version, '>' ) ) { - $errors[] = sprintf( - __( 'Your PHP installation is too old. WordPress Popular Posts requires at least PHP version %1$s to function correctly. Please contact your hosting provider and ask them to upgrade PHP to %1$s or higher.', 'wordpress-popular-posts' ), - $php_min_version - ); - } - - if ( version_compare( $wp_min_version, $wp_version, '>' ) ) { - $errors[] = sprintf( - __( 'Your WordPress version is too old. WordPress Popular Posts requires at least WordPress version %1$s to function correctly. Please update your blog via Dashboard > Update.', 'wordpress-popular-posts' ), - $wp_min_version - ); - } - - return $errors; - - } // end check_requirements - - /** - * Outputs error messages to wp-admin. - * - * @since 2.4.0 - */ - public function check_admin_notices() { - - $errors = $this->check_requirements(); - - if ( empty($errors) ) - return; - - if ( isset($_GET['activate']) ) - unset($_GET['activate']); - - printf( - __('<div class="notice notice-error"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</strong>.</p></div>', 'wordpress-popular-posts'), - join( '</p><p>', $errors ), - 'WordPress Popular Posts' - ); - - $plugin_file = 'wordpress-popular-posts/wordpress-popular-posts.php'; - deactivate_plugins( $plugin_file ); - - } // end check_admin_notices - -} // End WPP_Admin class diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/admin.css b/wp-content/plugins/wordpress-popular-posts/admin/css/admin.css deleted file mode 100644 index 5932e0300f93ae097b6825365d63e1281055b90a..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/admin.css +++ /dev/null @@ -1,374 +0,0 @@ -#wpp-message { display: none; } - -/* - * Navigation - */ -#wpp-menu { - float: none; - clear: both; -} - - #wpp-menu ul { - text-align: center; - } - - #wpp-menu ul li { - padding: 0 15px 0 10px; - margin: 0 0px; - display: inline; - border-right: #ddd 1px solid; - } - - #wpp-menu ul li:first-child { - display: none; - } - - #wpp-menu ul li:last-child { - border: none; - } - - #wpp-menu ul li a { - } - - #wpp-menu ul li.current a { - color: #00a0d2; - text-decoration: none; - } - -.wpp-wrapper { - margin: 20px 20px 0 2px; - -webkit-font-smoothing: subpixel-antialiased; -} - -.wpp-lightbox { - display: none; - position: fixed; - top: 50%; - left: 50%; - z-index: 999; - margin: -140px 0 0 -140px; - padding: 15px; - width: 250px; - max-height: 280px; - background: #fff; - -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); - -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); - box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); -} - - .wpp-lightbox-tabs { - margin: 0 0 25px 0; - padding: 0 0 0 0; - text-align: center; - } - - .wpp-lightbox-tabs li { - display: inline; - list-style: none; - margin: 0; - padding: 0 15px 0 10px; - border-right: #ddd 1px solid; - } - - .wpp-lightbox-tabs li:first-child { - padding: 0 15px 0 0; - } - - .wpp-lightbox-tabs li:last-child { - padding: 0 0 0 10px; - border-right: none; - } - - .wpp-lightbox-tabs li.active a { - color: #00a0d2; - text-decoration: none; - } - - .wpp-lightbox-tab-content { - overflow: hidden; - display: none; - width: 100%; - } - - .wpp-lightbox-tab-content-active { - display: block; - } - - .wpp-lightbox form { - display: block; - } - - .wpp-lightbox form input[type=text] { - display: block; - margin: 0 0 15px 0; - width: 100%; - box-sizing: border-box; - } - -.wpp-section-stats { - position: relative; -} - - .wpp-section-stats .dashicons-admin-generic { - position: absolute; - top: 22px; - left: 0; - width: 21px; - height: 21px; - transition: transform 0.3s; - } - - .wpp-section-stats .dashicons-admin-generic:hover { - transform: rotate(360deg); - } - - .wpp-header { - overflow: hidden; - display: block; - padding: 25px 0 0 0; - } - - .wpp-header h2, - .wpp-header h3, - .wpp-header h4, - .wpp-header h5 { - text-align: center; - } - - .wpp-header h2 { - margin: 0 0 5px 0; - font-size: 1.0em; - font-weight: 400; - line-height: 1.0em; - } - - .wpp-header h3 { - margin: 0 0 30px 0; - font-size: 3.5em; - letter-spacing: -1px; - line-height: 1.0em; - } - - .wpp-header h4, - #wpp-chart-wrapper h4 { - margin: 0 0 8px 0; - font-size: 2.0em; - font-weight: 100; - line-height: 1.0em; - letter-spacing: -2px; - } - - .wpp-header h5, - #wpp-chart-wrapper h5 { - margin: 0 0 0 0; - font-size: 0.9em; - font-weight: 300; - line-height: 0.9em; - } - - .wpp-header-nav { - margin: 55px auto 0px auto; - padding: 0; - text-align: center; - } - - .wpp-header-nav li { - display: inline; - list-style: none; - margin: 0 4px; - padding: 0; - } - - .wpp-header-nav li a { - display: inline-block; - padding: 6px 12px 7px; - line-height: 1.1em; - } - - .wpp-section-stats .wpp-header-nav li a:hover, - .wpp-section-stats .wpp-header-nav li.current a { - color: #00a0d2; - } - - .wpp-section-stats .wpp-header-nav li.current a { - text-decoration: none; - } - - #wpp-chart-wrapper { - width: 100%; - } - - #wpp-chart-wrapper h4, - #wpp-chart-wrapper h5 { - text-align: center; - } - - #wpp-chart-wrapper #wpp-chart { - position: relative; - overflow: hidden; - margin: 20px auto 0 auto; - width: 100%; - height: 250px; - } - - #wpp-chart-wrapper #wpp-chart p { - margin: 0 10px; - text-align: center; - } - - #wpp-chart-wrapper #wpp-chart a:hover { - text-decoration: underline; - } - - .wpp-content { - float: none; - clear: both; - width: 100%; - background: #fff; - } - - .wpp-content .wpp-tabbed-nav { - overflow: hidden; - margin: 0 0 0 0; - padding: 0; - background: #f9f9f9; - } - - .wpp-content .wpp-tabbed-nav li { - display: inline; - float: left; - margin: 0; - padding: 0; - width: 25%; - border-bottom: #f0f0f0 1px solid; - } - - .wpp-content .wpp-tabbed-nav li.active { - border-bottom: #bbb 1px solid; - } - - .wpp-content .wpp-tabbed-nav li a { - display: block; - padding: 15px; - font-size: 1.2em; - text-align: center; - text-decoration: none; - outline: none; - box-shadow: none; - } - - #wpp-listing .wpp-tabbed-nav li a .fa { - display: inline-block; - margin: 0 8px 0 0; - } - - .wpp-tab-content { - display: none; - overflow: hidden; - padding: 2% 30px; - width: 100%; - box-sizing: border-box; - } - - .wpp-tab-content-active { - display: block; - } - - .wpp-tab-content ul, - .wpp-tab-content ol { - margin: 0 0 0 0; - } - - .wpp-tab-content ul li, - .wpp-tab-content ol li { - margin: 0 1% 15px 1%; - padding: 0 0 10px 0; - border-bottom: #f0f0f0 1px solid; - } - - .wpp-tab-content ul li:last-child, - .wpp-tab-content ol li:last-child { - margin: 0 1%; - border: none; - } - - .popular-posts-list li > p > a { - font-size: 1.1em; - text-decoration: none; - } - - .popular-posts-list li:first-child, - .popular-posts-list li:first-child > p > a { - font-size: 1.9em; - } - - .popular-posts-list li:nth-child(2), - .popular-posts-list li:nth-child(2) > p > a { - font-size: 1.3em; - } - - .popular-posts-list li:nth-child(3), - .popular-posts-list li:nth-child(3) > p > a { - font-size: 1.1em; - } - - .popular-posts-list li:first-child > p > a, - .popular-posts-list li:nth-child(2) > p > a, - .popular-posts-list li:nth-child(3) > p > a { - font-weight: bold; - letter-spacing: -1px; - } - - .popular-posts-list li > p > a:hover { - text-decoration: underline; - } - - .popular-posts-list li > p > span { - color: #bbb; - font-size: 13px; - } - - .popular-posts-list li > p > small { - display: none; - } - - .popular-posts-list li:hover > p > small { - display: inline; - } - -.clear { - float:none; - clear:both; - width:100%; -} - -/* - * Media Queries - */ - -/* Small devices */ -@media only screen and (max-width: 480px){ - -} - -/* Tablets & small desktops */ -@media only screen and (max-width: 768px) { - - .wpp-wrapper { - margin: 20px 12px 0 2px; - } - - #wpp-listing .wpp-tabbed-nav li a span:last-child { - display: none; - } - - #wpp-listing .wpp-tabbed-nav li a .fa { - margin: 0 0 0 0; - } - -} - -/* Medium desktops, Large desktops & other devices */ -@media only screen and (max-width: 992px) { /* 960 + 16 + 16 */ - -} diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/datepicker.css b/wp-content/plugins/wordpress-popular-posts/admin/css/datepicker.css deleted file mode 100644 index 146144ebff6c6fd3b4fd9cd765055da69612d4da..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/datepicker.css +++ /dev/null @@ -1,399 +0,0 @@ -/*! jQuery UI - v1.12.1 - 2017-08-15 -* http://jqueryui.com -* Includes: core.css, datepicker.css -* Copyright jQuery Foundation and other contributors; Licensed MIT */ - -/* Layout helpers -----------------------------------*/ -.ui-helper-hidden { - display: none; -} -.ui-helper-hidden-accessible { - border: 0; - clip: rect(0 0 0 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} -.ui-helper-reset { - margin: 0; - padding: 0; - border: 0; - outline: 0; - line-height: 1.3; - text-decoration: none; - font-size: 100%; - list-style: none; -} -.ui-helper-clearfix:before, -.ui-helper-clearfix:after { - content: ""; - display: table; - border-collapse: collapse; -} -.ui-helper-clearfix:after { - clear: both; -} -.ui-helper-zfix { - width: 100%; - height: 100%; - top: 0; - left: 0; - position: absolute; - opacity: 0; - filter:Alpha(Opacity=0); /* support: IE8 */ -} - -.ui-front { - z-index: 100; -} - - -/* Interaction Cues -----------------------------------*/ -.ui-state-disabled { - cursor: default !important; - pointer-events: none; -} - - -/* Icons -----------------------------------*/ -.ui-icon { - display: inline-block; - vertical-align: middle; - margin-top: -.25em; - position: relative; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; -} - -.ui-widget-icon-block { - left: 50%; - margin-left: -8px; - display: block; -} - -/* Misc visuals -----------------------------------*/ - -/* Overlays */ -.ui-widget-overlay { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; -} -.ui-datepicker { - width: 17em; - padding: .2em .2em 0; - display: none; -} -.ui-datepicker .ui-datepicker-header { - position: relative; - padding: .2em 0; -} -.ui-datepicker .ui-datepicker-prev, -.ui-datepicker .ui-datepicker-next { - position: absolute; - top: 2px; - width: 1.8em; - height: 1.8em; -} -.ui-datepicker .ui-datepicker-prev-hover, -.ui-datepicker .ui-datepicker-next-hover { - top: 1px; -} -.ui-datepicker .ui-datepicker-prev { - left: 2px; -} -.ui-datepicker .ui-datepicker-next { - right: 2px; -} -.ui-datepicker .ui-datepicker-prev-hover { - left: 1px; -} -.ui-datepicker .ui-datepicker-next-hover { - right: 1px; -} -.ui-datepicker .ui-datepicker-prev span, -.ui-datepicker .ui-datepicker-next span { - display: block; - position: absolute; - left: 50%; - margin-left: -8px; - top: 50%; - margin-top: -8px; -} -.ui-datepicker .ui-datepicker-title { - margin: 0 2.3em; - line-height: 1.8em; - text-align: center; -} -.ui-datepicker .ui-datepicker-title select { - font-size: 1em; - margin: 1px 0; -} -.ui-datepicker select.ui-datepicker-month, -.ui-datepicker select.ui-datepicker-year { - width: 45%; -} -.ui-datepicker table { - width: 100%; - font-size: .9em; - border-collapse: collapse; - margin: 0 0 .4em; -} -.ui-datepicker th { - padding: .7em .3em; - text-align: center; - font-weight: bold; - border: 0; -} -.ui-datepicker td { - border: 0; - padding: 1px; -} -.ui-datepicker td span, -.ui-datepicker td a { - display: block; - padding: .2em; - text-align: right; - text-decoration: none; -} -.ui-datepicker .ui-datepicker-buttonpane { - background-image: none; - margin: .7em 0 0 0; - padding: 0 .2em; - border-left: 0; - border-right: 0; - border-bottom: 0; -} -.ui-datepicker .ui-datepicker-buttonpane button { - float: right; - margin: .5em .2em .4em; - cursor: pointer; - padding: .2em .6em .3em .6em; - width: auto; - overflow: visible; -} -.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { - float: left; -} - -/* with multiple calendars */ -.ui-datepicker.ui-datepicker-multi { - width: auto; -} -.ui-datepicker-multi .ui-datepicker-group { - float: left; -} -.ui-datepicker-multi .ui-datepicker-group table { - width: 95%; - margin: 0 auto .4em; -} -.ui-datepicker-multi-2 .ui-datepicker-group { - width: 50%; -} -.ui-datepicker-multi-3 .ui-datepicker-group { - width: 33.3%; -} -.ui-datepicker-multi-4 .ui-datepicker-group { - width: 25%; -} -.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { - border-left-width: 0; -} -.ui-datepicker-multi .ui-datepicker-buttonpane { - clear: left; -} -.ui-datepicker-row-break { - clear: both; - width: 100%; - font-size: 0; -} - -/* RTL support */ -.ui-datepicker-rtl { - direction: rtl; -} -.ui-datepicker-rtl .ui-datepicker-prev { - right: 2px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next { - left: 2px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-prev:hover { - right: 1px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next:hover { - left: 1px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane { - clear: right; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button { - float: left; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, -.ui-datepicker-rtl .ui-datepicker-group { - float: right; -} -.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { - border-right-width: 0; - border-left-width: 1px; -} - -/* Icons */ -.ui-datepicker .ui-icon { - display: block; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; - left: .5em; - top: .3em; -} - - -/* - * Custom datepicker theme for WPP. - * - * @author Hector Cabrera - */ - -.ui-datepicker { - background: #fff; - -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); - -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); - box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); - border-radius: 5px; -} - - .ui-datepicker-header {} - - .ui-datepicker .ui-datepicker-prev { - left: 0; - } - - .ui-datepicker .ui-datepicker-next { - right: 0; - } - - .ui-datepicker .ui-datepicker-prev span, - .ui-datepicker .ui-datepicker-next span { - display: block; - position: absolute; - /*left: 50%; - margin-left: -8px; - top: 50%; - margin-top: -8px;*/ - } - - .ui-datepicker-prev:before, - .ui-datepicker-next:after { - position: absolute; - top: 6px; - display: inline-block; - font-family: 'FontAwesome'; - line-height: 1.1em; - } - - .ui-datepicker-prev:before { - left: 9px; - content: "\f060"; - } - - .ui-datepicker-next:after { - right: 9px; - content: "\f061"; - } - - .ui-datepicker .ui-datepicker-prev-hover, - .ui-datepicker .ui-datepicker-next-hover { - top: 2px !important; - } - - .ui-datepicker-calendar {} - - .ui-datepicker-calendar tr td { - text-align: center; - } - - .ui-datepicker-unselectable span { - color: #ccc; - text-align: center !important; - } - - .ui-datepicker-calendar tr td a { - text-align: center; - background: #fcfcfc; - } - - .ui-datepicker-calendar tr td.date-range-selected a { - color: #fff; - text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e; - background: #e14d43; - } - - .ui-datepicker-buttonpane {} - - .ui-datepicker-buttonpane button { - display: inline-block; - text-decoration: none; - font-size: 13px; - line-height: 26px; - height: 28px; - margin: 0; - padding: 0 10px 1px !important; - border-color: #ccc; - background: #f7f7f7; - vertical-align: top; - cursor: pointer; - border-width: 1px; - border-style: solid; - -webkit-appearance: none; - -webkit-border-radius: 3px; - border-radius: 3px; - white-space: nowrap; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - } - - /* Today button */ - .ui-datepicker-buttonpane .ui-datepicker-current { - display: none; - } - - .ui-datepicker-buttonpane .ui-priority-primary { - color: #fff; - background: #e14d43; - border-color: #d02c21 #ba281e #ba281e; - -webkit-box-shadow: 0 1px 0 #ba281e; - box-shadow: 0 1px 0 #ba281e; - text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e; - } - - .ui-datepicker-buttonpane .ui-priority-primary:hover { - background: #e35950; - border-color: #ba281e; - } - - .ui-datepicker-buttonpane .ui-priority-secondary { - color: #555; - border-color: #ccc; - background: #f7f7f7; - -webkit-box-shadow: 0 1px 0 #ccc; - box-shadow: 0 1px 0 #ccc; - } diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/FontAwesome.otf b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f36e4f73b8efa40bd6f604fe80d286db70..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/FontAwesome.otf and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.eot b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953f93e35eab4108bd414bc02ddcf3928..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.svg b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.svg deleted file mode 100644 index d7534c975b2a23edd3bd0b3f7e8c4be104f2a276..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > -<svg> -<metadata> -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. -</metadata> -<defs> -<font id="FontAwesome" horiz-adv-x="1536" > - <font-face - font-family="FontAwesome" - font-weight="400" - font-stretch="normal" - units-per-em="1792" - panose-1="0 0 0 0 0 0 0 0 0 0" - ascent="1536" - descent="-256" - bbox="-1.02083 -256.962 2304.6 1537.02" - underline-thickness="0" - underline-position="0" - unicode-range="U+0020-F500" - /> -<missing-glyph horiz-adv-x="896" -d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" /> - <glyph glyph-name=".notdef" horiz-adv-x="896" -d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" /> - <glyph glyph-name=".null" horiz-adv-x="0" - /> - <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" - /> - <glyph glyph-name="space" unicode=" " horiz-adv-x="448" - /> - <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="1792" - /> - <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1792" - /> - <glyph glyph-name="registered" unicode="®" horiz-adv-x="1792" - /> - <glyph glyph-name="acute" unicode="´" horiz-adv-x="1792" - /> - <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1792" - /> - <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1792" - /> - <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1792" - /> - <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1792" - /> - <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1792" - /> - <glyph glyph-name="glass" unicode="" horiz-adv-x="1792" -d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" /> - <glyph glyph-name="music" unicode="" -d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 -t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" /> - <glyph glyph-name="search" unicode="" horiz-adv-x="1664" -d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 -t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> - <glyph glyph-name="envelope" unicode="" horiz-adv-x="1792" -d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 -t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z -M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="heart" unicode="" horiz-adv-x="1792" -d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 -q-18 -18 -44 -18z" /> - <glyph glyph-name="star" unicode="" horiz-adv-x="1664" -d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 -l502 -73q56 -9 56 -46z" /> - <glyph glyph-name="star_empty" unicode="" horiz-adv-x="1664" -d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 -l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" /> - <glyph glyph-name="user" unicode="" horiz-adv-x="1280" -d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5 -t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="film" unicode="" horiz-adv-x="1920" -d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 -q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 -t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 -q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 -t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="th_large" unicode="" horiz-adv-x="1664" -d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 -h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> - <glyph glyph-name="th" unicode="" horiz-adv-x="1792" -d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 -h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 -q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" /> - <glyph glyph-name="th_list" unicode="" horiz-adv-x="1792" -d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 -h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" /> - <glyph glyph-name="ok" unicode="" horiz-adv-x="1792" -d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" /> - <glyph glyph-name="remove" unicode="" horiz-adv-x="1408" -d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 -t-28 -68l-294 -294l294 -294q28 -28 28 -68z" /> - <glyph glyph-name="zoom_in" unicode="" horiz-adv-x="1664" -d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 -q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 -t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> - <glyph glyph-name="zoom_out" unicode="" horiz-adv-x="1664" -d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z -M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z -" /> - <glyph glyph-name="off" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 -t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" /> - <glyph glyph-name="signal" unicode="" horiz-adv-x="1792" -d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 -v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" /> - <glyph glyph-name="cog" unicode="" -d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 -q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 -l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 -q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" /> - <glyph glyph-name="trash" unicode="" horiz-adv-x="1408" -d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 -q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 -q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> - <glyph glyph-name="home" unicode="" horiz-adv-x="1664" -d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 -l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" /> - <glyph glyph-name="file_alt" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -" /> - <glyph glyph-name="time" unicode="" -d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="road" unicode="" horiz-adv-x="1920" -d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 -q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" /> - <glyph glyph-name="download_alt" unicode="" horiz-adv-x="1664" -d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 -q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" /> - <glyph glyph-name="download" unicode="" -d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 -t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="upload" unicode="" -d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 -t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="inbox" unicode="" -d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 -q25 -61 25 -123z" /> - <glyph glyph-name="play_circle" unicode="" -d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="repeat" unicode="" -d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9 -l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" /> - <glyph glyph-name="refresh" unicode="" -d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 -q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 -q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="list_alt" unicode="" horiz-adv-x="1792" -d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z -M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 -t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 -t47 -113z" /> - <glyph glyph-name="lock" unicode="" horiz-adv-x="1152" -d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" /> - <glyph glyph-name="flag" unicode="" horiz-adv-x="1792" -d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 -t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" /> - <glyph glyph-name="headphones" unicode="" horiz-adv-x="1664" -d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 -t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 -t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" /> - <glyph glyph-name="volume_off" unicode="" horiz-adv-x="768" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="volume_down" unicode="" horiz-adv-x="1152" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36 -t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" /> - <glyph glyph-name="volume_up" unicode="" horiz-adv-x="1664" -d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36 -t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 -t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 -t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" /> - <glyph glyph-name="qrcode" unicode="" horiz-adv-x="1408" -d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z -M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" /> - <glyph glyph-name="barcode" unicode="" horiz-adv-x="1792" -d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z -M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" /> - <glyph glyph-name="tag" unicode="" -d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 -l715 -714q37 -39 37 -91z" /> - <glyph glyph-name="tags" unicode="" horiz-adv-x="1920" -d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 -l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" /> - <glyph glyph-name="book" unicode="" horiz-adv-x="1664" -d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 -q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 -q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 -t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" /> - <glyph glyph-name="bookmark" unicode="" horiz-adv-x="1280" -d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> - <glyph glyph-name="print" unicode="" horiz-adv-x="1664" -d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 -v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" /> - <glyph glyph-name="camera" unicode="" horiz-adv-x="1920" -d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 -q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="font" unicode="" horiz-adv-x="1664" -d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 -q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 -q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" /> - <glyph glyph-name="bold" unicode="" horiz-adv-x="1408" -d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 -q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 -t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 -t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" /> - <glyph glyph-name="italic" unicode="" horiz-adv-x="1024" -d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 -q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" /> - <glyph glyph-name="text_height" unicode="" horiz-adv-x="1792" -d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 -t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 -q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 -q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" /> - <glyph glyph-name="text_width" unicode="" -d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 -t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 -q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 -t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 -t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" /> - <glyph glyph-name="align_left" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 -t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_center" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 -h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_right" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 -t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="align_justify" unicode="" horiz-adv-x="1792" -d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 -t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> - <glyph glyph-name="list" unicode="" horiz-adv-x="1792" -d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 -t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 -q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 -t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 -q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="indent_left" unicode="" horiz-adv-x="1792" -d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 -t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 -q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="indent_right" unicode="" horiz-adv-x="1792" -d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 -t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 -q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="facetime_video" unicode="" horiz-adv-x="1792" -d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 -q39 -17 39 -59z" /> - <glyph glyph-name="picture" unicode="" horiz-adv-x="1920" -d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 -q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="pencil" unicode="" -d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 -q53 0 91 -38l235 -234q37 -39 37 -91z" /> - <glyph glyph-name="map_marker" unicode="" horiz-adv-x="1024" -d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" /> - <glyph glyph-name="adjust" unicode="" -d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="tint" unicode="" horiz-adv-x="1024" -d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 -q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" /> - <glyph glyph-name="edit" unicode="" horiz-adv-x="1792" -d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 -q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 -l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" /> - <glyph glyph-name="share" unicode="" horiz-adv-x="1664" -d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 -q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 -t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="check" unicode="" horiz-adv-x="1664" -d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 -q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 -q24 -24 24 -57t-24 -57z" /> - <glyph glyph-name="move" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 -t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="step_backward" unicode="" horiz-adv-x="1024" -d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" /> - <glyph glyph-name="fast_backward" unicode="" horiz-adv-x="1792" -d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710 -q19 19 32 13t13 -32v-710q4 10 13 19z" /> - <glyph glyph-name="backward" unicode="" horiz-adv-x="1664" -d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" /> - <glyph glyph-name="play" unicode="" horiz-adv-x="1408" -d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" /> - <glyph glyph-name="pause" unicode="" -d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" /> - <glyph glyph-name="stop" unicode="" -d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="forward" unicode="" horiz-adv-x="1664" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" /> - <glyph glyph-name="fast_forward" unicode="" horiz-adv-x="1792" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710 -q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" /> - <glyph glyph-name="step_forward" unicode="" horiz-adv-x="1024" -d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" /> - <glyph glyph-name="eject" unicode="" horiz-adv-x="1538" -d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" /> - <glyph glyph-name="chevron_left" unicode="" horiz-adv-x="1280" -d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="chevron_right" unicode="" horiz-adv-x="1280" -d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" /> - <glyph glyph-name="plus_sign" unicode="" -d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 -t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="minus_sign" unicode="" -d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="remove_sign" unicode="" -d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 -q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ok_sign" unicode="" -d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="question_sign" unicode="" -d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 -q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="info_sign" unicode="" -d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 -t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="screenshot" unicode="" -d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 -q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 -q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" /> - <glyph glyph-name="remove_circle" unicode="" -d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 -l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 -t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ok_circle" unicode="" -d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 -t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ban_circle" unicode="" -d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 -t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" /> - <glyph glyph-name="arrow_left" unicode="" -d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 -t32.5 -90.5z" /> - <glyph glyph-name="arrow_right" unicode="" -d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" /> - <glyph glyph-name="arrow_up" unicode="" horiz-adv-x="1664" -d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 -q37 -39 37 -91z" /> - <glyph glyph-name="arrow_down" unicode="" horiz-adv-x="1664" -d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" /> - <glyph glyph-name="share_alt" unicode="" horiz-adv-x="1792" -d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 -t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" /> - <glyph glyph-name="resize_full" unicode="" -d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 -q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" /> - <glyph glyph-name="resize_small" unicode="" -d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 -t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" /> - <glyph glyph-name="plus" unicode="" horiz-adv-x="1408" -d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" /> - <glyph glyph-name="minus" unicode="" horiz-adv-x="1408" -d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" /> - <glyph glyph-name="asterisk" unicode="" horiz-adv-x="1664" -d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 -q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" /> - <glyph glyph-name="exclamation_sign" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 -q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" /> - <glyph glyph-name="gift" unicode="" -d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 -q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 -t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" /> - <glyph glyph-name="leaf" unicode="" horiz-adv-x="1792" -d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 -q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 -t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" /> - <glyph glyph-name="fire" unicode="" horiz-adv-x="1408" -d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 -q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" /> - <glyph glyph-name="eye_open" unicode="" horiz-adv-x="1792" -d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 -t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" /> - <glyph glyph-name="eye_close" unicode="" horiz-adv-x="1792" -d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 -q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 -q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z -" /> - <glyph glyph-name="warning_sign" unicode="" horiz-adv-x="1792" -d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 -q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" /> - <glyph glyph-name="plane" unicode="" horiz-adv-x="1408" -d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 -q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" /> - <glyph glyph-name="calendar" unicode="" horiz-adv-x="1664" -d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z -M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 -q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 -h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="random" unicode="" horiz-adv-x="1792" -d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 -t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 -v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 -t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> - <glyph glyph-name="comment" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 -q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="magnet" unicode="" -d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 -q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" /> - <glyph glyph-name="chevron_up" unicode="" horiz-adv-x="1792" -d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" /> - <glyph glyph-name="chevron_down" unicode="" horiz-adv-x="1792" -d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" /> - <glyph glyph-name="retweet" unicode="" horiz-adv-x="1920" -d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21 -zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z -" /> - <glyph glyph-name="shopping_cart" unicode="" horiz-adv-x="1664" -d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 -t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="folder_close" unicode="" horiz-adv-x="1664" -d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> - <glyph glyph-name="folder_open" unicode="" horiz-adv-x="1920" -d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 -t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" /> - <glyph glyph-name="resize_vertical" unicode="" horiz-adv-x="768" -d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="resize_horizontal" unicode="" horiz-adv-x="1792" -d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> - <glyph glyph-name="bar_chart" unicode="" horiz-adv-x="2048" -d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" /> - <glyph glyph-name="twitter_sign" unicode="" -d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 -q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 -t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="facebook_sign" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960z" /> - <glyph glyph-name="camera_retro" unicode="" horiz-adv-x="1792" -d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 -t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 -q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="key" unicode="" horiz-adv-x="1792" -d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 -l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 -t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" /> - <glyph glyph-name="cogs" unicode="" horiz-adv-x="1920" -d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 -l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 -l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 -q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 -t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 -q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 -q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" /> - <glyph glyph-name="comments" unicode="" horiz-adv-x="1792" -d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 -q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 -q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" /> - <glyph glyph-name="thumbs_up_alt" unicode="" -d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 -t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 -q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 -q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" /> - <glyph glyph-name="thumbs_down_alt" unicode="" -d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 -t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z -M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 -h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" /> - <glyph glyph-name="star_half" unicode="" horiz-adv-x="896" -d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" /> - <glyph glyph-name="heart_empty" unicode="" horiz-adv-x="1792" -d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 -q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 -q224 0 351 -124t127 -344z" /> - <glyph glyph-name="signout" unicode="" horiz-adv-x="1664" -d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 -q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" /> - <glyph glyph-name="linkedin_sign" unicode="" -d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 -q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="pushpin" unicode="" horiz-adv-x="1152" -d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 -t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" /> - <glyph glyph-name="external_link" unicode="" horiz-adv-x="1792" -d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 -q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" /> - <glyph glyph-name="signin" unicode="" -d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 -q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="trophy" unicode="" horiz-adv-x="1664" -d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 -t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 -q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" /> - <glyph glyph-name="github_sign" unicode="" -d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4 -q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4 -t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16 -q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="upload_alt" unicode="" horiz-adv-x="1664" -d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 -t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" /> - <glyph glyph-name="lemon" unicode="" -d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 -q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 -q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 -q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" /> - <glyph glyph-name="phone" unicode="" horiz-adv-x="1408" -d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186 -q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14 -t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" /> - <glyph glyph-name="check_empty" unicode="" horiz-adv-x="1408" -d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 -q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="bookmark_empty" unicode="" horiz-adv-x="1280" -d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 -q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> - <glyph glyph-name="phone_sign" unicode="" -d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5 -t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5 -t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z -" /> - <glyph glyph-name="twitter" unicode="" horiz-adv-x="1664" -d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 -q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" /> - <glyph glyph-name="facebook" unicode="" horiz-adv-x="1024" -d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" /> - <glyph glyph-name="github" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24 -q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5 -t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12 -q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z -M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" /> - <glyph glyph-name="unlock" unicode="" horiz-adv-x="1664" -d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 -t316.5 -131.5t131.5 -316.5z" /> - <glyph glyph-name="credit_card" unicode="" horiz-adv-x="1920" -d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 -q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" /> - <glyph glyph-name="rss" unicode="" horiz-adv-x="1408" -d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 -t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 -q187 -186 294 -425.5t120 -501.5z" /> - <glyph glyph-name="hdd" unicode="" -d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 -h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 -l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" /> - <glyph glyph-name="bullhorn" unicode="" horiz-adv-x="1792" -d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 -t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" /> - <glyph glyph-name="bell" unicode="" horiz-adv-x="1792" -d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z -M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 -t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> - <glyph glyph-name="certificate" unicode="" -d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 -l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 -l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" /> - <glyph glyph-name="hand_right" unicode="" horiz-adv-x="1792" -d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 -q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 -q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 -t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" /> - <glyph glyph-name="hand_left" unicode="" horiz-adv-x="1792" -d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5 -t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z -M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67 -q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="hand_up" unicode="" -d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 -q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 -t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 -q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" /> - <glyph glyph-name="hand_down" unicode="" -d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 -t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 -q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 -q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" /> - <glyph glyph-name="circle_arrow_left" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_right" unicode="" -d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_up" unicode="" -d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="circle_arrow_down" unicode="" -d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="globe" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 -q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 -q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 -q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 -t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 -q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 -q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 -t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 -t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 -q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 -q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 -q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 -t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 -q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 -q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" /> - <glyph glyph-name="wrench" unicode="" horiz-adv-x="1664" -d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 -t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" /> - <glyph glyph-name="tasks" unicode="" horiz-adv-x="1792" -d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 -t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> - <glyph glyph-name="filter" unicode="" horiz-adv-x="1408" -d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" /> - <glyph glyph-name="briefcase" unicode="" horiz-adv-x="1792" -d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 -t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" /> - <glyph glyph-name="fullscreen" unicode="" -d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 -l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z -" /> - <glyph glyph-name="group" unicode="" horiz-adv-x="1920" -d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 -t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 -t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 -t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" /> - <glyph glyph-name="link" unicode="" horiz-adv-x="1664" -d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 -l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 -t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 -q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" /> - <glyph glyph-name="cloud" unicode="" horiz-adv-x="1920" -d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z -" /> - <glyph glyph-name="beaker" unicode="" horiz-adv-x="1664" -d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" /> - <glyph glyph-name="cut" unicode="" horiz-adv-x="1792" -d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 -q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 -q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 -q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 -q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" /> - <glyph glyph-name="copy" unicode="" horiz-adv-x="1792" -d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 -h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" /> - <glyph glyph-name="paper_clip" unicode="" horiz-adv-x="1408" -d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 -l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 -z" /> - <glyph glyph-name="save" unicode="" -d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 -h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" /> - <glyph glyph-name="sign_blank" unicode="" -d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="reorder" unicode="" -d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 -t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="ul" unicode="" horiz-adv-x="1792" -d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 -t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z -M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="ol" unicode="" horiz-adv-x="1792" -d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 -q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 -t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216 -q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> - <glyph glyph-name="strikethrough" unicode="" horiz-adv-x="1792" -d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 -l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 -l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" /> - <glyph glyph-name="underline" unicode="" -d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 -q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 -q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 -q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" /> - <glyph glyph-name="table" unicode="" horiz-adv-x="1664" -d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 -v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 -q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 -q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 -z" /> - <glyph glyph-name="magic" unicode="" horiz-adv-x="1664" -d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 -l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" /> - <glyph glyph-name="truck" unicode="" horiz-adv-x="1792" -d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 -t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 -t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" /> - <glyph glyph-name="pinterest" unicode="" -d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 -q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 -q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="pinterest_sign" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 -t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 -t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" /> - <glyph glyph-name="google_plus_sign" unicode="" -d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 -h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="google_plus" unicode="" horiz-adv-x="2304" -d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 -q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" /> - <glyph glyph-name="money" unicode="" horiz-adv-x="1920" -d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 -v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" /> - <glyph glyph-name="caret_down" unicode="" horiz-adv-x="1024" -d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> - <glyph glyph-name="caret_up" unicode="" horiz-adv-x="1024" -d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="caret_left" unicode="" horiz-adv-x="640" -d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" /> - <glyph glyph-name="caret_right" unicode="" horiz-adv-x="640" -d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="columns" unicode="" horiz-adv-x="1664" -d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" /> - <glyph glyph-name="sort" unicode="" horiz-adv-x="1024" -d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="sort_down" unicode="" horiz-adv-x="1024" -d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> - <glyph glyph-name="sort_up" unicode="" horiz-adv-x="1024" -d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> - <glyph glyph-name="envelope_alt" unicode="" horiz-adv-x="1792" -d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 -q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" /> - <glyph glyph-name="linkedin" unicode="" -d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 -q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" /> - <glyph glyph-name="undo" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 -t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" /> - <glyph glyph-name="legal" unicode="" horiz-adv-x="1792" -d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 -t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 -q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 -q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" /> - <glyph glyph-name="dashboard" unicode="" horiz-adv-x="1792" -d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 -t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 -t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 -q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="comment_alt" unicode="" horiz-adv-x="1792" -d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 -q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 -t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="comments_alt" unicode="" horiz-adv-x="1792" -d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 -t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 -t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 -q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" /> - <glyph glyph-name="bolt" unicode="" horiz-adv-x="896" -d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" /> - <glyph glyph-name="sitemap" unicode="" horiz-adv-x="1792" -d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 -q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 -z" /> - <glyph glyph-name="umbrella" unicode="" horiz-adv-x="1664" -d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 -q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 -q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" /> - <glyph glyph-name="paste" unicode="" horiz-adv-x="1792" -d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 -h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" /> - <glyph glyph-name="light_bulb" unicode="" horiz-adv-x="1024" -d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 -q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 -q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 -t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" /> - <glyph glyph-name="exchange" unicode="" horiz-adv-x="1792" -d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 -q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> - <glyph glyph-name="cloud_download" unicode="" horiz-adv-x="1920" -d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 -q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> - <glyph glyph-name="cloud_upload" unicode="" horiz-adv-x="1920" -d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 -q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> - <glyph glyph-name="user_md" unicode="" horiz-adv-x="1408" -d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 -t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 -t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 -t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="stethoscope" unicode="" horiz-adv-x="1408" -d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 -t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 -t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="suitcase" unicode="" horiz-adv-x="1792" -d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 -t66 -158z" /> - <glyph glyph-name="bell_alt" unicode="" horiz-adv-x="1792" -d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 -t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> - <glyph glyph-name="coffee" unicode="" horiz-adv-x="1920" -d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 -t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="food" unicode="" horiz-adv-x="1408" -d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 -t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" /> - <glyph glyph-name="file_text_alt" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 -q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" /> - <glyph glyph-name="building" unicode="" horiz-adv-x="1408" -d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" /> - <glyph glyph-name="hospital" unicode="" horiz-adv-x="1408" -d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z -M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 -t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 -v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" /> - <glyph glyph-name="ambulance" unicode="" horiz-adv-x="1920" -d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 -q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="medkit" unicode="" horiz-adv-x="1792" -d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 -q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" /> - <glyph glyph-name="fighter_jet" unicode="" horiz-adv-x="1920" -d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 -q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" /> - <glyph glyph-name="beer" unicode="" horiz-adv-x="1664" -d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" /> - <glyph glyph-name="h_sign" unicode="" -d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="f0fe" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="double_angle_left" unicode="" horiz-adv-x="1024" -d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 -t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_right" unicode="" horiz-adv-x="1024" -d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 -l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_up" unicode="" horiz-adv-x="1152" -d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 -q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="double_angle_down" unicode="" horiz-adv-x="1152" -d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 -t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="angle_left" unicode="" horiz-adv-x="640" -d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="angle_right" unicode="" horiz-adv-x="640" -d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="angle_up" unicode="" horiz-adv-x="1152" -d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> - <glyph glyph-name="angle_down" unicode="" horiz-adv-x="1152" -d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> - <glyph glyph-name="desktop" unicode="" horiz-adv-x="1920" -d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 -t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="laptop" unicode="" horiz-adv-x="1920" -d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z -M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" /> - <glyph glyph-name="tablet" unicode="" horiz-adv-x="1152" -d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 -q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" /> - <glyph glyph-name="mobile_phone" unicode="" horiz-adv-x="768" -d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 -q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> - <glyph glyph-name="circle_blank" unicode="" -d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 -t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="quote_left" unicode="" horiz-adv-x="1664" -d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z -M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" /> - <glyph glyph-name="quote_right" unicode="" horiz-adv-x="1664" -d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 -v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" /> - <glyph glyph-name="spinner" unicode="" horiz-adv-x="1792" -d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 -t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z -M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 -q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" /> - <glyph glyph-name="circle" unicode="" -d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="reply" unicode="" horiz-adv-x="1792" -d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 -l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" /> - <glyph glyph-name="github_alt" unicode="" horiz-adv-x="1664" -d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 -q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 -t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 -q0 -87 -27 -168q136 -160 136 -398z" /> - <glyph glyph-name="folder_close_alt" unicode="" horiz-adv-x="1664" -d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 -q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> - <glyph glyph-name="folder_open_alt" unicode="" horiz-adv-x="1920" -d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 -v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z -" /> - <glyph glyph-name="expand_alt" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="collapse_alt" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="smile" unicode="" -d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 -t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="frown" unicode="" -d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 -t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="meh" unicode="" -d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="gamepad" unicode="" horiz-adv-x="1920" -d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 -t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 -t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" /> - <glyph glyph-name="keyboard" unicode="" horiz-adv-x="1920" -d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 -h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 -h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 -q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 -h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="flag_alt" unicode="" horiz-adv-x="1792" -d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 -h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 -q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> - <glyph glyph-name="flag_checkered" unicode="" horiz-adv-x="1792" -d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 -q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 -q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 -q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> - <glyph glyph-name="terminal" unicode="" horiz-adv-x="1664" -d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 -t9 -23z" /> - <glyph glyph-name="code" unicode="" horiz-adv-x="1920" -d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 -l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" /> - <glyph glyph-name="reply_all" unicode="" horiz-adv-x="1792" -d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 -q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" /> - <glyph glyph-name="star_half_empty" unicode="" horiz-adv-x="1664" -d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 -l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" /> - <glyph glyph-name="location_arrow" unicode="" horiz-adv-x="1408" -d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" /> - <glyph glyph-name="crop" unicode="" horiz-adv-x="1664" -d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 -v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" /> - <glyph glyph-name="code_fork" unicode="" horiz-adv-x="1024" -d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 -q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 -q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="unlink" unicode="" horiz-adv-x="1664" -d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 -q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 -l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 -t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> - <glyph glyph-name="question" unicode="" horiz-adv-x="1024" -d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 -t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" /> - <glyph glyph-name="_279" unicode="" horiz-adv-x="640" -d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 -q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" /> - <glyph glyph-name="exclamation" unicode="" horiz-adv-x="640" -d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" /> - <glyph glyph-name="superscript" unicode="" -d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z -M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5 -t-65.5 -51.5t-30.5 -63h232v80h126z" /> - <glyph glyph-name="subscript" unicode="" -d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z -M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73 -h232v80h126z" /> - <glyph glyph-name="_283" unicode="" horiz-adv-x="1920" -d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" /> - <glyph glyph-name="puzzle_piece" unicode="" horiz-adv-x="1664" -d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 -t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 -q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 -q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" /> - <glyph glyph-name="microphone" unicode="" horiz-adv-x="1152" -d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 -t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" /> - <glyph glyph-name="microphone_off" unicode="" horiz-adv-x="1408" -d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 -q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 -t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" /> - <glyph glyph-name="shield" unicode="" horiz-adv-x="1280" -d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 -t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> - <glyph glyph-name="calendar_empty" unicode="" horiz-adv-x="1664" -d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 -q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="fire_extinguisher" unicode="" horiz-adv-x="1408" -d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 -q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 -q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> - <glyph glyph-name="rocket" unicode="" horiz-adv-x="1664" -d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 -q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> - <glyph glyph-name="maxcdn" unicode="" horiz-adv-x="1792" -d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" /> - <glyph glyph-name="chevron_sign_left" unicode="" -d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_right" unicode="" -d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_up" unicode="" -d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="chevron_sign_down" unicode="" -d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 -t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="html5" unicode="" horiz-adv-x="1408" -d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" /> - <glyph glyph-name="css3" unicode="" horiz-adv-x="1792" -d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" /> - <glyph glyph-name="anchor" unicode="" horiz-adv-x="1792" -d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 -q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 -t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" /> - <glyph glyph-name="unlock_alt" unicode="" horiz-adv-x="1152" -d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 -v-320h736z" /> - <glyph glyph-name="bullseye" unicode="" -d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 -t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 -q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="ellipsis_horizontal" unicode="" horiz-adv-x="1408" -d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> - <glyph glyph-name="ellipsis_vertical" unicode="" horiz-adv-x="384" -d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 -q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> - <glyph glyph-name="_303" unicode="" -d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128 -q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="play_sign" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 -q16 -8 32 -8q17 0 32 9z" /> - <glyph glyph-name="ticket" unicode="" horiz-adv-x="1792" -d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 -t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" /> - <glyph glyph-name="minus_sign_alt" unicode="" -d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="check_minus" unicode="" horiz-adv-x="1408" -d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 -t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="level_up" unicode="" horiz-adv-x="1024" -d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" /> - <glyph glyph-name="level_down" unicode="" horiz-adv-x="1024" -d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" /> - <glyph glyph-name="check_sign" unicode="" -d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 -t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="edit_sign" unicode="" -d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_312" unicode="" -d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 -q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="share_sign" unicode="" -d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 -t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="compass" unicode="" -d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="collapse" unicode="" -d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="collapse_top" unicode="" -d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_317" unicode="" -d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 -t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="eur" unicode="" horiz-adv-x="1024" -d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 -t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 -l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" /> - <glyph glyph-name="gbp" unicode="" horiz-adv-x="1024" -d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 -q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" /> - <glyph glyph-name="usd" unicode="" horiz-adv-x="1024" -d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 -t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 -t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 -t53 -63.5t31.5 -76.5t13 -94z" /> - <glyph glyph-name="inr" unicode="" horiz-adv-x="898" -d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 -q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> - <glyph glyph-name="jpy" unicode="" horiz-adv-x="1027" -d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 -l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> - <glyph glyph-name="rub" unicode="" horiz-adv-x="1280" -d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 -q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" /> - <glyph glyph-name="krw" unicode="" horiz-adv-x="1792" -d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 -t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 -q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> - <glyph glyph-name="btc" unicode="" horiz-adv-x="1280" -d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 -l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 -t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> - <glyph glyph-name="file" unicode="" -d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" /> - <glyph glyph-name="file_text" unicode="" -d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 -q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" /> - <glyph glyph-name="sort_by_alphabet" unicode="" horiz-adv-x="1664" -d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 -v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 -l230 -662h70z" /> - <glyph glyph-name="_329" unicode="" horiz-adv-x="1664" -d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 -v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 -v119h121z" /> - <glyph glyph-name="sort_by_attributes" unicode="" horiz-adv-x="1792" -d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 -q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" /> - <glyph glyph-name="sort_by_attributes_alt" unicode="" horiz-adv-x="1792" -d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 -q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" /> - <glyph glyph-name="sort_by_order" unicode="" -d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 -zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 -t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" /> - <glyph glyph-name="sort_by_order_alt" unicode="" -d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 -t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 -q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" /> - <glyph glyph-name="_334" unicode="" horiz-adv-x="1664" -d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 -q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 -t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" /> - <glyph glyph-name="_335" unicode="" horiz-adv-x="1664" -d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 -t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 -t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" /> - <glyph glyph-name="youtube_sign" unicode="" -d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 -q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 -q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 -q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38 -q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5 -h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="youtube" unicode="" -d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 -q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 -q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 -q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51 -q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" /> - <glyph glyph-name="xing" unicode="" horiz-adv-x="1408" -d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 -q25 45 64 45h241q22 0 31 -15z" /> - <glyph glyph-name="xing_sign" unicode="" -d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 -l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="youtube_play" unicode="" horiz-adv-x="1792" -d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5 -l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136 -q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" /> - <glyph glyph-name="dropbox" unicode="" horiz-adv-x="1792" -d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" /> - <glyph glyph-name="stackexchange" unicode="" -d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" /> - <glyph glyph-name="instagram" unicode="" -d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270 -q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5 -t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317 -q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" /> - <glyph glyph-name="flickr" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 -t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" /> - <glyph glyph-name="adn" unicode="" -d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="f171" unicode="" horiz-adv-x="1408" -d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 -t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 -t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 -t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" /> - <glyph glyph-name="bitbucket_sign" unicode="" -d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 -t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z -M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 -v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="tumblr" unicode="" horiz-adv-x="1024" -d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 -q78 2 134 29z" /> - <glyph glyph-name="tumblr_sign" unicode="" -d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z -M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="long_arrow_down" unicode="" horiz-adv-x="768" -d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" /> - <glyph glyph-name="long_arrow_up" unicode="" horiz-adv-x="768" -d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" /> - <glyph glyph-name="long_arrow_left" unicode="" horiz-adv-x="1792" -d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" /> - <glyph glyph-name="long_arrow_right" unicode="" horiz-adv-x="1792" -d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" /> - <glyph glyph-name="apple" unicode="" horiz-adv-x="1408" -d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 -q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" /> - <glyph glyph-name="windows" unicode="" horiz-adv-x="1664" -d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" /> - <glyph glyph-name="android" unicode="" horiz-adv-x="1408" -d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 -t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 -h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" /> - <glyph glyph-name="linux" unicode="" -d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z -M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 -q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 -q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 -t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 -q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 -q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 -q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 -q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4 -t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5 -t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43 -q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49 -t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54 -q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5 -t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5 -t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" /> - <glyph glyph-name="dribble" unicode="" -d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 -t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 -q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 -t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="skype" unicode="" -d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 -t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 -q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 -q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" /> - <glyph glyph-name="foursquare" unicode="" horiz-adv-x="1280" -d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z -M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 -l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" /> - <glyph glyph-name="trello" unicode="" -d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 -q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> - <glyph glyph-name="female" unicode="" horiz-adv-x="1280" -d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 -q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="male" unicode="" horiz-adv-x="1024" -d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z -M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="gittip" unicode="" -d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="sun" unicode="" horiz-adv-x="1792" -d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 -l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 -q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" /> - <glyph glyph-name="_366" unicode="" -d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 -t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" /> - <glyph glyph-name="archive" unicode="" horiz-adv-x="1792" -d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 -q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" /> - <glyph glyph-name="bug" unicode="" horiz-adv-x="1664" -d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 -q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 -t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> - <glyph glyph-name="vk" unicode="" horiz-adv-x="1920" -d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 -t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 -q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24 -q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 -q39 5 64 -2.5t31 -16.5z" /> - <glyph glyph-name="weibo" unicode="" horiz-adv-x="1792" -d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 -q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 -q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 -q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z -M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> - <glyph glyph-name="renren" unicode="" -d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 -q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" /> - <glyph glyph-name="_372" unicode="" horiz-adv-x="1408" -d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 -t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 -t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 -t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" /> - <glyph glyph-name="stack_exchange" unicode="" horiz-adv-x="1280" -d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z -" /> - <glyph glyph-name="_374" unicode="" -d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 -t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="arrow_circle_alt_left" unicode="" -d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 -t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_376" unicode="" -d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z -M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="dot_circle_alt" unicode="" -d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 -t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_378" unicode="" horiz-adv-x="1664" -d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 -q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" /> - <glyph glyph-name="vimeo_square" unicode="" -d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 -q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_380" unicode="" horiz-adv-x="1152" -d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 -q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> - <glyph glyph-name="plus_square_o" unicode="" horiz-adv-x="1408" -d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 -q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_382" unicode="" horiz-adv-x="2176" -d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 -t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 -q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" /> - <glyph glyph-name="_383" unicode="" horiz-adv-x="1664" -d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 -q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 -t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" /> - <glyph glyph-name="_384" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 -q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 -t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" /> - <glyph glyph-name="_385" unicode="" horiz-adv-x="1792" -d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 -t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 -t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 -t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 -t273 -182.5t331.5 -68z" /> - <glyph glyph-name="_386" unicode="" horiz-adv-x="1792" -d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" /> - <glyph glyph-name="_387" unicode="" horiz-adv-x="2048" -d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 -q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" /> - <glyph glyph-name="_388" unicode="" horiz-adv-x="2304" -d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 -q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" /> - <glyph glyph-name="_389" unicode="" -d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 -q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" /> - <glyph glyph-name="uniF1A0" unicode="" -d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 -t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" /> - <glyph glyph-name="f1a1" unicode="" horiz-adv-x="1792" -d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 -t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 -q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 -t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_392" unicode="" -d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 -q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 -q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_393" unicode="" -d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 -v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 -t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="f1a4" unicode="" horiz-adv-x="1920" -d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 -v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" /> - <glyph glyph-name="_395" unicode="" -d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="_396" unicode="" horiz-adv-x="2048" -d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 -v-369h123z" /> - <glyph glyph-name="_397" unicode="" -d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 -v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 -q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_398" unicode="" horiz-adv-x="2038" -d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 -q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 -q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 -q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 -t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 -q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 -t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 -t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" /> - <glyph glyph-name="_399" unicode="" -d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 -q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 -q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 -t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 -q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" /> - <glyph glyph-name="_400" unicode="" -d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z -M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 -t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 -q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 -t135.5 51q85 0 145 -60.5t60 -145.5z" /> - <glyph glyph-name="f1ab" unicode="" -d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 -q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 -q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z -M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 -q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 -q20 0 20 -21v-418z" /> - <glyph glyph-name="_402" unicode="" horiz-adv-x="1792" -d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 -l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 -t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 -q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 -q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" /> - <glyph glyph-name="_403" unicode="" -d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 -t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 -q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 -q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 -t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 -q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 -q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 -t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" /> - <glyph glyph-name="_404" unicode="" horiz-adv-x="1280" -d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152 -q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="uniF1B1" unicode="" horiz-adv-x="1664" -d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 -q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 -q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 -t100.5 134t141.5 55.5z" /> - <glyph glyph-name="_406" unicode="" horiz-adv-x="768" -d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" /> - <glyph glyph-name="_407" unicode="" horiz-adv-x="1792" -d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z -" /> - <glyph glyph-name="_408" unicode="" horiz-adv-x="2304" -d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 -t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 -v-400l434 -186q36 -16 57 -48t21 -70z" /> - <glyph glyph-name="_409" unicode="" horiz-adv-x="2048" -d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 -q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 -q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" /> - <glyph glyph-name="_410" unicode="" -d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 -t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 -t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" /> - <glyph glyph-name="_411" unicode="" horiz-adv-x="1792" -d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 -q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 -q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" /> - <glyph glyph-name="_412" unicode="" -d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 -q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 -q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z -" /> - <glyph glyph-name="_413" unicode="" horiz-adv-x="1792" -d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 -l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 -t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 -q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" /> - <glyph glyph-name="_414" unicode="" horiz-adv-x="2048" -d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 -q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 -l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="_415" unicode="" horiz-adv-x="2048" -d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 -t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z -M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" /> - <glyph glyph-name="_416" unicode="" -d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 -q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" /> - <glyph glyph-name="_417" unicode="" -d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 -q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 -q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_418" unicode="" horiz-adv-x="1024" -d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" /> - <glyph glyph-name="_419" unicode="" horiz-adv-x="2304" -d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 -q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 -q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 -l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 -q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236 -q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786 -q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" /> - <glyph glyph-name="uniF1C0" unicode="" -d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 -t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 -t-103 128v128q0 69 103 128t280 93.5t385 34.5z" /> - <glyph glyph-name="uniF1C1" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 -q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 -q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" /> - <glyph glyph-name="_422" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5 -t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" /> - <glyph glyph-name="_423" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 -h-290v-107h68l189 -272l-194 -283h-68z" /> - <glyph glyph-name="_424" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" /> - <glyph glyph-name="_425" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" /> - <glyph glyph-name="_426" unicode="" -d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 -v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 -q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" /> - <glyph glyph-name="_427" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 -q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" /> - <glyph glyph-name="_428" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" /> - <glyph glyph-name="_429" unicode="" -d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z -M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 -l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" /> - <glyph glyph-name="_430" unicode="" -d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 -q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" /> - <glyph glyph-name="_431" unicode="" horiz-adv-x="1792" -d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 -q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" /> - <glyph glyph-name="_432" unicode="" horiz-adv-x="2048" -d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 -q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 -t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" /> - <glyph glyph-name="_433" unicode="" horiz-adv-x="1792" -d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 -q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 -t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" /> - <glyph glyph-name="_434" unicode="" horiz-adv-x="1792" -d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 -t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" /> - <glyph glyph-name="uniF1D0" unicode="" horiz-adv-x="1792" -d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 -t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 -t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 -q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" /> - <glyph glyph-name="uniF1D1" unicode="" horiz-adv-x="1792" -d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 -l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 -q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 -q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 -t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 -t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF1D2" unicode="" -d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 -q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 -q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 -q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_438" unicode="" horiz-adv-x="1792" -d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 -q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 -q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 -v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" /> - <glyph glyph-name="_439" unicode="" -d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF1D5" unicode="" horiz-adv-x="1280" -d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 -t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 -t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" /> - <glyph glyph-name="uniF1D6" unicode="" horiz-adv-x="1792" -d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 -q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 -t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 -t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" /> - <glyph glyph-name="uniF1D7" unicode="" horiz-adv-x="2048" -d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 -q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 -q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 -q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" /> - <glyph glyph-name="_443" unicode="" horiz-adv-x="1792" -d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" /> - <glyph glyph-name="_444" unicode="" horiz-adv-x="1792" -d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 -l863 639l-478 -797z" /> - <glyph glyph-name="_445" unicode="" -d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 -t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 -t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_446" unicode="" -d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 -t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_447" unicode="" horiz-adv-x="1792" -d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 -t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 -t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 -q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 -q0 -26 -12 -48t-36 -22z" /> - <glyph glyph-name="_448" unicode="" horiz-adv-x="1280" -d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 -q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" /> - <glyph glyph-name="_449" unicode="" -d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 -q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" /> - <glyph glyph-name="uniF1E0" unicode="" -d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 -t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" /> - <glyph glyph-name="_451" unicode="" -d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 -t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_452" unicode="" horiz-adv-x="1792" -d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 -t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 -q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 -t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> - <glyph glyph-name="_453" unicode="" horiz-adv-x="1792" -d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 -l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" /> - <glyph glyph-name="_454" unicode="" horiz-adv-x="1792" -d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 -v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 -q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 -zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 -t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" /> - <glyph glyph-name="_455" unicode="" horiz-adv-x="1792" -d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z -M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_456" unicode="" horiz-adv-x="1792" -d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234 -l401 400q38 37 91 37t90 -37z" /> - <glyph glyph-name="_457" unicode="" horiz-adv-x="1792" -d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 -t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z -M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7 -t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" /> - <glyph glyph-name="_458" unicode="" horiz-adv-x="1792" -d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" /> - <glyph glyph-name="_459" unicode="" -d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 -q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 -t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 -q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" /> - <glyph glyph-name="_460" unicode="" horiz-adv-x="2048" -d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 -t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" /> - <glyph glyph-name="_461" unicode="" horiz-adv-x="2048" -d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 -q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z -M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" /> - <glyph glyph-name="_462" unicode="" horiz-adv-x="1792" -d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 -t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 -t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 -t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z -M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 -h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_463" unicode="" -d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 -q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 -q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" /> - <glyph glyph-name="_464" unicode="" horiz-adv-x="1792" -d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640 -q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" /> - <glyph glyph-name="uniF1F0" unicode="" horiz-adv-x="2304" -d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 -q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 -q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_466" unicode="" horiz-adv-x="2304" -d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249 -q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z -M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32 -h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4 -q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75 -q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14 -q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22 -q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12 -q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122 -h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5 -t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_467" unicode="" horiz-adv-x="2304" -d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 -q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 -v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 -q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 -t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" /> - <glyph glyph-name="f1f3" unicode="" horiz-adv-x="2304" -d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z -M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 -l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 -v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 -q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 -q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 -t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 -h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 -t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" /> - <glyph glyph-name="_469" unicode="" horiz-adv-x="2304" -d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 -t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 -q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 -t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 -l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 -q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_470" unicode="" horiz-adv-x="2304" -d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 -q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 -q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 -q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 -q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_471" unicode="" horiz-adv-x="2048" -d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 -l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 -l418 363q10 8 23.5 7t21.5 -11z" /> - <glyph glyph-name="_472" unicode="" horiz-adv-x="2048" -d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 -q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 -q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" /> - <glyph glyph-name="_473" unicode="" horiz-adv-x="1408" -d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 -q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 -q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_474" unicode="" -d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 -t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 -t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_475" unicode="" -d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 -q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 -t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 -t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" /> - <glyph glyph-name="_476" unicode="" horiz-adv-x="1792" -d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 -t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" /> - <glyph glyph-name="f1fc" unicode="" horiz-adv-x="1792" -d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 -t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" /> - <glyph glyph-name="_478" unicode="" horiz-adv-x="1792" -d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5 -t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38 -t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448 -h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5 -q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" /> - <glyph glyph-name="_479" unicode="" horiz-adv-x="2048" -d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" /> - <glyph glyph-name="_480" unicode="" horiz-adv-x="1792" -d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_481" unicode="" horiz-adv-x="2048" -d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 -t9 -23z" /> - <glyph glyph-name="_482" unicode="" horiz-adv-x="1792" -d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 -q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 -t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 -q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" /> - <glyph glyph-name="_483" unicode="" -d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 -q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 -q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 -q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_484" unicode="" horiz-adv-x="2048" -d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 -t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 -t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" /> - <glyph glyph-name="_485" unicode="" horiz-adv-x="2048" -d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 -t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> - <glyph glyph-name="_486" unicode="" horiz-adv-x="2304" -d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 -q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 -q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 -q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" /> - <glyph glyph-name="_487" unicode="" -d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 -h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 -t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" /> - <glyph glyph-name="_488" unicode="" horiz-adv-x="2048" -d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 -q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 -q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" /> - <glyph glyph-name="_489" unicode="" horiz-adv-x="1280" -d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 -t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 -t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 -q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 -q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 -t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" /> - <glyph glyph-name="_490" unicode="" horiz-adv-x="2048" -d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 -q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 -t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 -t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" /> - <glyph glyph-name="_491" unicode="" -d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 -t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> - <glyph glyph-name="_492" unicode="" -d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 -q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 -q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" /> - <glyph glyph-name="_493" unicode="" -d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" /> - <glyph glyph-name="_494" unicode="" horiz-adv-x="2048" -d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 -q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 -q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438 -h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66 -l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946 -l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82 -zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" /> - <glyph glyph-name="f210" unicode="" -d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" /> - <glyph glyph-name="_496" unicode="" -d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 -q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" /> - <glyph glyph-name="f212" unicode="" horiz-adv-x="2048" -d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 -q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 -q209 0 374 -102q172 107 374 102z" /> - <glyph glyph-name="_498" unicode="" horiz-adv-x="2048" -d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 -q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 -q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" /> - <glyph glyph-name="_499" unicode="" -d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 -l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 -v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z -M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 -v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 -h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 -t-43 -34t-16.5 -53.5z" /> - <glyph glyph-name="_500" unicode="" horiz-adv-x="2048" -d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 -q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" /> - <glyph glyph-name="_501" unicode="" horiz-adv-x="2048" -d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 -t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 -t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 -q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" /> - <glyph glyph-name="_502" unicode="" horiz-adv-x="1664" -d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 -q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="_503" unicode="" horiz-adv-x="1664" -d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 -t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 -q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> - <glyph glyph-name="_504" unicode="" horiz-adv-x="2048" -d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 -l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" /> - <glyph glyph-name="_505" unicode="" horiz-adv-x="2048" -d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 -q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 -q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 -v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 -q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" /> - <glyph glyph-name="_506" unicode="" -d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 -t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 -q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 -t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" /> - <glyph glyph-name="_507" unicode="" horiz-adv-x="2304" -d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 -t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 -l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 -t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" /> - <glyph glyph-name="_508" unicode="" -d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 -q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 -q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 -t158.5 -65.5t65.5 -158.5z" /> - <glyph glyph-name="_509" unicode="" horiz-adv-x="1792" -d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 -q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 -t127 -344z" /> - <glyph glyph-name="venus" unicode="" horiz-adv-x="1280" -d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 -q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" /> - <glyph glyph-name="_511" unicode="" -d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 -q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_512" unicode="" horiz-adv-x="1280" -d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 -t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_513" unicode="" -d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 -q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_514" unicode="" horiz-adv-x="1792" -d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 -q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 -t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 -t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_515" unicode="" horiz-adv-x="1792" -d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 -t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 -q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 -q0 -226 -154 -391q103 -57 218 -57z" /> - <glyph glyph-name="_516" unicode="" horiz-adv-x="1920" -d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 -q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 -t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 -q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" /> - <glyph glyph-name="_517" unicode="" horiz-adv-x="2048" -d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 -t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 -t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 -t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" /> - <glyph glyph-name="_518" unicode="" -d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 -t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 -t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_519" unicode="" horiz-adv-x="1280" -d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 -t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 -t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_520" unicode="" horiz-adv-x="2048" -d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 -t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 -t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_521" unicode="" horiz-adv-x="1280" -d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 -t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> - <glyph glyph-name="_522" unicode="" horiz-adv-x="1280" -d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 -t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" /> - <glyph glyph-name="_523" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_524" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_525" unicode="" -d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" /> - <glyph glyph-name="_526" unicode="" horiz-adv-x="1280" -d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 -l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 -q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" /> - <glyph glyph-name="_527" unicode="" -d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 -t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 -l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" /> - <glyph glyph-name="_528" unicode="" horiz-adv-x="1792" -d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 -q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" /> - <glyph glyph-name="_529" unicode="" horiz-adv-x="2048" -d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 -t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 -t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" /> - <glyph glyph-name="_530" unicode="" horiz-adv-x="2048" -d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 -q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 -t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" /> - <glyph glyph-name="_531" unicode="" horiz-adv-x="2048" -d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 -q-26 0 -45 -19t-19 -45v-384h1152z" /> - <glyph glyph-name="_532" unicode="" -d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" /> - <glyph glyph-name="_533" unicode="" -d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 -t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" /> - <glyph glyph-name="_534" unicode="" -d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 -t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" /> - <glyph glyph-name="_535" unicode="" horiz-adv-x="1792" -d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 -q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" /> - <glyph glyph-name="_536" unicode="" -d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" /> - <glyph glyph-name="_537" unicode="" horiz-adv-x="2296" -d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 -q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 -q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 -q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 -q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 -q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 -q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8 -t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 -q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 -q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z -M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86 -t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 -q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4 -l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130 -t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 -q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 -q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" /> - <glyph glyph-name="_538" unicode="" horiz-adv-x="2304" -d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 -t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 -t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" /> - <glyph glyph-name="_539" unicode="" horiz-adv-x="1792" -d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 -t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 -t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 -q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 -q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" /> - <glyph glyph-name="_540" unicode="" horiz-adv-x="2304" -d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 -v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" /> - <glyph glyph-name="_541" unicode="" horiz-adv-x="2304" -d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_542" unicode="" horiz-adv-x="2304" -d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_543" unicode="" horiz-adv-x="2304" -d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 -h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_544" unicode="" horiz-adv-x="2304" -d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 -v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" /> - <glyph glyph-name="_545" unicode="" horiz-adv-x="1280" -d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" /> - <glyph glyph-name="_546" unicode="" horiz-adv-x="1024" -d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" /> - <glyph glyph-name="_547" unicode="" horiz-adv-x="2048" -d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 -h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" /> - <glyph glyph-name="_548" unicode="" horiz-adv-x="2304" -d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 -v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" /> - <glyph glyph-name="_549" unicode="" -d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" /> - <glyph glyph-name="_550" unicode="" -d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 -z" /> - <glyph glyph-name="_551" unicode="" horiz-adv-x="2304" -d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 -t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 -t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 -t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_552" unicode="" horiz-adv-x="2304" -d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 -t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z -M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_553" unicode="" horiz-adv-x="1792" -d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 -zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" /> - <glyph glyph-name="_554" unicode="" horiz-adv-x="2304" -d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 -q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 -t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 -t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" /> - <glyph glyph-name="_555" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 -t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> - <glyph glyph-name="_556" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" /> - <glyph glyph-name="_557" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" /> - <glyph glyph-name="_558" unicode="" -d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 -t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 -h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" /> - <glyph glyph-name="_559" unicode="" -d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 -t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 -h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" /> - <glyph glyph-name="_560" unicode="" -d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 -q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 -t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 -q72 69 174 69z" /> - <glyph glyph-name="_561" unicode="" horiz-adv-x="1792" -d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 -t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 -h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" /> - <glyph glyph-name="_562" unicode="" horiz-adv-x="1792" -d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 -q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 -t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 -t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 -q0 -42 -23 -78t-61 -53l-310 -141h91z" /> - <glyph glyph-name="_563" unicode="" horiz-adv-x="2048" -d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 -q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 -q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" /> - <glyph glyph-name="_564" unicode="" horiz-adv-x="2048" -d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79 -t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24 -q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26 -l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" /> - <glyph glyph-name="_565" unicode="" horiz-adv-x="1792" -d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 -q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 -v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 -v-384h32z" /> - <glyph glyph-name="_566" unicode="" -d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 -v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 -q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 -q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 -q0 -53 37.5 -90.5t90.5 -37.5h668z" /> - <glyph glyph-name="_567" unicode="" horiz-adv-x="1973" -d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 -t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 -q13 0 22 -8.5t10 -20.5z" /> - <glyph glyph-name="_568" unicode="" horiz-adv-x="1792" -d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 -t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 -q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_569" unicode="" horiz-adv-x="1792" -d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 -q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5 -t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 -q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 -t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" /> - <glyph glyph-name="f260" unicode="" horiz-adv-x="2048" -d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" /> - <glyph glyph-name="f261" unicode="" horiz-adv-x="1792" -d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 -t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_572" unicode="" horiz-adv-x="2304" -d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 -t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 -t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 -t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 -t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 -q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" /> - <glyph glyph-name="f263" unicode="" horiz-adv-x="1280" -d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 -t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 -q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" /> - <glyph glyph-name="_574" unicode="" -d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 -q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 -zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="_575" unicode="" horiz-adv-x="1720" -d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 -l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" /> - <glyph glyph-name="_576" unicode="" horiz-adv-x="2304" -d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 -q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 -l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" /> - <glyph glyph-name="_577" unicode="" horiz-adv-x="1792" -d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 -q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 -t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 -t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 -t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 -t191 -286t71 -348z" /> - <glyph glyph-name="_578" unicode="" horiz-adv-x="1792" -d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 -q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" /> - <glyph glyph-name="_579" unicode="" horiz-adv-x="1792" -d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 -q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 -q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" /> - <glyph glyph-name="_580" unicode="" horiz-adv-x="1792" -d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 -q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z -" /> - <glyph glyph-name="_581" unicode="" horiz-adv-x="1792" -d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 -q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z -M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" /> - <glyph glyph-name="_582" unicode="" horiz-adv-x="2048" -d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 -v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> - <glyph glyph-name="_583" unicode="" horiz-adv-x="1792" -d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 -h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 -q-68 175 -180 287z" /> - <glyph glyph-name="_584" unicode="" -d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 -q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 -q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 -q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 -q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 -t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" /> - <glyph glyph-name="_585" unicode="" horiz-adv-x="1792" -d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z -M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 -q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 -t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 -q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" /> - <glyph glyph-name="_586" unicode="" horiz-adv-x="1792" -d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 -h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 -v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" /> - <glyph glyph-name="_587" unicode="" horiz-adv-x="1792" -d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 -t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 -t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_588" unicode="" horiz-adv-x="1792" -d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z -M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 -q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_589" unicode="" horiz-adv-x="1792" -d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 -t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 -t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> - <glyph glyph-name="_590" unicode="" horiz-adv-x="1792" -d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" /> - <glyph glyph-name="_591" unicode="" horiz-adv-x="1024" -d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 -q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" /> - <glyph glyph-name="_592" unicode="" horiz-adv-x="1792" -d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 -q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" /> - <glyph glyph-name="_593" unicode="" horiz-adv-x="2048" -d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 -v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" /> - <glyph glyph-name="_594" unicode="" horiz-adv-x="1792" -d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 -q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" /> - <glyph glyph-name="_595" unicode="" horiz-adv-x="1792" -d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 -t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 -t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> - <glyph glyph-name="_596" unicode="" horiz-adv-x="1792" -d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 -t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 -t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 -t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" /> - <glyph glyph-name="_597" unicode="" horiz-adv-x="1024" -d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" /> - <glyph glyph-name="_598" unicode="" horiz-adv-x="1792" -d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 -q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" /> - <glyph glyph-name="f27e" unicode="" -d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" /> - <glyph glyph-name="uniF280" unicode="" -d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 -h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 -l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" /> - <glyph glyph-name="uniF281" unicode="" horiz-adv-x="1792" -d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 -l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 -t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 -q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" /> - <glyph glyph-name="_602" unicode="" horiz-adv-x="1792" -d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 -q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" /> - <glyph glyph-name="_603" unicode="" horiz-adv-x="2304" -d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" /> - <glyph glyph-name="_604" unicode="" horiz-adv-x="1792" -d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308 -t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20 -t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" /> - <glyph glyph-name="uniF285" unicode="" horiz-adv-x="1792" -d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" /> - <glyph glyph-name="uniF286" unicode="" horiz-adv-x="1792" -d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 -q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5 -q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96 -q16 0 16 -16z" /> - <glyph glyph-name="_607" unicode="" horiz-adv-x="2304" -d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 -q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 -t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" /> - <glyph glyph-name="_608" unicode="" horiz-adv-x="1792" -d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 -t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_609" unicode="" horiz-adv-x="2304" -d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 -q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 -q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 -q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" /> - <glyph glyph-name="_610" unicode="" -d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 -t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 -q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 -t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" /> - <glyph glyph-name="_611" unicode="" -d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 -t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_612" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 -t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" /> - <glyph glyph-name="_613" unicode="" -d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="_614" unicode="" -d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 -t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" /> - <glyph glyph-name="_615" unicode="" horiz-adv-x="1792" -d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 -t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="_616" unicode="" horiz-adv-x="2048" -d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 -t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 -q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 -h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" /> - <glyph glyph-name="_617" unicode="" horiz-adv-x="1792" -d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 -q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 -q15 0 25 -12q9 -12 6 -28z" /> - <glyph glyph-name="_618" unicode="" -d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 -t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" /> - <glyph glyph-name="_619" unicode="" horiz-adv-x="1024" -d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" /> - <glyph glyph-name="_620" unicode="" -d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 -t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 -t271.5 -112.5t112.5 -271.5z" /> - <glyph glyph-name="_621" unicode="" horiz-adv-x="1792" -d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" /> - <glyph glyph-name="_622" unicode="" horiz-adv-x="1792" -d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111 -q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" /> - <glyph glyph-name="_623" unicode="" -d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14 -t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" /> - <glyph glyph-name="_624" unicode="" horiz-adv-x="1792" -d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57 -q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285 -q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" /> - <glyph glyph-name="_625" unicode="" horiz-adv-x="1792" -d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42 -q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z -M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298 -t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="_626" unicode="" -d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300 -l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z -M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" /> - <glyph glyph-name="_627" unicode="" -d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5 -t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5 -t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5 -t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="_628" unicode="" horiz-adv-x="1408" -d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457 -q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521 -q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661 -q3 -1 7 1t7 4l3 2q11 9 11 17z" /> - <glyph glyph-name="_629" unicode="" horiz-adv-x="2304" -d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10 -t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5 -t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5 -h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96 -t9.5 -70.5z" /> - <glyph glyph-name="uniF2A0" unicode="" horiz-adv-x="1408" -d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5 -q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127 -l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272 -t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249 -q-18 -19 -45 -19z" /> - <glyph glyph-name="uniF2A1" unicode="" horiz-adv-x="2176" -d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352 -q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864 -q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136 -t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56 -t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56 -t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136 -t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" /> - <glyph glyph-name="uniF2A2" unicode="" horiz-adv-x="1792" -d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z -M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72 -t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45 -t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4 -q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" /> - <glyph glyph-name="uniF2A3" unicode="" horiz-adv-x="2304" -d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55 -q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5 -q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101 -q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35 -q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5 -q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" /> - <glyph glyph-name="uniF2A4" unicode="" horiz-adv-x="1792" -d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19 -t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74 -t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233 -l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" /> - <glyph glyph-name="uniF2A5" unicode="" -d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2 -q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10 -q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5 -t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF2A6" unicode="" horiz-adv-x="1535" -d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5 -l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5 -q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9 -q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" /> - <glyph glyph-name="uniF2A7" unicode="" horiz-adv-x="1664" -d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37 -t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38 -l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148 -q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26 -l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" /> - <glyph glyph-name="uniF2A8" unicode="" horiz-adv-x="1792" -d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5 -q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841 -q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5 -q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" /> - <glyph glyph-name="uniF2A9" unicode="" horiz-adv-x="1280" -d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5 -q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z -M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" /> - <glyph glyph-name="uniF2AA" unicode="" -d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z -M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5 -q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 -t84.5 -203.5z" /> - <glyph glyph-name="uniF2AB" unicode="" -d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114 -q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5 -t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 -t103 -385.5z" /> - <glyph glyph-name="uniF2AC" unicode="" horiz-adv-x="1664" -d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35 -q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5 -t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" /> - <glyph glyph-name="uniF2AD" unicode="" -d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115 -q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15 -t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 -q119 0 203.5 -84.5t84.5 -203.5z" /> - <glyph glyph-name="uniF2AE" unicode="" horiz-adv-x="2304" -d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7 -q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158 -q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" /> - <glyph glyph-name="uniF2B0" unicode="" -d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104 -q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108 -l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z -M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" /> - <glyph glyph-name="uniF2B1" unicode="" horiz-adv-x="1664" -d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5 -t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" /> - <glyph glyph-name="uniF2B2" unicode="" horiz-adv-x="1792" -d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5 -t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114 -q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50 -q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5 -t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46 -q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5 -q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177 -t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" /> - <glyph glyph-name="uniF2B3" unicode="" -d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110 -h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> - <glyph glyph-name="uniF2B4" unicode="" -d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5 -q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" /> - <glyph glyph-name="uniF2B5" unicode="" horiz-adv-x="2304" -d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66 -l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180 -q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z -M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421 -q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" /> - <glyph glyph-name="uniF2B6" unicode="" horiz-adv-x="1792" -d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107 -t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39 -q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" /> - <glyph glyph-name="uniF2B7" unicode="" horiz-adv-x="1792" -d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5 -l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5 -h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94 -q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" /> - <glyph glyph-name="uniF2B8" unicode="" -d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465 -l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161 -q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74 -q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" /> - <glyph glyph-name="uniF2B9" unicode="" horiz-adv-x="1664" -d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576 -q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216 -q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" /> - <glyph glyph-name="uniF2BA" unicode="" horiz-adv-x="1664" -d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5 -t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96 -q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216 -q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" /> - <glyph glyph-name="uniF2BB" unicode="" horiz-adv-x="2048" -d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z -M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568 -q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9 -h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2BC" unicode="" horiz-adv-x="2048" -d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925 -q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568 -q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5 -t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113 -t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2BD" unicode="" horiz-adv-x="1792" -d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5 -t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2BE" unicode="" horiz-adv-x="1792" -d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61 -t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" /> - <glyph glyph-name="uniF2C0" unicode="" -d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5 -t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145 -q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" /> - <glyph glyph-name="uniF2C1" unicode="" horiz-adv-x="1280" -d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5 -t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352 -q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C2" unicode="" horiz-adv-x="2048" -d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56 -t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23 -v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728 -q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C3" unicode="" horiz-adv-x="2048" -d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z -M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64 -q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47 -h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2C4" unicode="" horiz-adv-x="1792" -d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117 -q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5 -t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" /> - <glyph glyph-name="uniF2C5" unicode="" horiz-adv-x="2304" -d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21 -t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46 -t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54 -t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29 -q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5 -t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314 -q2 -42 2 -64z" /> - <glyph glyph-name="uniF2C6" unicode="" horiz-adv-x="1792" -d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 -t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2C7" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2C8" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2C9" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2CA" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5 -t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192 -v128h192z" /> - <glyph glyph-name="uniF2CB" unicode="" horiz-adv-x="1024" -d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z -M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" /> - <glyph glyph-name="uniF2CC" unicode="" horiz-adv-x="1920" -d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41 -t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19 -t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768 -q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19 -t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384 -q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" /> - <glyph glyph-name="uniF2CD" unicode="" horiz-adv-x="1792" -d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9 -t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9 -t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42 -q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9 -t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23 -t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" /> - <glyph glyph-name="uniF2CE" unicode="" -d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5 -t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70 -q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20 -q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5 -t72.5 -263.5z" /> - <glyph glyph-name="uniF2D0" unicode="" horiz-adv-x="1792" -d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D1" unicode="" horiz-adv-x="1792" -d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D2" unicode="" horiz-adv-x="2048" -d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47 -t47 -113z" /> - <glyph glyph-name="uniF2D3" unicode="" horiz-adv-x="1792" -d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10 -l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D4" unicode="" horiz-adv-x="1792" -d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 -l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D5" unicode="" horiz-adv-x="1792" -d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2D6" unicode="" horiz-adv-x="1794" -d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12 -t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5 -t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5 -q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5 -q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34 -q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5 -t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2D7" unicode="" -d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89 -q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5 -t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" /> - <glyph glyph-name="uniF2D8" unicode="" -d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7 -t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5 -h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113 -v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" /> - <glyph glyph-name="uniF2D9" unicode="" horiz-adv-x="2176" -d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584 -q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5 -q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15 -q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82 -q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104 -t302 11t306.5 -97q220 -115 333 -336t87 -474z" /> - <glyph glyph-name="uniF2DA" unicode="" horiz-adv-x="1792" -d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178 -q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199 -t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297 -t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208 -t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" /> - <glyph glyph-name="uniF2DB" unicode="" -d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16 -q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28 -t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32 -q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16 -h48q16 0 16 -16z" /> - <glyph glyph-name="uniF2DC" unicode="" horiz-adv-x="1664" -d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45 -t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33 -q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313 -l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106 -q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" /> - <glyph glyph-name="uniF2DD" unicode="" horiz-adv-x="1792" -d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321 -q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" /> - <glyph glyph-name="uniF2DE" unicode="" horiz-adv-x="1792" -d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62 -t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71 -t286 -191t191 -286t71 -348z" /> - <glyph glyph-name="uniF2E0" unicode="" horiz-adv-x="1920" -d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3 -t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53 -q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5 -q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5 -t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5 -q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z -M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21 -q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16 -q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" /> - <glyph glyph-name="uniF2E1" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E2" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E3" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E4" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E5" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E6" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E7" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="_698" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2E9" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EA" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EB" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EC" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2ED" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="uniF2EE" unicode="" horiz-adv-x="1792" - /> - <glyph glyph-name="lessequal" unicode="" horiz-adv-x="1792" - /> - </font> -</defs></svg> diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.ttf b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa1196aad98c2adf4378a7611dd713aa3..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b06eee3d0c0d54402a47ab2601b2862b..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff2 b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc60404b91e398a37200c4a77b645cfd9586..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/index.php b/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/fonts/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/index.php b/wp-content/plugins/wordpress-popular-posts/admin/css/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/font-awesome.min.css b/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/font-awesome.min.css deleted file mode 100644 index 5578ea5d6f1c9b24843d461dab816a721e327ed9..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/index.php b/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/css/vendor/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/index.php b/wp-content/plugins/wordpress-popular-posts/admin/index.php deleted file mode 100644 index e71af0ef21ae90eb61db4b117bfd97b00e65113b..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/js/admin.js b/wp-content/plugins/wordpress-popular-posts/admin/js/admin.js deleted file mode 100644 index b08cb5968a3929f6efd9a3bc3de7cf4485c5fa53..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/js/admin.js +++ /dev/null @@ -1,386 +0,0 @@ -(function ($) { - "use strict"; - $(function () { - - // Stats config - $("#wpp-stats-config-btn, #wpp_stats_options .button-secondary").on("click", function(e){ - e.preventDefault(); - - // Hide custom range modal box - if ( $("#wpp-stats-range").is(":visible") ) { - $("#wpp-stats-range").hide(); - } - - if ( $("#wpp-stats-config").is(":visible") ) { - $("#wpp-stats-config").hide(); - } - else{ - $("#wpp-stats-config").show(); - } - - }); - - // Stats range - $("#wpp-stats-range form").on('submit', function(e){ - e.preventDefault(); - - if ( $("#wpp-stats-range").is(":visible") ) { - $("#wpp-stats-range").hide(); - } - - get_chart_data( $("#wpp-time-ranges li a[data-range='custom']") ); - - $(".wpp-lightbox-tabs li:eq(0) a").trigger("click"); - - }); - - $("#wpp-stats-range form .button-secondary").on('click', function(e){ - e.preventDefault(); - - if ( $("#wpp-stats-range").is(":visible") ) { - $("#wpp-stats-range").hide(); - } - - $("#stats_range_date").val(''); - - $(".wpp-lightbox-tabs li:eq(0) a").trigger("click"); - - }); - - function get_chart_data( me ) { - - var args = { - action: 'wpp_update_chart', - nonce: wpp_admin_params.nonce, - range: me.data("range"), - time_quantity: $("#stats_range_time_quantity").val(), - time_unit: $("#stats_range_time_unit").val() - }; - - if ( '' != $("#stats_range_date").val() ){ - args.dates = $("#stats_range_date").val(); - } - - $.get( - ajaxurl, - args, - function( response ){ - - if ( 'ok' == response.status ) { - - me.parent().addClass("current").siblings().removeClass("current"); - - var labels = [], - dataset_views = [], - dataset_comments = []; - - for ( var date in response.data.dates ) { - - labels.push( response.data.dates[date].nicename ); - - if ( !$.isEmptyObject( response.data.dates[date] ) ) { - - if ( 'undefined' != typeof response.data.dates[date].views ) { - dataset_views.push( response.data.dates[date].views ); - } - else { - dataset_views.push( 0 ); - } - - if ( 'undefined' != typeof response.data.dates[date].comments ) { - dataset_comments.push( response.data.dates[date].comments ); - } - else { - dataset_comments.push( 0 ); - } - - } - else { - dataset_views.push( 0 ); - dataset_comments.push( 0 ); - } - - } - - // Update titles - $("#wpp-chart-wrapper h4").html( response.data.totals.label_summary ); - $("#wpp-chart-wrapper h5").html( response.data.totals.label_date_range ); - - // Update chart - WPPChart.populate({ - labels: labels, - datasets: [ - { - label: 'Comments', - data: dataset_comments, - }, - { - label: 'Views', - data: dataset_views, - }, - ] - }); - - $("#wpp-listing .wpp-tabbed-nav li:eq(0) a").trigger("click"); - - // Update lists - args = { - action: 'wpp_get_most_viewed', - nonce: wpp_admin_params.nonce - }; - - if ( '' != $("#stats_range_date").val() ){ - args.dates = $("#stats_range_date").val(); - } - - $.get( - ajaxurl, - args, - function( response ){ - $("#wpp-listing .wpp-tab-content:eq(0)").html(response); - } - ); - - args = { - action: 'wpp_get_most_commented', - nonce: wpp_admin_params.nonce - }; - - if ( '' != $("#stats_range_date").val() ){ - args.dates = $("#stats_range_date").val(); - } - - $.get( - ajaxurl, - args, - function( response ){ - $("#wpp-listing .wpp-tab-content:eq(1)").html(response); - } - ); - - // Unset date range - $("#stats_range_date").val(''); - - } - - } - ); - - } - - $("#wpp-time-ranges li a").on("click", function(e){ - e.preventDefault(); - - var me = $(this); - - // Update chart - if ( WPPChart.canRender() ) { - - if ( 'custom' != me.data("range") ) { - get_chart_data( me ); - } - else { - // Hide Config modal box - if ( $("#wpp-stats-config").is(":visible") ) { - $("#wpp-stats-config").hide(); - } - - if ( !$("#wpp-stats-range").is(":visible") ) { - $("#wpp-stats-range").show(); - } - } - - } - - }); - - $(".wpp-lightbox-tabs li a").on("click", function(e){ - e.preventDefault(); - - var me = $(this); - - me.parent().addClass("active").siblings().removeClass("active"); - - me.closest(".wpp-lightbox").find(".wpp-lightbox-tab-content").removeClass("wpp-lightbox-tab-content-active").filter(function( index ) { - return me.parent().index() == index; - }).addClass("wpp-lightbox-tab-content-active"); - - }); - - // Datepicker - $.datepicker._defaults.onAfterUpdate = null; - var datepicker__updateDatepicker = $.datepicker._updateDatepicker; - - $.datepicker._updateDatepicker = function( instance ){ - - datepicker__updateDatepicker.call( this, instance ); - - var onAfterUpdate = this._get( instance, 'onAfterUpdate' ); - - if ( onAfterUpdate ) { - onAfterUpdate.apply( ( instance.input ? instance.input[0] : null ), [( instance.input ? instance.input.val() : '' ), instance] ); - } - }; - - var curr = -1, - prev = -1; - - var dp_field = $("#stats_range_date"); - - var wpp_datepicker = dp_field.datepicker({ - maxDate: 0, - dateFormat: 'yy-mm-dd', - showButtonPanel: true, - beforeShowDay: function(date){ - return [true, ( (date.getTime() >= Math.min(prev, curr) && date.getTime() <= Math.max(prev, curr) ) ? 'date-range-selected' : '' )] - }, - onSelect: function(dateText, instance){ - - var d1, d2; - - prev = curr; - - curr = ( new Date(instance.selectedYear, instance.selectedMonth, instance.selectedDay) ).getTime(); - - if ( - -1 == prev - || prev == curr - ) { - prev = curr; - dp_field.val( dateText ); - } - else { - - d1 = $.datepicker.formatDate('yy-mm-dd', new Date( Math.min(prev, curr) ), {}); - d2 = $.datepicker.formatDate('yy-mm-dd', new Date( Math.max(prev, curr) ), {}); - - dp_field.val( d1 + ' ~ ' + d2 ); - - } - - $(this).data('datepicker').inline = true; - - }, - onClose: function(){ - $(this).data('datepicker').inline = false; - }, - onAfterUpdate: function( instance ){ - - var calendar = $(this); - - if ( - prev > -1 - && curr > -1 - ){ - - $('<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" data-handler="hide" data-event="click">OK</button>').appendTo( $(".ui-datepicker-buttonpane") ).on('click', function(){ - dp_field.datepicker('hide'); - }); - - } - } - }); - - // STATISTICS TABS - $("#wpp-listing .wpp-tabbed-nav li a").on("click", function(e){ - e.preventDefault(); - - var me = $(this), - target = me.parent().index(); - - me.parent().addClass("active").siblings().removeClass("active"); - - me.closest("#wpp-listing").children(".wpp-tab-content:eq(" + target + ")").addClass("wpp-tab-content-active").siblings().removeClass("wpp-tab-content-active"); - - }); - - // TOOLS - // thumb source selection - $("#thumb_source").change(function() { - if ($(this).val() == "custom_field") { - $("#lbl_field, #thumb_field, #row_custom_field, #row_custom_field_resize").show(); - } else { - $("#lbl_field, #thumb_field, #row_custom_field, #row_custom_field_resize").hide(); - } - }); - // file upload - $('#upload_thumb_button').click(function(e) { - tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false); - e.preventDefault(); - }); - window.send_to_editor = function(html) { - var regex = /<img[^>]+src="(https?:\/\/[^">]+)"/g; - var result = regex.exec(html); - - if ( null != result ) { - $('#upload_thumb_src').val(result[1]); - - var img = new Image(); - img.onload = function() { - $("#thumb-review").html( this ).parent().fadeIn(); - } - img.src = result[1]; - } - - tb_remove(); - }; - // log limit - $("#log_limit").change(function(){ - var me = $(this); - - if (me.val() == 1) { - me.parent().children("label, .description").show(); - me.parent().children("br").hide(); - } else { - me.parent().children("label, .description").hide(); - me.parent().children("br").show(); - } - }); - // cache interval - $("#cache").change(function() { - if ($(this).val() == 1) { - $("#cache_refresh_interval").show(); - } else { - $("#cache_refresh_interval, #cache_too_long").hide(); - } - }); - // interval - $("#cache_interval_time").change(function() { - var value = parseInt( $("#cache_interval_value").val() ); - var time = $(this).val(); - - if ( time == "hour" && value > 72 ) { - $("#cache_too_long").show(); - } else if ( time == "day" && value > 3 ) { - $("#cache_too_long").show(); - } else if ( time == "week" && value > 1 ) { - $("#cache_too_long").show(); - } else if ( time == "month" && value >= 1 ) { - $("#cache_too_long").show(); - } else if ( time == "year" && value >= 1 ) { - $("#cache_too_long").show(); - } else { - $("#cache_too_long").hide(); - } - }); - - $("#cache_interval_value").change(function() { - var value = parseInt( $(this).val() ); - var time = $("#cache_interval_time").val(); - - if ( time == "hour" && value > 72 ) { - $("#cache_too_long").show(); - } else if ( time == "day" && value > 3 ) { - $("#cache_too_long").show(); - } else if ( time == "week" && value > 1 ) { - $("#cache_too_long").show(); - } else if ( time == "month" && value >= 1 ) { - $("#cache_too_long").show(); - } else if ( time == "year" && value >= 1 ) { - $("#cache_too_long").show(); - } else { - $("#cache_too_long").hide(); - } - }); - }); -}(jQuery)); \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/js/chart.js b/wp-content/plugins/wordpress-popular-posts/admin/js/chart.js deleted file mode 100644 index 72e505fef46d9e3821c3cc9fa20324a34c781d40..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/js/chart.js +++ /dev/null @@ -1,201 +0,0 @@ -var WPPChart = (function() { - - "use strict"; - - /* - * Private functions and variables - */ - - var defaults = { - type: 'line', - data: { - labels: [], - datasets: [ - { - label: "", - fill: true, - lineTension: 0.2, - borderWidth: 3, - backgroundColor: "rgba(221, 66, 66, 0.8)", - borderColor: "#881111", - borderCapStyle: 'butt', - borderDash: [], - borderDashOffset: 0.0, - borderJoinStyle: 'miter', - pointBorderColor: "#881111", - pointBackgroundColor: "#fff", - pointBorderWidth: 2, - pointHoverRadius: 4, - pointHoverBackgroundColor: "#881111", - pointHoverBorderColor: "#881111", - pointHoverBorderWidth: 3, - pointRadius: 3, - pointHitRadius: 10, - data: [], - }, - { - label: "", - fill: true, - lineTension: 0.2, - borderWidth: 3, - backgroundColor: "rgba(136, 17, 17, 0.3)", - borderColor: "#a80000", - borderCapStyle: 'butt', - borderDash: [], - borderDashOffset: 0.0, - borderJoinStyle: 'miter', - pointBorderColor: "#a80000", - pointBackgroundColor: "#fff", - pointBorderWidth: 2, - pointHoverRadius: 4, - pointHoverBackgroundColor: "#a80000", - pointHoverBorderColor: "#a80000", - pointHoverBorderWidth: 3, - pointRadius: 3, - pointHitRadius: 10, - data: [], - } - ] - }, - options: { - legend: { - display: true, - labels: { - fontColor: '#23282d', - fontFamily: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif', - fontSize: 12 - } - }, - responsive: true, - maintainAspectRatio: false, - layout: { - padding: { - top: 2, - right: 5, - bottom: 0, - left: 5 - } - }, - scales: { - xAxes: [{ - display: true, - gridLines: { - display: false, - }, - ticks: { - fontSize: 10, - fontColor: '#23282d', - autoSkip: false, - maxRotation: 90, - minRotation: 90 - } - }], - yAxes: [{ - display: false - }] - } - } - }, - chart = null, - canRender = !!window.CanvasRenderingContext2D, - element = null, - cvs = null; - - var canRender = function(){ - return canRender; - }; - - // Source: http://stackoverflow.com/a/5624139 - var HexToRGB = function( hex ){ - - var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; - - hex = hex.replace(shorthandRegex, function( m, r, g, b ) { - return r + r + g + g + b + b; - }); - - var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); - - return result ? { - r: parseInt( result[1], 16 ), - g: parseInt( result[2], 16 ), - b: parseInt( result[3], 16 ) - } : null; - }; - - /* - * Public functions - */ - - var init = function( container, options ){ - - if ( !canRender() ) { - throw new Error('Your browser is too old, WPPChart cannot create its data chart.'); - } - - if ( 'undefined' == typeof container ) { - throw new Error('Please tell WPPChart where to inject the chart.'); - } - - element = document.getElementById( container ); - - if ( !element ) { - throw new Error('WPPChart cannot find ' + container); - } - - if ( 'undefined' == typeof Chart ) { - throw new Error('ChartJS library not found'); - } - - cvs = document.createElement('canvas'); - element.appendChild( cvs ); - - }; - - var populate = function( data ){ - - if ( chart ) { - chart.destroy(); - } - - var config = defaults; - - config.data.labels = data.labels; - config.data.datasets[0].label = data.datasets[0].label; - config.data.datasets[0].data = data.datasets[0].data; - config.data.datasets[1].label = data.datasets[1].label; - config.data.datasets[1].data = data.datasets[1].data; - - if ( 'undefined' != typeof wpp_chart_comments_color && wpp_chart_comments_color ) { - var rgb_comments = HexToRGB(wpp_chart_comments_color); - config.data.datasets[1].backgroundColor = "rgba( " + rgb_comments.r + ", " + rgb_comments.g + ", " + rgb_comments.b + ", 0.9 )"; - config.data.datasets[1].borderColor = wpp_chart_comments_color; - config.data.datasets[1].pointBorderColor = wpp_chart_comments_color; - config.data.datasets[1].pointHoverBackgroundColor = wpp_chart_comments_color; - config.data.datasets[1].pointHoverBorderColor = wpp_chart_comments_color; - } - - if ( 'undefined' != typeof wpp_chart_views_color && wpp_chart_views_color ) { - var rgb_views = HexToRGB(wpp_chart_views_color); - config.data.datasets[0].backgroundColor = "rgba( " + rgb_views.r + ", " + rgb_views.g + ", " + rgb_views.b + ", 0.7 )"; - config.data.datasets[0].borderColor = wpp_chart_views_color; - config.data.datasets[0].pointBorderColor = wpp_chart_views_color; - config.data.datasets[0].pointHoverBackgroundColor = wpp_chart_views_color; - config.data.datasets[0].pointHoverBorderColor = wpp_chart_views_color; - } - - chart = new Chart( cvs, config ); - - }; - - /* - * Provide access to public methods - */ - - return { - init : init, - populate : populate, - canRender : canRender - }; - -})(); diff --git a/wp-content/plugins/wordpress-popular-posts/admin/js/vendor/Chart.min.js b/wp-content/plugins/wordpress-popular-posts/admin/js/vendor/Chart.min.js deleted file mode 100644 index af7f81001ac0a37f9a4446f0fa59a91120ac3738..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/js/vendor/Chart.min.js +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * Chart.js - * http://chartjs.org/ - * Version: 2.5.0 - * - * Copyright 2017 Nick Downie - * Released under the MIT license - * https://github.com/chartjs/Chart.js/blob/master/LICENSE.md - */ -!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Chart=t()}}(function(){return function t(e,a,i){function n(r,s){if(!a[r]){if(!e[r]){var l="function"==typeof require&&require;if(!s&&l)return l(r,!0);if(o)return o(r,!0);var u=new Error("Cannot find module '"+r+"'");throw u.code="MODULE_NOT_FOUND",u}var d=a[r]={exports:{}};e[r][0].call(d.exports,function(t){var a=e[r][1][t];return n(a?a:t)},d,d.exports,t,e,a,i)}return a[r].exports}for(var o="function"==typeof require&&require,r=0;r<i.length;r++)n(i[r]);return n}({1:[function(t,e,a){},{}],2:[function(t,e,a){function i(t){if(t){var e=/^#([a-fA-F0-9]{3})$/,a=/^#([a-fA-F0-9]{6})$/,i=/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/,n=/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/,o=/(\w+)/,r=[0,0,0],s=1,l=t.match(e);if(l){l=l[1];for(var u=0;u<r.length;u++)r[u]=parseInt(l[u]+l[u],16)}else if(l=t.match(a)){l=l[1];for(var u=0;u<r.length;u++)r[u]=parseInt(l.slice(2*u,2*u+2),16)}else if(l=t.match(i)){for(var u=0;u<r.length;u++)r[u]=parseInt(l[u+1]);s=parseFloat(l[4])}else if(l=t.match(n)){for(var u=0;u<r.length;u++)r[u]=Math.round(2.55*parseFloat(l[u+1]));s=parseFloat(l[4])}else if(l=t.match(o)){if("transparent"==l[1])return[0,0,0,0];if(r=y[l[1]],!r)return}for(var u=0;u<r.length;u++)r[u]=b(r[u],0,255);return s=s||0==s?b(s,0,1):1,r[3]=s,r}}function n(t){if(t){var e=/^hsla?\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/,a=t.match(e);if(a){var i=parseFloat(a[4]),n=b(parseInt(a[1]),0,360),o=b(parseFloat(a[2]),0,100),r=b(parseFloat(a[3]),0,100),s=b(isNaN(i)?1:i,0,1);return[n,o,r,s]}}}function o(t){if(t){var e=/^hwb\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/,a=t.match(e);if(a){var i=parseFloat(a[4]),n=b(parseInt(a[1]),0,360),o=b(parseFloat(a[2]),0,100),r=b(parseFloat(a[3]),0,100),s=b(isNaN(i)?1:i,0,1);return[n,o,r,s]}}}function r(t){var e=i(t);return e&&e.slice(0,3)}function s(t){var e=n(t);return e&&e.slice(0,3)}function l(t){var e=i(t);return e?e[3]:(e=n(t))?e[3]:(e=o(t))?e[3]:void 0}function u(t){return"#"+x(t[0])+x(t[1])+x(t[2])}function d(t,e){return e<1||t[3]&&t[3]<1?c(t,e):"rgb("+t[0]+", "+t[1]+", "+t[2]+")"}function c(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"rgba("+t[0]+", "+t[1]+", "+t[2]+", "+e+")"}function h(t,e){if(e<1||t[3]&&t[3]<1)return f(t,e);var a=Math.round(t[0]/255*100),i=Math.round(t[1]/255*100),n=Math.round(t[2]/255*100);return"rgb("+a+"%, "+i+"%, "+n+"%)"}function f(t,e){var a=Math.round(t[0]/255*100),i=Math.round(t[1]/255*100),n=Math.round(t[2]/255*100);return"rgba("+a+"%, "+i+"%, "+n+"%, "+(e||t[3]||1)+")"}function g(t,e){return e<1||t[3]&&t[3]<1?p(t,e):"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"}function p(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+e+")"}function m(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"}function v(t){return k[t.slice(0,3)]}function b(t,e,a){return Math.min(Math.max(e,t),a)}function x(t){var e=t.toString(16).toUpperCase();return e.length<2?"0"+e:e}var y=t(6);e.exports={getRgba:i,getHsla:n,getRgb:r,getHsl:s,getHwb:o,getAlpha:l,hexString:u,rgbString:d,rgbaString:c,percentString:h,percentaString:f,hslString:g,hslaString:p,hwbString:m,keyword:v};var k={};for(var S in y)k[y[S]]=S},{6:6}],3:[function(t,e,a){var i=t(5),n=t(2),o=function(t){if(t instanceof o)return t;if(!(this instanceof o))return new o(t);this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1};var e;if("string"==typeof t)if(e=n.getRgba(t))this.setValues("rgb",e);else if(e=n.getHsla(t))this.setValues("hsl",e);else{if(!(e=n.getHwb(t)))throw new Error('Unable to parse color from string "'+t+'"');this.setValues("hwb",e)}else if("object"==typeof t)if(e=t,void 0!==e.r||void 0!==e.red)this.setValues("rgb",e);else if(void 0!==e.l||void 0!==e.lightness)this.setValues("hsl",e);else if(void 0!==e.v||void 0!==e.value)this.setValues("hsv",e);else if(void 0!==e.w||void 0!==e.whiteness)this.setValues("hwb",e);else{if(void 0===e.c&&void 0===e.cyan)throw new Error("Unable to parse color from object "+JSON.stringify(t));this.setValues("cmyk",e)}};o.prototype={rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var t=this.values;return 1!==t.alpha?t.hwb.concat([t.alpha]):t.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var t=this.values;return t.rgb.concat([t.alpha])},hslaArray:function(){var t=this.values;return t.hsl.concat([t.alpha])},alpha:function(t){return void 0===t?this.values.alpha:(this.setValues("alpha",t),this)},red:function(t){return this.setChannel("rgb",0,t)},green:function(t){return this.setChannel("rgb",1,t)},blue:function(t){return this.setChannel("rgb",2,t)},hue:function(t){return t&&(t%=360,t=t<0?360+t:t),this.setChannel("hsl",0,t)},saturation:function(t){return this.setChannel("hsl",1,t)},lightness:function(t){return this.setChannel("hsl",2,t)},saturationv:function(t){return this.setChannel("hsv",1,t)},whiteness:function(t){return this.setChannel("hwb",1,t)},blackness:function(t){return this.setChannel("hwb",2,t)},value:function(t){return this.setChannel("hsv",2,t)},cyan:function(t){return this.setChannel("cmyk",0,t)},magenta:function(t){return this.setChannel("cmyk",1,t)},yellow:function(t){return this.setChannel("cmyk",2,t)},black:function(t){return this.setChannel("cmyk",3,t)},hexString:function(){return n.hexString(this.values.rgb)},rgbString:function(){return n.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return n.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return n.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return n.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return n.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return n.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return n.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var t=this.values.rgb;return t[0]<<16|t[1]<<8|t[2]},luminosity:function(){for(var t=this.values.rgb,e=[],a=0;a<t.length;a++){var i=t[a]/255;e[a]=i<=.03928?i/12.92:Math.pow((i+.055)/1.055,2.4)}return.2126*e[0]+.7152*e[1]+.0722*e[2]},contrast:function(t){var e=this.luminosity(),a=t.luminosity();return e>a?(e+.05)/(a+.05):(a+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb,e=(299*t[0]+587*t[1]+114*t[2])/1e3;return e<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,a=(e[0]+t)%360;return e[0]=a<0?360+a:a,this.setValues("hsl",e),this},mix:function(t,e){var a=this,i=t,n=void 0===e?.5:e,o=2*n-1,r=a.alpha()-i.alpha(),s=((o*r===-1?o:(o+r)/(1+o*r))+1)/2,l=1-s;return this.rgb(s*a.red()+l*i.red(),s*a.green()+l*i.green(),s*a.blue()+l*i.blue()).alpha(a.alpha()*n+i.alpha()*(1-n))},toJSON:function(){return this.rgb()},clone:function(){var t,e,a=new o,i=this.values,n=a.values;for(var r in i)i.hasOwnProperty(r)&&(t=i[r],e={}.toString.call(t),"[object Array]"===e?n[r]=t.slice(0):"[object Number]"===e?n[r]=t:console.error("unexpected color value:",t));return a}},o.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},o.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},o.prototype.getValues=function(t){for(var e=this.values,a={},i=0;i<t.length;i++)a[t.charAt(i)]=e[t][i];return 1!==e.alpha&&(a.a=e.alpha),a},o.prototype.setValues=function(t,e){var a,n=this.values,o=this.spaces,r=this.maxes,s=1;if("alpha"===t)s=e;else if(e.length)n[t]=e.slice(0,t.length),s=e[t.length];else if(void 0!==e[t.charAt(0)]){for(a=0;a<t.length;a++)n[t][a]=e[t.charAt(a)];s=e.a}else if(void 0!==e[o[t][0]]){var l=o[t];for(a=0;a<t.length;a++)n[t][a]=e[l[a]];s=e.alpha}if(n.alpha=Math.max(0,Math.min(1,void 0===s?n.alpha:s)),"alpha"===t)return!1;var u;for(a=0;a<t.length;a++)u=Math.max(0,Math.min(r[t][a],n[t][a])),n[t][a]=Math.round(u);for(var d in o)d!==t&&(n[d]=i[t][d](n[t]));return!0},o.prototype.setSpace=function(t,e){var a=e[0];return void 0===a?this.getValues(t):("number"==typeof a&&(a=Array.prototype.slice.call(e)),this.setValues(t,a),this)},o.prototype.setChannel=function(t,e,a){var i=this.values[t];return void 0===a?i[e]:a===i[e]?this:(i[e]=a,this.setValues(t,i),this)},"undefined"!=typeof window&&(window.Color=o),e.exports=o},{2:2,5:5}],4:[function(t,e,a){function i(t){var e,a,i,n=t[0]/255,o=t[1]/255,r=t[2]/255,s=Math.min(n,o,r),l=Math.max(n,o,r),u=l-s;return l==s?e=0:n==l?e=(o-r)/u:o==l?e=2+(r-n)/u:r==l&&(e=4+(n-o)/u),e=Math.min(60*e,360),e<0&&(e+=360),i=(s+l)/2,a=l==s?0:i<=.5?u/(l+s):u/(2-l-s),[e,100*a,100*i]}function n(t){var e,a,i,n=t[0],o=t[1],r=t[2],s=Math.min(n,o,r),l=Math.max(n,o,r),u=l-s;return a=0==l?0:u/l*1e3/10,l==s?e=0:n==l?e=(o-r)/u:o==l?e=2+(r-n)/u:r==l&&(e=4+(n-o)/u),e=Math.min(60*e,360),e<0&&(e+=360),i=l/255*1e3/10,[e,a,i]}function o(t){var e=t[0],a=t[1],n=t[2],o=i(t)[0],r=1/255*Math.min(e,Math.min(a,n)),n=1-1/255*Math.max(e,Math.max(a,n));return[o,100*r,100*n]}function s(t){var e,a,i,n,o=t[0]/255,r=t[1]/255,s=t[2]/255;return n=Math.min(1-o,1-r,1-s),e=(1-o-n)/(1-n)||0,a=(1-r-n)/(1-n)||0,i=(1-s-n)/(1-n)||0,[100*e,100*a,100*i,100*n]}function l(t){return Z[JSON.stringify(t)]}function u(t){var e=t[0]/255,a=t[1]/255,i=t[2]/255;e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92,a=a>.04045?Math.pow((a+.055)/1.055,2.4):a/12.92,i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92;var n=.4124*e+.3576*a+.1805*i,o=.2126*e+.7152*a+.0722*i,r=.0193*e+.1192*a+.9505*i;return[100*n,100*o,100*r]}function d(t){var e,a,i,n=u(t),o=n[0],r=n[1],s=n[2];return o/=95.047,r/=100,s/=108.883,o=o>.008856?Math.pow(o,1/3):7.787*o+16/116,r=r>.008856?Math.pow(r,1/3):7.787*r+16/116,s=s>.008856?Math.pow(s,1/3):7.787*s+16/116,e=116*r-16,a=500*(o-r),i=200*(r-s),[e,a,i]}function c(t){return z(d(t))}function h(t){var e,a,i,n,o,r=t[0]/360,s=t[1]/100,l=t[2]/100;if(0==s)return o=255*l,[o,o,o];a=l<.5?l*(1+s):l+s-l*s,e=2*l-a,n=[0,0,0];for(var u=0;u<3;u++)i=r+1/3*-(u-1),i<0&&i++,i>1&&i--,o=6*i<1?e+6*(a-e)*i:2*i<1?a:3*i<2?e+(a-e)*(2/3-i)*6:e,n[u]=255*o;return n}function f(t){var e,a,i=t[0],n=t[1]/100,o=t[2]/100;return 0===o?[0,0,0]:(o*=2,n*=o<=1?o:2-o,a=(o+n)/2,e=2*n/(o+n),[i,100*e,100*a])}function p(t){return o(h(t))}function m(t){return s(h(t))}function v(t){return l(h(t))}function x(t){var e=t[0]/60,a=t[1]/100,i=t[2]/100,n=Math.floor(e)%6,o=e-Math.floor(e),r=255*i*(1-a),s=255*i*(1-a*o),l=255*i*(1-a*(1-o)),i=255*i;switch(n){case 0:return[i,l,r];case 1:return[s,i,r];case 2:return[r,i,l];case 3:return[r,s,i];case 4:return[l,r,i];case 5:return[i,r,s]}}function y(t){var e,a,i=t[0],n=t[1]/100,o=t[2]/100;return a=(2-n)*o,e=n*o,e/=a<=1?a:2-a,e=e||0,a/=2,[i,100*e,100*a]}function k(t){return o(x(t))}function S(t){return s(x(t))}function M(t){return l(x(t))}function w(t){var e,a,i,n,o=t[0]/360,s=t[1]/100,l=t[2]/100,u=s+l;switch(u>1&&(s/=u,l/=u),e=Math.floor(6*o),a=1-l,i=6*o-e,0!=(1&e)&&(i=1-i),n=s+i*(a-s),e){default:case 6:case 0:r=a,g=n,b=s;break;case 1:r=n,g=a,b=s;break;case 2:r=s,g=a,b=n;break;case 3:r=s,g=n,b=a;break;case 4:r=n,g=s,b=a;break;case 5:r=a,g=s,b=n}return[255*r,255*g,255*b]}function C(t){return i(w(t))}function I(t){return n(w(t))}function D(t){return s(w(t))}function A(t){return l(w(t))}function T(t){var e,a,i,n=t[0]/100,o=t[1]/100,r=t[2]/100,s=t[3]/100;return e=1-Math.min(1,n*(1-s)+s),a=1-Math.min(1,o*(1-s)+s),i=1-Math.min(1,r*(1-s)+s),[255*e,255*a,255*i]}function P(t){return i(T(t))}function _(t){return n(T(t))}function F(t){return o(T(t))}function V(t){return l(T(t))}function R(t){var e,a,i,n=t[0]/100,o=t[1]/100,r=t[2]/100;return e=3.2406*n+o*-1.5372+r*-.4986,a=n*-.9689+1.8758*o+.0415*r,i=.0557*n+o*-.204+1.057*r,e=e>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,a=a>.0031308?1.055*Math.pow(a,1/2.4)-.055:a*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,e=Math.min(Math.max(0,e),1),a=Math.min(Math.max(0,a),1),i=Math.min(Math.max(0,i),1),[255*e,255*a,255*i]}function O(t){var e,a,i,n=t[0],o=t[1],r=t[2];return n/=95.047,o/=100,r/=108.883,n=n>.008856?Math.pow(n,1/3):7.787*n+16/116,o=o>.008856?Math.pow(o,1/3):7.787*o+16/116,r=r>.008856?Math.pow(r,1/3):7.787*r+16/116,e=116*o-16,a=500*(n-o),i=200*(o-r),[e,a,i]}function L(t){return z(O(t))}function B(t){var e,a,i,n,o=t[0],r=t[1],s=t[2];return o<=8?(a=100*o/903.3,n=7.787*(a/100)+16/116):(a=100*Math.pow((o+16)/116,3),n=Math.pow(a/100,1/3)),e=e/95.047<=.008856?e=95.047*(r/500+n-16/116)/7.787:95.047*Math.pow(r/500+n,3),i=i/108.883<=.008859?i=108.883*(n-s/200-16/116)/7.787:108.883*Math.pow(n-s/200,3),[e,a,i]}function z(t){var e,a,i,n=t[0],o=t[1],r=t[2];return e=Math.atan2(r,o),a=360*e/2/Math.PI,a<0&&(a+=360),i=Math.sqrt(o*o+r*r),[n,i,a]}function W(t){return R(B(t))}function N(t){var e,a,i,n=t[0],o=t[1],r=t[2];return i=r/360*2*Math.PI,e=o*Math.cos(i),a=o*Math.sin(i),[n,e,a]}function E(t){return B(N(t))}function H(t){return W(N(t))}function j(t){return G[t]}function U(t){return i(j(t))}function q(t){return n(j(t))}function Y(t){return o(j(t))}function X(t){return s(j(t))}function K(t){return d(j(t))}function J(t){return u(j(t))}e.exports={rgb2hsl:i,rgb2hsv:n,rgb2hwb:o,rgb2cmyk:s,rgb2keyword:l,rgb2xyz:u,rgb2lab:d,rgb2lch:c,hsl2rgb:h,hsl2hsv:f,hsl2hwb:p,hsl2cmyk:m,hsl2keyword:v,hsv2rgb:x,hsv2hsl:y,hsv2hwb:k,hsv2cmyk:S,hsv2keyword:M,hwb2rgb:w,hwb2hsl:C,hwb2hsv:I,hwb2cmyk:D,hwb2keyword:A,cmyk2rgb:T,cmyk2hsl:P,cmyk2hsv:_,cmyk2hwb:F,cmyk2keyword:V,keyword2rgb:j,keyword2hsl:U,keyword2hsv:q,keyword2hwb:Y,keyword2cmyk:X,keyword2lab:K,keyword2xyz:J,xyz2rgb:R,xyz2lab:O,xyz2lch:L,lab2xyz:B,lab2rgb:W,lab2lch:z,lch2lab:N,lch2xyz:E,lch2rgb:H};var G={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},Z={};for(var Q in G)Z[JSON.stringify(G[Q])]=Q},{}],5:[function(t,e,a){var i=t(4),n=function(){return new u};for(var o in i){n[o+"Raw"]=function(t){return function(e){return"number"==typeof e&&(e=Array.prototype.slice.call(arguments)),i[t](e)}}(o);var r=/(\w+)2(\w+)/.exec(o),s=r[1],l=r[2];n[s]=n[s]||{},n[s][l]=n[o]=function(t){return function(e){"number"==typeof e&&(e=Array.prototype.slice.call(arguments));var a=i[t](e);if("string"==typeof a||void 0===a)return a;for(var n=0;n<a.length;n++)a[n]=Math.round(a[n]);return a}}(o)}var u=function(){this.convs={}};u.prototype.routeSpace=function(t,e){var a=e[0];return void 0===a?this.getValues(t):("number"==typeof a&&(a=Array.prototype.slice.call(e)),this.setValues(t,a))},u.prototype.setValues=function(t,e){return this.space=t,this.convs={},this.convs[t]=e,this},u.prototype.getValues=function(t){var e=this.convs[t];if(!e){var a=this.space,i=this.convs[a];e=n[a][t](i),this.convs[t]=e}return e},["rgb","hsl","hsv","cmyk","keyword"].forEach(function(t){u.prototype[t]=function(e){return this.routeSpace(t,arguments)}}),e.exports=n},{4:4}],6:[function(t,e,a){e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],7:[function(t,e,a){var i=t(28)();t(26)(i),t(42)(i),t(22)(i),t(31)(i),t(25)(i),t(21)(i),t(23)(i),t(24)(i),t(29)(i),t(33)(i),t(34)(i),t(32)(i),t(35)(i),t(30)(i),t(27)(i),t(36)(i),t(37)(i),t(38)(i),t(39)(i),t(40)(i),t(45)(i),t(43)(i),t(44)(i),t(46)(i),t(47)(i),t(48)(i),t(15)(i),t(16)(i),t(17)(i),t(18)(i),t(19)(i),t(20)(i),t(8)(i),t(9)(i),t(10)(i),t(11)(i),t(12)(i),t(13)(i),t(14)(i),window.Chart=e.exports=i},{10:10,11:11,12:12,13:13,14:14,15:15,16:16,17:17,18:18,19:19,20:20,21:21,22:22,23:23,24:24,25:25,26:26,27:27,28:28,29:29,30:30,31:31,32:32,33:33,34:34,35:35,36:36,37:37,38:38,39:39,40:40,42:42,43:43,44:44,45:45,46:46,47:47,48:48,8:8,9:9}],8:[function(t,e,a){"use strict";e.exports=function(t){t.Bar=function(e,a){return a.type="bar",new t(e,a)}}},{}],9:[function(t,e,a){"use strict";e.exports=function(t){t.Bubble=function(e,a){return a.type="bubble",new t(e,a)}}},{}],10:[function(t,e,a){"use strict";e.exports=function(t){t.Doughnut=function(e,a){return a.type="doughnut",new t(e,a)}}},{}],11:[function(t,e,a){"use strict";e.exports=function(t){t.Line=function(e,a){return a.type="line",new t(e,a)}}},{}],12:[function(t,e,a){"use strict";e.exports=function(t){t.PolarArea=function(e,a){return a.type="polarArea",new t(e,a)}}},{}],13:[function(t,e,a){"use strict";e.exports=function(t){t.Radar=function(e,a){return a.type="radar",new t(e,a)}}},{}],14:[function(t,e,a){"use strict";e.exports=function(t){var e={hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-1"}],yAxes:[{type:"linear",position:"left",id:"y-axis-1"}]},tooltips:{callbacks:{title:function(){return""},label:function(t){return"("+t.xLabel+", "+t.yLabel+")"}}}};t.defaults.scatter=e,t.controllers.scatter=t.controllers.line,t.Scatter=function(e,a){return a.type="scatter",new t(e,a)}}},{}],15:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.bar={hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}},t.controllers.bar=t.DatasetController.extend({dataElementType:t.elements.Rectangle,initialize:function(e,a){t.DatasetController.prototype.initialize.call(this,e,a);var i=this,n=i.getMeta(),o=i.getDataset();n.stack=o.stack,n.bar=!0},getStackCount:function(){var t=this,a=t.getMeta(),i=t.getScaleForId(a.yAxisID),n=[];return e.each(t.chart.data.datasets,function(e,a){var o=t.chart.getDatasetMeta(a);o.bar&&t.chart.isDatasetVisible(a)&&(i.options.stacked===!1||i.options.stacked===!0&&n.indexOf(o.stack)===-1||void 0===i.options.stacked&&(void 0===o.stack||n.indexOf(o.stack)===-1))&&n.push(o.stack)},t),n.length},update:function(t){var a=this;e.each(a.getMeta().data,function(e,i){a.updateElement(e,i,t)},a)},updateElement:function(t,a,i){var n=this,o=n.getMeta(),r=n.getScaleForId(o.xAxisID),s=n.getScaleForId(o.yAxisID),l=s.getBasePixel(),u=n.chart.options.elements.rectangle,d=t.custom||{},c=n.getDataset();t._xScale=r,t._yScale=s,t._datasetIndex=n.index,t._index=a;var h=n.getRuler(a);t._model={x:n.calculateBarX(a,n.index,h),y:i?l:n.calculateBarY(a,n.index),label:n.chart.data.labels[a],datasetLabel:c.label,horizontal:!1,base:i?l:n.calculateBarBase(n.index,a),width:n.calculateBarWidth(h),backgroundColor:d.backgroundColor?d.backgroundColor:e.getValueAtIndexOrDefault(c.backgroundColor,a,u.backgroundColor),borderSkipped:d.borderSkipped?d.borderSkipped:u.borderSkipped,borderColor:d.borderColor?d.borderColor:e.getValueAtIndexOrDefault(c.borderColor,a,u.borderColor),borderWidth:d.borderWidth?d.borderWidth:e.getValueAtIndexOrDefault(c.borderWidth,a,u.borderWidth)},t.pivot()},calculateBarBase:function(t,e){var a=this,i=a.getMeta(),n=a.getScaleForId(i.yAxisID),o=n.getBaseValue(),r=o;if(n.options.stacked===!0||void 0===n.options.stacked&&void 0!==i.stack){for(var s=a.chart,l=s.data.datasets,u=Number(l[t].data[e]),d=0;d<t;d++){var c=l[d],h=s.getDatasetMeta(d);if(h.bar&&h.yAxisID===n.id&&s.isDatasetVisible(d)&&i.stack===h.stack){var f=Number(c.data[e]);o+=u<0?Math.min(f,r):Math.max(f,r)}}return n.getPixelForValue(o)}return n.getBasePixel()},getRuler:function(){var t=this,e=t.getMeta(),a=t.getScaleForId(e.xAxisID),i=t.getStackCount(),n=a.width/a.ticks.length,o=n*a.options.categoryPercentage,r=(n-n*a.options.categoryPercentage)/2,s=o/i,l=s*a.options.barPercentage,u=s-s*a.options.barPercentage;return{stackCount:i,tickWidth:n,categoryWidth:o,categorySpacing:r,fullBarWidth:s,barWidth:l,barSpacing:u}},calculateBarWidth:function(t){var e=this,a=e.getMeta(),i=e.getScaleForId(a.xAxisID);return i.options.barThickness?i.options.barThickness:t.barWidth},getStackIndex:function(t){var e,a,i=this,n=i.chart.getDatasetMeta(t),o=i.getScaleForId(n.yAxisID),r=[n.stack];for(a=0;a<t;++a)e=this.chart.getDatasetMeta(a),e.bar&&this.chart.isDatasetVisible(a)&&(o.options.stacked===!1||o.options.stacked===!0&&r.indexOf(e.stack)===-1||void 0===o.options.stacked&&(void 0===e.stack||r.indexOf(e.stack)===-1))&&r.push(e.stack);return r.length-1},calculateBarX:function(t,e,a){var i=this,n=i.getMeta(),o=i.getScaleForId(n.xAxisID),r=i.getStackIndex(e),s=o.getPixelForValue(null,t,e,i.chart.isCombo);return s-=i.chart.isCombo?a.tickWidth/2:0,s+a.barWidth/2+a.categorySpacing+a.barWidth*r+a.barSpacing/2+a.barSpacing*r},calculateBarY:function(t,e){var a=this,i=a.getMeta(),n=a.getScaleForId(i.yAxisID),o=Number(a.getDataset().data[t]);if(n.options.stacked||void 0===n.options.stacked&&void 0!==i.stack){for(var r=n.getBaseValue(),s=r,l=r,u=0;u<e;u++){var d=a.chart.data.datasets[u],c=a.chart.getDatasetMeta(u);if(c.bar&&c.yAxisID===n.id&&a.chart.isDatasetVisible(u)&&i.stack===c.stack){var h=Number(d.data[t]);h<0?l+=h||0:s+=h||0}}return o<0?n.getPixelForValue(l+o):n.getPixelForValue(s+o)}return n.getPixelForValue(o)},draw:function(e){var a,i,n=this,o=e||1,r=n.getMeta().data,s=n.getDataset();for(t.canvasHelpers.clipArea(n.chart.chart.ctx,n.chart.chartArea),a=0,i=r.length;a<i;++a){var l=s.data[a];null===l||void 0===l||isNaN(l)||r[a].transition(o).draw()}t.canvasHelpers.unclipArea(n.chart.chart.ctx)},setHoverStyle:function(t){var a=this.chart.data.datasets[t._datasetIndex],i=t._index,n=t.custom||{},o=t._model;o.backgroundColor=n.hoverBackgroundColor?n.hoverBackgroundColor:e.getValueAtIndexOrDefault(a.hoverBackgroundColor,i,e.getHoverColor(o.backgroundColor)),o.borderColor=n.hoverBorderColor?n.hoverBorderColor:e.getValueAtIndexOrDefault(a.hoverBorderColor,i,e.getHoverColor(o.borderColor)),o.borderWidth=n.hoverBorderWidth?n.hoverBorderWidth:e.getValueAtIndexOrDefault(a.hoverBorderWidth,i,o.borderWidth)},removeHoverStyle:function(t){var a=this.chart.data.datasets[t._datasetIndex],i=t._index,n=t.custom||{},o=t._model,r=this.chart.options.elements.rectangle;o.backgroundColor=n.backgroundColor?n.backgroundColor:e.getValueAtIndexOrDefault(a.backgroundColor,i,r.backgroundColor),o.borderColor=n.borderColor?n.borderColor:e.getValueAtIndexOrDefault(a.borderColor,i,r.borderColor),o.borderWidth=n.borderWidth?n.borderWidth:e.getValueAtIndexOrDefault(a.borderWidth,i,r.borderWidth)}}),t.defaults.horizontalBar={hover:{mode:"label"},scales:{xAxes:[{type:"linear",position:"bottom"}],yAxes:[{position:"left",type:"category",categoryPercentage:.8,barPercentage:.9,gridLines:{offsetGridLines:!0}}]},elements:{rectangle:{borderSkipped:"left"}},tooltips:{callbacks:{title:function(t,e){var a="";return t.length>0&&(t[0].yLabel?a=t[0].yLabel:e.labels.length>0&&t[0].index<e.labels.length&&(a=e.labels[t[0].index])),a},label:function(t,e){var a=e.datasets[t.datasetIndex].label||"";return a+": "+t.xLabel}}}},t.controllers.horizontalBar=t.controllers.bar.extend({getStackCount:function(){var t=this,a=t.getMeta(),i=t.getScaleForId(a.xAxisID),n=[];return e.each(t.chart.data.datasets,function(e,a){var o=t.chart.getDatasetMeta(a);o.bar&&t.chart.isDatasetVisible(a)&&(i.options.stacked===!1||i.options.stacked===!0&&n.indexOf(o.stack)===-1||void 0===i.options.stacked&&(void 0===o.stack||n.indexOf(o.stack)===-1))&&n.push(o.stack)},t),n.length},updateElement:function(t,a,i){var n=this,o=n.getMeta(),r=n.getScaleForId(o.xAxisID),s=n.getScaleForId(o.yAxisID),l=r.getBasePixel(),u=t.custom||{},d=n.getDataset(),c=n.chart.options.elements.rectangle;t._xScale=r,t._yScale=s,t._datasetIndex=n.index,t._index=a;var h=n.getRuler(a);t._model={x:i?l:n.calculateBarX(a,n.index),y:n.calculateBarY(a,n.index,h),label:n.chart.data.labels[a],datasetLabel:d.label,horizontal:!0,base:i?l:n.calculateBarBase(n.index,a),height:n.calculateBarHeight(h),backgroundColor:u.backgroundColor?u.backgroundColor:e.getValueAtIndexOrDefault(d.backgroundColor,a,c.backgroundColor),borderSkipped:u.borderSkipped?u.borderSkipped:c.borderSkipped,borderColor:u.borderColor?u.borderColor:e.getValueAtIndexOrDefault(d.borderColor,a,c.borderColor), -borderWidth:u.borderWidth?u.borderWidth:e.getValueAtIndexOrDefault(d.borderWidth,a,c.borderWidth)},t.pivot()},calculateBarBase:function(t,e){var a=this,i=a.getMeta(),n=a.getScaleForId(i.xAxisID),o=n.getBaseValue(),r=o;if(n.options.stacked||void 0===n.options.stacked&&void 0!==i.stack){for(var s=a.chart,l=s.data.datasets,u=Number(l[t].data[e]),d=0;d<t;d++){var c=l[d],h=s.getDatasetMeta(d);if(h.bar&&h.xAxisID===n.id&&s.isDatasetVisible(d)&&i.stack===h.stack){var f=Number(c.data[e]);o+=u<0?Math.min(f,r):Math.max(f,r)}}return n.getPixelForValue(o)}return n.getBasePixel()},getRuler:function(){var t=this,e=t.getMeta(),a=t.getScaleForId(e.yAxisID),i=t.getStackCount(),n=a.height/a.ticks.length,o=n*a.options.categoryPercentage,r=(n-n*a.options.categoryPercentage)/2,s=o/i,l=s*a.options.barPercentage,u=s-s*a.options.barPercentage;return{stackCount:i,tickHeight:n,categoryHeight:o,categorySpacing:r,fullBarHeight:s,barHeight:l,barSpacing:u}},calculateBarHeight:function(t){var e=this,a=e.getMeta(),i=e.getScaleForId(a.yAxisID);return i.options.barThickness?i.options.barThickness:t.barHeight},getStackIndex:function(t){var e,a,i=this,n=i.chart.getDatasetMeta(t),o=i.getScaleForId(n.xAxisID),r=[n.stack];for(a=0;a<t;++a)e=this.chart.getDatasetMeta(a),e.bar&&this.chart.isDatasetVisible(a)&&(o.options.stacked===!1||o.options.stacked===!0&&r.indexOf(e.stack)===-1||void 0===o.options.stacked&&(void 0===e.stack||r.indexOf(e.stack)===-1))&&r.push(e.stack);return r.length-1},calculateBarX:function(t,e){var a=this,i=a.getMeta(),n=a.getScaleForId(i.xAxisID),o=Number(a.getDataset().data[t]);if(n.options.stacked||void 0===n.options.stacked&&void 0!==i.stack){for(var r=n.getBaseValue(),s=r,l=r,u=0;u<e;u++){var d=a.chart.data.datasets[u],c=a.chart.getDatasetMeta(u);if(c.bar&&c.xAxisID===n.id&&a.chart.isDatasetVisible(u)&&i.stack===c.stack){var h=Number(d.data[t]);h<0?l+=h||0:s+=h||0}}return o<0?n.getPixelForValue(l+o):n.getPixelForValue(s+o)}return n.getPixelForValue(o)},calculateBarY:function(t,e,a){var i=this,n=i.getMeta(),o=i.getScaleForId(n.yAxisID),r=i.getStackIndex(e),s=o.getPixelForValue(null,t,e,i.chart.isCombo);return s-=i.chart.isCombo?a.tickHeight/2:0,s+a.barHeight/2+a.categorySpacing+a.barHeight*r+a.barSpacing/2+a.barSpacing*r}})}},{}],16:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.bubble={hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-0"}],yAxes:[{type:"linear",position:"left",id:"y-axis-0"}]},tooltips:{callbacks:{title:function(){return""},label:function(t,e){var a=e.datasets[t.datasetIndex].label||"",i=e.datasets[t.datasetIndex].data[t.index];return a+": ("+t.xLabel+", "+t.yLabel+", "+i.r+")"}}}},t.controllers.bubble=t.DatasetController.extend({dataElementType:t.elements.Point,update:function(t){var a=this,i=a.getMeta(),n=i.data;e.each(n,function(e,i){a.updateElement(e,i,t)})},updateElement:function(a,i,n){var o=this,r=o.getMeta(),s=o.getScaleForId(r.xAxisID),l=o.getScaleForId(r.yAxisID),u=a.custom||{},d=o.getDataset(),c=d.data[i],h=o.chart.options.elements.point,f=o.index;e.extend(a,{_xScale:s,_yScale:l,_datasetIndex:f,_index:i,_model:{x:n?s.getPixelForDecimal(.5):s.getPixelForValue("object"==typeof c?c:NaN,i,f,o.chart.isCombo),y:n?l.getBasePixel():l.getPixelForValue(c,i,f),radius:n?0:u.radius?u.radius:o.getRadius(c),hitRadius:u.hitRadius?u.hitRadius:e.getValueAtIndexOrDefault(d.hitRadius,i,h.hitRadius)}}),t.DatasetController.prototype.removeHoverStyle.call(o,a,h);var g=a._model;g.skip=u.skip?u.skip:isNaN(g.x)||isNaN(g.y),a.pivot()},getRadius:function(t){return t.r||this.chart.options.elements.point.radius},setHoverStyle:function(a){var i=this;t.DatasetController.prototype.setHoverStyle.call(i,a);var n=i.chart.data.datasets[a._datasetIndex],o=a._index,r=a.custom||{},s=a._model;s.radius=r.hoverRadius?r.hoverRadius:e.getValueAtIndexOrDefault(n.hoverRadius,o,i.chart.options.elements.point.hoverRadius)+i.getRadius(n.data[o])},removeHoverStyle:function(e){var a=this;t.DatasetController.prototype.removeHoverStyle.call(a,e,a.chart.options.elements.point);var i=a.chart.data.datasets[e._datasetIndex].data[e._index],n=e.custom||{},o=e._model;o.radius=n.radius?n.radius:a.getRadius(i)}})}},{}],17:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a=t.defaults;a.doughnut={animation:{animateRotate:!0,animateScale:!1},aspectRatio:1,hover:{mode:"single"},legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');var a=t.data,i=a.datasets,n=a.labels;if(i.length)for(var o=0;o<i[0].data.length;++o)e.push('<li><span style="background-color:'+i[0].backgroundColor[o]+'"></span>'),n[o]&&e.push(n[o]),e.push("</li>");return e.push("</ul>"),e.join("")},legend:{labels:{generateLabels:function(t){var a=t.data;return a.labels.length&&a.datasets.length?a.labels.map(function(i,n){var o=t.getDatasetMeta(0),r=a.datasets[0],s=o.data[n],l=s&&s.custom||{},u=e.getValueAtIndexOrDefault,d=t.options.elements.arc,c=l.backgroundColor?l.backgroundColor:u(r.backgroundColor,n,d.backgroundColor),h=l.borderColor?l.borderColor:u(r.borderColor,n,d.borderColor),f=l.borderWidth?l.borderWidth:u(r.borderWidth,n,d.borderWidth);return{text:i,fillStyle:c,strokeStyle:h,lineWidth:f,hidden:isNaN(r.data[n])||o.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var a,i,n,o=e.index,r=this.chart;for(a=0,i=(r.data.datasets||[]).length;a<i;++a)n=r.getDatasetMeta(a),n.data[o]&&(n.data[o].hidden=!n.data[o].hidden);r.update()}},cutoutPercentage:50,rotation:Math.PI*-.5,circumference:2*Math.PI,tooltips:{callbacks:{title:function(){return""},label:function(t,a){var i=a.labels[t.index],n=": "+a.datasets[t.datasetIndex].data[t.index];return e.isArray(i)?(i=i.slice(),i[0]+=n):i+=n,i}}}},a.pie=e.clone(a.doughnut),e.extend(a.pie,{cutoutPercentage:0}),t.controllers.doughnut=t.controllers.pie=t.DatasetController.extend({dataElementType:t.elements.Arc,linkScales:e.noop,getRingIndex:function(t){for(var e=0,a=0;a<t;++a)this.chart.isDatasetVisible(a)&&++e;return e},update:function(t){var a=this,i=a.chart,n=i.chartArea,o=i.options,r=o.elements.arc,s=n.right-n.left-r.borderWidth,l=n.bottom-n.top-r.borderWidth,u=Math.min(s,l),d={x:0,y:0},c=a.getMeta(),h=o.cutoutPercentage,f=o.circumference;if(f<2*Math.PI){var g=o.rotation%(2*Math.PI);g+=2*Math.PI*(g>=Math.PI?-1:g<-Math.PI?1:0);var p=g+f,m={x:Math.cos(g),y:Math.sin(g)},v={x:Math.cos(p),y:Math.sin(p)},b=g<=0&&0<=p||g<=2*Math.PI&&2*Math.PI<=p,x=g<=.5*Math.PI&&.5*Math.PI<=p||g<=2.5*Math.PI&&2.5*Math.PI<=p,y=g<=-Math.PI&&-Math.PI<=p||g<=Math.PI&&Math.PI<=p,k=g<=.5*-Math.PI&&.5*-Math.PI<=p||g<=1.5*Math.PI&&1.5*Math.PI<=p,S=h/100,M={x:y?-1:Math.min(m.x*(m.x<0?1:S),v.x*(v.x<0?1:S)),y:k?-1:Math.min(m.y*(m.y<0?1:S),v.y*(v.y<0?1:S))},w={x:b?1:Math.max(m.x*(m.x>0?1:S),v.x*(v.x>0?1:S)),y:x?1:Math.max(m.y*(m.y>0?1:S),v.y*(v.y>0?1:S))},C={width:.5*(w.x-M.x),height:.5*(w.y-M.y)};u=Math.min(s/C.width,l/C.height),d={x:(w.x+M.x)*-.5,y:(w.y+M.y)*-.5}}i.borderWidth=a.getMaxBorderWidth(c.data),i.outerRadius=Math.max((u-i.borderWidth)/2,0),i.innerRadius=Math.max(h?i.outerRadius/100*h:0,0),i.radiusLength=(i.outerRadius-i.innerRadius)/i.getVisibleDatasetCount(),i.offsetX=d.x*i.outerRadius,i.offsetY=d.y*i.outerRadius,c.total=a.calculateTotal(),a.outerRadius=i.outerRadius-i.radiusLength*a.getRingIndex(a.index),a.innerRadius=Math.max(a.outerRadius-i.radiusLength,0),e.each(c.data,function(e,i){a.updateElement(e,i,t)})},updateElement:function(t,a,i){var n=this,o=n.chart,r=o.chartArea,s=o.options,l=s.animation,u=(r.left+r.right)/2,d=(r.top+r.bottom)/2,c=s.rotation,h=s.rotation,f=n.getDataset(),g=i&&l.animateRotate?0:t.hidden?0:n.calculateCircumference(f.data[a])*(s.circumference/(2*Math.PI)),p=i&&l.animateScale?0:n.innerRadius,m=i&&l.animateScale?0:n.outerRadius,v=e.getValueAtIndexOrDefault;e.extend(t,{_datasetIndex:n.index,_index:a,_model:{x:u+o.offsetX,y:d+o.offsetY,startAngle:c,endAngle:h,circumference:g,outerRadius:m,innerRadius:p,label:v(f.label,a,o.data.labels[a])}});var b=t._model;this.removeHoverStyle(t),i&&l.animateRotate||(0===a?b.startAngle=s.rotation:b.startAngle=n.getMeta().data[a-1]._model.endAngle,b.endAngle=b.startAngle+b.circumference),t.pivot()},removeHoverStyle:function(e){t.DatasetController.prototype.removeHoverStyle.call(this,e,this.chart.options.elements.arc)},calculateTotal:function(){var t,a=this.getDataset(),i=this.getMeta(),n=0;return e.each(i.data,function(e,i){t=a.data[i],isNaN(t)||e.hidden||(n+=Math.abs(t))}),n},calculateCircumference:function(t){var e=this.getMeta().total;return e>0&&!isNaN(t)?2*Math.PI*(t/e):0},getMaxBorderWidth:function(t){for(var e,a,i=0,n=this.index,o=t.length,r=0;r<o;r++)e=t[r]._model?t[r]._model.borderWidth:0,a=t[r]._chart?t[r]._chart.config.data.datasets[n].hoverBorderWidth:0,i=e>i?e:i,i=a>i?a:i;return i}})}},{}],18:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){return a.getValueOrDefault(t.showLine,e.showLines)}var a=t.helpers;t.defaults.line={showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}},t.controllers.line=t.DatasetController.extend({datasetElementType:t.elements.Line,dataElementType:t.elements.Point,update:function(t){var i,n,o,r=this,s=r.getMeta(),l=s.dataset,u=s.data||[],d=r.chart.options,c=d.elements.line,h=r.getScaleForId(s.yAxisID),f=r.getDataset(),g=e(f,d);for(g&&(o=l.custom||{},void 0!==f.tension&&void 0===f.lineTension&&(f.lineTension=f.tension),l._scale=h,l._datasetIndex=r.index,l._children=u,l._model={spanGaps:f.spanGaps?f.spanGaps:d.spanGaps,tension:o.tension?o.tension:a.getValueOrDefault(f.lineTension,c.tension),backgroundColor:o.backgroundColor?o.backgroundColor:f.backgroundColor||c.backgroundColor,borderWidth:o.borderWidth?o.borderWidth:f.borderWidth||c.borderWidth,borderColor:o.borderColor?o.borderColor:f.borderColor||c.borderColor,borderCapStyle:o.borderCapStyle?o.borderCapStyle:f.borderCapStyle||c.borderCapStyle,borderDash:o.borderDash?o.borderDash:f.borderDash||c.borderDash,borderDashOffset:o.borderDashOffset?o.borderDashOffset:f.borderDashOffset||c.borderDashOffset,borderJoinStyle:o.borderJoinStyle?o.borderJoinStyle:f.borderJoinStyle||c.borderJoinStyle,fill:o.fill?o.fill:void 0!==f.fill?f.fill:c.fill,steppedLine:o.steppedLine?o.steppedLine:a.getValueOrDefault(f.steppedLine,c.stepped),cubicInterpolationMode:o.cubicInterpolationMode?o.cubicInterpolationMode:a.getValueOrDefault(f.cubicInterpolationMode,c.cubicInterpolationMode),scaleTop:h.top,scaleBottom:h.bottom,scaleZero:h.getBasePixel()},l.pivot()),i=0,n=u.length;i<n;++i)r.updateElement(u[i],i,t);for(g&&0!==l._model.tension&&r.updateBezierControlPoints(),i=0,n=u.length;i<n;++i)u[i].pivot()},getPointBackgroundColor:function(t,e){var i=this.chart.options.elements.point.backgroundColor,n=this.getDataset(),o=t.custom||{};return o.backgroundColor?i=o.backgroundColor:n.pointBackgroundColor?i=a.getValueAtIndexOrDefault(n.pointBackgroundColor,e,i):n.backgroundColor&&(i=n.backgroundColor),i},getPointBorderColor:function(t,e){var i=this.chart.options.elements.point.borderColor,n=this.getDataset(),o=t.custom||{};return o.borderColor?i=o.borderColor:n.pointBorderColor?i=a.getValueAtIndexOrDefault(n.pointBorderColor,e,i):n.borderColor&&(i=n.borderColor),i},getPointBorderWidth:function(t,e){var i=this.chart.options.elements.point.borderWidth,n=this.getDataset(),o=t.custom||{};return isNaN(o.borderWidth)?isNaN(n.pointBorderWidth)?isNaN(n.borderWidth)||(i=n.borderWidth):i=a.getValueAtIndexOrDefault(n.pointBorderWidth,e,i):i=o.borderWidth,i},updateElement:function(t,e,i){var n,o,r=this,s=r.getMeta(),l=t.custom||{},u=r.getDataset(),d=r.index,c=u.data[e],h=r.getScaleForId(s.yAxisID),f=r.getScaleForId(s.xAxisID),g=r.chart.options.elements.point,p=r.chart.data.labels||[],m=1===p.length||1===u.data.length||r.chart.isCombo;void 0!==u.radius&&void 0===u.pointRadius&&(u.pointRadius=u.radius),void 0!==u.hitRadius&&void 0===u.pointHitRadius&&(u.pointHitRadius=u.hitRadius),n=f.getPixelForValue("object"==typeof c?c:NaN,e,d,m),o=i?h.getBasePixel():r.calculatePointY(c,e,d),t._xScale=f,t._yScale=h,t._datasetIndex=d,t._index=e,t._model={x:n,y:o,skip:l.skip||isNaN(n)||isNaN(o),radius:l.radius||a.getValueAtIndexOrDefault(u.pointRadius,e,g.radius),pointStyle:l.pointStyle||a.getValueAtIndexOrDefault(u.pointStyle,e,g.pointStyle),backgroundColor:r.getPointBackgroundColor(t,e),borderColor:r.getPointBorderColor(t,e),borderWidth:r.getPointBorderWidth(t,e),tension:s.dataset._model?s.dataset._model.tension:0,steppedLine:!!s.dataset._model&&s.dataset._model.steppedLine,hitRadius:l.hitRadius||a.getValueAtIndexOrDefault(u.pointHitRadius,e,g.hitRadius)}},calculatePointY:function(t,e,a){var i,n,o,r=this,s=r.chart,l=r.getMeta(),u=r.getScaleForId(l.yAxisID),d=0,c=0;if(u.options.stacked){for(i=0;i<a;i++)if(n=s.data.datasets[i],o=s.getDatasetMeta(i),"line"===o.type&&o.yAxisID===u.id&&s.isDatasetVisible(i)){var h=Number(u.getRightValue(n.data[e]));h<0?c+=h||0:d+=h||0}var f=Number(u.getRightValue(t));return f<0?u.getPixelForValue(c+f):u.getPixelForValue(d+f)}return u.getPixelForValue(t)},updateBezierControlPoints:function(){function t(t,e,a){return Math.max(Math.min(t,a),e)}var e,i,n,o,r,s=this,l=s.getMeta(),u=s.chart.chartArea,d=l.data||[];if(l.dataset._model.spanGaps&&(d=d.filter(function(t){return!t._model.skip})),"monotone"===l.dataset._model.cubicInterpolationMode)a.splineCurveMonotone(d);else for(e=0,i=d.length;e<i;++e)n=d[e],o=n._model,r=a.splineCurve(a.previousItem(d,e)._model,o,a.nextItem(d,e)._model,l.dataset._model.tension),o.controlPointPreviousX=r.previous.x,o.controlPointPreviousY=r.previous.y,o.controlPointNextX=r.next.x,o.controlPointNextY=r.next.y;if(s.chart.options.elements.line.capBezierPoints)for(e=0,i=d.length;e<i;++e)o=d[e]._model,o.controlPointPreviousX=t(o.controlPointPreviousX,u.left,u.right),o.controlPointPreviousY=t(o.controlPointPreviousY,u.top,u.bottom),o.controlPointNextX=t(o.controlPointNextX,u.left,u.right),o.controlPointNextY=t(o.controlPointNextY,u.top,u.bottom)},draw:function(a){var i,n,o=this,r=o.getMeta(),s=r.data||[],l=a||1;for(i=0,n=s.length;i<n;++i)s[i].transition(l);for(t.canvasHelpers.clipArea(o.chart.chart.ctx,o.chart.chartArea),e(o.getDataset(),o.chart.options)&&r.dataset.transition(l).draw(),t.canvasHelpers.unclipArea(o.chart.chart.ctx),i=0,n=s.length;i<n;++i)s[i].draw(o.chart.chartArea)},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],i=t._index,n=t.custom||{},o=t._model;o.radius=n.hoverRadius||a.getValueAtIndexOrDefault(e.pointHoverRadius,i,this.chart.options.elements.point.hoverRadius),o.backgroundColor=n.hoverBackgroundColor||a.getValueAtIndexOrDefault(e.pointHoverBackgroundColor,i,a.getHoverColor(o.backgroundColor)),o.borderColor=n.hoverBorderColor||a.getValueAtIndexOrDefault(e.pointHoverBorderColor,i,a.getHoverColor(o.borderColor)),o.borderWidth=n.hoverBorderWidth||a.getValueAtIndexOrDefault(e.pointHoverBorderWidth,i,o.borderWidth)},removeHoverStyle:function(t){var e=this,i=e.chart.data.datasets[t._datasetIndex],n=t._index,o=t.custom||{},r=t._model;void 0!==i.radius&&void 0===i.pointRadius&&(i.pointRadius=i.radius),r.radius=o.radius||a.getValueAtIndexOrDefault(i.pointRadius,n,e.chart.options.elements.point.radius),r.backgroundColor=e.getPointBackgroundColor(t,n),r.borderColor=e.getPointBorderColor(t,n),r.borderWidth=e.getPointBorderWidth(t,n)}})}},{}],19:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.polarArea={scale:{type:"radialLinear",lineArc:!0,ticks:{beginAtZero:!0}},animation:{animateRotate:!0,animateScale:!0},startAngle:-.5*Math.PI,aspectRatio:1,legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');var a=t.data,i=a.datasets,n=a.labels;if(i.length)for(var o=0;o<i[0].data.length;++o)e.push('<li><span style="background-color:'+i[0].backgroundColor[o]+'"></span>'),n[o]&&e.push(n[o]),e.push("</li>");return e.push("</ul>"),e.join("")},legend:{labels:{generateLabels:function(t){var a=t.data;return a.labels.length&&a.datasets.length?a.labels.map(function(i,n){var o=t.getDatasetMeta(0),r=a.datasets[0],s=o.data[n],l=s.custom||{},u=e.getValueAtIndexOrDefault,d=t.options.elements.arc,c=l.backgroundColor?l.backgroundColor:u(r.backgroundColor,n,d.backgroundColor),h=l.borderColor?l.borderColor:u(r.borderColor,n,d.borderColor),f=l.borderWidth?l.borderWidth:u(r.borderWidth,n,d.borderWidth);return{text:i,fillStyle:c,strokeStyle:h,lineWidth:f,hidden:isNaN(r.data[n])||o.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var a,i,n,o=e.index,r=this.chart;for(a=0,i=(r.data.datasets||[]).length;a<i;++a)n=r.getDatasetMeta(a),n.data[o].hidden=!n.data[o].hidden;r.update()}},tooltips:{callbacks:{title:function(){return""},label:function(t,e){return e.labels[t.index]+": "+t.yLabel}}}},t.controllers.polarArea=t.DatasetController.extend({dataElementType:t.elements.Arc,linkScales:e.noop,update:function(t){var a=this,i=a.chart,n=i.chartArea,o=a.getMeta(),r=i.options,s=r.elements.arc,l=Math.min(n.right-n.left,n.bottom-n.top);i.outerRadius=Math.max((l-s.borderWidth/2)/2,0),i.innerRadius=Math.max(r.cutoutPercentage?i.outerRadius/100*r.cutoutPercentage:1,0),i.radiusLength=(i.outerRadius-i.innerRadius)/i.getVisibleDatasetCount(),a.outerRadius=i.outerRadius-i.radiusLength*a.index,a.innerRadius=a.outerRadius-i.radiusLength,o.count=a.countVisibleElements(),e.each(o.data,function(e,i){a.updateElement(e,i,t)})},updateElement:function(t,a,i){for(var n=this,o=n.chart,r=n.getDataset(),s=o.options,l=s.animation,u=o.scale,d=e.getValueAtIndexOrDefault,c=o.data.labels,h=n.calculateCircumference(r.data[a]),f=u.xCenter,g=u.yCenter,p=0,m=n.getMeta(),v=0;v<a;++v)isNaN(r.data[v])||m.data[v].hidden||++p;var b=s.startAngle,x=t.hidden?0:u.getDistanceFromCenterForValue(r.data[a]),y=b+h*p,k=y+(t.hidden?0:h),S=l.animateScale?0:u.getDistanceFromCenterForValue(r.data[a]);e.extend(t,{_datasetIndex:n.index,_index:a,_scale:u,_model:{x:f,y:g,innerRadius:0,outerRadius:i?S:x,startAngle:i&&l.animateRotate?b:y,endAngle:i&&l.animateRotate?b:k,label:d(c,a,c[a])}}),n.removeHoverStyle(t),t.pivot()},removeHoverStyle:function(e){t.DatasetController.prototype.removeHoverStyle.call(this,e,this.chart.options.elements.arc)},countVisibleElements:function(){var t=this.getDataset(),a=this.getMeta(),i=0;return e.each(a.data,function(e,a){isNaN(t.data[a])||e.hidden||i++}),i},calculateCircumference:function(t){var e=this.getMeta().count;return e>0&&!isNaN(t)?2*Math.PI/e:0}})}},{}],20:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.radar={aspectRatio:1,scale:{type:"radialLinear"},elements:{line:{tension:0}}},t.controllers.radar=t.DatasetController.extend({datasetElementType:t.elements.Line,dataElementType:t.elements.Point,linkScales:e.noop,update:function(t){var a=this,i=a.getMeta(),n=i.dataset,o=i.data,r=n.custom||{},s=a.getDataset(),l=a.chart.options.elements.line,u=a.chart.scale;void 0!==s.tension&&void 0===s.lineTension&&(s.lineTension=s.tension),e.extend(i.dataset,{_datasetIndex:a.index,_children:o,_loop:!0,_model:{tension:r.tension?r.tension:e.getValueOrDefault(s.lineTension,l.tension),backgroundColor:r.backgroundColor?r.backgroundColor:s.backgroundColor||l.backgroundColor,borderWidth:r.borderWidth?r.borderWidth:s.borderWidth||l.borderWidth,borderColor:r.borderColor?r.borderColor:s.borderColor||l.borderColor,fill:r.fill?r.fill:void 0!==s.fill?s.fill:l.fill,borderCapStyle:r.borderCapStyle?r.borderCapStyle:s.borderCapStyle||l.borderCapStyle,borderDash:r.borderDash?r.borderDash:s.borderDash||l.borderDash,borderDashOffset:r.borderDashOffset?r.borderDashOffset:s.borderDashOffset||l.borderDashOffset,borderJoinStyle:r.borderJoinStyle?r.borderJoinStyle:s.borderJoinStyle||l.borderJoinStyle,scaleTop:u.top,scaleBottom:u.bottom,scaleZero:u.getBasePosition()}}),i.dataset.pivot(),e.each(o,function(e,i){a.updateElement(e,i,t)},a),a.updateBezierControlPoints()},updateElement:function(t,a,i){var n=this,o=t.custom||{},r=n.getDataset(),s=n.chart.scale,l=n.chart.options.elements.point,u=s.getPointPositionForValue(a,r.data[a]);e.extend(t,{_datasetIndex:n.index,_index:a,_scale:s,_model:{x:i?s.xCenter:u.x,y:i?s.yCenter:u.y,tension:o.tension?o.tension:e.getValueOrDefault(r.lineTension,n.chart.options.elements.line.tension),radius:o.radius?o.radius:e.getValueAtIndexOrDefault(r.pointRadius,a,l.radius),backgroundColor:o.backgroundColor?o.backgroundColor:e.getValueAtIndexOrDefault(r.pointBackgroundColor,a,l.backgroundColor),borderColor:o.borderColor?o.borderColor:e.getValueAtIndexOrDefault(r.pointBorderColor,a,l.borderColor),borderWidth:o.borderWidth?o.borderWidth:e.getValueAtIndexOrDefault(r.pointBorderWidth,a,l.borderWidth),pointStyle:o.pointStyle?o.pointStyle:e.getValueAtIndexOrDefault(r.pointStyle,a,l.pointStyle),hitRadius:o.hitRadius?o.hitRadius:e.getValueAtIndexOrDefault(r.hitRadius,a,l.hitRadius)}}),t._model.skip=o.skip?o.skip:isNaN(t._model.x)||isNaN(t._model.y)},updateBezierControlPoints:function(){var t=this.chart.chartArea,a=this.getMeta();e.each(a.data,function(i,n){var o=i._model,r=e.splineCurve(e.previousItem(a.data,n,!0)._model,o,e.nextItem(a.data,n,!0)._model,o.tension);o.controlPointPreviousX=Math.max(Math.min(r.previous.x,t.right),t.left),o.controlPointPreviousY=Math.max(Math.min(r.previous.y,t.bottom),t.top),o.controlPointNextX=Math.max(Math.min(r.next.x,t.right),t.left),o.controlPointNextY=Math.max(Math.min(r.next.y,t.bottom),t.top),i.pivot()})},draw:function(t){var a=this.getMeta(),i=t||1;e.each(a.data,function(t){t.transition(i)}),a.dataset.transition(i).draw(),e.each(a.data,function(t){t.draw()})},setHoverStyle:function(t){var a=this.chart.data.datasets[t._datasetIndex],i=t.custom||{},n=t._index,o=t._model;o.radius=i.hoverRadius?i.hoverRadius:e.getValueAtIndexOrDefault(a.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius),o.backgroundColor=i.hoverBackgroundColor?i.hoverBackgroundColor:e.getValueAtIndexOrDefault(a.pointHoverBackgroundColor,n,e.getHoverColor(o.backgroundColor)),o.borderColor=i.hoverBorderColor?i.hoverBorderColor:e.getValueAtIndexOrDefault(a.pointHoverBorderColor,n,e.getHoverColor(o.borderColor)),o.borderWidth=i.hoverBorderWidth?i.hoverBorderWidth:e.getValueAtIndexOrDefault(a.pointHoverBorderWidth,n,o.borderWidth)},removeHoverStyle:function(t){var a=this.chart.data.datasets[t._datasetIndex],i=t.custom||{},n=t._index,o=t._model,r=this.chart.options.elements.point;o.radius=i.radius?i.radius:e.getValueAtIndexOrDefault(a.radius,n,r.radius),o.backgroundColor=i.backgroundColor?i.backgroundColor:e.getValueAtIndexOrDefault(a.pointBackgroundColor,n,r.backgroundColor),o.borderColor=i.borderColor?i.borderColor:e.getValueAtIndexOrDefault(a.pointBorderColor,n,r.borderColor),o.borderWidth=i.borderWidth?i.borderWidth:e.getValueAtIndexOrDefault(a.pointBorderWidth,n,r.borderWidth)}})}},{}],21:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.global.animation={duration:1e3,easing:"easeOutQuart",onProgress:e.noop,onComplete:e.noop},t.Animation=t.Element.extend({currentStep:null,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),t.animationService={frameDuration:17,animations:[],dropFrames:0,request:null,addAnimation:function(t,e,a,i){var n=this;i||(t.animating=!0);for(var o=0;o<n.animations.length;++o)if(n.animations[o].chartInstance===t)return void(n.animations[o].animationObject=e);n.animations.push({chartInstance:t,animationObject:e}),1===n.animations.length&&n.requestAnimationFrame()},cancelAnimation:function(t){var a=e.findIndex(this.animations,function(e){return e.chartInstance===t});a!==-1&&(this.animations.splice(a,1),t.animating=!1)},requestAnimationFrame:function(){var t=this;null===t.request&&(t.request=e.requestAnimFrame.call(window,function(){t.request=null,t.startDigest()}))},startDigest:function(){var t=this,e=Date.now(),a=0;t.dropFrames>1&&(a=Math.floor(t.dropFrames),t.dropFrames=t.dropFrames%1);for(var i=0;i<t.animations.length;)null===t.animations[i].animationObject.currentStep&&(t.animations[i].animationObject.currentStep=0),t.animations[i].animationObject.currentStep+=1+a,t.animations[i].animationObject.currentStep>t.animations[i].animationObject.numSteps&&(t.animations[i].animationObject.currentStep=t.animations[i].animationObject.numSteps),t.animations[i].animationObject.render(t.animations[i].chartInstance,t.animations[i].animationObject),t.animations[i].animationObject.onAnimationProgress&&t.animations[i].animationObject.onAnimationProgress.call&&t.animations[i].animationObject.onAnimationProgress.call(t.animations[i].chartInstance,t.animations[i]),t.animations[i].animationObject.currentStep===t.animations[i].animationObject.numSteps?(t.animations[i].animationObject.onAnimationComplete&&t.animations[i].animationObject.onAnimationComplete.call&&t.animations[i].animationObject.onAnimationComplete.call(t.animations[i].chartInstance,t.animations[i]),t.animations[i].chartInstance.animating=!1,t.animations.splice(i,1)):++i;var n=Date.now(),o=(n-e)/t.frameDuration;t.dropFrames+=o,t.animations.length>0&&t.requestAnimationFrame()}}}},{}],22:[function(t,e,a){"use strict";e.exports=function(t){var e=t.canvasHelpers={};e.drawPoint=function(e,a,i,n,o){var r,s,l,u,d,c;if("object"==typeof a&&(r=a.toString(),"[object HTMLImageElement]"===r||"[object HTMLCanvasElement]"===r))return void e.drawImage(a,n-a.width/2,o-a.height/2);if(!(isNaN(i)||i<=0)){switch(a){default:e.beginPath(),e.arc(n,o,i,0,2*Math.PI),e.closePath(),e.fill();break;case"triangle":e.beginPath(),s=3*i/Math.sqrt(3),d=s*Math.sqrt(3)/2,e.moveTo(n-s/2,o+d/3),e.lineTo(n+s/2,o+d/3),e.lineTo(n,o-2*d/3),e.closePath(),e.fill();break;case"rect":c=1/Math.SQRT2*i,e.beginPath(),e.fillRect(n-c,o-c,2*c,2*c),e.strokeRect(n-c,o-c,2*c,2*c);break;case"rectRounded":var h=i/Math.SQRT2,f=n-h,g=o-h,p=Math.SQRT2*i;t.helpers.drawRoundedRectangle(e,f,g,p,p,i/2),e.fill();break;case"rectRot":c=1/Math.SQRT2*i,e.beginPath(),e.moveTo(n-c,o),e.lineTo(n,o+c),e.lineTo(n+c,o),e.lineTo(n,o-c),e.closePath(),e.fill();break;case"cross":e.beginPath(),e.moveTo(n,o+i),e.lineTo(n,o-i),e.moveTo(n-i,o),e.lineTo(n+i,o),e.closePath();break;case"crossRot":e.beginPath(),l=Math.cos(Math.PI/4)*i,u=Math.sin(Math.PI/4)*i,e.moveTo(n-l,o-u),e.lineTo(n+l,o+u),e.moveTo(n-l,o+u),e.lineTo(n+l,o-u),e.closePath();break;case"star":e.beginPath(),e.moveTo(n,o+i),e.lineTo(n,o-i),e.moveTo(n-i,o),e.lineTo(n+i,o),l=Math.cos(Math.PI/4)*i,u=Math.sin(Math.PI/4)*i,e.moveTo(n-l,o-u),e.lineTo(n+l,o+u),e.moveTo(n-l,o+u),e.lineTo(n+l,o-u),e.closePath();break;case"line":e.beginPath(),e.moveTo(n-i,o),e.lineTo(n+i,o),e.closePath();break;case"dash":e.beginPath(),e.moveTo(n,o),e.lineTo(n+i,o),e.closePath()}e.stroke()}},e.clipArea=function(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()},e.unclipArea=function(t){t.restore()}}},{}],23:[function(t,e,a){"use strict";e.exports=function(t){function e(e){e=e||{};var a=e.data=e.data||{};return a.datasets=a.datasets||[],a.labels=a.labels||[],e.options=i.configMerge(t.defaults.global,t.defaults[e.type],e.options||{}),e}function a(t){var e=t.options;e.scale?t.scale.options=e.scale:e.scales&&e.scales.xAxes.concat(e.scales.yAxes).forEach(function(e){t.scales[e.id].options=e}),t.tooltip._options=e.tooltips}var i=t.helpers,n=t.plugins,o=t.platform;t.types={},t.instances={},t.controllers={},t.Controller=function(a,n,r){var s=this;n=e(n);var l=o.acquireContext(a,n),u=l&&l.canvas,d=u&&u.height,c=u&&u.width;return r.ctx=l,r.canvas=u,r.config=n,r.width=c,r.height=d,r.aspectRatio=d?c/d:null,s.id=i.uid(),s.chart=r,s.config=n,s.options=n.options,s._bufferedRender=!1,t.instances[s.id]=s,Object.defineProperty(s,"data",{get:function(){return s.config.data}}),l&&u?(s.initialize(),s.update(),s):(console.error("Failed to create chart: can't acquire context from the given item"),s)},i.extend(t.Controller.prototype,{initialize:function(){var t=this;return n.notify(t,"beforeInit"),i.retinaScale(t.chart),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildScales(),t.initToolTip(),n.notify(t,"afterInit"),t},clear:function(){return i.clear(this.chart),this},stop:function(){return t.animationService.cancelAnimation(this),this},resize:function(t){var e=this,a=e.chart,o=e.options,r=a.canvas,s=o.maintainAspectRatio&&a.aspectRatio||null,l=Math.floor(i.getMaximumWidth(r)),u=Math.floor(s?l/s:i.getMaximumHeight(r));if((a.width!==l||a.height!==u)&&(r.width=a.width=l,r.height=a.height=u,r.style.width=l+"px",r.style.height=u+"px",i.retinaScale(a),!t)){var d={width:l,height:u};n.notify(e,"resize",[d]),e.options.onResize&&e.options.onResize(e,d),e.stop(),e.update(e.options.responsiveAnimationDuration)}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},a=t.scale;i.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),i.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),a&&(a.id=a.id||"scale")},buildScales:function(){var e=this,a=e.options,n=e.scales={},o=[];a.scales&&(o=o.concat((a.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category"}}),(a.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear"}}))),a.scale&&o.push({options:a.scale,dtype:"radialLinear",isDefault:!0}),i.each(o,function(a){var o=a.options,r=i.getValueOrDefault(o.type,a.dtype),s=t.scaleService.getScaleConstructor(r);if(s){var l=new s({id:o.id,options:o,ctx:e.chart.ctx,chart:e});n[l.id]=l,a.isDefault&&(e.scale=l)}}),t.scaleService.addScalesToLayout(this)},buildOrUpdateControllers:function(){var e=this,a=[],n=[];if(i.each(e.data.datasets,function(i,o){var r=e.getDatasetMeta(o);r.type||(r.type=i.type||e.config.type),a.push(r.type),r.controller?r.controller.updateIndex(o):(r.controller=new t.controllers[r.type](e,o),n.push(r.controller))},e),a.length>1)for(var o=1;o<a.length;o++)if(a[o]!==a[o-1]){e.isCombo=!0;break}return n},resetElements:function(){var t=this;i.each(t.data.datasets,function(e,a){t.getDatasetMeta(a).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t,e){var o=this;if(a(o),n.notify(o,"beforeUpdate")!==!1){o.tooltip._data=o.data;var r=o.buildOrUpdateControllers();i.each(o.data.datasets,function(t,e){o.getDatasetMeta(e).controller.buildOrUpdateElements()},o),o.updateLayout(),i.each(r,function(t){t.reset()}),o.updateDatasets(),n.notify(o,"afterUpdate"),o._bufferedRender?o._bufferedRequest={lazy:e,duration:t}:o.render(t,e)}},updateLayout:function(){var e=this;n.notify(e,"beforeLayout")!==!1&&(t.layoutService.update(this,this.chart.width,this.chart.height),n.notify(e,"afterScaleUpdate"),n.notify(e,"afterLayout"))},updateDatasets:function(){var t=this;if(n.notify(t,"beforeDatasetsUpdate")!==!1){for(var e=0,a=t.data.datasets.length;e<a;++e)t.getDatasetMeta(e).controller.update();n.notify(t,"afterDatasetsUpdate")}},render:function(e,a){var o=this;if(n.notify(o,"beforeRender")!==!1){var r=o.options.animation,s=function(){n.notify(o,"afterRender");var t=r&&r.onComplete;t&&t.call&&t.call(o)};if(r&&("undefined"!=typeof e&&0!==e||"undefined"==typeof e&&0!==r.duration)){var l=new t.Animation;l.numSteps=(e||r.duration)/16.66,l.easing=r.easing,l.render=function(t,e){var a=i.easingEffects[e.easing],n=e.currentStep/e.numSteps,o=a(n);t.draw(o,n,e.currentStep)},l.onAnimationProgress=r.onProgress,l.onAnimationComplete=s,t.animationService.addAnimation(o,l,e,a)}else o.draw(),s();return o}},draw:function(t){var e=this;e.clear(),void 0!==t&&null!==t||(t=1),n.notify(e,"beforeDraw",[t])!==!1&&(i.each(e.boxes,function(t){t.draw(e.chartArea)},e),e.scale&&e.scale.draw(),e.drawDatasets(t),e.tooltip.transition(t).draw(),n.notify(e,"afterDraw",[t]))},drawDatasets:function(t){var e=this;n.notify(e,"beforeDatasetsDraw",[t])!==!1&&(i.each(e.data.datasets,function(a,i){e.isDatasetVisible(i)&&e.getDatasetMeta(i).controller.draw(t)},e,!0),n.notify(e,"afterDatasetsDraw",[t]))},getElementAtEvent:function(e){return t.Interaction.modes.single(this,e)},getElementsAtEvent:function(e){return t.Interaction.modes.label(this,e,{intersect:!0})},getElementsAtXAxis:function(e){return t.Interaction.modes["x-axis"](this,e,{intersect:!0})},getElementsAtEventForMode:function(e,a,i){ -var n=t.Interaction.modes[a];return"function"==typeof n?n(this,e,i):[]},getDatasetAtEvent:function(e){return t.Interaction.modes.dataset(this,e,{intersect:!0})},getDatasetMeta:function(t){var e=this,a=e.data.datasets[t];a._meta||(a._meta={});var i=a._meta[e.id];return i||(i=a._meta[e.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,a=this.data.datasets.length;e<a;++e)this.isDatasetVisible(e)&&t++;return t},isDatasetVisible:function(t){var e=this.getDatasetMeta(t);return"boolean"==typeof e.hidden?!e.hidden:!this.data.datasets[t].hidden},generateLegend:function(){return this.options.legendCallback(this)},destroy:function(){var e,a,r,s=this,l=s.chart.canvas;for(s.stop(),a=0,r=s.data.datasets.length;a<r;++a)e=s.getDatasetMeta(a),e.controller&&(e.controller.destroy(),e.controller=null);l&&(s.unbindEvents(),i.clear(s.chart),o.releaseContext(s.chart.ctx),s.chart.canvas=null,s.chart.ctx=null),n.notify(s,"destroy"),delete t.instances[s.id]},toBase64Image:function(){return this.chart.canvas.toDataURL.apply(this.chart.canvas,arguments)},initToolTip:function(){var e=this;e.tooltip=new t.Tooltip({_chart:e.chart,_chartInstance:e,_data:e.data,_options:e.options.tooltips},e),e.tooltip.initialize()},bindEvents:function(){var t=this,e=t._listeners={},a=function(){t.eventHandler.apply(t,arguments)};i.each(t.options.events,function(i){o.addEventListener(t,i,a),e[i]=a}),t.options.responsive&&(a=function(){t.resize()},o.addEventListener(t,"resize",a),e.resize=a)},unbindEvents:function(){var t=this,e=t._listeners;e&&(delete t._listeners,i.each(e,function(e,a){o.removeEventListener(t,a,e)}))},updateHoverStyle:function(t,e,a){var i,n,o,r=a?"setHoverStyle":"removeHoverStyle";for(n=0,o=t.length;n<o;++n)i=t[n],i&&this.getDatasetMeta(i._datasetIndex).controller[r](i)},eventHandler:function(t){var e=this,a=e.tooltip;if(n.notify(e,"beforeEvent",[t])!==!1){e._bufferedRender=!0,e._bufferedRequest=null;var i=e.handleEvent(t);i|=a&&a.handleEvent(t),n.notify(e,"afterEvent",[t]);var o=e._bufferedRequest;return o?e.render(o.duration,o.lazy):i&&!e.animating&&(e.stop(),e.render(e.options.hover.animationDuration,!0)),e._bufferedRender=!1,e._bufferedRequest=null,e}},handleEvent:function(t){var e=this,a=e.options||{},n=a.hover,o=!1;return e.lastActive=e.lastActive||[],"mouseout"===t.type?e.active=[]:e.active=e.getElementsAtEventForMode(t,n.mode,n),n.onHover&&n.onHover.call(e,t.native,e.active),"mouseup"!==t.type&&"click"!==t.type||a.onClick&&a.onClick.call(e,t.native,e.active),e.lastActive.length&&e.updateHoverStyle(e.lastActive,n.mode,!1),e.active.length&&n.mode&&e.updateHoverStyle(e.active,n.mode,!0),o=!i.arrayEquals(e.active,e.lastActive),e.lastActive=e.active,o}})}},{}],24:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){return t._chartjs?void t._chartjs.listeners.push(e):(Object.defineProperty(t,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[e]}}),void n.forEach(function(e){var a="onData"+e.charAt(0).toUpperCase()+e.slice(1),n=t[e];Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:function(){var e=Array.prototype.slice.call(arguments),o=n.apply(this,e);return i.each(t._chartjs.listeners,function(t){"function"==typeof t[a]&&t[a].apply(t,e)}),o}})}))}function a(t,e){var a=t._chartjs;if(a){var i=a.listeners,o=i.indexOf(e);o!==-1&&i.splice(o,1),i.length>0||(n.forEach(function(e){delete t[e]}),delete t._chartjs)}}var i=t.helpers,n=["push","pop","shift","splice","unshift"];t.DatasetController=function(t,e){this.initialize(t,e)},i.extend(t.DatasetController.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){var a=this;a.chart=t,a.index=e,a.linkScales(),a.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),a=t.getDataset();null===e.xAxisID&&(e.xAxisID=a.xAxisID||t.chart.options.scales.xAxes[0].id),null===e.yAxisID&&(e.yAxisID=a.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},reset:function(){this.update(!0)},destroy:function(){this._data&&a(this._data,this)},createMetaDataset:function(){var t=this,e=t.datasetElementType;return e&&new e({_chart:t.chart.chart,_datasetIndex:t.index})},createMetaData:function(t){var e=this,a=e.dataElementType;return a&&new a({_chart:e.chart.chart,_datasetIndex:e.index,_index:t})},addElements:function(){var t,e,a=this,i=a.getMeta(),n=a.getDataset().data||[],o=i.data;for(t=0,e=n.length;t<e;++t)o[t]=o[t]||a.createMetaData(t);i.dataset=i.dataset||a.createMetaDataset()},addElementAndReset:function(t){var e=this.createMetaData(t);this.getMeta().data.splice(t,0,e),this.updateElement(e,t,!0)},buildOrUpdateElements:function(){var t=this,i=t.getDataset(),n=i.data||(i.data=[]);t._data!==n&&(t._data&&a(t._data,t),e(n,t),t._data=n),t.resyncElements()},update:i.noop,draw:function(t){var e,a,i=t||1,n=this.getMeta().data;for(e=0,a=n.length;e<a;++e)n[e].transition(i).draw()},removeHoverStyle:function(t,e){var a=this.chart.data.datasets[t._datasetIndex],n=t._index,o=t.custom||{},r=i.getValueAtIndexOrDefault,s=t._model;s.backgroundColor=o.backgroundColor?o.backgroundColor:r(a.backgroundColor,n,e.backgroundColor),s.borderColor=o.borderColor?o.borderColor:r(a.borderColor,n,e.borderColor),s.borderWidth=o.borderWidth?o.borderWidth:r(a.borderWidth,n,e.borderWidth)},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],a=t._index,n=t.custom||{},o=i.getValueAtIndexOrDefault,r=i.getHoverColor,s=t._model;s.backgroundColor=n.hoverBackgroundColor?n.hoverBackgroundColor:o(e.hoverBackgroundColor,a,r(s.backgroundColor)),s.borderColor=n.hoverBorderColor?n.hoverBorderColor:o(e.hoverBorderColor,a,r(s.borderColor)),s.borderWidth=n.hoverBorderWidth?n.hoverBorderWidth:o(e.hoverBorderWidth,a,s.borderWidth)},resyncElements:function(){var t=this,e=t.getMeta(),a=t.getDataset().data,i=e.data.length,n=a.length;n<i?e.data.splice(n,i-n):n>i&&t.insertElements(i,n-i)},insertElements:function(t,e){for(var a=0;a<e;++a)this.addElementAndReset(t+a)},onDataPush:function(){this.insertElements(this.getDataset().data.length-1,arguments.length)},onDataPop:function(){this.getMeta().data.pop()},onDataShift:function(){this.getMeta().data.shift()},onDataSplice:function(t,e){this.getMeta().data.splice(t,e),this.insertElements(t,arguments.length-2)},onDataUnshift:function(){this.insertElements(0,arguments.length)}}),t.DatasetController.extend=i.inherits}},{}],25:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.elements={},t.Element=function(t){e.extend(this,t),this.initialize.apply(this,arguments)},e.extend(t.Element.prototype,{initialize:function(){this.hidden=!1},pivot:function(){var t=this;return t._view||(t._view=e.clone(t._model)),t._start=e.clone(t._view),t},transition:function(t){var a=this;return a._view||(a._view=e.clone(a._model)),1===t?(a._view=a._model,a._start=null,a):(a._start||a.pivot(),e.each(a._model,function(i,n){if("_"===n[0]);else if(a._view.hasOwnProperty(n))if(i===a._view[n]);else if("string"==typeof i)try{var o=e.color(a._model[n]).mix(e.color(a._start[n]),t);a._view[n]=o.rgbString()}catch(t){a._view[n]=i}else if("number"==typeof i){var r=void 0!==a._start[n]&&isNaN(a._start[n])===!1?a._start[n]:0;a._view[n]=(a._model[n]-r)*t+r}else a._view[n]=i;else"number"!=typeof i||isNaN(a._view[n])?a._view[n]=i:a._view[n]=i*t},a),a)},tooltipPosition:function(){return{x:this._model.x,y:this._model.y}},hasValue:function(){return e.isNumber(this._model.x)&&e.isNumber(this._model.y)}}),t.Element.extend=e.inherits}},{}],26:[function(t,e,a){"use strict";var i=t(3);e.exports=function(t){function e(t,e,a){var i;return"string"==typeof t?(i=parseInt(t,10),t.indexOf("%")!==-1&&(i=i/100*e.parentNode[a])):i=t,i}function a(t){return void 0!==t&&null!==t&&"none"!==t}function n(t,i,n){var o=document.defaultView,r=t.parentNode,s=o.getComputedStyle(t)[i],l=o.getComputedStyle(r)[i],u=a(s),d=a(l),c=Number.POSITIVE_INFINITY;return u||d?Math.min(u?e(s,t,n):c,d?e(l,r,n):c):"none"}var o=t.helpers={};o.each=function(t,e,a,i){var n,r;if(o.isArray(t))if(r=t.length,i)for(n=r-1;n>=0;n--)e.call(a,t[n],n);else for(n=0;n<r;n++)e.call(a,t[n],n);else if("object"==typeof t){var s=Object.keys(t);for(r=s.length,n=0;n<r;n++)e.call(a,t[s[n]],s[n])}},o.clone=function(t){var e={};return o.each(t,function(t,a){o.isArray(t)?e[a]=t.slice(0):"object"==typeof t&&null!==t?e[a]=o.clone(t):e[a]=t}),e},o.extend=function(t){for(var e=function(e,a){t[a]=e},a=1,i=arguments.length;a<i;a++)o.each(arguments[a],e);return t},o.configMerge=function(e){var a=o.clone(e);return o.each(Array.prototype.slice.call(arguments,1),function(e){o.each(e,function(e,i){var n=a.hasOwnProperty(i),r=n?a[i]:{};"scales"===i?a[i]=o.scaleMerge(r,e):"scale"===i?a[i]=o.configMerge(r,t.scaleService.getScaleDefaults(e.type),e):!n||"object"!=typeof r||o.isArray(r)||null===r||"object"!=typeof e||o.isArray(e)?a[i]=e:a[i]=o.configMerge(r,e)})}),a},o.scaleMerge=function(e,a){var i=o.clone(e);return o.each(a,function(e,a){"xAxes"===a||"yAxes"===a?i.hasOwnProperty(a)?o.each(e,function(e,n){var r=o.getValueOrDefault(e.type,"xAxes"===a?"category":"linear"),s=t.scaleService.getScaleDefaults(r);n>=i[a].length||!i[a][n].type?i[a].push(o.configMerge(s,e)):e.type&&e.type!==i[a][n].type?i[a][n]=o.configMerge(i[a][n],s,e):i[a][n]=o.configMerge(i[a][n],e)}):(i[a]=[],o.each(e,function(e){var n=o.getValueOrDefault(e.type,"xAxes"===a?"category":"linear");i[a].push(o.configMerge(t.scaleService.getScaleDefaults(n),e))})):i.hasOwnProperty(a)&&"object"==typeof i[a]&&null!==i[a]&&"object"==typeof e?i[a]=o.configMerge(i[a],e):i[a]=e}),i},o.getValueAtIndexOrDefault=function(t,e,a){return void 0===t||null===t?a:o.isArray(t)?e<t.length?t[e]:a:t},o.getValueOrDefault=function(t,e){return void 0===t?e:t},o.indexOf=Array.prototype.indexOf?function(t,e){return t.indexOf(e)}:function(t,e){for(var a=0,i=t.length;a<i;++a)if(t[a]===e)return a;return-1},o.where=function(t,e){if(o.isArray(t)&&Array.prototype.filter)return t.filter(e);var a=[];return o.each(t,function(t){e(t)&&a.push(t)}),a},o.findIndex=Array.prototype.findIndex?function(t,e,a){return t.findIndex(e,a)}:function(t,e,a){a=void 0===a?t:a;for(var i=0,n=t.length;i<n;++i)if(e.call(a,t[i],i,t))return i;return-1},o.findNextWhere=function(t,e,a){void 0!==a&&null!==a||(a=-1);for(var i=a+1;i<t.length;i++){var n=t[i];if(e(n))return n}},o.findPreviousWhere=function(t,e,a){void 0!==a&&null!==a||(a=t.length);for(var i=a-1;i>=0;i--){var n=t[i];if(e(n))return n}},o.inherits=function(t){var e=this,a=t&&t.hasOwnProperty("constructor")?t.constructor:function(){return e.apply(this,arguments)},i=function(){this.constructor=a};return i.prototype=e.prototype,a.prototype=new i,a.extend=o.inherits,t&&o.extend(a.prototype,t),a.__super__=e.prototype,a},o.noop=function(){},o.uid=function(){var t=0;return function(){return t++}}(),o.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},o.almostEquals=function(t,e,a){return Math.abs(t-e)<a},o.almostWhole=function(t,e){var a=Math.round(t);return a-e<t&&a+e>t},o.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},o.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},o.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return t=+t,0===t||isNaN(t)?t:t>0?1:-1},o.log10=Math.log10?function(t){return Math.log10(t)}:function(t){return Math.log(t)/Math.LN10},o.toRadians=function(t){return t*(Math.PI/180)},o.toDegrees=function(t){return t*(180/Math.PI)},o.getAngleFromPoint=function(t,e){var a=e.x-t.x,i=e.y-t.y,n=Math.sqrt(a*a+i*i),o=Math.atan2(i,a);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:n}},o.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},o.aliasPixel=function(t){return t%2===0?0:.5},o.splineCurve=function(t,e,a,i){var n=t.skip?e:t,o=e,r=a.skip?e:a,s=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),l=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),u=s/(s+l),d=l/(s+l);u=isNaN(u)?0:u,d=isNaN(d)?0:d;var c=i*u,h=i*d;return{previous:{x:o.x-c*(r.x-n.x),y:o.y-c*(r.y-n.y)},next:{x:o.x+h*(r.x-n.x),y:o.y+h*(r.y-n.y)}}},o.EPSILON=Number.EPSILON||1e-14,o.splineCurveMonotone=function(t){var e,a,i,n,r=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),s=r.length;for(e=0;e<s;++e)if(i=r[e],!i.model.skip){if(a=e>0?r[e-1]:null,n=e<s-1?r[e+1]:null,n&&!n.model.skip){var l=n.model.x-i.model.x;i.deltaK=0!==l?(n.model.y-i.model.y)/l:0}!a||a.model.skip?i.mK=i.deltaK:!n||n.model.skip?i.mK=a.deltaK:this.sign(a.deltaK)!==this.sign(i.deltaK)?i.mK=0:i.mK=(a.deltaK+i.deltaK)/2}var u,d,c,h;for(e=0;e<s-1;++e)i=r[e],n=r[e+1],i.model.skip||n.model.skip||(o.almostEquals(i.deltaK,0,this.EPSILON)?i.mK=n.mK=0:(u=i.mK/i.deltaK,d=n.mK/i.deltaK,h=Math.pow(u,2)+Math.pow(d,2),h<=9||(c=3/Math.sqrt(h),i.mK=u*c*i.deltaK,n.mK=d*c*i.deltaK)));var f;for(e=0;e<s;++e)i=r[e],i.model.skip||(a=e>0?r[e-1]:null,n=e<s-1?r[e+1]:null,a&&!a.model.skip&&(f=(i.model.x-a.model.x)/3,i.model.controlPointPreviousX=i.model.x-f,i.model.controlPointPreviousY=i.model.y-f*i.mK),n&&!n.model.skip&&(f=(n.model.x-i.model.x)/3,i.model.controlPointNextX=i.model.x+f,i.model.controlPointNextY=i.model.y+f*i.mK))},o.nextItem=function(t,e,a){return a?e>=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},o.previousItem=function(t,e,a){return a?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},o.niceNum=function(t,e){var a,i=Math.floor(o.log10(t)),n=t/Math.pow(10,i);return a=e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10,a*Math.pow(10,i)};var r=o.easingEffects={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return-1*t*(t-2)},easeInOutQuad:function(t){return(t/=.5)<1?.5*t*t:-.5*(--t*(t-2)-1)},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return 1*((t=t/1-1)*t*t+1)},easeInOutCubic:function(t){return(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return-1*((t=t/1-1)*t*t*t-1)},easeInOutQuart:function(t){return(t/=.5)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},easeInQuint:function(t){return 1*(t/=1)*t*t*t*t},easeOutQuint:function(t){return 1*((t=t/1-1)*t*t*t*t+1)},easeInOutQuint:function(t){return(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},easeInSine:function(t){return-1*Math.cos(t/1*(Math.PI/2))+1},easeOutSine:function(t){return 1*Math.sin(t/1*(Math.PI/2))},easeInOutSine:function(t){return-.5*(Math.cos(Math.PI*t/1)-1)},easeInExpo:function(t){return 0===t?1:1*Math.pow(2,10*(t/1-1))},easeOutExpo:function(t){return 1===t?1:1*(-Math.pow(2,-10*t/1)+1)},easeInOutExpo:function(t){return 0===t?0:1===t?1:(t/=.5)<1?.5*Math.pow(2,10*(t-1)):.5*(-Math.pow(2,-10*--t)+2)},easeInCirc:function(t){return t>=1?t:-1*(Math.sqrt(1-(t/=1)*t)-1)},easeOutCirc:function(t){return 1*Math.sqrt(1-(t=t/1-1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,a=0,i=1;return 0===t?0:1===(t/=1)?1:(a||(a=.3),i<Math.abs(1)?(i=1,e=a/4):e=a/(2*Math.PI)*Math.asin(1/i),-(i*Math.pow(2,10*(t-=1))*Math.sin((1*t-e)*(2*Math.PI)/a)))},easeOutElastic:function(t){var e=1.70158,a=0,i=1;return 0===t?0:1===(t/=1)?1:(a||(a=.3),i<Math.abs(1)?(i=1,e=a/4):e=a/(2*Math.PI)*Math.asin(1/i),i*Math.pow(2,-10*t)*Math.sin((1*t-e)*(2*Math.PI)/a)+1)},easeInOutElastic:function(t){var e=1.70158,a=0,i=1;return 0===t?0:2===(t/=.5)?1:(a||(a=1*(.3*1.5)),i<Math.abs(1)?(i=1,e=a/4):e=a/(2*Math.PI)*Math.asin(1/i),t<1?-.5*(i*Math.pow(2,10*(t-=1))*Math.sin((1*t-e)*(2*Math.PI)/a)):i*Math.pow(2,-10*(t-=1))*Math.sin((1*t-e)*(2*Math.PI)/a)*.5+1)},easeInBack:function(t){var e=1.70158;return 1*(t/=1)*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return 1*((t=t/1-1)*t*((e+1)*t+e)+1)},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?.5*(t*t*(((e*=1.525)+1)*t-e)):.5*((t-=2)*t*(((e*=1.525)+1)*t+e)+2)},easeInBounce:function(t){return 1-r.easeOutBounce(1-t)},easeOutBounce:function(t){return(t/=1)<1/2.75?1*(7.5625*t*t):t<2/2.75?1*(7.5625*(t-=1.5/2.75)*t+.75):t<2.5/2.75?1*(7.5625*(t-=2.25/2.75)*t+.9375):1*(7.5625*(t-=2.625/2.75)*t+.984375)},easeInOutBounce:function(t){return t<.5?.5*r.easeInBounce(2*t):.5*r.easeOutBounce(2*t-1)+.5}};o.requestAnimFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)}}(),o.getRelativePosition=function(t,e){var a,i,n=t.originalEvent||t,r=t.currentTarget||t.srcElement,s=r.getBoundingClientRect(),l=n.touches;l&&l.length>0?(a=l[0].clientX,i=l[0].clientY):(a=n.clientX,i=n.clientY);var u=parseFloat(o.getStyle(r,"padding-left")),d=parseFloat(o.getStyle(r,"padding-top")),c=parseFloat(o.getStyle(r,"padding-right")),h=parseFloat(o.getStyle(r,"padding-bottom")),f=s.right-s.left-u-c,g=s.bottom-s.top-d-h;return a=Math.round((a-s.left-u)/f*r.width/e.currentDevicePixelRatio),i=Math.round((i-s.top-d)/g*r.height/e.currentDevicePixelRatio),{x:a,y:i}},o.addEvent=function(t,e,a){t.addEventListener?t.addEventListener(e,a):t.attachEvent?t.attachEvent("on"+e,a):t["on"+e]=a},o.removeEvent=function(t,e,a){t.removeEventListener?t.removeEventListener(e,a,!1):t.detachEvent?t.detachEvent("on"+e,a):t["on"+e]=o.noop},o.getConstraintWidth=function(t){return n(t,"max-width","clientWidth")},o.getConstraintHeight=function(t){return n(t,"max-height","clientHeight")},o.getMaximumWidth=function(t){var e=t.parentNode,a=parseInt(o.getStyle(e,"padding-left"),10),i=parseInt(o.getStyle(e,"padding-right"),10),n=e.clientWidth-a-i,r=o.getConstraintWidth(t);return isNaN(r)?n:Math.min(n,r)},o.getMaximumHeight=function(t){var e=t.parentNode,a=parseInt(o.getStyle(e,"padding-top"),10),i=parseInt(o.getStyle(e,"padding-bottom"),10),n=e.clientHeight-a-i,r=o.getConstraintHeight(t);return isNaN(r)?n:Math.min(n,r)},o.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},o.retinaScale=function(t){var e=t.currentDevicePixelRatio=window.devicePixelRatio||1;if(1!==e){var a=t.canvas,i=t.height,n=t.width;a.height=i*e,a.width=n*e,t.ctx.scale(e,e),a.style.height=i+"px",a.style.width=n+"px"}},o.clear=function(t){t.ctx.clearRect(0,0,t.width,t.height)},o.fontString=function(t,e,a){return e+" "+t+"px "+a},o.longestText=function(t,e,a,i){i=i||{};var n=i.data=i.data||{},r=i.garbageCollect=i.garbageCollect||[];i.font!==e&&(n=i.data={},r=i.garbageCollect=[],i.font=e),t.font=e;var s=0;o.each(a,function(e){void 0!==e&&null!==e&&o.isArray(e)!==!0?s=o.measureText(t,n,r,s,e):o.isArray(e)&&o.each(e,function(e){void 0===e||null===e||o.isArray(e)||(s=o.measureText(t,n,r,s,e))})});var l=r.length/2;if(l>a.length){for(var u=0;u<l;u++)delete n[r[u]];r.splice(0,l)}return s},o.measureText=function(t,e,a,i,n){var o=e[n];return o||(o=e[n]=t.measureText(n).width,a.push(n)),o>i&&(i=o),i},o.numberOfLabelLines=function(t){var e=1;return o.each(t,function(t){o.isArray(t)&&t.length>e&&(e=t.length)}),e},o.drawRoundedRectangle=function(t,e,a,i,n,o){t.beginPath(),t.moveTo(e+o,a),t.lineTo(e+i-o,a),t.quadraticCurveTo(e+i,a,e+i,a+o),t.lineTo(e+i,a+n-o),t.quadraticCurveTo(e+i,a+n,e+i-o,a+n),t.lineTo(e+o,a+n),t.quadraticCurveTo(e,a+n,e,a+n-o),t.lineTo(e,a+o),t.quadraticCurveTo(e,a,e+o,a),t.closePath()},o.color=function(e){return i?i(e instanceof CanvasGradient?t.defaults.global.defaultColor:e):(console.error("Color.js not found!"),e)},o.isArray=Array.isArray?function(t){return Array.isArray(t)}:function(t){return"[object Array]"===Object.prototype.toString.call(t)},o.arrayEquals=function(t,e){var a,i,n,r;if(!t||!e||t.length!==e.length)return!1;for(a=0,i=t.length;a<i;++a)if(n=t[a],r=e[a],n instanceof Array&&r instanceof Array){if(!o.arrayEquals(n,r))return!1}else if(n!==r)return!1;return!0},o.callCallback=function(t,e,a){t&&"function"==typeof t.call&&t.apply(a,e)},o.getHoverColor=function(t){return t instanceof CanvasPattern?t:o.color(t).saturate(.5).darken(.1).rgbString()}}},{3:3}],27:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){return t.native?{x:t.x,y:t.y}:r.getRelativePosition(t,e)}function a(t,e){var a,i,n,o,r,s=t.data.datasets;for(i=0,o=s.length;i<o;++i)if(t.isDatasetVisible(i))for(a=t.getDatasetMeta(i),n=0,r=a.data.length;n<r;++n){var l=a.data[n];l._view.skip||e(l)}}function i(t,e){var i=[];return a(t,function(t){t.inRange(e.x,e.y)&&i.push(t)}),i}function n(t,e,i,n){var o=Number.POSITIVE_INFINITY,s=[];return n||(n=r.distanceBetweenPoints),a(t,function(t){if(!i||t.inRange(e.x,e.y)){var a=t.getCenterPoint(),r=n(e,a);r<o?(s=[t],o=r):r===o&&s.push(t)}}),s}function o(t,a,o){var r=e(a,t.chart),s=function(t,e){return Math.abs(t.x-e.x)},l=o.intersect?i(t,r):n(t,r,!1,s),u=[];return l.length?(t.data.datasets.forEach(function(e,a){if(t.isDatasetVisible(a)){var i=t.getDatasetMeta(a),n=i.data[l[0]._index];n&&!n._view.skip&&u.push(n)}}),u):[]}var r=t.helpers;t.Interaction={modes:{single:function(t,i){var n=e(i,t.chart),o=[];return a(t,function(t){if(t.inRange(n.x,n.y))return o.push(t),o}),o.slice(0,1)},label:o,index:o,dataset:function(t,a,o){var r=e(a,t.chart),s=o.intersect?i(t,r):n(t,r,!1);return s.length>0&&(s=t.getDatasetMeta(s[0]._datasetIndex).data),s},"x-axis":function(t,e){return o(t,e,!0)},point:function(t,a){var n=e(a,t.chart);return i(t,n)},nearest:function(t,a,i){var o=e(a,t.chart),r=n(t,o,i.intersect);return r.length>1&&r.sort(function(t,e){var a=t.getArea(),i=e.getArea(),n=a-i;return 0===n&&(n=t._datasetIndex-e._datasetIndex),n}),r.slice(0,1)},x:function(t,i,n){var o=e(i,t.chart),r=[],s=!1;return a(t,function(t){t.inXRange(o.x)&&r.push(t),t.inRange(o.x,o.y)&&(s=!0)}),n.intersect&&!s&&(r=[]),r},y:function(t,i,n){var o=e(i,t.chart),r=[],s=!1;return a(t,function(t){t.inYRange(o.y)&&r.push(t),t.inRange(o.x,o.y)&&(s=!0)}),n.intersect&&!s&&(r=[]),r}}}}},{}],28:[function(t,e,a){"use strict";e.exports=function(){var t=function(e,a){return this.controller=new t.Controller(e,a,this),this.controller};return t.defaults={global:{responsive:!0,responsiveAnimationDuration:0,maintainAspectRatio:!0,events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,defaultColor:"rgba(0,0,0,0.1)",defaultFontColor:"#666",defaultFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",defaultFontSize:12,defaultFontStyle:"normal",showLines:!0,elements:{},legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');for(var a=0;a<t.data.datasets.length;a++)e.push('<li><span style="background-color:'+t.data.datasets[a].backgroundColor+'"></span>'),t.data.datasets[a].label&&e.push(t.data.datasets[a].label),e.push("</li>");return e.push("</ul>"),e.join("")}}},t.Chart=t,t}},{}],29:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.layoutService={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),t.boxes.push(e)},removeBox:function(t,e){t.boxes&&t.boxes.splice(t.boxes.indexOf(e),1)},update:function(t,a,i){function n(t){var e,a=t.isHorizontal();a?(e=t.update(t.options.fullWidth?x:C,w),I-=e.height):(e=t.update(M,S),C-=e.width),D.push({horizontal:a,minSize:e,box:t})}function o(t){var a=e.findNextWhere(D,function(e){return e.box===t});if(a)if(t.isHorizontal()){var i={left:Math.max(F,A),right:Math.max(V,T),top:0,bottom:0};t.update(t.options.fullWidth?x:C,y/2,i)}else t.update(a.minSize.width,I)}function r(t){var a=e.findNextWhere(D,function(e){return e.box===t}),i={left:0,right:0,top:R,bottom:O};a&&t.update(a.minSize.width,I,i)}function s(t){t.isHorizontal()?(t.left=t.options.fullWidth?d:F,t.right=t.options.fullWidth?a-c:F+C,t.top=E,t.bottom=E+t.height,E=t.bottom):(t.left=N,t.right=N+t.width,t.top=R,t.bottom=R+I,N=t.right)}if(t){var l=t.options.layout,u=l?l.padding:null,d=0,c=0,h=0,f=0;isNaN(u)?(d=u.left||0,c=u.right||0,h=u.top||0,f=u.bottom||0):(d=u,c=u,h=u,f=u);var g=e.where(t.boxes,function(t){return"left"===t.options.position}),p=e.where(t.boxes,function(t){return"right"===t.options.position}),m=e.where(t.boxes,function(t){return"top"===t.options.position}),v=e.where(t.boxes,function(t){return"bottom"===t.options.position}),b=e.where(t.boxes,function(t){return"chartArea"===t.options.position});m.sort(function(t,e){return(e.options.fullWidth?1:0)-(t.options.fullWidth?1:0)}),v.sort(function(t,e){return(t.options.fullWidth?1:0)-(e.options.fullWidth?1:0)});var x=a-d-c,y=i-h-f,k=x/2,S=y/2,M=(a-k)/(g.length+p.length),w=(i-S)/(m.length+v.length),C=x,I=y,D=[];e.each(g.concat(p,m,v),n);var A=0,T=0,P=0,_=0;e.each(m.concat(v),function(t){if(t.getPadding){var e=t.getPadding();A=Math.max(A,e.left),T=Math.max(T,e.right)}}),e.each(g.concat(p),function(t){if(t.getPadding){var e=t.getPadding();P=Math.max(P,e.top),_=Math.max(_,e.bottom)}});var F=d,V=c,R=h,O=f;e.each(g.concat(p),o),e.each(g,function(t){F+=t.width}),e.each(p,function(t){V+=t.width}),e.each(m.concat(v),o),e.each(m,function(t){R+=t.height}),e.each(v,function(t){O+=t.height}),e.each(g.concat(p),r),F=d,V=c,R=h,O=f,e.each(g,function(t){F+=t.width}),e.each(p,function(t){V+=t.width}),e.each(m,function(t){R+=t.height}),e.each(v,function(t){O+=t.height});var L=Math.max(A-F,0);F+=L,V+=Math.max(T-V,0);var B=Math.max(P-R,0);R+=B,O+=Math.max(_-O,0);var z=i-R-O,W=a-F-V;W===C&&z===I||(e.each(g,function(t){t.height=z}),e.each(p,function(t){t.height=z}),e.each(m,function(t){t.options.fullWidth||(t.width=W)}),e.each(v,function(t){t.options.fullWidth||(t.width=W)}),I=z,C=W);var N=d+L,E=h+B;e.each(g.concat(m),s),N+=C,E+=I,e.each(p,s),e.each(v,s),t.chartArea={left:F,top:R,right:F+C,bottom:R+I},e.each(b,function(e){e.left=t.chartArea.left,e.top=t.chartArea.top,e.right=t.chartArea.right,e.bottom=t.chartArea.bottom,e.update(C,I)})}}}}},{}],30:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){return t.usePointStyle?e*Math.SQRT2:t.boxWidth}function a(e,a){var i=new t.Legend({ctx:e.chart.ctx,options:a,chart:e});e.legend=i,t.layoutService.addBox(e,i)}var i=t.helpers,n=i.noop;t.defaults.global.legend={display:!0,position:"top",fullWidth:!0,reverse:!1,onClick:function(t,e){var a=e.datasetIndex,i=this.chart,n=i.getDatasetMeta(a);n.hidden=null===n.hidden?!i.data.datasets[a].hidden:null,i.update()},onHover:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return i.isArray(e.datasets)?e.datasets.map(function(e,a){return{text:e.label,fillStyle:i.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(a),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:a}},this):[]}}},t.Legend=t.Element.extend({initialize:function(t){i.extend(this,t),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:n,update:function(t,e,a){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=a,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:n,beforeSetDimensions:n,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:n,beforeBuildLabels:n,buildLabels:function(){var t=this,e=t.options.labels,a=e.generateLabels.call(t,t.chart);e.filter&&(a=a.filter(function(a){return e.filter(a,t.chart.data)})),t.options.reverse&&a.reverse(),t.legendItems=a},afterBuildLabels:n,beforeFit:n,fit:function(){var a=this,n=a.options,o=n.labels,r=n.display,s=a.ctx,l=t.defaults.global,u=i.getValueOrDefault,d=u(o.fontSize,l.defaultFontSize),c=u(o.fontStyle,l.defaultFontStyle),h=u(o.fontFamily,l.defaultFontFamily),f=i.fontString(d,c,h),g=a.legendHitBoxes=[],p=a.minSize,m=a.isHorizontal();if(m?(p.width=a.maxWidth,p.height=r?10:0):(p.width=r?10:0,p.height=a.maxHeight),r)if(s.font=f,m){var v=a.lineWidths=[0],b=a.legendItems.length?d+o.padding:0;s.textAlign="left",s.textBaseline="top",i.each(a.legendItems,function(t,i){var n=e(o,d),r=n+d/2+s.measureText(t.text).width;v[v.length-1]+r+o.padding>=a.width&&(b+=d+o.padding,v[v.length]=a.left),g[i]={left:0,top:0,width:r,height:d},v[v.length-1]+=r+o.padding}),p.height+=b}else{var x=o.padding,y=a.columnWidths=[],k=o.padding,S=0,M=0,w=d+x;i.each(a.legendItems,function(t,a){var i=e(o,d),n=i+d/2+s.measureText(t.text).width;M+w>p.height&&(k+=S+o.padding,y.push(S),S=0,M=0),S=Math.max(S,n),M+=w,g[a]={left:0,top:0,width:n,height:d}}),k+=S,y.push(S),p.width+=k}a.width=p.width,a.height=p.height},afterFit:n,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var a=this,n=a.options,o=n.labels,r=t.defaults.global,s=r.elements.line,l=a.width,u=a.lineWidths;if(n.display){var d,c=a.ctx,h=i.getValueOrDefault,f=h(o.fontColor,r.defaultFontColor),g=h(o.fontSize,r.defaultFontSize),p=h(o.fontStyle,r.defaultFontStyle),m=h(o.fontFamily,r.defaultFontFamily),v=i.fontString(g,p,m);c.textAlign="left",c.textBaseline="top",c.lineWidth=.5,c.strokeStyle=f,c.fillStyle=f,c.font=v;var b=e(o,g),x=a.legendHitBoxes,y=function(e,a,i){if(!(isNaN(b)||b<=0)){c.save(),c.fillStyle=h(i.fillStyle,r.defaultColor),c.lineCap=h(i.lineCap,s.borderCapStyle),c.lineDashOffset=h(i.lineDashOffset,s.borderDashOffset),c.lineJoin=h(i.lineJoin,s.borderJoinStyle),c.lineWidth=h(i.lineWidth,s.borderWidth),c.strokeStyle=h(i.strokeStyle,r.defaultColor);var o=0===h(i.lineWidth,s.borderWidth);if(c.setLineDash&&c.setLineDash(h(i.lineDash,s.borderDash)),n.labels&&n.labels.usePointStyle){var l=g*Math.SQRT2/2,u=l/Math.SQRT2,d=e+u,f=a+u;t.canvasHelpers.drawPoint(c,i.pointStyle,l,d,f)}else o||c.strokeRect(e,a,b,g),c.fillRect(e,a,b,g);c.restore()}},k=function(t,e,a,i){c.fillText(a.text,b+g/2+t,e),a.hidden&&(c.beginPath(),c.lineWidth=2,c.moveTo(b+g/2+t,e+g/2),c.lineTo(b+g/2+t+i,e+g/2),c.stroke())},S=a.isHorizontal();d=S?{x:a.left+(l-u[0])/2,y:a.top+o.padding,line:0}:{x:a.left+o.padding,y:a.top+o.padding,line:0};var M=g+o.padding;i.each(a.legendItems,function(t,e){var i=c.measureText(t.text).width,n=b+g/2+i,r=d.x,s=d.y;S?r+n>=l&&(s=d.y+=M,d.line++,r=d.x=a.left+(l-u[d.line])/2):s+M>a.bottom&&(r=d.x=r+a.columnWidths[d.line]+o.padding,s=d.y=a.top+o.padding,d.line++),y(r,s,t),x[e].left=r,x[e].top=s,k(r,s,t,i),S?d.x+=n+o.padding:d.y+=M})}},handleEvent:function(t){var e=this,a=e.options,i="mouseup"===t.type?"click":t.type,n=!1;if("mousemove"===i){if(!a.onHover)return}else{if("click"!==i)return;if(!a.onClick)return}var o=t.x,r=t.y;if(o>=e.left&&o<=e.right&&r>=e.top&&r<=e.bottom)for(var s=e.legendHitBoxes,l=0;l<s.length;++l){var u=s[l];if(o>=u.left&&o<=u.left+u.width&&r>=u.top&&r<=u.top+u.height){if("click"===i){a.onClick.call(e,t.native,e.legendItems[l]),n=!0;break}if("mousemove"===i){a.onHover.call(e,t.native,e.legendItems[l]),n=!0;break}}}return n}}),t.plugins.register({beforeInit:function(t){var e=t.options.legend;e&&a(t,e)},beforeUpdate:function(e){var n=e.options.legend;n?(n=i.configMerge(t.defaults.global.legend,n),e.legend?e.legend.options=n:a(e,n)):(t.layoutService.removeBox(e,e.legend),delete e.legend)},afterEvent:function(t,e){var a=t.legend;a&&a.handleEvent(e)}})}},{}],31:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.defaults.global.plugins={},t.plugins={_plugins:[],_cacheId:0,register:function(t){var e=this._plugins;[].concat(t).forEach(function(t){e.indexOf(t)===-1&&e.push(t)}),this._cacheId++},unregister:function(t){var e=this._plugins;[].concat(t).forEach(function(t){var a=e.indexOf(t);a!==-1&&e.splice(a,1)}),this._cacheId++},clear:function(){this._plugins=[],this._cacheId++},count:function(){return this._plugins.length; -},getAll:function(){return this._plugins},notify:function(t,e,a){var i,n,o,r,s,l=this.descriptors(t),u=l.length;for(i=0;i<u;++i)if(n=l[i],o=n.plugin,s=o[e],"function"==typeof s&&(r=[t].concat(a||[]),r.push(n.options),s.apply(o,r)===!1))return!1;return!0},descriptors:function(a){var i=a._plugins||(a._plugins={});if(i.id===this._cacheId)return i.descriptors;var n=[],o=[],r=a&&a.config||{},s=t.defaults.global.plugins,l=r.options&&r.options.plugins||{};return this._plugins.concat(r.plugins||[]).forEach(function(t){var a=n.indexOf(t);if(a===-1){var i=t.id,r=l[i];r!==!1&&(r===!0&&(r=e.clone(s[i])),n.push(t),o.push({plugin:t,options:r||{}}))}}),i.descriptors=o,i.id=this._cacheId,o}},t.pluginService=t.plugins,t.PluginBase=e.inherits({})}},{}],32:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e,a){return i.isArray(e)?i.longestText(t,a,e):t.measureText(e).width}function a(e){var a=i.getValueOrDefault,n=t.defaults.global,o=a(e.fontSize,n.defaultFontSize),r=a(e.fontStyle,n.defaultFontStyle),s=a(e.fontFamily,n.defaultFontFamily);return{size:o,style:r,family:s,font:i.fontString(o,r,s)}}var i=t.helpers;t.defaults.scale={display:!0,position:"left",gridLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1,drawBorder:!0,drawOnChartArea:!0,drawTicks:!0,tickMarkLength:10,zeroLineWidth:1,zeroLineColor:"rgba(0,0,0,0.25)",offsetGridLines:!1,borderDash:[],borderDashOffset:0},scaleLabel:{labelString:"",display:!1},ticks:{beginAtZero:!1,minRotation:0,maxRotation:50,mirror:!1,padding:0,reverse:!1,display:!0,autoSkip:!0,autoSkipPadding:0,labelOffset:0,callback:t.Ticks.formatters.values}},t.Scale=t.Element.extend({getPadding:function(){var t=this;return{left:t.paddingLeft||0,top:t.paddingTop||0,right:t.paddingRight||0,bottom:t.paddingBottom||0}},beforeUpdate:function(){i.callCallback(this.options.beforeUpdate,[this])},update:function(t,e,a){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i.extend({left:0,right:0,top:0,bottom:0},a),n.longestTextCache=n.longestTextCache||{},n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeDataLimits(),n.determineDataLimits(),n.afterDataLimits(),n.beforeBuildTicks(),n.buildTicks(),n.afterBuildTicks(),n.beforeTickToLabelConversion(),n.convertTicksToLabels(),n.afterTickToLabelConversion(),n.beforeCalculateTickRotation(),n.calculateTickRotation(),n.afterCalculateTickRotation(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:function(){i.callCallback(this.options.afterUpdate,[this])},beforeSetDimensions:function(){i.callCallback(this.options.beforeSetDimensions,[this])},setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0},afterSetDimensions:function(){i.callCallback(this.options.afterSetDimensions,[this])},beforeDataLimits:function(){i.callCallback(this.options.beforeDataLimits,[this])},determineDataLimits:i.noop,afterDataLimits:function(){i.callCallback(this.options.afterDataLimits,[this])},beforeBuildTicks:function(){i.callCallback(this.options.beforeBuildTicks,[this])},buildTicks:i.noop,afterBuildTicks:function(){i.callCallback(this.options.afterBuildTicks,[this])},beforeTickToLabelConversion:function(){i.callCallback(this.options.beforeTickToLabelConversion,[this])},convertTicksToLabels:function(){var t=this,e=t.options.ticks;t.ticks=t.ticks.map(e.userCallback||e.callback)},afterTickToLabelConversion:function(){i.callCallback(this.options.afterTickToLabelConversion,[this])},beforeCalculateTickRotation:function(){i.callCallback(this.options.beforeCalculateTickRotation,[this])},calculateTickRotation:function(){var t=this,e=t.ctx,n=t.options.ticks,o=a(n);e.font=o.font;var r=n.minRotation||0;if(t.options.display&&t.isHorizontal())for(var s,l,u=i.longestText(e,o.font,t.ticks,t.longestTextCache),d=u,c=t.getPixelForTick(1)-t.getPixelForTick(0)-6;d>c&&r<n.maxRotation;){var h=i.toRadians(r);if(s=Math.cos(h),l=Math.sin(h),l*u>t.maxHeight){r--;break}r++,d=s*u}t.labelRotation=r},afterCalculateTickRotation:function(){i.callCallback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){i.callCallback(this.options.beforeFit,[this])},fit:function(){var t=this,n=t.minSize={width:0,height:0},o=t.options,r=o.ticks,s=o.scaleLabel,l=o.gridLines,u=o.display,d=t.isHorizontal(),c=a(r),h=1.5*a(s).size,f=o.gridLines.tickMarkLength;if(d?n.width=t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:n.width=u&&l.drawTicks?f:0,d?n.height=u&&l.drawTicks?f:0:n.height=t.maxHeight,s.display&&u&&(d?n.height+=h:n.width+=h),r.display&&u){var g=i.longestText(t.ctx,c.font,t.ticks,t.longestTextCache),p=i.numberOfLabelLines(t.ticks),m=.5*c.size;if(d){t.longestLabelWidth=g;var v=i.toRadians(t.labelRotation),b=Math.cos(v),x=Math.sin(v),y=x*g+c.size*p+m*p;n.height=Math.min(t.maxHeight,n.height+y),t.ctx.font=c.font;var k=t.ticks[0],S=e(t.ctx,k,c.font),M=t.ticks[t.ticks.length-1],w=e(t.ctx,M,c.font);0!==t.labelRotation?(t.paddingLeft="bottom"===o.position?b*S+3:b*m+3,t.paddingRight="bottom"===o.position?b*m+3:b*w+3):(t.paddingLeft=S/2+3,t.paddingRight=w/2+3)}else r.mirror?g=0:g+=t.options.ticks.padding,n.width+=g,t.paddingTop=c.size/2,t.paddingBottom=c.size/2}t.handleMargins(),t.width=n.width,t.height=n.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){i.callCallback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){return null===t||"undefined"==typeof t?NaN:"number"!=typeof t||isFinite(t)?"object"==typeof t?t instanceof Date||t.isValid?t:this.getRightValue(this.isHorizontal()?t.x:t.y):t:NaN},getLabelForIndex:i.noop,getPixelForValue:i.noop,getValueForPixel:i.noop,getPixelForTick:function(t,e){var a=this;if(a.isHorizontal()){var i=a.width-(a.paddingLeft+a.paddingRight),n=i/Math.max(a.ticks.length-(a.options.gridLines.offsetGridLines?0:1),1),o=n*t+a.paddingLeft;e&&(o+=n/2);var r=a.left+Math.round(o);return r+=a.isFullWidth()?a.margins.left:0}var s=a.height-(a.paddingTop+a.paddingBottom);return a.top+t*(s/(a.ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var a=e.width-(e.paddingLeft+e.paddingRight),i=a*t+e.paddingLeft,n=e.left+Math.round(i);return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this,e=t.min,a=t.max;return t.beginAtZero?0:e<0&&a<0?a:e>0&&a>0?e:0},draw:function(e){var n=this,o=n.options;if(o.display){var r,s,l=n.ctx,u=t.defaults.global,d=o.ticks,c=o.gridLines,h=o.scaleLabel,f=0!==n.labelRotation,g=d.autoSkip,p=n.isHorizontal();d.maxTicksLimit&&(s=d.maxTicksLimit);var m=i.getValueOrDefault(d.fontColor,u.defaultFontColor),v=a(d),b=c.drawTicks?c.tickMarkLength:0,x=i.getValueOrDefault(c.borderDash,u.borderDash),y=i.getValueOrDefault(c.borderDashOffset,u.borderDashOffset),k=i.getValueOrDefault(h.fontColor,u.defaultFontColor),S=a(h),M=i.toRadians(n.labelRotation),w=Math.cos(M),C=n.longestLabelWidth*w;l.fillStyle=m;var I=[];if(p){if(r=!1,f&&(C/=2),(C+d.autoSkipPadding)*n.ticks.length>n.width-(n.paddingLeft+n.paddingRight)&&(r=1+Math.floor((C+d.autoSkipPadding)*n.ticks.length/(n.width-(n.paddingLeft+n.paddingRight)))),s&&n.ticks.length>s)for(;!r||n.ticks.length/(r||1)>s;)r||(r=1),r+=1;g||(r=!1)}var D="right"===o.position?n.left:n.right-b,A="right"===o.position?n.left+b:n.right,T="bottom"===o.position?n.top:n.bottom-b,P="bottom"===o.position?n.top+b:n.bottom;if(i.each(n.ticks,function(t,a){if(void 0!==t&&null!==t){var s=n.ticks.length===a+1,l=r>1&&a%r>0||a%r===0&&a+r>=n.ticks.length;if((!l||s)&&void 0!==t&&null!==t){var u,h;a===("undefined"!=typeof n.zeroLineIndex?n.zeroLineIndex:0)?(u=c.zeroLineWidth,h=c.zeroLineColor):(u=i.getValueAtIndexOrDefault(c.lineWidth,a),h=i.getValueAtIndexOrDefault(c.color,a));var g,m,v,k,S,w,C,_,F,V,R="middle",O="middle";if(p){"bottom"===o.position?(O=f?"middle":"top",R=f?"right":"center",V=n.top+b):(O=f?"middle":"bottom",R=f?"left":"center",V=n.bottom-b);var L=n.getPixelForTick(a)+i.aliasPixel(u);F=n.getPixelForTick(a,c.offsetGridLines)+d.labelOffset,g=v=S=C=L,m=T,k=P,w=e.top,_=e.bottom}else{var B,z="left"===o.position,W=d.padding;d.mirror?(R=z?"left":"right",B=W):(R=z?"right":"left",B=b+W),F=z?n.right-B:n.left+B;var N=n.getPixelForTick(a);N+=i.aliasPixel(u),V=n.getPixelForTick(a,c.offsetGridLines),g=D,v=A,S=e.left,C=e.right,m=k=w=_=N}I.push({tx1:g,ty1:m,tx2:v,ty2:k,x1:S,y1:w,x2:C,y2:_,labelX:F,labelY:V,glWidth:u,glColor:h,glBorderDash:x,glBorderDashOffset:y,rotation:-1*M,label:t,textBaseline:O,textAlign:R})}}}),i.each(I,function(t){if(c.display&&(l.save(),l.lineWidth=t.glWidth,l.strokeStyle=t.glColor,l.setLineDash&&(l.setLineDash(t.glBorderDash),l.lineDashOffset=t.glBorderDashOffset),l.beginPath(),c.drawTicks&&(l.moveTo(t.tx1,t.ty1),l.lineTo(t.tx2,t.ty2)),c.drawOnChartArea&&(l.moveTo(t.x1,t.y1),l.lineTo(t.x2,t.y2)),l.stroke(),l.restore()),d.display){l.save(),l.translate(t.labelX,t.labelY),l.rotate(t.rotation),l.font=v.font,l.textBaseline=t.textBaseline,l.textAlign=t.textAlign;var e=t.label;if(i.isArray(e))for(var a=0,n=0;a<e.length;++a)l.fillText(""+e[a],0,n),n+=1.5*v.size;else l.fillText(e,0,0);l.restore()}}),h.display){var _,F,V=0;if(p)_=n.left+(n.right-n.left)/2,F="bottom"===o.position?n.bottom-S.size/2:n.top+S.size/2;else{var R="left"===o.position;_=R?n.left+S.size/2:n.right-S.size/2,F=n.top+(n.bottom-n.top)/2,V=R?-.5*Math.PI:.5*Math.PI}l.save(),l.translate(_,F),l.rotate(V),l.textAlign="center",l.textBaseline="middle",l.fillStyle=k,l.font=S.font,l.fillText(h.labelString,0,0),l.restore()}if(c.drawBorder){l.lineWidth=i.getValueAtIndexOrDefault(c.lineWidth,0),l.strokeStyle=i.getValueAtIndexOrDefault(c.color,0);var O=n.left,L=n.right,B=n.top,z=n.bottom,W=i.aliasPixel(l.lineWidth);p?(B=z="top"===o.position?n.bottom:n.top,B+=W,z+=W):(O=L="left"===o.position?n.right:n.left,O+=W,L+=W),l.beginPath(),l.moveTo(O,B),l.lineTo(L,z),l.stroke()}}}})}},{}],33:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.scaleService={constructors:{},defaults:{},registerScaleType:function(t,a,i){this.constructors[t]=a,this.defaults[t]=e.clone(i)},getScaleConstructor:function(t){return this.constructors.hasOwnProperty(t)?this.constructors[t]:void 0},getScaleDefaults:function(a){return this.defaults.hasOwnProperty(a)?e.scaleMerge(t.defaults.scale,this.defaults[a]):{}},updateScaleDefaults:function(t,a){var i=this.defaults;i.hasOwnProperty(t)&&(i[t]=e.extend(i[t],a))},addScalesToLayout:function(a){e.each(a.scales,function(e){t.layoutService.addBox(a,e)})}}}},{}],34:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers;t.Ticks={generators:{linear:function(t,a){var i,n=[];if(t.stepSize&&t.stepSize>0)i=t.stepSize;else{var o=e.niceNum(a.max-a.min,!1);i=e.niceNum(o/(t.maxTicks-1),!0)}var r=Math.floor(a.min/i)*i,s=Math.ceil(a.max/i)*i;t.min&&t.max&&t.stepSize&&e.almostWhole((t.max-t.min)/t.stepSize,i/1e3)&&(r=t.min,s=t.max);var l=(s-r)/i;l=e.almostEquals(l,Math.round(l),i/1e3)?Math.round(l):Math.ceil(l),n.push(void 0!==t.min?t.min:r);for(var u=1;u<l;++u)n.push(r+u*i);return n.push(void 0!==t.max?t.max:s),n},logarithmic:function(t,a){var i,n,o=[],r=e.getValueOrDefault,s=r(t.min,Math.pow(10,Math.floor(e.log10(a.min)))),l=Math.floor(e.log10(a.max)),u=Math.ceil(a.max/Math.pow(10,l));0===s?(i=Math.floor(e.log10(a.minNotZero)),n=Math.floor(a.minNotZero/Math.pow(10,i)),o.push(s),s=n*Math.pow(10,i)):(i=Math.floor(e.log10(s)),n=Math.floor(s/Math.pow(10,i)));do o.push(s),++n,10===n&&(n=1,++i),s=n*Math.pow(10,i);while(i<l||i===l&&n<u);var d=r(t.max,s);return o.push(d),o}},formatters:{values:function(t){return e.isArray(t)?t:""+t},linear:function(t,a,i){var n=i.length>3?i[2]-i[1]:i[1]-i[0];Math.abs(n)>1&&t!==Math.floor(t)&&(n=t-Math.floor(t));var o=e.log10(Math.abs(n)),r="";if(0!==t){var s=-1*Math.floor(o);s=Math.max(Math.min(s,20),0),r=t.toFixed(s)}else r="0";return r},logarithmic:function(t,a,i){var n=t/Math.pow(10,Math.floor(e.log10(t)));return 0===t?"0":1===n||2===n||5===n||0===a||a===i.length-1?t.toExponential():""}}}}},{}],35:[function(t,e,a){"use strict";e.exports=function(t){function e(e,a){var i=new t.Title({ctx:e.chart.ctx,options:a,chart:e});e.titleBlock=i,t.layoutService.addBox(e,i)}var a=t.helpers;t.defaults.global.title={display:!1,position:"top",fullWidth:!0,fontStyle:"bold",padding:10,text:""};var i=a.noop;t.Title=t.Element.extend({initialize:function(t){var e=this;a.extend(e,t),e.legendHitBoxes=[]},beforeUpdate:i,update:function(t,e,a){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=a,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:i,beforeSetDimensions:i,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:i,beforeBuildLabels:i,buildLabels:i,afterBuildLabels:i,beforeFit:i,fit:function(){var e=this,i=a.getValueOrDefault,n=e.options,o=t.defaults.global,r=n.display,s=i(n.fontSize,o.defaultFontSize),l=e.minSize;e.isHorizontal()?(l.width=e.maxWidth,l.height=r?s+2*n.padding:0):(l.width=r?s+2*n.padding:0,l.height=e.maxHeight),e.width=l.width,e.height=l.height},afterFit:i,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var e=this,i=e.ctx,n=a.getValueOrDefault,o=e.options,r=t.defaults.global;if(o.display){var s,l,u,d=n(o.fontSize,r.defaultFontSize),c=n(o.fontStyle,r.defaultFontStyle),h=n(o.fontFamily,r.defaultFontFamily),f=a.fontString(d,c,h),g=0,p=e.top,m=e.left,v=e.bottom,b=e.right;i.fillStyle=n(o.fontColor,r.defaultFontColor),i.font=f,e.isHorizontal()?(s=m+(b-m)/2,l=p+(v-p)/2,u=b-m):(s="left"===o.position?m+d/2:b-d/2,l=p+(v-p)/2,u=v-p,g=Math.PI*("left"===o.position?-.5:.5)),i.save(),i.translate(s,l),i.rotate(g),i.textAlign="center",i.textBaseline="middle",i.fillText(o.text,0,0,u),i.restore()}}}),t.plugins.register({beforeInit:function(t){var a=t.options.title;a&&e(t,a)},beforeUpdate:function(i){var n=i.options.title;n?(n=a.configMerge(t.defaults.global.title,n),i.titleBlock?i.titleBlock.options=n:e(i,n)):(t.layoutService.removeBox(i,i.titleBlock),delete i.titleBlock)}})}},{}],36:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){var a=l.color(t);return a.alpha(e*a.alpha()).rgbaString()}function a(t,e){return e&&(l.isArray(e)?Array.prototype.push.apply(t,e):t.push(e)),t}function i(t){var e=t._xScale,a=t._yScale||t._scale,i=t._index,n=t._datasetIndex;return{xLabel:e?e.getLabelForIndex(i,n):"",yLabel:a?a.getLabelForIndex(i,n):"",index:i,datasetIndex:n,x:t._model.x,y:t._model.y}}function n(e){var a=t.defaults.global,i=l.getValueOrDefault;return{xPadding:e.xPadding,yPadding:e.yPadding,xAlign:e.xAlign,yAlign:e.yAlign,bodyFontColor:e.bodyFontColor,_bodyFontFamily:i(e.bodyFontFamily,a.defaultFontFamily),_bodyFontStyle:i(e.bodyFontStyle,a.defaultFontStyle),_bodyAlign:e.bodyAlign,bodyFontSize:i(e.bodyFontSize,a.defaultFontSize),bodySpacing:e.bodySpacing,titleFontColor:e.titleFontColor,_titleFontFamily:i(e.titleFontFamily,a.defaultFontFamily),_titleFontStyle:i(e.titleFontStyle,a.defaultFontStyle),titleFontSize:i(e.titleFontSize,a.defaultFontSize),_titleAlign:e.titleAlign,titleSpacing:e.titleSpacing,titleMarginBottom:e.titleMarginBottom,footerFontColor:e.footerFontColor,_footerFontFamily:i(e.footerFontFamily,a.defaultFontFamily),_footerFontStyle:i(e.footerFontStyle,a.defaultFontStyle),footerFontSize:i(e.footerFontSize,a.defaultFontSize),_footerAlign:e.footerAlign,footerSpacing:e.footerSpacing,footerMarginTop:e.footerMarginTop,caretSize:e.caretSize,cornerRadius:e.cornerRadius,backgroundColor:e.backgroundColor,opacity:0,legendColorBackground:e.multiKeyBackground,displayColors:e.displayColors}}function o(t,e){var a=t._chart.ctx,i=2*e.yPadding,n=0,o=e.body,r=o.reduce(function(t,e){return t+e.before.length+e.lines.length+e.after.length},0);r+=e.beforeBody.length+e.afterBody.length;var s=e.title.length,u=e.footer.length,d=e.titleFontSize,c=e.bodyFontSize,h=e.footerFontSize;i+=s*d,i+=s?(s-1)*e.titleSpacing:0,i+=s?e.titleMarginBottom:0,i+=r*c,i+=r?(r-1)*e.bodySpacing:0,i+=u?e.footerMarginTop:0,i+=u*h,i+=u?(u-1)*e.footerSpacing:0;var f=0,g=function(t){n=Math.max(n,a.measureText(t).width+f)};return a.font=l.fontString(d,e._titleFontStyle,e._titleFontFamily),l.each(e.title,g),a.font=l.fontString(c,e._bodyFontStyle,e._bodyFontFamily),l.each(e.beforeBody.concat(e.afterBody),g),f=e.displayColors?c+2:0,l.each(o,function(t){l.each(t.before,g),l.each(t.lines,g),l.each(t.after,g)}),f=0,a.font=l.fontString(h,e._footerFontStyle,e._footerFontFamily),l.each(e.footer,g),n+=2*e.xPadding,{width:n,height:i}}function r(t,e){var a=t._model,i=t._chart,n=t._chartInstance.chartArea,o="center",r="center";a.y<e.height?r="top":a.y>i.height-e.height&&(r="bottom");var s,l,u,d,c,h=(n.left+n.right)/2,f=(n.top+n.bottom)/2;"center"===r?(s=function(t){return t<=h},l=function(t){return t>h}):(s=function(t){return t<=e.width/2},l=function(t){return t>=i.width-e.width/2}),u=function(t){return t+e.width>i.width},d=function(t){return t-e.width<0},c=function(t){return t<=f?"top":"bottom"},s(a.x)?(o="left",u(a.x)&&(o="center",r=c(a.y))):l(a.x)&&(o="right",d(a.x)&&(o="center",r=c(a.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:o,yAlign:g.yAlign?g.yAlign:r}}function s(t,e,a){var i=t.x,n=t.y,o=t.caretSize,r=t.caretPadding,s=t.cornerRadius,l=a.xAlign,u=a.yAlign,d=o+r,c=s+r;return"right"===l?i-=e.width:"center"===l&&(i-=e.width/2),"top"===u?n+=d:n-="bottom"===u?e.height+d:e.height/2,"center"===u?"left"===l?i+=d:"right"===l&&(i-=d):"left"===l?i-=c:"right"===l&&(i+=c),{x:i,y:n}}var l=t.helpers;t.defaults.global.tooltips={enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,callbacks:{beforeTitle:l.noop,title:function(t,e){var a="",i=e.labels,n=i?i.length:0;if(t.length>0){var o=t[0];o.xLabel?a=o.xLabel:n>0&&o.index<n&&(a=i[o.index])}return a},afterTitle:l.noop,beforeBody:l.noop,beforeLabel:l.noop,label:function(t,e){var a=e.datasets[t.datasetIndex].label||"";return a+": "+t.yLabel},labelColor:function(t,e){var a=e.getDatasetMeta(t.datasetIndex),i=a.data[t.index],n=i._view;return{borderColor:n.borderColor,backgroundColor:n.backgroundColor}},afterLabel:l.noop,afterBody:l.noop,beforeFooter:l.noop,footer:l.noop,afterFooter:l.noop}},t.Tooltip=t.Element.extend({initialize:function(){this._model=n(this._options)},getTitle:function(){var t=this,e=t._options,i=e.callbacks,n=i.beforeTitle.apply(t,arguments),o=i.title.apply(t,arguments),r=i.afterTitle.apply(t,arguments),s=[];return s=a(s,n),s=a(s,o),s=a(s,r)},getBeforeBody:function(){var t=this._options.callbacks.beforeBody.apply(this,arguments);return l.isArray(t)?t:void 0!==t?[t]:[]},getBody:function(t,e){var i=this,n=i._options.callbacks,o=[];return l.each(t,function(t){var r={before:[],lines:[],after:[]};a(r.before,n.beforeLabel.call(i,t,e)),a(r.lines,n.label.call(i,t,e)),a(r.after,n.afterLabel.call(i,t,e)),o.push(r)}),o},getAfterBody:function(){var t=this._options.callbacks.afterBody.apply(this,arguments);return l.isArray(t)?t:void 0!==t?[t]:[]},getFooter:function(){var t=this,e=t._options.callbacks,i=e.beforeFooter.apply(t,arguments),n=e.footer.apply(t,arguments),o=e.afterFooter.apply(t,arguments),r=[];return r=a(r,i),r=a(r,n),r=a(r,o)},update:function(e){var a,u,d=this,c=d._options,h=d._model,f=d._model=n(c),g=d._active,p=d._data,m=d._chartInstance,v={xAlign:h.xAlign,yAlign:h.yAlign},b={x:h.x,y:h.y},x={width:h.width,height:h.height},y={x:h.caretX,y:h.caretY};if(g.length){f.opacity=1;var k=[];y=t.Tooltip.positioners[c.position](g,d._eventPosition);var S=[];for(a=0,u=g.length;a<u;++a)S.push(i(g[a]));c.filter&&(S=S.filter(function(t){return c.filter(t,p)})),c.itemSort&&(S=S.sort(function(t,e){return c.itemSort(t,e,p)})),l.each(S,function(t){k.push(c.callbacks.labelColor.call(d,t,m))}),f.title=d.getTitle(S,p),f.beforeBody=d.getBeforeBody(S,p),f.body=d.getBody(S,p),f.afterBody=d.getAfterBody(S,p),f.footer=d.getFooter(S,p),f.x=Math.round(y.x),f.y=Math.round(y.y),f.caretPadding=l.getValueOrDefault(y.padding,2),f.labelColors=k,f.dataPoints=S,x=o(this,f),v=r(this,x),b=s(f,x,v)}else f.opacity=0;return f.xAlign=v.xAlign,f.yAlign=v.yAlign,f.x=b.x,f.y=b.y,f.width=x.width,f.height=x.height,f.caretX=y.x,f.caretY=y.y,d._model=f,e&&c.custom&&c.custom.call(d,f),d},drawCaret:function(t,a,i){var n,o,r,s,l,u,d=this._view,c=this._chart.ctx,h=d.caretSize,f=d.cornerRadius,g=d.xAlign,p=d.yAlign,m=t.x,v=t.y,b=a.width,x=a.height;"center"===p?("left"===g?(n=m,o=n-h,r=n):(n=m+b,o=n+h,r=n),l=v+x/2,s=l-h,u=l+h):("left"===g?(n=m+f,o=n+h,r=o+h):"right"===g?(n=m+b-f,o=n-h,r=o-h):(o=m+b/2,n=o-h,r=o+h),"top"===p?(s=v,l=s-h,u=s):(s=v+x,l=s+h,u=s)),c.fillStyle=e(d.backgroundColor,i),c.beginPath(),c.moveTo(n,s),c.lineTo(o,l),c.lineTo(r,u),c.closePath(),c.fill()},drawTitle:function(t,a,i,n){var o=a.title;if(o.length){i.textAlign=a._titleAlign,i.textBaseline="top";var r=a.titleFontSize,s=a.titleSpacing;i.fillStyle=e(a.titleFontColor,n),i.font=l.fontString(r,a._titleFontStyle,a._titleFontFamily);var u,d;for(u=0,d=o.length;u<d;++u)i.fillText(o[u],t.x,t.y),t.y+=r+s,u+1===o.length&&(t.y+=a.titleMarginBottom-s)}},drawBody:function(t,a,i,n){var o=a.bodyFontSize,r=a.bodySpacing,s=a.body;i.textAlign=a._bodyAlign,i.textBaseline="top";var u=e(a.bodyFontColor,n);i.fillStyle=u,i.font=l.fontString(o,a._bodyFontStyle,a._bodyFontFamily);var d=0,c=function(e){i.fillText(e,t.x+d,t.y),t.y+=o+r};l.each(a.beforeBody,c);var h=a.displayColors;d=h?o+2:0,l.each(s,function(r,s){l.each(r.before,c),l.each(r.lines,function(r){h&&(i.fillStyle=e(a.legendColorBackground,n),i.fillRect(t.x,t.y,o,o),i.strokeStyle=e(a.labelColors[s].borderColor,n),i.strokeRect(t.x,t.y,o,o),i.fillStyle=e(a.labelColors[s].backgroundColor,n),i.fillRect(t.x+1,t.y+1,o-2,o-2),i.fillStyle=u),c(r)}),l.each(r.after,c)}),d=0,l.each(a.afterBody,c),t.y-=r},drawFooter:function(t,a,i,n){var o=a.footer;o.length&&(t.y+=a.footerMarginTop,i.textAlign=a._footerAlign,i.textBaseline="top",i.fillStyle=e(a.footerFontColor,n),i.font=l.fontString(a.footerFontSize,a._footerFontStyle,a._footerFontFamily),l.each(o,function(e){i.fillText(e,t.x,t.y),t.y+=a.footerFontSize+a.footerSpacing}))},drawBackground:function(t,a,i,n,o){i.fillStyle=e(a.backgroundColor,o),l.drawRoundedRectangle(i,t.x,t.y,n.width,n.height,a.cornerRadius),i.fill()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var a={width:e.width,height:e.height},i={x:e.x,y:e.y},n=Math.abs(e.opacity<.001)?0:e.opacity;this._options.enabled&&(this.drawBackground(i,e,t,a,n),this.drawCaret(i,a,n),i.x+=e.xPadding,i.y+=e.yPadding,this.drawTitle(i,e,t,n),this.drawBody(i,e,t,n),this.drawFooter(i,e,t,n))}},handleEvent:function(t){var e=this,a=e._options,i=!1;if(e._lastActive=e._lastActive||[],"mouseout"===t.type?e._active=[]:e._active=e._chartInstance.getElementsAtEventForMode(t,a.mode,a),i=!l.arrayEquals(e._active,e._lastActive),e._lastActive=e._active,a.enabled||a.custom){e._eventPosition={x:t.x,y:t.y};var n=e._model;e.update(!0),e.pivot(),i|=n.x!==e._model.x||n.y!==e._model.y}return i}}),t.Tooltip.positioners={average:function(t){if(!t.length)return!1;var e,a,i=0,n=0,o=0;for(e=0,a=t.length;e<a;++e){var r=t[e];if(r&&r.hasValue()){var s=r.tooltipPosition();i+=s.x,n+=s.y,++o}}return{x:Math.round(i/o),y:Math.round(n/o)}},nearest:function(t,e){var a,i,n,o=e.x,r=e.y,s=Number.POSITIVE_INFINITY;for(i=0,n=t.length;i<n;++i){var u=t[i];if(u&&u.hasValue()){var d=u.getCenterPoint(),c=l.distanceBetweenPoints(e,d);c<s&&(s=c,a=u)}}if(a){var h=a.tooltipPosition();o=h.x,r=h.y}return{x:o,y:r}}}}},{}],37:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a=t.defaults.global;a.elements.arc={backgroundColor:a.defaultColor,borderColor:"#fff",borderWidth:2},t.elements.Arc=t.Element.extend({inLabelRange:function(t){var e=this._view;return!!e&&Math.pow(t-e.x,2)<Math.pow(e.radius+e.hoverRadius,2)},inRange:function(t,a){var i=this._view;if(i){for(var n=e.getAngleFromPoint(i,{x:t,y:a}),o=n.angle,r=n.distance,s=i.startAngle,l=i.endAngle;l<s;)l+=2*Math.PI;for(;o>l;)o-=2*Math.PI;for(;o<s;)o+=2*Math.PI;var u=o>=s&&o<=l,d=r>=i.innerRadius&&r<=i.outerRadius;return u&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,a=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*a,y:t.y+Math.sin(e)*a}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,a=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*a,y:t.y+Math.sin(e)*a}},draw:function(){var t=this._chart.ctx,e=this._view,a=e.startAngle,i=e.endAngle;t.beginPath(),t.arc(e.x,e.y,e.outerRadius,a,i),t.arc(e.x,e.y,e.innerRadius,i,a,!0),t.closePath(),t.strokeStyle=e.borderColor,t.lineWidth=e.borderWidth,t.fillStyle=e.backgroundColor,t.fill(),t.lineJoin="bevel",e.borderWidth&&t.stroke()}})}},{}],38:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a=t.defaults.global;t.defaults.global.elements.line={tension:.4,backgroundColor:a.defaultColor,borderWidth:3,borderColor:a.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0},t.elements.Line=t.Element.extend({draw:function(){function t(t,e){var a=e._view;e._view.steppedLine===!0?(l.lineTo(a.x,t._view.y),l.lineTo(a.x,a.y)):0===e._view.tension?l.lineTo(a.x,a.y):l.bezierCurveTo(t._view.controlPointNextX,t._view.controlPointNextY,a.controlPointPreviousX,a.controlPointPreviousY,a.x,a.y)}var i=this,n=i._view,o=n.spanGaps,r=n.scaleZero,s=i._loop;s||("top"===n.fill?r=n.scaleTop:"bottom"===n.fill&&(r=n.scaleBottom));var l=i._chart.ctx;l.save();var u=i._children.slice(),d=-1;s&&u.length&&u.push(u[0]);var c,h,f,g;if(u.length&&n.fill){for(l.beginPath(),c=0;c<u.length;++c)h=u[c],f=e.previousItem(u,c),g=h._view,0===c?(s?l.moveTo(r.x,r.y):l.moveTo(g.x,r),g.skip||(d=c,l.lineTo(g.x,g.y))):(f=d===-1?f:u[d],g.skip?o||d!==c-1||(s?l.lineTo(r.x,r.y):l.lineTo(f._view.x,r)):(d!==c-1?o&&d!==-1?t(f,h):s?l.lineTo(g.x,g.y):(l.lineTo(g.x,r),l.lineTo(g.x,g.y)):t(f,h),d=c));s||d===-1||l.lineTo(u[d]._view.x,r),l.fillStyle=n.backgroundColor||a.defaultColor,l.closePath(),l.fill()}var p=a.elements.line;for(l.lineCap=n.borderCapStyle||p.borderCapStyle,l.setLineDash&&l.setLineDash(n.borderDash||p.borderDash),l.lineDashOffset=n.borderDashOffset||p.borderDashOffset,l.lineJoin=n.borderJoinStyle||p.borderJoinStyle,l.lineWidth=n.borderWidth||p.borderWidth,l.strokeStyle=n.borderColor||a.defaultColor,l.beginPath(),d=-1,c=0;c<u.length;++c)h=u[c],f=e.previousItem(u,c),g=h._view,0===c?g.skip||(l.moveTo(g.x,g.y),d=c):(f=d===-1?f:u[d],g.skip||(d!==c-1&&!o||d===-1?l.moveTo(g.x,g.y):t(f,h),d=c));l.stroke(),l.restore()}})}},{}],39:[function(t,e,a){"use strict";e.exports=function(t){function e(t){var e=this._view;return!!e&&Math.pow(t-e.x,2)<Math.pow(e.radius+e.hitRadius,2)}function a(t){var e=this._view;return!!e&&Math.pow(t-e.y,2)<Math.pow(e.radius+e.hitRadius,2)}var i=t.helpers,n=t.defaults.global,o=n.defaultColor;n.elements.point={radius:3,pointStyle:"circle",backgroundColor:o,borderWidth:1,borderColor:o,hitRadius:1,hoverRadius:4,hoverBorderWidth:1},t.elements.Point=t.Element.extend({inRange:function(t,e){var a=this._view;return!!a&&Math.pow(t-a.x,2)+Math.pow(e-a.y,2)<Math.pow(a.hitRadius+a.radius,2)},inLabelRange:e,inXRange:e,inYRange:a,getCenterPoint:function(){var t=this._view;return{x:t.x,y:t.y}},getArea:function(){return Math.PI*Math.pow(this._view.radius,2)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y,padding:t.radius+t.borderWidth}},draw:function(e){var a=this._view,r=this._model,s=this._chart.ctx,l=a.pointStyle,u=a.radius,d=a.x,c=a.y,h=t.helpers.color,f=1.01,g=0;a.skip||(s.strokeStyle=a.borderColor||o,s.lineWidth=i.getValueOrDefault(a.borderWidth,n.elements.point.borderWidth),s.fillStyle=a.backgroundColor||o,void 0!==e&&(r.x<e.left||e.right*f<r.x||r.y<e.top||e.bottom*f<r.y)&&(r.x<e.left?g=(d-r.x)/(e.left-r.x):e.right*f<r.x?g=(r.x-d)/(r.x-e.right):r.y<e.top?g=(c-r.y)/(e.top-r.y):e.bottom*f<r.y&&(g=(r.y-c)/(r.y-e.bottom)),g=Math.round(100*g)/100,s.strokeStyle=h(s.strokeStyle).alpha(g).rgbString(),s.fillStyle=h(s.fillStyle).alpha(g).rgbString()),t.canvasHelpers.drawPoint(s,l,u,d,c))}})}},{}],40:[function(t,e,a){"use strict";e.exports=function(t){function e(t){return void 0!==t._view.width}function a(t){var a,i,n,o,r=t._view;if(e(t)){var s=r.width/2;a=r.x-s,i=r.x+s,n=Math.min(r.y,r.base),o=Math.max(r.y,r.base)}else{var l=r.height/2;a=Math.min(r.x,r.base),i=Math.max(r.x,r.base),n=r.y-l,o=r.y+l}return{left:a,top:n,right:i,bottom:o}}var i=t.defaults.global;i.elements.rectangle={backgroundColor:i.defaultColor,borderWidth:0,borderColor:i.defaultColor,borderSkipped:"bottom"},t.elements.Rectangle=t.Element.extend({draw:function(){function t(t){return v[(x+t)%4]}var e,a,i,n,o,r,s,l=this._chart.ctx,u=this._view,d=u.borderWidth;if(u.horizontal?(e=u.base,a=u.x,i=u.y-u.height/2,n=u.y+u.height/2,o=a>e?1:-1,r=1,s=u.borderSkipped||"left"):(e=u.x-u.width/2,a=u.x+u.width/2,i=u.y,n=u.base,o=1,r=n>i?1:-1,s=u.borderSkipped||"bottom"),d){var c=Math.min(Math.abs(e-a),Math.abs(i-n));d=d>c?c:d;var h=d/2,f=e+("left"!==s?h*o:0),g=a+("right"!==s?-h*o:0),p=i+("top"!==s?h*r:0),m=n+("bottom"!==s?-h*r:0);f!==g&&(i=p,n=m),p!==m&&(e=f,a=g)}l.beginPath(),l.fillStyle=u.backgroundColor,l.strokeStyle=u.borderColor,l.lineWidth=d;var v=[[e,n],[e,i],[a,i],[a,n]],b=["bottom","left","top","right"],x=b.indexOf(s,0);x===-1&&(x=0);var y=t(0);l.moveTo(y[0],y[1]);for(var k=1;k<4;k++)y=t(k),l.lineTo(y[0],y[1]);l.fill(),d&&l.stroke()},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){var i=!1;if(this._view){var n=a(this);i=t>=n.left&&t<=n.right&&e>=n.top&&e<=n.bottom}return i},inLabelRange:function(t,i){var n=this;if(!n._view)return!1;var o=!1,r=a(n);return o=e(n)?t>=r.left&&t<=r.right:i>=r.top&&i<=r.bottom},inXRange:function(t){var e=a(this);return t>=e.left&&t<=e.right},inYRange:function(t){var e=a(this);return t>=e.top&&t<=e.bottom},getCenterPoint:function(){var t,a,i=this._view;return e(this)?(t=i.x,a=(i.y+i.base)/2):(t=(i.x+i.base)/2,a=i.y),{x:t,y:a}},getArea:function(){var t=this._view;return t.width*Math.abs(t.y-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}})}},{}],41:[function(t,e,a){"use strict";e.exports=function(t){function e(t,e){var a=l.getStyle(t,e),i=a&&a.match(/(\d+)px/);return i?Number(i[1]):void 0}function a(t,a){var i=t.style,n=t.getAttribute("height"),o=t.getAttribute("width");if(t._chartjs={initial:{height:n,width:o,style:{display:i.display,height:i.height,width:i.width}}},i.display=i.display||"block",null===o||""===o){var r=e(t,"width");void 0!==r&&(t.width=r)}if(null===n||""===n)if(""===t.style.height)t.height=t.width/(a.options.aspectRatio||2);else{var s=e(t,"height");void 0!==r&&(t.height=s)}return t}function i(t,e,a,i,n){return{type:t,chart:e,native:n||null,x:void 0!==a?a:null,y:void 0!==i?i:null}}function n(t,e){ -var a=u[t.type]||t.type,n=l.getRelativePosition(t,e);return i(a,e,n.x,n.y,t)}function o(t){var e=document.createElement("iframe");return e.className="chartjs-hidden-iframe",e.style.cssText="display:block;overflow:hidden;border:0;margin:0;top:0;left:0;bottom:0;right:0;height:100%;width:100%;position:absolute;pointer-events:none;z-index:-1;",e.tabIndex=-1,l.addEvent(e,"load",function(){l.addEvent(e.contentWindow||e,"resize",t),t()}),e}function r(t,e,a){var n=t._chartjs={ticking:!1},r=function(){n.ticking||(n.ticking=!0,l.requestAnimFrame.call(window,function(){if(n.resizer)return n.ticking=!1,e(i("resize",a))}))};n.resizer=o(r),t.insertBefore(n.resizer,t.firstChild)}function s(t){if(t&&t._chartjs){var e=t._chartjs.resizer;e&&(e.parentNode.removeChild(e),t._chartjs.resizer=null),delete t._chartjs}}var l=t.helpers,u={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};return{acquireContext:function(t,e){if("string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas),t instanceof HTMLCanvasElement){var i=t.getContext&&t.getContext("2d");if(i instanceof CanvasRenderingContext2D)return a(t,e),i}return null},releaseContext:function(t){var e=t.canvas;if(e._chartjs){var a=e._chartjs.initial;["height","width"].forEach(function(t){var i=a[t];void 0===i||null===i?e.removeAttribute(t):e.setAttribute(t,i)}),l.each(a.style||{},function(t,a){e.style[a]=t}),e.width=e.width,delete e._chartjs}},addEventListener:function(t,e,a){var i=t.chart.canvas;if("resize"===e)return void r(i.parentNode,a,t.chart);var o=a._chartjs||(a._chartjs={}),s=o.proxies||(o.proxies={}),u=s[t.id+"_"+e]=function(e){a(n(e,t.chart))};l.addEvent(i,e,u)},removeEventListener:function(t,e,a){var i=t.chart.canvas;if("resize"===e)return void s(i.parentNode,a);var n=a._chartjs||{},o=n.proxies||{},r=o[t.id+"_"+e];r&&l.removeEvent(i,e,r)}}}},{}],42:[function(t,e,a){"use strict";var i=t(41);e.exports=function(t){t.platform={acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},t.helpers.extend(t.platform,i(t))}},{41:41}],43:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a={position:"bottom"},i=t.Scale.extend({getLabels:function(){var t=this.chart.data;return(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels},determineDataLimits:function(){var t=this,a=t.getLabels();t.minIndex=0,t.maxIndex=a.length-1;var i;void 0!==t.options.ticks.min&&(i=e.indexOf(a,t.options.ticks.min),t.minIndex=i!==-1?i:t.minIndex),void 0!==t.options.ticks.max&&(i=e.indexOf(a,t.options.ticks.max),t.maxIndex=i!==-1?i:t.maxIndex),t.min=a[t.minIndex],t.max=a[t.maxIndex]},buildTicks:function(){var t=this,e=t.getLabels();t.ticks=0===t.minIndex&&t.maxIndex===e.length-1?e:e.slice(t.minIndex,t.maxIndex+1)},getLabelForIndex:function(t,e){var a=this,i=a.chart.data,n=a.isHorizontal();return i.yLabels&&!n?a.getRightValue(i.datasets[e].data[t]):a.ticks[t-a.minIndex]},getPixelForValue:function(t,e,a,i){var n=this,o=Math.max(n.maxIndex+1-n.minIndex-(n.options.gridLines.offsetGridLines?0:1),1);if(void 0!==t&&isNaN(e)){var r=n.getLabels(),s=r.indexOf(t);e=s!==-1?s:e}if(n.isHorizontal()){var l=n.width/o,u=l*(e-n.minIndex);return(n.options.gridLines.offsetGridLines&&i||n.maxIndex===n.minIndex&&i)&&(u+=l/2),n.left+Math.round(u)}var d=n.height/o,c=d*(e-n.minIndex);return n.options.gridLines.offsetGridLines&&i&&(c+=d/2),n.top+Math.round(c)},getPixelForTick:function(t,e){return this.getPixelForValue(this.ticks[t],t+this.minIndex,null,e)},getValueForPixel:function(t){var e,a=this,i=Math.max(a.ticks.length-(a.options.gridLines.offsetGridLines?0:1),1),n=a.isHorizontal(),o=(n?a.width:a.height)/i;return t-=n?a.left:a.top,a.options.gridLines.offsetGridLines&&(t-=o/2),e=t<=0?0:Math.round(t/o)},getBasePixel:function(){return this.bottom}});t.scaleService.registerScaleType("category",i,a)}},{}],44:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a={position:"left",ticks:{callback:t.Ticks.formatters.linear}},i=t.LinearScaleBase.extend({determineDataLimits:function(){function t(t){return s?t.xAxisID===a.id:t.yAxisID===a.id}var a=this,i=a.options,n=a.chart,o=n.data,r=o.datasets,s=a.isHorizontal();a.min=null,a.max=null;var l=i.stacked;if(void 0===l&&e.each(r,function(e,a){if(!l){var i=n.getDatasetMeta(a);n.isDatasetVisible(a)&&t(i)&&void 0!==i.stack&&(l=!0)}}),i.stacked||l){var u={};e.each(r,function(o,r){var s=n.getDatasetMeta(r),l=[s.type,void 0===i.stacked&&void 0===s.stack?r:"",s.stack].join(".");void 0===u[l]&&(u[l]={positiveValues:[],negativeValues:[]});var d=u[l].positiveValues,c=u[l].negativeValues;n.isDatasetVisible(r)&&t(s)&&e.each(o.data,function(t,e){var n=+a.getRightValue(t);isNaN(n)||s.data[e].hidden||(d[e]=d[e]||0,c[e]=c[e]||0,i.relativePoints?d[e]=100:n<0?c[e]+=n:d[e]+=n)})}),e.each(u,function(t){var i=t.positiveValues.concat(t.negativeValues),n=e.min(i),o=e.max(i);a.min=null===a.min?n:Math.min(a.min,n),a.max=null===a.max?o:Math.max(a.max,o)})}else e.each(r,function(i,o){var r=n.getDatasetMeta(o);n.isDatasetVisible(o)&&t(r)&&e.each(i.data,function(t,e){var i=+a.getRightValue(t);isNaN(i)||r.data[e].hidden||(null===a.min?a.min=i:i<a.min&&(a.min=i),null===a.max?a.max=i:i>a.max&&(a.max=i))})});this.handleTickRangeOptions()},getTickLimit:function(){var a,i=this,n=i.options.ticks;if(i.isHorizontal())a=Math.min(n.maxTicksLimit?n.maxTicksLimit:11,Math.ceil(i.width/50));else{var o=e.getValueOrDefault(n.fontSize,t.defaults.global.defaultFontSize);a=Math.min(n.maxTicksLimit?n.maxTicksLimit:11,Math.ceil(i.height/(2*o)))}return a},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e,a=this,i=a.start,n=+a.getRightValue(t),o=a.end-i;return a.isHorizontal()?(e=a.left+a.width/o*(n-i),Math.round(e)):(e=a.bottom-a.height/o*(n-i),Math.round(e))},getValueForPixel:function(t){var e=this,a=e.isHorizontal(),i=a?e.width:e.height,n=(a?t-e.left:e.bottom-t)/i;return e.start+(e.end-e.start)*n},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}});t.scaleService.registerScaleType("linear",i,a)}},{}],45:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a=e.noop;t.LinearScaleBase=t.Scale.extend({handleTickRangeOptions:function(){var t=this,a=t.options,i=a.ticks;if(i.beginAtZero){var n=e.sign(t.min),o=e.sign(t.max);n<0&&o<0?t.max=0:n>0&&o>0&&(t.min=0)}void 0!==i.min?t.min=i.min:void 0!==i.suggestedMin&&(t.min=Math.min(t.min,i.suggestedMin)),void 0!==i.max?t.max=i.max:void 0!==i.suggestedMax&&(t.max=Math.max(t.max,i.suggestedMax)),t.min===t.max&&(t.max++,i.beginAtZero||t.min--)},getTickLimit:a,handleDirectionalChanges:a,buildTicks:function(){var a=this,i=a.options,n=i.ticks,o=a.getTickLimit();o=Math.max(2,o);var r={maxTicks:o,min:n.min,max:n.max,stepSize:e.getValueOrDefault(n.fixedStepSize,n.stepSize)},s=a.ticks=t.Ticks.generators.linear(r,a);a.handleDirectionalChanges(),a.max=e.max(s),a.min=e.min(s),n.reverse?(s.reverse(),a.start=a.max,a.end=a.min):(a.start=a.min,a.end=a.max)},convertTicksToLabels:function(){var e=this;e.ticksAsNumbers=e.ticks.slice(),e.zeroLineIndex=e.ticks.indexOf(0),t.Scale.prototype.convertTicksToLabels.call(e)}})}},{}],46:[function(t,e,a){"use strict";e.exports=function(t){var e=t.helpers,a={position:"left",ticks:{callback:t.Ticks.formatters.logarithmic}},i=t.Scale.extend({determineDataLimits:function(){function t(t){return u?t.xAxisID===a.id:t.yAxisID===a.id}var a=this,i=a.options,n=i.ticks,o=a.chart,r=o.data,s=r.datasets,l=e.getValueOrDefault,u=a.isHorizontal();a.min=null,a.max=null,a.minNotZero=null;var d=i.stacked;if(void 0===d&&e.each(s,function(e,a){if(!d){var i=o.getDatasetMeta(a);o.isDatasetVisible(a)&&t(i)&&void 0!==i.stack&&(d=!0)}}),i.stacked||d){var c={};e.each(s,function(n,r){var s=o.getDatasetMeta(r),l=[s.type,void 0===i.stacked&&void 0===s.stack?r:"",s.stack].join(".");o.isDatasetVisible(r)&&t(s)&&(void 0===c[l]&&(c[l]=[]),e.each(n.data,function(t,e){var n=c[l],o=+a.getRightValue(t);isNaN(o)||s.data[e].hidden||(n[e]=n[e]||0,i.relativePoints?n[e]=100:n[e]+=o)}))}),e.each(c,function(t){var i=e.min(t),n=e.max(t);a.min=null===a.min?i:Math.min(a.min,i),a.max=null===a.max?n:Math.max(a.max,n)})}else e.each(s,function(i,n){var r=o.getDatasetMeta(n);o.isDatasetVisible(n)&&t(r)&&e.each(i.data,function(t,e){var i=+a.getRightValue(t);isNaN(i)||r.data[e].hidden||(null===a.min?a.min=i:i<a.min&&(a.min=i),null===a.max?a.max=i:i>a.max&&(a.max=i),0!==i&&(null===a.minNotZero||i<a.minNotZero)&&(a.minNotZero=i))})});a.min=l(n.min,a.min),a.max=l(n.max,a.max),a.min===a.max&&(0!==a.min&&null!==a.min?(a.min=Math.pow(10,Math.floor(e.log10(a.min))-1),a.max=Math.pow(10,Math.floor(e.log10(a.max))+1)):(a.min=1,a.max=10))},buildTicks:function(){var a=this,i=a.options,n=i.ticks,o={min:n.min,max:n.max},r=a.ticks=t.Ticks.generators.logarithmic(o,a);a.isHorizontal()||r.reverse(),a.max=e.max(r),a.min=e.min(r),n.reverse?(r.reverse(),a.start=a.max,a.end=a.min):(a.start=a.min,a.end=a.max)},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),t.Scale.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForTick:function(t){return this.getPixelForValue(this.tickValues[t])},getPixelForValue:function(t){var a,i,n,o=this,r=o.start,s=+o.getRightValue(t),l=o.options,u=l.ticks;return o.isHorizontal()?(n=e.log10(o.end)-e.log10(r),0===s?i=o.left:(a=o.width,i=o.left+a/n*(e.log10(s)-e.log10(r)))):(a=o.height,0!==r||u.reverse?0===o.end&&u.reverse?(n=e.log10(o.start)-e.log10(o.minNotZero),i=s===o.end?o.top:s===o.minNotZero?o.top+.02*a:o.top+.02*a+.98*a/n*(e.log10(s)-e.log10(o.minNotZero))):(n=e.log10(o.end)-e.log10(r),a=o.height,i=o.bottom-a/n*(e.log10(s)-e.log10(r))):(n=e.log10(o.end)-e.log10(o.minNotZero),i=s===r?o.bottom:s===o.minNotZero?o.bottom-.02*a:o.bottom-.02*a-.98*a/n*(e.log10(s)-e.log10(o.minNotZero)))),i},getValueForPixel:function(t){var a,i,n=this,o=e.log10(n.end)-e.log10(n.start);return n.isHorizontal()?(i=n.width,a=n.start*Math.pow(10,(t-n.left)*o/i)):(i=n.height,a=Math.pow(10,(n.bottom-t)*o/i)/n.start),a}});t.scaleService.registerScaleType("logarithmic",i,a)}},{}],47:[function(t,e,a){"use strict";e.exports=function(t){function e(t){return t.options.lineArc?0:t.chart.data.labels.length}function a(t){var e=t.options.pointLabels,a=f.getValueOrDefault(e.fontSize,g.defaultFontSize),i=f.getValueOrDefault(e.fontStyle,g.defaultFontStyle),n=f.getValueOrDefault(e.fontFamily,g.defaultFontFamily),o=f.fontString(a,i,n);return{size:a,style:i,family:n,font:o}}function i(t,e,a){return f.isArray(a)?{w:f.longestText(t,t.font,a),h:a.length*e+1.5*(a.length-1)*e}:{w:t.measureText(a).width,h:e}}function n(t,e,a,i,n){return t===i||t===n?{start:e-a/2,end:e+a/2}:t<i||t>n?{start:e-a-5,end:e}:{start:e,end:e+a+5}}function o(t){var o,r,s,l=a(t),u=Math.min(t.height/2,t.width/2),d={l:t.width,r:0,t:t.height,b:0},c={};t.ctx.font=l.font,t._pointLabelSizes=[];var h=e(t);for(o=0;o<h;o++){s=t.getPointPosition(o,u),r=i(t.ctx,l.size,t.pointLabels[o]||""),t._pointLabelSizes[o]=r;var g=t.getIndexAngle(o),p=f.toDegrees(g)%360,m=n(p,s.x,r.w,0,180),v=n(p,s.y,r.h,90,270);m.start<d.l&&(d.l=m.start,c.l=g),m.end>d.r&&(d.r=m.end,c.r=g),v.start<d.t&&(d.t=v.start,c.t=g),v.end>d.b&&(d.b=v.end,c.b=g)}t.setReductions(u,d,c)}function r(t){var e=Math.min(t.height/2,t.width/2);t.drawingArea=Math.round(e),t.setCenterPoint(0,0,0,0)}function s(t){return 0===t||180===t?"center":t<180?"left":"right"}function l(t,e,a,i){if(f.isArray(e))for(var n=a.y,o=1.5*i,r=0;r<e.length;++r)t.fillText(e[r],a.x,n),n+=o;else t.fillText(e,a.x,a.y)}function u(t,e,a){90===t||270===t?a.y-=e.h/2:(t>270||t<90)&&(a.y-=e.h)}function d(t){var i=t.ctx,n=f.getValueOrDefault,o=t.options,r=o.angleLines,d=o.pointLabels;i.lineWidth=r.lineWidth,i.strokeStyle=r.color;var c=t.getDistanceFromCenterForValue(o.reverse?t.min:t.max),h=a(t);i.textBaseline="top";for(var p=e(t)-1;p>=0;p--){if(r.display){var m=t.getPointPosition(p,c);i.beginPath(),i.moveTo(t.xCenter,t.yCenter),i.lineTo(m.x,m.y),i.stroke(),i.closePath()}var v=t.getPointPosition(p,c+5),b=n(d.fontColor,g.defaultFontColor);i.font=h.font,i.fillStyle=b;var x=t.getIndexAngle(p),y=f.toDegrees(x);i.textAlign=s(y),u(y,t._pointLabelSizes[p],v),l(i,t.pointLabels[p]||"",v,h.size)}}function c(t,a,i,n){var o=t.ctx;if(o.strokeStyle=f.getValueAtIndexOrDefault(a.color,n-1),o.lineWidth=f.getValueAtIndexOrDefault(a.lineWidth,n-1),t.options.lineArc)o.beginPath(),o.arc(t.xCenter,t.yCenter,i,0,2*Math.PI),o.closePath(),o.stroke();else{var r=e(t);if(0===r)return;o.beginPath();var s=t.getPointPosition(0,i);o.moveTo(s.x,s.y);for(var l=1;l<r;l++)s=t.getPointPosition(l,i),o.lineTo(s.x,s.y);o.closePath(),o.stroke()}}function h(t){return f.isNumber(t)?t:0}var f=t.helpers,g=t.defaults.global,p={display:!0,animate:!0,lineArc:!1,position:"chartArea",angleLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:t.Ticks.formatters.linear},pointLabels:{fontSize:10,callback:function(t){return t}}},m=t.LinearScaleBase.extend({setDimensions:function(){var t=this,e=t.options,a=e.ticks;t.width=t.maxWidth,t.height=t.maxHeight,t.xCenter=Math.round(t.width/2),t.yCenter=Math.round(t.height/2);var i=f.min([t.height,t.width]),n=f.getValueOrDefault(a.fontSize,g.defaultFontSize);t.drawingArea=e.display?i/2-(n/2+a.backdropPaddingY):i/2},determineDataLimits:function(){var t=this,e=t.chart,a=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY;f.each(e.data.datasets,function(n,o){if(e.isDatasetVisible(o)){var r=e.getDatasetMeta(o);f.each(n.data,function(e,n){var o=+t.getRightValue(e);isNaN(o)||r.data[n].hidden||(a=Math.min(o,a),i=Math.max(o,i))})}}),t.min=a===Number.POSITIVE_INFINITY?0:a,t.max=i===Number.NEGATIVE_INFINITY?0:i,t.handleTickRangeOptions()},getTickLimit:function(){var t=this.options.ticks,e=f.getValueOrDefault(t.fontSize,g.defaultFontSize);return Math.min(t.maxTicksLimit?t.maxTicksLimit:11,Math.ceil(this.drawingArea/(1.5*e)))},convertTicksToLabels:function(){var e=this;t.LinearScaleBase.prototype.convertTicksToLabels.call(e),e.pointLabels=e.chart.data.labels.map(e.options.pointLabels.callback,e)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){this.options.lineArc?r(this):o(this)},setReductions:function(t,e,a){var i=this,n=e.l/Math.sin(a.l),o=Math.max(e.r-i.width,0)/Math.sin(a.r),r=-e.t/Math.cos(a.t),s=-Math.max(e.b-i.height,0)/Math.cos(a.b);n=h(n),o=h(o),r=h(r),s=h(s),i.drawingArea=Math.min(Math.round(t-(n+o)/2),Math.round(t-(r+s)/2)),i.setCenterPoint(n,o,r,s)},setCenterPoint:function(t,e,a,i){var n=this,o=n.width-e-n.drawingArea,r=t+n.drawingArea,s=a+n.drawingArea,l=n.height-i-n.drawingArea;n.xCenter=Math.round((r+o)/2+n.left),n.yCenter=Math.round((s+l)/2+n.top)},getIndexAngle:function(t){var a=2*Math.PI/e(this),i=this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0,n=i*Math.PI*2/360;return t*a+n},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var a=e.drawingArea/(e.max-e.min);return e.options.reverse?(e.max-t)*a:(t-e.min)*a},getPointPosition:function(t,e){var a=this,i=a.getIndexAngle(t)-Math.PI/2;return{x:Math.round(Math.cos(i)*e)+a.xCenter,y:Math.round(Math.sin(i)*e)+a.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this,e=t.min,a=t.max;return t.getPointPositionForValue(0,t.beginAtZero?0:e<0&&a<0?a:e>0&&a>0?e:0)},draw:function(){var t=this,e=t.options,a=e.gridLines,i=e.ticks,n=f.getValueOrDefault;if(e.display){var o=t.ctx,r=n(i.fontSize,g.defaultFontSize),s=n(i.fontStyle,g.defaultFontStyle),l=n(i.fontFamily,g.defaultFontFamily),u=f.fontString(r,s,l);f.each(t.ticks,function(s,l){if(l>0||e.reverse){var d=t.getDistanceFromCenterForValue(t.ticksAsNumbers[l]),h=t.yCenter-d;if(a.display&&0!==l&&c(t,a,d,l),i.display){var f=n(i.fontColor,g.defaultFontColor);if(o.font=u,i.showLabelBackdrop){var p=o.measureText(s).width;o.fillStyle=i.backdropColor,o.fillRect(t.xCenter-p/2-i.backdropPaddingX,h-r/2-i.backdropPaddingY,p+2*i.backdropPaddingX,r+2*i.backdropPaddingY)}o.textAlign="center",o.textBaseline="middle",o.fillStyle=f,o.fillText(s,t.xCenter,h)}}}),e.lineArc||d(t)}}});t.scaleService.registerScaleType("radialLinear",m,p)}},{}],48:[function(t,e,a){"use strict";var i=t(1);i="function"==typeof i?i:window.moment,e.exports=function(t){var e=t.helpers,a={units:[{name:"millisecond",steps:[1,2,5,10,20,50,100,250,500]},{name:"second",steps:[1,2,5,10,30]},{name:"minute",steps:[1,2,5,10,30]},{name:"hour",steps:[1,2,3,6,12]},{name:"day",steps:[1,2,5]},{name:"week",maxStep:4},{name:"month",maxStep:3},{name:"quarter",maxStep:4},{name:"year",maxStep:!1}]},n={position:"bottom",time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm:ss a",hour:"MMM D, hA",day:"ll",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"}},ticks:{autoSkip:!1}},o=t.Scale.extend({initialize:function(){if(!i)throw new Error("Chart.js - Moment.js could not be found! You must include it before Chart.js to use the time scale. Download at https://momentjs.com");t.Scale.prototype.initialize.call(this)},getLabelMoment:function(t,e){return null===t||null===e?null:"undefined"!=typeof this.labelMoments[t]?this.labelMoments[t][e]:null},getLabelDiff:function(t,e){var a=this;return null===t||null===e?null:(void 0===a.labelDiffs&&a.buildLabelDiffs(),"undefined"!=typeof a.labelDiffs[t]?a.labelDiffs[t][e]:null)},getMomentStartOf:function(t){var e=this;return"week"===e.options.time.unit&&e.options.time.isoWeekday!==!1?t.clone().startOf("isoWeek").isoWeekday(e.options.time.isoWeekday):t.clone().startOf(e.tickUnit)},determineDataLimits:function(){var t=this;t.labelMoments=[];var a=[];t.chart.data.labels&&t.chart.data.labels.length>0?(e.each(t.chart.data.labels,function(e){var i=t.parseTime(e);i.isValid()&&(t.options.time.round&&i.startOf(t.options.time.round),a.push(i))},t),t.firstTick=i.min.call(t,a),t.lastTick=i.max.call(t,a)):(t.firstTick=null,t.lastTick=null),e.each(t.chart.data.datasets,function(n,o){var r=[],s=t.chart.isDatasetVisible(o);"object"==typeof n.data[0]&&null!==n.data[0]?e.each(n.data,function(e){var a=t.parseTime(t.getRightValue(e));a.isValid()&&(t.options.time.round&&a.startOf(t.options.time.round),r.push(a),s&&(t.firstTick=null!==t.firstTick?i.min(t.firstTick,a):a,t.lastTick=null!==t.lastTick?i.max(t.lastTick,a):a))},t):r=a,t.labelMoments.push(r)},t),t.options.time.min&&(t.firstTick=t.parseTime(t.options.time.min)),t.options.time.max&&(t.lastTick=t.parseTime(t.options.time.max)),t.firstTick=(t.firstTick||i()).clone(),t.lastTick=(t.lastTick||i()).clone()},buildLabelDiffs:function(){var t=this;t.labelDiffs=[];var a=[];t.chart.data.labels&&t.chart.data.labels.length>0&&e.each(t.chart.data.labels,function(e){var i=t.parseTime(e);i.isValid()&&(t.options.time.round&&i.startOf(t.options.time.round),a.push(i.diff(t.firstTick,t.tickUnit,!0)))},t),e.each(t.chart.data.datasets,function(i){var n=[];"object"==typeof i.data[0]&&null!==i.data[0]?e.each(i.data,function(e){var a=t.parseTime(t.getRightValue(e));a.isValid()&&(t.options.time.round&&a.startOf(t.options.time.round),n.push(a.diff(t.firstTick,t.tickUnit,!0)))},t):n=a,t.labelDiffs.push(n)},t)},buildTicks:function(){var i=this;i.ctx.save();var n=e.getValueOrDefault(i.options.ticks.fontSize,t.defaults.global.defaultFontSize),o=e.getValueOrDefault(i.options.ticks.fontStyle,t.defaults.global.defaultFontStyle),r=e.getValueOrDefault(i.options.ticks.fontFamily,t.defaults.global.defaultFontFamily),s=e.fontString(n,o,r);if(i.ctx.font=s,i.ticks=[],i.unitScale=1,i.scaleSizeInUnits=0,i.options.time.unit)i.tickUnit=i.options.time.unit||"day",i.displayFormat=i.options.time.displayFormats[i.tickUnit],i.scaleSizeInUnits=i.lastTick.diff(i.firstTick,i.tickUnit,!0),i.unitScale=e.getValueOrDefault(i.options.time.unitStepSize,1);else{var l=i.isHorizontal()?i.width:i.height,u=i.tickFormatFunction(i.firstTick,0,[]),d=i.ctx.measureText(u).width,c=Math.cos(e.toRadians(i.options.ticks.maxRotation)),h=Math.sin(e.toRadians(i.options.ticks.maxRotation));d=d*c+n*h;var f=l/d;i.tickUnit=i.options.time.minUnit,i.scaleSizeInUnits=i.lastTick.diff(i.firstTick,i.tickUnit,!0),i.displayFormat=i.options.time.displayFormats[i.tickUnit];for(var g=0,p=a.units[g];g<a.units.length;){if(i.unitScale=1,e.isArray(p.steps)&&Math.ceil(i.scaleSizeInUnits/f)<e.max(p.steps)){for(var m=0;m<p.steps.length;++m)if(p.steps[m]>=Math.ceil(i.scaleSizeInUnits/f)){i.unitScale=e.getValueOrDefault(i.options.time.unitStepSize,p.steps[m]);break}break}if(p.maxStep===!1||Math.ceil(i.scaleSizeInUnits/f)<p.maxStep){i.unitScale=e.getValueOrDefault(i.options.time.unitStepSize,Math.ceil(i.scaleSizeInUnits/f));break}++g,p=a.units[g],i.tickUnit=p.name;var v=i.firstTick.diff(i.getMomentStartOf(i.firstTick),i.tickUnit,!0),b=i.getMomentStartOf(i.lastTick.clone().add(1,i.tickUnit)).diff(i.lastTick,i.tickUnit,!0);i.scaleSizeInUnits=i.lastTick.diff(i.firstTick,i.tickUnit,!0)+v+b,i.displayFormat=i.options.time.displayFormats[p.name]}}var x;if(i.options.time.min?x=i.getMomentStartOf(i.firstTick):(i.firstTick=i.getMomentStartOf(i.firstTick),x=i.firstTick),!i.options.time.max){var y=i.getMomentStartOf(i.lastTick),k=y.diff(i.lastTick,i.tickUnit,!0);k<0?i.lastTick=i.getMomentStartOf(i.lastTick.add(1,i.tickUnit)):k>=0&&(i.lastTick=y),i.scaleSizeInUnits=i.lastTick.diff(i.firstTick,i.tickUnit,!0)}i.options.time.displayFormat&&(i.displayFormat=i.options.time.displayFormat),i.ticks.push(i.firstTick.clone());for(var S=i.unitScale;S<=i.scaleSizeInUnits;S+=i.unitScale){var M=x.clone().add(S,i.tickUnit);if(i.options.time.max&&M.diff(i.lastTick,i.tickUnit,!0)>=0)break;i.ticks.push(M)}var w=i.ticks[i.ticks.length-1].diff(i.lastTick,i.tickUnit);0===w&&0!==i.scaleSizeInUnits||(i.options.time.max?(i.ticks.push(i.lastTick.clone()),i.scaleSizeInUnits=i.lastTick.diff(i.ticks[0],i.tickUnit,!0)):(i.ticks.push(i.lastTick.clone()),i.scaleSizeInUnits=i.lastTick.diff(i.firstTick,i.tickUnit,!0))),i.ctx.restore(),i.labelDiffs=void 0},getLabelForIndex:function(t,e){var a=this,i=a.chart.data.labels&&t<a.chart.data.labels.length?a.chart.data.labels[t]:"",n=a.chart.data.datasets[e].data[t];return null!==n&&"object"==typeof n&&(i=a.getRightValue(n)),a.options.time.tooltipFormat&&(i=a.parseTime(i).format(a.options.time.tooltipFormat)),i},tickFormatFunction:function(t,a,i){var n=t.format(this.displayFormat),o=this.options.ticks,r=e.getValueOrDefault(o.callback,o.userCallback);return r?r(n,a,i):n},convertTicksToLabels:function(){var t=this;t.tickMoments=t.ticks,t.ticks=t.ticks.map(t.tickFormatFunction,t)},getPixelForValue:function(t,e,a){var i=this,n=null;if(void 0!==e&&void 0!==a&&(n=i.getLabelDiff(a,e)),null===n&&(t&&t.isValid||(t=i.parseTime(i.getRightValue(t))),t&&t.isValid&&t.isValid()&&(n=t.diff(i.firstTick,i.tickUnit,!0))),null!==n){var o=0!==n?n/i.scaleSizeInUnits:n;if(i.isHorizontal()){var r=i.width*o;return i.left+Math.round(r)}var s=i.height*o;return i.top+Math.round(s)}},getPixelForTick:function(t){return this.getPixelForValue(this.tickMoments[t],null,null)},getValueForPixel:function(t){var e=this,a=e.isHorizontal()?e.width:e.height,n=(t-(e.isHorizontal()?e.left:e.top))/a;return n*=e.scaleSizeInUnits,e.firstTick.clone().add(i.duration(n,e.tickUnit).asSeconds(),"seconds")},parseTime:function(t){var e=this;return"string"==typeof e.options.time.parser?i(t,e.options.time.parser):"function"==typeof e.options.time.parser?e.options.time.parser(t):"function"==typeof t.getMonth||"number"==typeof t?i(t):t.isValid&&t.isValid()?t:"string"!=typeof e.options.time.format&&e.options.time.format.call?(console.warn("options.time.format is deprecated and replaced by options.time.parser. See http://nnnick.github.io/Chart.js/docs-v2/#scales-time-scale"),e.options.time.format(t)):i(t,e.options.time.format)}});t.scaleService.registerScaleType("time",o,n)}},{1:1}]},{},[7])(7)}); \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/partials/admin.php b/wp-content/plugins/wordpress-popular-posts/admin/partials/admin.php deleted file mode 100644 index c6a0d07386dc17bd435aa5d4a3959c2dca3d6585..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/partials/admin.php +++ /dev/null @@ -1,996 +0,0 @@ -<?php -if ( basename($_SERVER['SCRIPT_NAME']) == basename(__FILE__) ) - exit( 'Please do not load this page directly' ); - -$tabs = array( - 'stats' => __( 'Stats', 'wordpress-popular-posts' ), - 'tools' => __( 'Tools', 'wordpress-popular-posts' ), - 'params' => __( 'Parameters', 'wordpress-popular-posts' ), - 'debug' => 'Debug' -); - -// Set active tab -if ( isset( $_GET['tab'] ) && isset( $tabs[$_GET['tab']] ) ) - $current = $_GET['tab']; -else - $current = 'stats'; - -// Update options on form submission -if ( isset($_POST['section']) ) { - - if ( "stats" == $_POST['section'] ) { - - $current = 'stats'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-stats-options' ) ) { - - //$this->options['stats']['order_by'] = $_POST['stats_order']; - $this->options['stats']['limit'] = ( WPP_Helper::is_number( $_POST['stats_limit'] ) && $_POST['stats_limit'] > 0 ) ? $_POST['stats_limit'] : 10; - $this->options['stats']['post_type'] = empty( $_POST['stats_type'] ) ? "post,page" : $_POST['stats_type']; - $this->options['stats']['freshness'] = empty( $_POST['stats_freshness'] ) ? false : $_POST['stats_freshness']; - - update_option( 'wpp_settings_config', $this->options ); - echo "<div class=\"notice notice-success is-dismissible\"><p><strong>" . __( 'Settings saved.', 'wordpress-popular-posts' ) . "</strong></p></div>"; - - } - - } - elseif ( "misc" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-misc-options' ) ) { - - $this->options['tools']['link']['target'] = $_POST['link_target']; - $this->options['tools']['css'] = $_POST['css']; - - update_option( 'wpp_settings_config', $this->options ); - echo "<div class=\"notice notice-success is-dismissible\"><p><strong>" . __( 'Settings saved.', 'wordpress-popular-posts' ) . "</strong></p></div>"; - - } - } - elseif ( "thumb" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-thumbnail-options' ) ) { - - if ( - $_POST['thumb_source'] == "custom_field" - && ( !isset( $_POST['thumb_field'] ) || empty( $_POST['thumb_field'] ) ) - ) { - echo '<div id="wpp-message" class="error fade"><p>'.__( 'Please provide the name of your custom field.', 'wordpress-popular-posts' ).'</p></div>'; - } else { - - $this->options['tools']['thumbnail']['source'] = $_POST['thumb_source']; - $this->options['tools']['thumbnail']['field'] = ( !empty( $_POST['thumb_field']) ) ? $_POST['thumb_field'] : "wpp_thumbnail"; - $this->options['tools']['thumbnail']['default'] = ( !empty( $_POST['upload_thumb_src']) ) ? $_POST['upload_thumb_src'] : ""; - $this->options['tools']['thumbnail']['resize'] = $_POST['thumb_field_resize']; - $this->options['tools']['thumbnail']['responsive'] = $_POST['thumb_responsive']; - - update_option( 'wpp_settings_config', $this->options ); - echo "<div class=\"notice notice-success is-dismissible\"><p><strong>" . __( 'Settings saved.', 'wordpress-popular-posts' ) . "</strong></p></div>"; - - } - - } - - } - elseif ( "data" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-data-options' ) ) { - - $this->options['tools']['log']['level'] = $_POST['log_option']; - $this->options['tools']['log']['limit'] = $_POST['log_limit']; - $this->options['tools']['log']['expires_after'] = ( WPP_Helper::is_number( $_POST['log_expire_time'] ) && $_POST['log_expire_time'] > 0 ) - ? $_POST['log_expire_time'] - : $this->default_user_settings['tools']['log']['expires_after']; - $this->options['tools']['ajax'] = $_POST['ajax']; - - // if any of the caching settings was updated, destroy all transients created by the plugin - if ( - $this->options['tools']['cache']['active'] != $_POST['cache'] - || $this->options['tools']['cache']['interval']['time'] != $_POST['cache_interval_time'] - || $this->options['tools']['cache']['interval']['value'] != $_POST['cache_interval_value'] - ) { - $this->flush_transients(); - } - - $this->options['tools']['cache']['active'] = $_POST['cache']; - $this->options['tools']['cache']['interval']['time'] = $_POST['cache_interval_time']; - $this->options['tools']['cache']['interval']['value'] = ( isset( $_POST['cache_interval_value'] ) && WPP_Helper::is_number( $_POST['cache_interval_value'] ) && $_POST['cache_interval_value'] > 0 ) - ? $_POST['cache_interval_value'] - : 1; - - $this->options['tools']['sampling']['active'] = $_POST['sampling']; - $this->options['tools']['sampling']['rate'] = ( isset( $_POST['sample_rate'] ) && WPP_Helper::is_number( $_POST['sample_rate'] ) && $_POST['sample_rate'] > 0 ) - ? $_POST['sample_rate'] - : 100; - - update_option( 'wpp_settings_config', $this->options ); - echo "<div class=\"notice notice-success is-dismissible\"><p><strong>" . __( 'Settings saved.', 'wordpress-popular-posts' ) . "</strong></p></div>"; - - } - } - -} - -if ( $this->options['tools']['css'] && !file_exists( get_stylesheet_directory() . '/wpp.css' ) ) { - echo '<div id="wpp-message" class="update-nag">'. __( 'Any changes made to WPP\'s default stylesheet will be lost after every plugin update. In order to prevent this from happening, please copy the wpp.css file (located at wp-content/plugins/wordpress-popular-posts/style) into your theme\'s directory', 'wordpress-popular-posts' ) .'.</div>'; -} - -$rand = md5( uniqid(rand(), true) ); - -if ( !$wpp_rand = get_option("wpp_rand") ) { - add_option( "wpp_rand", $rand ); -} else { - update_option( "wpp_rand", $rand ); -} - -?> -<script type="text/javascript"> - // TOOLS - function confirm_reset_cache() { - if ( confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( "This operation will delete all entries from WordPress Popular Posts' cache table and cannot be undone.", 'wordpress-popular-posts'); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( "Do you want to continue?", 'wordpress-popular-posts' ); ?>") ) { - jQuery.post( - ajaxurl, - { - action: 'wpp_clear_data', - token: '<?php echo get_option("wpp_rand"); ?>', - clear: 'cache' - }, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Success! The cache table has been cleared!', 'wordpress-popular-posts' ); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Error: cache table does not exist.', 'wordpress-popular-posts' ); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', 'wordpress-popular-posts' ); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - } - - alert( response ); - } - ); - } - } - - function confirm_reset_all() { - if ( confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( "This operation will delete all stored info from WordPress Popular Posts' data tables and cannot be undone.", 'wordpress-popular-posts'); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("Do you want to continue?", 'wordpress-popular-posts'); ?>")) { - jQuery.post( - ajaxurl, - { - action: 'wpp_clear_data', - token: '<?php echo get_option("wpp_rand"); ?>', - clear: 'all' - }, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Success! All data have been cleared!', 'wordpress-popular-posts' ); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Error: one or both data tables are missing.', 'wordpress-popular-posts' ); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', 'wordpress-popular-posts' ); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - } - - alert( response ); - } - ); - } - } - - function confirm_clear_image_cache() { - if ( confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("This operation will delete all cached thumbnails and cannot be undone.", 'wordpress-popular-posts'); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( "Do you want to continue?", 'wordpress-popular-posts' ); ?>") ) { - jQuery.post( - ajaxurl, - { - action: 'wpp_clear_thumbnail', - token: '<?php echo get_option("wpp_rand"); ?>' - }, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Success! All files have been deleted!', 'wordpress-popular-posts' ); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'The thumbnail cache is already empty!', 'wordpress-popular-posts' ); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', 'wordpress-popular-posts' ); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e( 'Invalid action.', 'wordpress-popular-posts' ); ?>"; - break; - } - - alert( response ); - } - ); - } - } -</script> - -<nav id="wpp-menu"> - <ul> - <li><a href="#" title="<?php esc_attr_e( 'Menu' ); ?>"><span><?php _e( 'Menu' ); ?></span></a></li> - <li<?php echo ( 'stats' == $current ) ? ' class="current"' : ''; ?>><a href="<?php echo admin_url( 'options-general.php?page=wordpress-popular-posts&tab=stats' ); ?>" title="<?php esc_attr_e( 'Stats', 'wordpress-popular-posts' ); ?>"><span><?php _e( 'Stats', 'wordpress-popular-posts' ); ?></span></a></li> - <li<?php echo ( 'tools' == $current ) ? ' class="current"' : ''; ?>><a href="<?php echo admin_url( 'options-general.php?page=wordpress-popular-posts&tab=tools' ); ?>" title="<?php esc_attr_e( 'Tools', 'wordpress-popular-posts' ); ?>"><span><?php _e( 'Tools', 'wordpress-popular-posts' ); ?></span></a></li> - <li<?php echo ( 'params' == $current ) ? ' class="current"' : ''; ?>><a href="<?php echo admin_url( 'options-general.php?page=wordpress-popular-posts&tab=params' ); ?>" title="<?php esc_attr_e( 'Parameters', 'wordpress-popular-posts' ); ?>"><span><?php _e( 'Parameters', 'wordpress-popular-posts' ); ?></span></a></li> - </ul> -</nav> - -<div class="wpp-wrapper wpp-section-<?php echo $current; ?>"> - - <div class="wpp-header"> - <h2>WordPress Popular Posts</h2> - <h3><?php echo $tabs[$current]; ?></h3> - </div> - - <?php - // Stats chart - if ( 'stats' == $current ) { - - $chart_data = $this->get_chart_data( $this->options['stats']['range'] ); - - ?> - - <a href="#" id="wpp-stats-config-btn" class="dashicons dashicons-admin-generic"></a> - - <div id="wpp-stats-config" class="wpp-lightbox"> - - <form action="" method="post" id="wpp_stats_options" name="wpp_stats_options"> - - <label for="stats_type"><?php _e("Post type", 'wordpress-popular-posts'); ?>:</label> - <input type="text" name="stats_type" value="<?php echo esc_attr( $this->options['stats']['post_type'] ); ?>" size="15" /> - - <label for="stats_limits"><?php _e("Limit", 'wordpress-popular-posts'); ?>:</label> - <input type="text" name="stats_limit" value="<?php echo $this->options['stats']['limit']; ?>" size="5" /> - - <label for="stats_freshness"><input type="checkbox" class="checkbox" <?php echo ($this->options['stats']['freshness']) ? 'checked="checked"' : ''; ?> id="stats_freshness" name="stats_freshness" /> <small><?php _e('Display only posts published within the selected Time Range', 'wordpress-popular-posts'); ?></small></label> - - <div class="clear"></div> - <br /><br /> - - <input type="hidden" name="section" value="stats" /> - <button type="submit" class="button-primary action"><?php _e("Apply", 'wordpress-popular-posts'); ?></button> - <button class="button-secondary action right"><?php _e("Cancel"); ?></button> - - <?php wp_nonce_field( 'wpp-update-stats-options', 'wpp-admin-token' ); ?> - - </form> - - </div> - - <div id="wpp-stats-range" class="wpp-lightbox"> - - <form action="" method="post"> - - <ul class="wpp-lightbox-tabs"> - <li class="active"><a href="#"><?php _e('Custom Time Range', 'wordpress-popular-posts'); ?></a></li> - <li><a href="#"><?php _e('Date Range', 'wordpress-popular-posts'); ?></a></li> - </ul> - - <div class="wpp-lightbox-tab-content wpp-lightbox-tab-content-active" id="custom-time-range"> - - <input type="text" id="stats_range_time_quantity" name="stats_range_time_quantity" value="<?php echo $this->options['stats']['time_quantity']; ?>"> - - <select id="stats_range_time_unit" name="stats_range_time_unit"> - <option <?php if ($this->options['stats']['time_unit'] == "minute") {?>selected="selected"<?php } ?> value="minute"><?php _e("Minute(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['stats']['time_unit'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['stats']['time_unit'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", 'wordpress-popular-posts'); ?></option> - </select> - - </div> - - <div class="wpp-lightbox-tab-content" id="custom-date-range"> - <input type="text" id="stats_range_date" name="stats_range_date" value="" placeholder="<?php esc_attr_e('Select a date...', 'wordpress-popular-posts'); ?>" readonly> - </div> - - <div class="clear"></div> - <br /> - - <button type="submit" class="button-primary action"> - <?php _e("Apply", 'wordpress-popular-posts'); ?> - </button> - <button class="button-secondary action right"> - <?php _e("Cancel"); ?> - </button> - - </form> - - </div> - - <div id="wpp-chart-wrapper"> - <h4><?php echo $chart_data['totals']['label_summary']; ?></h4> - <h5><?php echo $chart_data['totals']['label_date_range']; ?></h5> - - <ul class="wpp-header-nav" id="wpp-time-ranges"> - <li <?php echo ( 'daily' == $this->options['stats']['range'] || 'last24hours' == $this->options['stats']['range'] ) ? ' class="current"' : ''; ?>><a href="#" data-range="last24hours" title="Last 24 hours">24h</a></li> - <li <?php echo ( 'weekly' == $this->options['stats']['range'] || 'last7days' == $this->options['stats']['range'] ) ? ' class="current"' : ''; ?>><a href="#" data-range="last7days" title="Last 7 days">7d</a></li> - <li <?php echo ( 'monthly' == $this->options['stats']['range'] || 'last30days' == $this->options['stats']['range'] ) ? ' class="current"' : ''; ?>><a href="#" data-range="last30days" title="Last 30 days">30d</a></li> - <li <?php echo ( 'custom' == $this->options['stats']['range'] ) ? ' class="current"' : ''; ?>><a href="#" data-range="custom" title="Custom">Custom</a></li> - </ul> - - <div id="wpp-chart"> - <p><?php echo sprintf( __('Err... A nice little chart is supposed to be here, instead you are seeing this because your browser is too old. <br /> Please <a href="%s" target="_blank">get a better browser</a>.', 'wordpress-popular-posts'), 'https://browsehappy.com/'); ?></p> - - <?php $this->print_chart_script( $chart_data, 'wpp-chart' ); ?> - </div> - </div> - <?php - } // End stats chart - ?> - - <div id="wpp-listing" class="wpp-content"<?php echo ( 'stats' == $current ) ? '' : ' style="display: none;"'; ?>> - <ul class="wpp-tabbed-nav"> - <li class="active"><a href="#" title="Most viewed"><span class="fa fa-eye"></span><span>Most viewed</span></a></li> - <li><a href="#" title="Most commented"><span class="fa fa-comment-o"></span><span>Most commented</span></a></li> - <li><a href="#" title="Trending now"><span class="fa fa-rocket"></span><span>Trending now</span></a></li> - <li><a href="#" title="Hall of Fame"><span class="fa fa-trophy"></span><span>Hall of Fame</span></a></li> - </ul> - - <div class="wpp-tab-content wpp-tab-content-active"> - <?php $this->get_most_viewed(); ?> - </div> - - <div class="wpp-tab-content"> - <?php $this->get_most_commented(); ?> - </div> - - <div class="wpp-tab-content"> - <?php - $args = array( - 'range' => 'custom', - 'time_unit' => 'HOUR', - 'time_quantity'=> 1, - 'post_type' => $this->options['stats']['post_type'], - 'order_by' => 'views', - 'limit' => $this->options['stats']['limit'], - 'stats_tag' => array( - 'comment_count' => 1, - 'views' => 1, - 'date' => array( - 'active' => 1 - ) - ) - ); - $trending = new WPP_query( $args ); - $posts = $trending->get_posts(); - - if ( - is_array( $posts ) - && !empty( $posts ) - ) { - ?> - <ol class="popular-posts-list"> - <?php - foreach ( $posts as $post ) { ?> - <li> - <p> - <a href="<?php echo get_permalink( $post->id ); ?>"><?php echo sanitize_text_field( $post->title ); ?></a> - <br /> - <span><?php printf( _n( '1 view', '%s views', $post->pageviews, 'wordpress-popular-posts' ), number_format_i18n( $post->pageviews ) ); ?>, <?php printf( _n( '1 comment', '%s comments', $post->comment_count, 'wordpress-popular-posts' ), number_format_i18n( $post->comment_count ) ); ?></span> - <small> — <a href="<?php echo get_permalink( $post->id ); ?>"><?php _e("View"); ?></a> | <a href="<?php echo get_edit_post_link( $post->id ); ?>"><?php _e("Edit"); ?></a></small> - </p> - </li> - <?php - } - ?> - </ol> - <?php - } - else { - ?> - <p style="text-align: center;"><?php _e("Looks like traffic to your site is a little light right now. <br />Spread the word and come back later!", "wordpress-popular-posts"); ?></p> - <?php - } - ?> - </div> - <div class="wpp-tab-content"> - <?php - $args = array( - 'range' => 'all', - 'post_type' => $this->options['stats']['post_type'], - 'order_by' => 'views', - 'limit' => $this->options['stats']['limit'], - 'stats_tag' => array( - 'comment_count' => 1, - 'views' => 1, - 'date' => array( - 'active' => 1 - ) - ) - ); - $hof = new WPP_query( $args ); - $posts = $hof->get_posts(); - - if ( - is_array( $posts ) - && !empty( $posts ) - ) { - ?> - <ol class="popular-posts-list"> - <?php - foreach ( $posts as $post ) { ?> - <li> - <p> - <a href="<?php echo get_permalink( $post->id ); ?>"><?php echo sanitize_text_field( $post->title ); ?></a> - <br /> - <span><?php printf( _n( '1 view', '%s views', $post->pageviews, 'wordpress-popular-posts' ), number_format_i18n( $post->pageviews ) ); ?>, <?php printf( _n( '1 comment', '%s comments', $post->comment_count, 'wordpress-popular-posts' ), number_format_i18n( $post->comment_count ) ); ?></span> - <small> — <a href="<?php echo get_permalink( $post->id ); ?>"><?php _e("View"); ?></a> | <a href="<?php echo get_edit_post_link( $post->id ); ?>"><?php _e("Edit"); ?></a></small> - </p> - </li> - <?php - } - ?> - </ol> - <?php - } - else { - ?> - <p style="text-align: center;"><?php _e("Looks like traffic to your site is a little light right now. <br />Spread the word and come back later!", "wordpress-popular-posts"); ?></p> - <?php - } - ?> - </div> - </div> - - <!-- Start tools --> - <div id="wpp_tools" <?php echo ( "tools" == $current ) ? '' : ' style="display: none;"'; ?>> - - <h3 class="wmpp-subtitle"><?php _e("Thumbnails", 'wordpress-popular-posts'); ?></h3> - <form action="" method="post" id="wpp_thumbnail_options" name="wpp_thumbnail_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="thumb_default"><?php _e("Default thumbnail", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <div id="thumb-review"> - <img src="<?php echo ( $this->options['tools']['thumbnail']['default'] ) ? str_replace( parse_url( $this->options['tools']['thumbnail']['default'], PHP_URL_SCHEME ) . ':', '', $this->options['tools']['thumbnail']['default'] ) : plugins_url() . '/wordpress-popular-posts/public/images/no_thumb.jpg'; ?>" alt="" border="0" /> - </div> - <input id="upload_thumb_button" type="button" class="button" value="<?php _e( "Upload thumbnail", 'wordpress-popular-posts' ); ?>" /> - <input type="hidden" id="upload_thumb_src" name="upload_thumb_src" value="" /> - <p class="description"><?php _e("How-to: upload (or select) an image, set Size to Full and click on Upload. After it's done, hit on Apply to save changes", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="thumb_source"><?php _e("Pick image from", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="thumb_source" id="thumb_source"> - <option <?php if ($this->options['tools']['thumbnail']['source'] == "featured") {?>selected="selected"<?php } ?> value="featured"><?php _e("Featured image", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['thumbnail']['source'] == "first_image") {?>selected="selected"<?php } ?> value="first_image"><?php _e("First image on post", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['thumbnail']['source'] == "first_attachment") {?>selected="selected"<?php } ?> value="first_attachment"><?php _e("First attachment", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['thumbnail']['source'] == "custom_field") {?>selected="selected"<?php } ?> value="custom_field"><?php _e("Custom field", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - <p class="description"><?php _e("Tell WordPress Popular Posts where it should get thumbnails from", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ($this->options['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field"> - <th scope="row"><label for="thumb_field"><?php _e("Custom field name", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <input type="text" id="thumb_field" name="thumb_field" value="<?php echo esc_attr( $this->options['tools']['thumbnail']['field'] ); ?>" size="10" <?php if ($this->options['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> /> - </td> - </tr> - <tr valign="top" <?php if ($this->options['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field_resize"> - <th scope="row"><label for="thumb_field_resize"><?php _e("Resize image from Custom field?", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="thumb_field_resize" id="thumb_field_resize"> - <option <?php if ( !$this->options['tools']['thumbnail']['resize'] ) {?>selected="selected"<?php } ?> value="0"><?php _e("No, I will upload my own thumbnail", 'wordpress-popular-posts'); ?></option> - <option <?php if ( $this->options['tools']['thumbnail']['resize'] == 1 ) {?>selected="selected"<?php } ?> value="1"><?php _e("Yes", 'wordpress-popular-posts'); ?></option> - </select> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="thumb_responsive"><?php _e("Responsive support", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="thumb_responsive" id="thumb_responsive"> - <option <?php if ($this->options['tools']['thumbnail']['responsive']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", 'wordpress-popular-posts'); ?></option> - <option <?php if (!$this->options['tools']['thumbnail']['responsive']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - <p class="description"><?php _e("If enabled, WordPress Popular Posts will strip height and width attributes out of thumbnails' image tags", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <?php - $wp_upload_dir = wp_upload_dir(); - if ( is_dir( $wp_upload_dir['basedir'] . "/" . 'wordpress-popular-posts' ) ) : - ?> - <tr valign="top"> - <th scope="row"></th> - <td> - <input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty image cache", 'wordpress-popular-posts'); ?>" onclick="confirm_clear_image_cache()" /> - <p class="description"><?php _e("Use this button to clear WPP's thumbnails cache", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <?php - endif; - ?> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="thumb" /> - <input type="submit" class="button-secondary action" id="btn_th_ops" value="<?php _e("Apply", 'wordpress-popular-posts'); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-thumbnail-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <h3 class="wmpp-subtitle"><?php _e("Data", 'wordpress-popular-posts'); ?></h3> - <form action="" method="post" id="wpp_ajax_options" name="wpp_ajax_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="log_option"><?php _e("Log views from", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="log_option" id="log_option"> - <option <?php if ($this->options['tools']['log']['level'] == 0) {?>selected="selected"<?php } ?> value="0"><?php _e("Visitors only", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['log']['level'] == 2) {?>selected="selected"<?php } ?> value="2"><?php _e("Logged-in users only", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['log']['level'] == 1) {?>selected="selected"<?php } ?> value="1"><?php _e("Everyone", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="log_limit"><?php _e("Log limit", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="log_limit" id="log_limit"> - <option <?php if ($this->options['tools']['log']['limit'] == 0) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['log']['limit'] == 1) {?>selected="selected"<?php } ?> value="1"><?php _e("Keep data for", 'wordpress-popular-posts'); ?></option> - </select> - - <label for="log_expire_time"<?php echo ($this->options['tools']['log']['limit'] == 0) ? ' style="display:none;"' : ''; ?>><input type="text" id="log_expire_time" name="log_expire_time" value="<?php echo esc_attr( $this->options['tools']['log']['expires_after'] ); ?>" size="3" /> <?php _e("day(s)", 'wordpress-popular-posts'); ?></label> - - <p class="description"<?php echo ($this->options['tools']['log']['limit'] == 0) ? ' style="display:none;"' : ''; ?>><?php _e("Data older than the specified time frame will be automatically discarded", 'wordpress-popular-posts'); ?>.</p> - - <br<?php echo ($this->options['tools']['log']['limit'] == 1) ? ' style="display:none;"' : ''; ?> /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="ajax"><?php _e("Ajaxify widget", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="ajax" id="ajax"> - <option <?php if (!$this->options['tools']['ajax']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['ajax']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", 'wordpress-popular-posts'); ?></option> - </select> - - <br /> - <p class="description"><?php _e("If you are using a caching plugin such as WP Super Cache, enabling this feature will keep the popular list from being cached by it", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="cache"><?php _e("WPP Cache Expiry Policy", 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching" target="_blank" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>">?</a>]</small></th> - <td> - <select name="cache" id="cache"> - <option <?php if ( !$this->options['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Never cache", 'wordpress-popular-posts'); ?></option> - <option <?php if ( $this->options['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enable caching", 'wordpress-popular-posts'); ?></option> - </select> - - <br /> - <p class="description"><?php _e("Sets WPP's cache expiration time. WPP can cache the popular list for a specified amount of time. Recommended for large / high traffic sites", 'wordpress-popular-posts'); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ( !$this->options['tools']['cache']['active'] ) { ?>style="display:none;"<?php } ?> id="cache_refresh_interval"> - <th scope="row"><label for="cache_interval_value"><?php _e("Refresh cache every", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <input name="cache_interval_value" type="text" id="cache_interval_value" value="<?php echo ( isset($this->options['tools']['cache']['interval']['value']) ) ? (int) $this->options['tools']['cache']['interval']['value'] : 1; ?>" class="small-text"> - <select name="cache_interval_time" id="cache_interval_time"> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "minute") {?>selected="selected"<?php } ?> value="minute"><?php _e("Minute(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "week") {?>selected="selected"<?php } ?> value="week"><?php _e("Week(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "month") {?>selected="selected"<?php } ?> value="month"><?php _e("Month(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($this->options['tools']['cache']['interval']['time'] == "year") {?>selected="selected"<?php } ?> value="month"><?php _e("Year(s)", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - <p class="description" style="display:none;" id="cache_too_long"><?php _e("Really? That long?", 'wordpress-popular-posts'); ?></p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="sampling"><?php _e("Data Sampling", 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling" target="_blank" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>">?</a>]</small></th> - <td> - <select name="sampling" id="sampling"> - <option <?php if ( !$this->options['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", 'wordpress-popular-posts'); ?></option> - <option <?php if ( $this->options['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", 'wordpress-popular-posts'); ?></option> - </select> - - <br /> - <p class="description"><?php echo sprintf( __('By default, WordPress Popular Posts stores in database every single visit your site receives. For small / medium sites this is generally OK, but on large / high traffic sites the constant writing to the database may have an impact on performance. With <a href="%1$s" target="_blank">data sampling</a>, WordPress Popular Posts will store only a subset of your traffic and report on the tendencies detected in that sample set (for more, <a href="%2$s" target="_blank">please read here</a>)', 'wordpress-popular-posts'), 'http://en.wikipedia.org/wiki/Sample_%28statistics%29', 'https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling' ); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ( !$this->options['tools']['sampling']['active'] ) { ?>style="display:none;"<?php } ?>> - <th scope="row"><label for="sample_rate"><?php _e("Sample Rate", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <input name="sample_rate" type="text" id="sample_rate" value="<?php echo ( isset($this->options['tools']['sampling']['rate']) ) ? (int) $this->options['tools']['sampling']['rate'] : 100; ?>" class="small-text"> - <br /> - <p class="description"><?php echo sprintf( __("A sampling rate of %d is recommended for large / high traffic sites. For lower traffic sites, you should lower the value", 'wordpress-popular-posts'), WPP_Settings::$defaults['admin_options']['tools']['sampling']['rate'] ); ?>.</p> - </td> - </tr> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="data" /> - <input type="submit" class="button-secondary action" id="btn_ajax_ops" value="<?php _e("Apply", 'wordpress-popular-posts'); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-data-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <h3 class="wmpp-subtitle"><?php _e("Miscellaneous", 'wordpress-popular-posts'); ?></h3> - <form action="" method="post" id="wpp_link_options" name="wpp_link_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="link_target"><?php _e("Open links in", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="link_target" id="link_target"> - <option <?php if ( $this->options['tools']['link']['target'] == '_self' ) {?>selected="selected"<?php } ?> value="_self"><?php _e("Current window", 'wordpress-popular-posts'); ?></option> - <option <?php if ( $this->options['tools']['link']['target'] == '_blank' ) {?>selected="selected"<?php } ?> value="_blank"><?php _e("New tab/window", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="css"><?php _e("Use plugin's stylesheet", 'wordpress-popular-posts'); ?>:</label></th> - <td> - <select name="css" id="css"> - <option <?php if ($this->options['tools']['css']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", 'wordpress-popular-posts'); ?></option> - <option <?php if (!$this->options['tools']['css']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", 'wordpress-popular-posts'); ?></option> - </select> - <br /> - <p class="description"><?php _e("By default, the plugin includes a stylesheet called wpp.css which you can use to style your popular posts listing. If you wish to use your own stylesheet or do not want it to have it included in the header section of your site, use this.", 'wordpress-popular-posts'); ?></p> - </td> - </tr> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="misc" /> - <input type="submit" class="button-secondary action" value="<?php _e("Apply", 'wordpress-popular-posts'); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-misc-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <br /><br /> - - <p><?php _e('WordPress Popular Posts maintains data in two separate tables: one for storing the most popular entries on a daily basis (from now on, "cache"), and another one to keep the All-time data (from now on, "historical data" or just "data"). If for some reason you need to clear the cache table, or even both historical and cache tables, please use the buttons below to do so.', 'wordpress-popular-posts') ?></p> - <p><input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty cache", 'wordpress-popular-posts'); ?>" onclick="confirm_reset_cache()" /> <label for="wpp-reset-cache"><small><?php _e('Use this button to manually clear entries from WPP cache only', 'wordpress-popular-posts'); ?></small></label></p> - <p><input type="button" name="wpp-reset-all" id="wpp-reset-all" class="button-secondary" value="<?php _e("Clear all data", 'wordpress-popular-posts'); ?>" onclick="confirm_reset_all()" /> <label for="wpp-reset-all"><small><?php _e('Use this button to manually clear entries from all WPP data tables', 'wordpress-popular-posts'); ?></small></label></p> - </div> - <!-- End tools --> - - <!-- Start params --> - <div id="wpp_params" <?php echo ( "params" == $current ) ? '' : ' style="display: none;"'; ?>> - <div> - <p><?php printf( __('With the following parameters you can customize the popular posts list when using either the <a href="%1$s">wpp_get_mostpopular() template tag</a> or the <a href="%2$s">[wpp] shortcode</a>.', 'wordpress-popular-posts'), - 'https://github.com/cabrerahector/wordpress-popular-posts/wiki/2.-Template-tags#wpp_get_mostpopular', - 'https://github.com/cabrerahector/wordpress-popular-posts/wiki/1.-Using-WPP-on-posts-&-pages' - ); ?></p> - <br /> - <table cellspacing="0" class="wp-list-table widefat fixed posts"> - <thead> - <tr> - <th class="manage-column column-title"><?php _e('Parameter', 'wordpress-popular-posts'); ?></th> - <th class="manage-column column-title"><?php _e('What it does ', 'wordpress-popular-posts'); ?></th> - <th class="manage-column column-title"><?php _e('Possible values', 'wordpress-popular-posts'); ?></th> - <th class="manage-column column-title"><?php _e('Defaults to', 'wordpress-popular-posts'); ?></th> - <th class="manage-column column-title"><?php _e('Example', 'wordpress-popular-posts'); ?></th> - </tr> - </thead> - <tbody> - <tr> - <td><strong>header</strong></td> - <td><?php _e('Sets a heading for the list', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'header' => 'Popular Posts'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp header='Popular Posts']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>header_start</strong></td> - <td><?php _e('Set the opening tag for the heading of the list', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><h2></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'header' => 'Popular Posts', <br /> 'header_start' => '<h3 class="title">',<br /> 'header_end' => '</h3>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp header='Popular Posts' header_start='<h3 class="title">' header_end='</h3>']<br /><br /></td> - </tr> - <tr> - <td><strong>header_end</strong></td> - <td><?php _e('Set the closing tag for the heading of the list', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td></h2></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'header' => 'Popular Posts', <br /> 'header_start' => '<h3 class="title">',<br /> 'header_end' => '</h3>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp header='Popular Posts' header_start='<h3 class="title">' header_end='</h3>']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>limit</strong></td> - <td><?php _e('Sets the maximum number of popular posts to be shown on the listing', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>10</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'limit' => 5<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp limit=5]<br /><br /></td> - </tr> - <tr> - <td><strong>range</strong></td> - <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries within the time range specified by you', 'wordpress-popular-posts'); ?></td> - <td>"last24hours", "last7days", "last30days", "all", "custom"</td> - <td>last24hours</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'range' => 'last7days'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp range='last7days']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>time_quantity</strong></td> - <td><?php _e('Especifies the number of time units of the custom time range', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>24</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'range' => 'custom',<br /> 'time_quantity' => 1,<br /> 'time_unit' => 'hour'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp range='custom' time_quantity=1 time_unit='hour']<br /><br /></td> - </tr> - <tr> - <td><strong>time_unit</strong></td> - <td><?php _e('Especifies the time unit of the custom time range', 'wordpress-popular-posts'); ?></td> - <td>minute, hour, day, week, month</td> - <td>hour</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'range' => 'custom',<br /> 'time_quantity' => 1,<br /> 'time_unit' => 'hour'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp range='custom' time_quantity=1 time_unit='hour']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>freshness</strong></td> - <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries published within the time range specified by you', 'wordpress-popular-posts'); ?></td> - <td>1 (true), 0 (false)</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'range' => 'weekly',<br /> 'freshness' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp range='last7days' freshness=1]<br /><br /></td> - </tr> - <tr> - <td><strong>order_by</strong></td> - <td><?php _e('Sets the sorting option of the popular posts', 'wordpress-popular-posts'); ?></td> - <td>"comments", "views", "avg" <?php _e('(for average views per day)', 'wordpress-popular-posts'); ?></td> - <td>views</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'order_by' => 'comments'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp order_by='comments']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>post_type</strong></td> - <td><?php _e('Defines the type of posts to show on the listing', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td>post,page</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'post_type' => 'post,page,your-custom-post-type'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp post_type='post,page,your-custom-post-type']<br /><br /></td> - </tr> - <tr> - <td><strong>pid</strong></td> - <td><?php _e('If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the listing.', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'pid' => '60,25,31'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp pid='60,25,31']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>cat</strong></td> - <td><?php _e('If set, WordPress Popular Posts will retrieve all entries that belong to the specified category ID(s). If a minus sign is used, entries associated to the category will be excluded instead.', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'cat' => '1,55,-74'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp cat='1,55,-74']<br /><br /></td> - </tr> - <tr> - <td><strong>taxonomy</strong></td> - <td><?php _e('If set, WordPress Popular Posts will filter posts by a given taxonomy.', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'taxonomy' => 'post_tag',<br /> 'term_id' => '118,75,15'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp taxonomy='post_tag' term_id='118,75,15']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>term_id</strong></td> - <td><?php _e('If set, WordPress Popular Posts will retrieve all entries that belong to the specified term ID(s). If a minus sign is used, entries associated to the term(s) will be excluded instead.', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'taxonomy' => 'post_tag',<br /> 'term_id' => '118,75,15'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp taxonomy='post_tag' term_id='118,75,15']<br /><br /></td> - </tr> - <tr> - <td><strong>author</strong></td> - <td><?php _e('If set, WordPress Popular Posts will retrieve all entries created by specified author(s) ID(s).', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><?php _e('None', 'wordpress-popular-posts'); ?></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'author' => '75,8,120'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp author='75,8,120']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>title_length</strong></td> - <td><?php _e('If set, WordPress Popular Posts will shorten each post title to "n" characters whenever possible', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>25</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'title_length' => 25<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp title_length=25]<br /><br /></td> - </tr> - <tr> - <td><strong>title_by_words</strong></td> - <td><?php _e('If set to 1, WordPress Popular Posts will shorten each post title to "n" words instead of characters', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'title_by_words' => 1,<br /> 'title_length' => 25<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp title_by_words=1 title_length=25]<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>excerpt_length</strong></td> - <td><?php _e('If set, WordPress Popular Posts will build and include an excerpt of "n" characters long from the content of each post listed as popular', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp excerpt_length=25 post_html='<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>']<br /><br /></td> - </tr> - <tr> - <td><strong>excerpt_format</strong></td> - <td><?php _e('If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) and hyperlinks found in the excerpt', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'excerpt_format' => 1,<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp excerpt_format=1 excerpt_length=25 post_html='<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>excerpt_by_words</strong></td> - <td><?php _e('If set to 1, WordPress Popular Posts will shorten the excerpt to "n" words instead of characters', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'excerpt_by_words' => 1,<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp excerpt_by_words=1 excerpt_length=55 post_html='<li>{thumb} {title} <span class="wpp-excerpt">{summary}</span></li>']<br /><br /></td> - </tr> - <tr> - <td><strong>thumbnail_width</strong></td> - <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the width for thumbnails', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'thumbnail_width' => 30,<br /> 'thumbnail_height' => 30<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp thumbnail_width=30 thumbnail_height=30]<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>thumbnail_height</strong></td> - <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the height for thumbnails', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Positive integer', 'wordpress-popular-posts'); ?></td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'thumbnail_width' => 30,<br /> 'thumbnail_height' => 30<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp thumbnail_width=30 thumbnail_height=30]<br /><br /></td> - </tr> - <tr> - <td><strong>rating</strong></td> - <td><?php _e('If set, and if the WP-PostRatings plugin is installed and enabled on your blog, WordPress Popular Posts will show how your visitors are rating your entries', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'rating' => 1,<br /> 'post_html' => '<li>{thumb} {title} {rating}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp rating=1 post_html='<li>{thumb} {title} {rating}</li>']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>stats_comments</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show how many comments each popular post has got during the specified time range', 'wordpress-popular-posts'); ?></td> - <td>1 (true), 0 (false)</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_comments' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_comments=1]<br /><br /></td> - </tr> - <tr> - <td><strong>stats_views</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show how many views each popular post has got during the specified time range', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>1</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_views' => 0<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_views=0]<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>stats_author</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show who published each popular post on the list', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_author' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_author=1]<br /><br /></td> - </tr> - <tr> - <td><strong>stats_date</strong></td> - <td><?php _e('If set, WordPress Popular Posts will display the date when each popular post on the list was published', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_date' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_date=1]<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>stats_date_format</strong></td> - <td><?php _e('Sets the date format', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_date' => 1,<br /> 'stats_date_format' => 'F j, Y'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_date=1 stats_date_format='F j, Y']<br /><br /></td> - </tr> - <tr> - <td><strong>stats_category</strong></td> - <td><?php _e('If set, WordPress Popular Posts will display the categories associated to each entry', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_category' => 1, <br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a> {category}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_taxonomy=1 post_html='<li>{thumb} <a href="{url}">{text_title}</a> {category}</li>']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>stats_taxonomy</strong></td> - <td><?php _e('If set, WordPress Popular Posts will display the taxonomies associated to each entry', 'wordpress-popular-posts'); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'stats_taxonomy' => 1, <br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a> {taxonomy}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp stats_taxonomy=1 post_html='<li>{thumb} <a href="{url}">{text_title}</a> {taxonomy}</li>']<br /><br /></td> - </tr> - <tr> - <td><strong>wpp_start</strong></td> - <td><?php _e('Sets the opening tag for the listing', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td><ul></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'wpp_start' => '<ol>',<br /> 'wpp_end' => '</ol>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp wpp_start='<ol>' wpp_end='</ol>']<br /><br /></td> - </tr> - <tr class="alternate"> - <td><strong>wpp_end</strong></td> - <td><?php _e('Sets the closing tag for the listing', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string', 'wordpress-popular-posts'); ?></td> - <td></ul></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'wpp_start' => '<ol>',<br /> 'wpp_end' => '</ol>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp wpp_start='<ol>' wpp_end='</ol>']<br /><br /></td> - </tr> - <tr> - <td><strong>post_html</strong></td> - <td><?php _e('Sets the HTML structure of each post', 'wordpress-popular-posts'); ?></td> - <td><?php _e('Text string, custom HTML', 'wordpress-popular-posts'); ?>.<br /><br /><strong><?php _e('Available Content Tags', 'wordpress-popular-posts'); ?>:</strong> <br /><br /><em>{thumb}</em> (<?php _e('returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{thumb_img}</em> (<?php _e('returns thumbnail image without linking to post/page, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{thumb_url}</em> (<?php _e('returns thumbnail url, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{title}</em> (<?php _e('returns linked post/page title', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{pid}</em> (<?php _e('returns the post/page ID', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{summary}</em> (<?php _e('returns post/page excerpt, and requires excerpt_length to be greater than 0', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{stats}</em> (<?php _e('returns the default stats tags', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{rating}</em> (<?php _e('returns post/page current rating, requires WP-PostRatings installed and enabled', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{score}</em> (<?php _e('returns post/page current rating as an integer, requires WP-PostRatings installed and enabled', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{url}</em> (<?php _e('returns the URL of the post/page', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{text_title}</em> (<?php _e('returns post/page title, no link', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{author}</em> (<?php _e('returns linked author name, requires stats_author=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{category}</em> (<?php _e('returns linked category name, requires stats_category=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{taxonomy}</em> (<?php _e('returns linked taxonomy names, requires stats_taxonomy=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{views}</em> (<?php _e('returns views count only, no text', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{comments}</em> (<?php _e('returns comments count only, no text, requires stats_comments=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{date}</em> (<?php _e('returns post/page date, requires stats_date=1', 'wordpress-popular-posts'); ?>)</td> - <td><li>{thumb} {title} <span class="wpp-meta post-stats">{stats}</span></li></td> - <td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp post_html='<li>{thumb} <a href="{url}">{text_title}</a></li>']<br /><br /></td> - </tr> - </tbody> - </table> - </div> - </div> - <!-- End params --> - - <!-- Start debug --> - <?php - global $wpdb, $wp_version; - - $my_theme = wp_get_theme(); - - $site_plugins = get_plugins(); - $plugin_names = array(); - - foreach( $site_plugins as $main_file => $plugin_meta ) : - if ( !is_plugin_active( $main_file ) ) - continue; - $plugin_names[] = sanitize_text_field( $plugin_meta['Name'] . ' ' . $plugin_meta['Version'] ); - endforeach; - ?> - <div id="wpp_debug" <?php echo ( "debug" == $current ) ? '' : ' style="display: none;"'; ?>> - <p><strong>PHP version:</strong> <?php echo phpversion(); ?></p> - <p><strong>PHP extensions:</strong> <?php echo implode( ', ', get_loaded_extensions() ); ?></p> - <p><strong>Database version:</strong> <?php echo $wpdb->get_var( "SELECT VERSION();" ); ?></p> - <p><strong>InnoDB availability:</strong> <?php echo $wpdb->get_var( "SELECT SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE = 'InnoDB';" ); ?></p> - <p><strong>WordPress version:</strong> <?php echo $wp_version; ?></p> - <p><strong>Multisite:</strong> <?php echo ( function_exists( 'is_multisite' ) && is_multisite() ) ? 'Yes' : 'No'; ?></p> - <p><strong>Active plugins:</strong> <?php echo implode( ', ', $plugin_names ); ?></p> - <p><strong>Theme:</strong> <?php echo $my_theme->get( 'Name' ) . ' (' . $my_theme->get( 'Version' ) . ') by ' . $my_theme->get( 'Author' ); ?></p> - </div> - <!-- End debug --> - -</div> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/admin/partials/index.php b/wp-content/plugins/wordpress-popular-posts/admin/partials/index.php deleted file mode 100644 index a0cf42a0a344342a3a3fd6ba524a11ea39de9f08..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/admin/partials/index.php +++ /dev/null @@ -1,2 +0,0 @@ -<?php -// Silence is golden diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-activator.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-activator.php deleted file mode 100644 index 942fd9d3f398fdfc53deb6df8cc8ed7b03a4acbe..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-activator.php +++ /dev/null @@ -1,133 +0,0 @@ -<?php - -/** - * Fired during plugin activation - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ - -/** - * Fired during plugin activation. - * - * This class defines all code necessary to run during the plugin's activation. - * - * @since 4.0.0 - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ -class WPP_Activator { - - /** - * Fired when the plugin is activated. - * - * @since 1.0.0 - * @param bool $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog. - */ - public static function activate( $network_wide ) { - - global $wpdb; - - if ( function_exists( 'is_multisite' ) && is_multisite() ) { - - // run activation for each blog in the network - if ( $network_wide ) { - - $original_blog_id = get_current_blog_id(); - $blogs_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" ); - - foreach( $blogs_ids as $blog_id ) { - switch_to_blog( $blog_id ); - self::plugin_activate(); - } - - // switch back to current blog - switch_to_blog( $original_blog_id ); - - return; - - } - - } - - self::plugin_activate(); - - } // end activate - - /** - * When a new MU site is added, generate its WPP DB tables. - * - * @since 4.0.0 - */ - public static function track_new_site() { - self::plugin_activate(); - } // end track_new_site - - /** - * On plugin activation, checks that the WPP database tables are present. - * - * @since 2.4.0 - * @global object wpdb - */ - private static function plugin_activate() { - - global $wpdb; - - // set table name - $prefix = $wpdb->prefix . "popularposts"; - - // fresh setup - if ( "{$prefix}data" != $wpdb->get_var("SHOW TABLES LIKE '{$prefix}data'") ) { - self::do_db_tables( $prefix ); - } - - } // end plugin_activate - - /** - * Creates/updates the WPP database tables. - * - * @since 2.4.0 - * @global object wpdb - */ - private static function do_db_tables( $prefix ) { - - global $wpdb; - - $charset_collate = ""; - - if ( !empty( $wpdb->charset ) ) - $charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset} "; - - if ( !empty( $wpdb->collate ) ) - $charset_collate .= "COLLATE {$wpdb->collate}"; - - $sql = " - CREATE TABLE {$prefix}data ( - postid bigint(20) NOT NULL, - day datetime NOT NULL, - last_viewed datetime NOT NULL, - pageviews bigint(20) DEFAULT 1, - PRIMARY KEY (postid) - ) {$charset_collate} ENGINE=InnoDB; - CREATE TABLE {$prefix}summary ( - ID bigint(20) NOT NULL AUTO_INCREMENT, - postid bigint(20) NOT NULL, - pageviews bigint(20) NOT NULL DEFAULT 1, - view_date date NOT NULL, - view_datetime datetime NOT NULL, - PRIMARY KEY (ID), - KEY postid (postid), - KEY view_date (view_date), - KEY view_datetime (view_datetime) - ) {$charset_collate} ENGINE=InnoDB;"; - - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); - dbDelta( $sql ); - - } // end do_db_tables - -} // end WPP_Activator class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-deactivator.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-deactivator.php deleted file mode 100644 index d5c29498b8faf9435b1505427f61532dcd428e77..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-deactivator.php +++ /dev/null @@ -1,74 +0,0 @@ -<?php - -/** - * Fired during plugin deactivation - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ - -/** - * Fired during plugin deactivation. - * - * This class defines all code necessary to run during the plugin's deactivation. - * - * @since 4.0.0 - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ -class WPP_Deactivator { - - /** - * Fired when the plugin is deactivated. - * - * @since 1.0.0 - * @global object wpbd - * @param bool network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog - */ - public static function deactivate( $network_wide ) { - - global $wpdb; - - if ( function_exists( 'is_multisite' ) && is_multisite() ) { - - // Run deactivation for each blog in the network - if ( $network_wide ) { - - $original_blog_id = get_current_blog_id(); - $blogs_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" ); - - foreach( $blogs_ids as $blog_id ) { - switch_to_blog( $blog_id ); - self::plugin_deactivate(); - } - - // Switch back to current blog - switch_to_blog( $original_blog_id ); - - return; - - } - - } - - self::plugin_deactivate(); - - } // end deactivate - - /** - * On plugin deactivation, disables the shortcode and removes the scheduled task. - * - * @since 2.4.0 - */ - private static function plugin_deactivate() { - - remove_shortcode( 'wpp' ); - wp_clear_scheduled_hook( 'wpp_cache_event' ); - - } // end plugin_deactivate - -} // end WPP_Activator class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-helper.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-helper.php deleted file mode 100644 index f2c6c4d8a71636afd76c1e436d88e35f1fbf2b04..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-helper.php +++ /dev/null @@ -1,214 +0,0 @@ -<?php - -class WPP_Helper { - - /** - * Checks for valid number. - * - * @since 2.1.6 - * @param int number - * @return bool - */ - public static function is_number( $number ){ - return !empty($number) && is_numeric($number) && (intval($number) == floatval($number)); - } - - /** - * Checks for valid date. - * - * @since 4.0.0 - * @param string $date - * @param string $format - * @return bool - */ - public static function is_valid_date( $date = null, $format = 'Y-m-d' ){ - $d = DateTime::createFromFormat( $format, $date ); - return $d && $d->format($format) === $date; - } - - /** - * Returns an array of dates between two dates. - * - * @since 4.0.0 - * @param string $start_date - * @param string $end_date - * @param string $format - * @return array|bool - */ - public static function get_date_range( $start_date = null, $end_date = null, $format = 'Y-m-d' ) { - - if ( - self::is_valid_date( $start_date ) - && self::is_valid_date( $end_date ) - ) { - - $dates = array(); - - $begin = new DateTime( $start_date ); - $end = new DateTime( $end_date ); - - if ( $begin < $end ) { - while( $begin <= $end ) { - $dates[] = $begin->format( $format ); - $begin->modify('+1 day'); - } - } - else { - while( $begin >= $end ) { - $dates[] = $begin->format( $format ); - $begin->modify('-1 day'); - } - } - - return $dates; - - } - - return false; - - } - - /** - * Returns server date. - * - * @since 2.1.6 - * @access private - * @return string - */ - public static function curdate() { - return gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) ); - } - - /** - * Returns mysql datetime. - * - * @since 2.1.6 - * @access private - * @return string - */ - public static function now() { - return current_time( 'mysql' ); - } - - /** - * Returns time. - * - * @since 2.3.0 - * @return string - */ - public static function microtime_float() { - - list( $msec, $sec ) = explode( ' ', microtime() ); - - return (float) $msec + (float) $sec; - - } - - /** - * Merges two associative arrays recursively. - * - * @since 2.3.4 - * @link http://www.php.net/manual/en/function.array-merge-recursive.php#92195 - * @param array array1 - * @param array array2 - * @return array - */ - public static function merge_array_r( array $array1, array $array2 ) { - - $merged = $array1; - - foreach ( $array2 as $key => &$value ) { - - if ( is_array( $value ) && isset ( $merged[$key] ) && is_array( $merged[$key] ) ) { - $merged[$key] = self::merge_array_r( $merged[$key], $value ); - } else { - $merged[$key] = $value; - } - } - - return $merged; - - } - - /** - * Debug function. - * - * @since 3.0.0 - * @param mixed $v variable to display with var_dump() - * @param mixed $v,... unlimited optional number of variables to display with var_dump() - */ - public static function debug( $v ) { - - if ( !defined('WPP_DEBUG') || !WPP_DEBUG ) - return; - - foreach ( func_get_args() as $arg ) { - - print "<pre>"; - var_dump($arg); - print "</pre>"; - - } - - } - - /** - * Truncates text. - * - * @since 4.0.0 - * @param string $text - * @param int $length - * @param bool $truncate_by_words - * @return string - */ - public static function truncate( $text = '', $length = 25, $truncate_by_words = false ) { - - if ( '' !== $text ) { - - // Truncate by words - if ( $truncate_by_words ) { - - $words = explode( " ", $text, $length + 1 ); - - if ( count($words) > $length ) { - array_pop( $words ); - $text = rtrim( implode(" ", $words), ",." ) . " ..."; - } - - } - // Truncate by characters - elseif ( strlen($text) > $length ) { - $text = rtrim( mb_substr($text, 0, $length , get_bloginfo('charset')), " ,." ) . "..."; - } - - } - - return $text; - - } - - /** - * Gets post/page ID if current page is singular - * - * @since 3.1.2 - */ - public static function is_single() { - - $trackable = array(); - $registered_post_types = get_post_types( array('public' => true), 'names' ); - - foreach ( $registered_post_types as $post_type ) { - $trackable[] = $post_type; - } - - $trackable = apply_filters( 'wpp_trackable_post_types', $trackable ); - - if ( is_singular( $trackable ) && !is_front_page() && !is_preview() && !is_trackback() && !is_feed() && !is_robots() && !is_customize_preview() ) { - return get_queried_object_id(); - } - - return false; - - } - -} // End WPP_Helper class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-i18n.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-i18n.php deleted file mode 100644 index c03a0ca73d1c5130841f943c3296a6029c5200d4..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-i18n.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -/** - * Define the internationalization functionality - * - * Loads and defines the internationalization files for this plugin - * so that it is ready for translation. - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ -/** - * Define the internationalization functionality. - * - * Loads and defines the internationalization files for this plugin - * so that it is ready for translation. - * - * @since 4.0.0 - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ - -class WPP_i18n { - - /** - * Load the plugin text domain for translation. - * - * @since 1.0.0 - */ - public function load_plugin_textdomain() { - - $locale = apply_filters( 'plugin_locale', get_locale(), 'wordpress-popular-posts' ); - load_textdomain( 'wordpress-popular-posts', WP_LANG_DIR . '/' . 'wordpress-popular-posts' . '/' . 'wordpress-popular-posts' . '-' . $locale . '.mo' ); - load_plugin_textdomain( 'wordpress-popular-posts', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' ); - - } - -} // End WPP_i18n class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-image.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-image.php deleted file mode 100644 index 8389a6c60b121f3d88315800d4ac9f882f68e889..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-image.php +++ /dev/null @@ -1,521 +0,0 @@ -<?php - -class WPP_Image { - - /** - * The array of actions registered with WordPress. - * - * @since 4.0.0 - * @access private - * @var object|WPP_Image - */ - private static $instance; - - /** - * The array of actions registered with WordPress. - * - * @since 4.0.0 - * @access private - * @var bool $can_create_thumbnails Checks if WPP is able to build thumbnails. - */ - private $can_create_thumbnails; - - /** - * Default thumbnail. - * - * @since 2.2.0 - * @var string - */ - private $default_thumbnail = ''; - - /** - * Plugin uploads directory. - * - * @since 3.0.4 - * @var array - */ - private $uploads_dir = array(); - - /** - * Initialize the collections used to maintain the actions and filters. - * - * @since 4.0.0 - * @access private - */ - private function __construct() { - - // Check if WPP can create images - $this->can_create_thumbnails = ( extension_loaded('ImageMagick') || extension_loaded('imagick') || (extension_loaded('GD') && function_exists('gd_info')) ); - - if ( $this->can_create_thumbnails ) { - - // Set default thumbnail - $this->default_thumbnail = $this->get_plugin_dir_url() . "public/images/no_thumb.jpg"; - - // Set uploads folder - $wp_upload_dir = ( function_exists('wp_get_upload_dir') ) ? wp_get_upload_dir() : wp_upload_dir(); // wp_get_upload_dir() was introduced in WP 4.5! - $this->uploads_dir['basedir'] = $wp_upload_dir['basedir'] . "/" . 'wordpress-popular-posts'; - $this->uploads_dir['baseurl'] = $wp_upload_dir['baseurl'] . "/" . 'wordpress-popular-posts'; - - if ( !is_dir($this->uploads_dir['basedir']) ) { - if ( !wp_mkdir_p($this->uploads_dir['basedir']) ) { - $this->uploads_dir['basedir'] = $wp_upload_dir['basedir']; - $this->uploads_dir['baseurl'] = $wp_upload_dir['baseurl']; - } - } - - } - - } - - /** - * Get an instance of this class. - * - * @since 4.0.0 - * @return object|\WPP_Image - */ - public static function get_instance() { - - if ( is_null(self::$instance) ) { - self::$instance = new WPP_Image(); - } - - return self::$instance; - - } - - /** - * Tells whether WPP can create thumbnails or not. - * - * @since 4.0.0 - * @access public - * @return bool - */ - public function can_create_thumbnails() { - return $this->can_create_thumbnails; - } - - public function get_plugin_dir() { - return WP_PLUGIN_DIR . '/wordpress-popular-posts/'; - } - - public function get_plugin_dir_url() { - return plugins_url() . '/wordpress-popular-posts/'; - } - - /** - * Get WPP's uploads folder. - * - * @since 4.0.0 - * @access public - * @return array|bool - */ - public function get_plugin_uploads_dir() { - - if ( is_array($this->uploads_dir) && !empty($this->uploads_dir) ) - return $this->uploads_dir; - - return false; - - } - - /** - * Retrieves / creates the post thumbnail. - * - * @since 2.3.3 - * @param object $post_object Post object (must contain, at least, the properties id and title) - * @param string $url Image URL - * @param array $size Thumbnail's width and height - * @param array $crop Image cropping - * @param string $source Image source - * @return string - */ - public function get_img( $post_object = null, $url = null, $size = array(80, 80), $crop = true, $source = "featured" ) { - - // WPP cannot create thumbnails - if ( !$this->can_create_thumbnails ) - return ''; - - if ( - ( false === $post_object instanceof stdClass || !isset($post_object->id) ) - && !filter_var( $url, FILTER_VALIDATE_URL ) - ) { - return $this->render_image( $this->default_thumbnail, $size, 'wpp-thumbnail wpp_def_no_src wpp_' . $source, $post_object ); - } - - // Get image by post ID (parent) - if ( - isset( $post_object->id ) - && !$url - ) { - $file_path = $this->get_image_file_paths( $post_object->id, $source ); - - // No images found, return default thumbnail - if ( !$file_path ) { - return $this->render_image( $this->default_thumbnail, $size, 'wpp-thumbnail wpp_def_noPath wpp_' . $source, $post_object ); - } - } - // Get image from URL - else { - // sanitize URL, just in case - $image_url = esc_url( $url ); - // remove querystring - preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $image_url, $matches ); - $image_url = $matches[0]; - - $attachment_id = $this->get_attachment_id( $image_url ); - - // Image is hosted locally - if ( $attachment_id ) { - $file_path = get_attached_file( $attachment_id ); - } - // Image is hosted outside WordPress - else { - $external_image = $this->fetch_external_image( $post_object->id, $image_url ); - - if ( !$external_image ) { - return $this->render_image( $this->default_thumbnail, $size, 'wpp-thumbnail wpp_def_noPath wpp_no_external', $post_object ); - } - - $file_path = $external_image; - } - } - - $extension = pathinfo( $file_path, PATHINFO_EXTENSION ); - - $image_meta = array( - 'filename' => $post_object->id . '-' . $source . '-' . $size[0] . 'x' . $size[1], - 'extension' => $extension, - 'width' => $size[0], - 'height' => $size[1], - 'alt' => esc_attr( wp_strip_all_tags( $post_object->title ) ), - 'crop' => $crop, - 'source' => $source, - 'parent_id' => $post_object->id - ); - - // there is a thumbnail already - if ( is_file( trailingslashit( $this->uploads_dir['basedir'] ) . $image_meta['filename'] . '.' . $image_meta['extension'] ) ) { - return $this->render_image( - trailingslashit( $this->uploads_dir['baseurl'] ) . $image_meta['filename'] . '.' . $image_meta['extension'], - $size, - 'wpp-thumbnail wpp_cached_thumb wpp_' . $source, - $post_object - ); - } - - return $this->image_resize( $file_path, $image_meta ); - - } // end get_img - - /** - * Resizes image. - * - * @since 3.0.0 - * @access private - * @param object $post_object Post object - * @param string $path Image path - * @param array $size Image's width and height - * @param string $source Image source - * @return string - */ - private function image_resize( $path, $image_meta ) { - - $image = wp_get_image_editor( $path ); - - // valid image, create thumbnail - if ( !is_wp_error($image) ) { - - $image->resize( $image_meta['width'], $image_meta['height'], $image_meta['crop'] ); - $new_img = $image->save( trailingslashit($this->uploads_dir['basedir']) . $image_meta['filename'] . '.' . $image_meta['extension'] ); - - if ( is_wp_error($new_img) ) { - return $this->render_image( $this->default_thumbnail, array( $image_meta['width'], $image_meta['height'] ), 'wpp-thumbnail wpp_imgeditor_error wpp_' . $image_meta['source'], null, $new_img->get_error_message() ); - } - - return $this->render_image( trailingslashit($this->uploads_dir['baseurl']) . $new_img['file'], array( $image_meta['width'], $image_meta['height'] ), 'wpp-thumbnail wpp_imgeditor_thumb wpp_' . $image_meta['source'], null ); - - } - - // ELSE - // image file path is invalid - return $this->render_image( $this->default_thumbnail, array( $image_meta['width'], $image_meta['height'] ), 'wpp-thumbnail wpp_imgeditor_error wpp_' . $image_meta['source'], null, $image->get_error_message() ); - - } // end image_resize - - /** - * Get image absolute path / URL. - * - * @since 3.0.0 - * @access private - * @param int $id Post ID - * @param string $source Image source - * @return array - */ - private function get_image_file_paths( $id, $source ) { - - $file_path = ''; - - // get thumbnail path from the Featured Image - if ( "featured" == $source ) { - - if ( $thumbnail_id = get_post_thumbnail_id($id) ) { - // image path - return get_attached_file( $thumbnail_id ); - } - - } - // get thumbnail path from first image attachment - elseif ( "first_attachment" == $source ) { - - $args = array( - 'numberposts' => 1, - 'order' => 'ASC', - 'post_parent' => $id, - 'post_type' => 'attachment', - 'post_mime_type' => 'image' - ); - $post_attachments = get_children( $args ); - - if ( !empty($post_attachments) ) { - $first_img = array_shift( $post_attachments ); - return get_attached_file( $first_img->ID ); - } - - } - // get thumbnail path from post content - elseif ( "first_image" == $source ) { - - /** @var wpdb $wpdb */ - global $wpdb; - - if ( $content = $wpdb->get_var( "SELECT post_content FROM {$wpdb->posts} WHERE ID = {$id};" ) ) { - - // at least one image has been found - if ( preg_match( '/<img[^>]+>/i', $content, $img ) ) { - - // get img src attribute from the first image found - preg_match( '/(src)="([^"]*)"/i', $img[0], $src_attr ); - - if ( isset($src_attr[2]) && !empty($src_attr[2]) ) { - - // image from Media Library - if ( $attachment_id = $this->get_attachment_id( $src_attr[2] ) ) { - - $file_path = get_attached_file( $attachment_id ); - - // There's a file path, so return it - if ( !empty($file_path) ) { - return $file_path; - } - - } // external image? - else { - return $this->fetch_external_image( $id, $src_attr[2] ); - } - - } - - } - - } - - } - - return false; - - } // end get_image_file_paths - - /** - * Render image tag. - * - * @since 3.0.0 - * @access public - * @param string src Image URL - * @param array dimension Image's width and height - * @param string class CSS class - * @param object $post_object Post object (must contain, at least, the properties id and title) - * @param string error Error, if the image could not be created - * @return string - */ - public function render_image( $src, $size, $class, $post_object, $error = null ) { - - $img_tag = ''; - - if ( $error ) { - $img_tag = '<!-- ' . $error . ' --> '; - } - - $img_tag .= '<img src="' . ( is_ssl() ? str_ireplace( "http://", "https://", $src ) : $src ) . '" width="' . $size[0] . '" height="' . $size[1] . '" alt="' . ( ($post_object instanceof stdClass && !isset($post_object->id) ? esc_attr( wp_strip_all_tags($post_object->title) ) : '' ) ) . '" class="' . $class . '" />'; - - return apply_filters( 'wpp_render_image', $img_tag ); - - } // render_image - - /** - * Get the Attachment ID for a given image URL. - * - * @since 3.0.0 - * @access private - * @author Frankie Jarrett - * @link http://frankiejarrett.com/get-an-attachment-id-by-url-in-wordpress/ - * @param string $url - * @return bool|int - */ - private function get_attachment_id( $url ) { - - // Split the $url into two parts with the wp-content directory as the separator. - $parse_url = explode( parse_url( WP_CONTENT_URL, PHP_URL_PATH ), $url ); - - // Get the host of the current site and the host of the $url, ignoring www. - $this_host = str_ireplace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) ); - $file_host = str_ireplace( 'www.', '', parse_url( $url, PHP_URL_HOST ) ); - - // Return nothing if there aren't any $url parts or if the current host and $url host do not match. - if ( - !isset( $parse_url[1] ) - || empty( $parse_url[1] ) - || ( $this_host != $file_host ) - ) { - return false; - } - - // Now we're going to quickly search the DB for any attachment GUID with a partial path match. - // Example: /uploads/2013/05/test-image.jpg - global $wpdb; - - if ( !$attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->prefix}posts WHERE guid RLIKE %s;", $parse_url[1] ) ) ) { - // Maybe it's a resized image, so try to get the full one - $parse_url[1] = preg_replace( '/-[0-9]{1,4}x[0-9]{1,4}\.(jpg|jpeg|png|gif|bmp)$/i', '.$1', $parse_url[1] ); - $attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->prefix}posts WHERE guid RLIKE %s;", $parse_url[1] ) ); - } - - // Returns null if no attachment is found. - return isset( $attachment[0] ) ? $attachment[0] : NULL; - - } // get_attachment_id - - /** - * Fetchs external images. - * - * @since 2.3.3 - * @access private - * @param int $id Post ID. - * @param string $url Image url. - * @return bool|int - */ - private function fetch_external_image( $id, $url ){ - - $full_image_path = trailingslashit( $this->uploads_dir['basedir'] ) . "{$id}_". sanitize_file_name( rawurldecode(wp_basename( $url )) ); - - // if the file exists already, return URL and path - if ( file_exists($full_image_path) ) - return $full_image_path; - - $accepted_status_codes = array( 200, 301, 302 ); - $response = wp_remote_head( $url, array( 'timeout' => 5, 'sslverify' => false ) ); - - if ( - !is_wp_error($response) - && in_array( wp_remote_retrieve_response_code($response), $accepted_status_codes ) - ) { - - require_once( ABSPATH . 'wp-admin/includes/file.php' ); - $url = str_replace( 'https://', 'http://', $url ); - $tmp = download_url( $url ); - - if ( !is_wp_error( $tmp ) ) { - - if ( function_exists('exif_imagetype') ) { - $image_type = exif_imagetype( $tmp ); - } else { - $image_type = getimagesize( $tmp ); - $image_type = ( isset($image_type[2]) ) ? $image_type[2] : NULL; - } - - if ( in_array($image_type, array(IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG)) ) { - - // move file to Uploads - if ( @rename($tmp, $full_image_path) ) { - // borrowed from WP - set correct file permissions - $stat = stat( dirname( $full_image_path ) ); - $perms = $stat['mode'] & 0000644; - @chmod( $full_image_path, $perms ); - - return $full_image_path; - } - - } - - // remove temp file - @unlink( $tmp ); - - } - - } - - return false; - - } // end fetch_external_image - - /** - * Gets list of available thumbnails sizes - * - * @since 3.2.0 - * @link http://codex.wordpress.org/Function_Reference/get_intermediate_image_sizes - * @param string $size - * @return array|bool - */ - public function get_image_sizes( $size = '' ) { - - global $_wp_additional_image_sizes; - - $sizes = array(); - $get_intermediate_image_sizes = get_intermediate_image_sizes(); - - // Create the full array with sizes and crop info - foreach( $get_intermediate_image_sizes as $_size ) { - - if ( in_array( $_size, array( 'thumbnail', 'medium', 'large' ) ) ) { - - $sizes[ $_size ]['width'] = get_option( $_size . '_size_w' ); - $sizes[ $_size ]['height'] = get_option( $_size . '_size_h' ); - $sizes[ $_size ]['crop'] = (bool) get_option( $_size . '_crop' ); - - } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) { - - $sizes[ $_size ] = array( - 'width' => $_wp_additional_image_sizes[ $_size ]['width'], - 'height' => $_wp_additional_image_sizes[ $_size ]['height'], - 'crop' => $_wp_additional_image_sizes[ $_size ]['crop'] - ); - - } - - } - - // Get only 1 size if found - if ( $size ) { - - if( isset( $sizes[ $size ] ) ) { - return $sizes[ $size ]; - } else { - return false; - } - - } - - return $sizes; - } - - /** - * Sets default thumbnail image. - * - * @since 4.0.2 - * @param string $url - */ - public function set_default( $url ) { - $this->default_thumbnail = esc_url( $url ); - } - -} // End WPP_Image class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-loader.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-loader.php deleted file mode 100644 index 58f8a3f1e228fc0239f55a5c85826dab97005aae..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-loader.php +++ /dev/null @@ -1,155 +0,0 @@ -<?php - -/** - * Register all actions, filters and shortcodes for the plugin - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ - -/** - * Register all actions, filters and shortcodes for the plugin. - * - * Maintain a list of all hooks that are registered throughout - * the plugin, and register them with the WordPress API. Call the - * run function to execute the list of actions, filters and shortcodes. - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ -class WPP_Loader { - - /** - * The array of actions registered with WordPress. - * - * @since 4.0.0 - * @access protected - * @var array $actions The actions registered with WordPress to fire when the plugin loads. - */ - protected $actions; - - /** - * The array of filters registered with WordPress. - * - * @since 4.0.0 - * @access protected - * @var array $filters The filters registered with WordPress to fire when the plugin loads. - */ - protected $filters; - - /** - * The array of shortcodes registered with WordPress. - * - * @since 4.0.0 - * @access protected - * @var array $shortcodes The shortcodes registered with WordPress to fire when the plugin loads. - */ - protected $shortcodes; - - /** - * Initialize the collections used to maintain the actions and filters. - * - * @since 4.0.0 - */ - public function __construct() { - - $this->actions = array(); - $this->filters = array(); - $this->shortcodes = array(); - - } - - /** - * Add a new action to the collection to be registered with WordPress. - * - * @since 4.0.0 - * @param string $hook The name of the WordPress action that is being registered. - * @param object $component A reference to the instance of the object on which the action is defined. - * @param string $callback The name of the function definition on the $component. - * @param int $priority Optional. he priority at which the function should be fired. Default is 10. - * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1. - */ - public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) { - $this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args ); - } - - /** - * Add a new filter to the collection to be registered with WordPress. - * - * @since 4.0.0 - * @param string $hook The name of the WordPress filter that is being registered. - * @param object $component A reference to the instance of the object on which the filter is defined. - * @param string $callback The name of the function definition on the $component. - * @param int $priority Optional. he priority at which the function should be fired. Default is 10. - * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1 - */ - public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) { - $this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args ); - } - - /** - * Add a new shortcode to the collection to be registered with WordPress - * - * @since 4.0.0 - * @param string $tag The name of the new shortcode. - * @param object $component A reference to the instance of the object on which the shortcode is defined. - * @param string $callback The name of the function that defines the shortcode. - */ - public function add_shortcode( $tag, $component, $callback) { - $this->shortcodes = $this->add( $this->shortcodes, $tag, $component, $callback, 10, 2 ); - } - - /** - * A utility function that is used to register the actions and hooks into a single - * collection. - * - * @since 4.0.0 - * @access private - * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). - * @param string $hook The name of the WordPress filter that is being registered. - * @param object $component A reference to the instance of the object on which the filter is defined. - * @param string $callback The name of the function definition on the $component. - * @param int $priority The priority at which the function should be fired. - * @param int $accepted_args The number of arguments that should be passed to the $callback. - * @return array The collection of actions and filters registered with WordPress. - */ - private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) { - - $hooks[] = array( - 'hook' => $hook, - 'component' => $component, - 'callback' => $callback, - 'priority' => $priority, - 'accepted_args' => $accepted_args - ); - - return $hooks; - - } - - /** - * Register the filters and actions with WordPress. - * - * @since 4.0.0 - */ - public function run() { - - foreach ( $this->filters as $hook ) { - add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] ); - } - - foreach ( $this->actions as $hook ) { - add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] ); - } - - foreach ( $this->shortcodes as $hook ) { - add_shortcode( $hook['hook'], array( $hook['component'], $hook['callback'] ) ); - } - - } - -} diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-output.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-output.php deleted file mode 100644 index 0e29a008f06758d750c31ccf2479557aaa77bc89..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-output.php +++ /dev/null @@ -1,919 +0,0 @@ -<?php - -class WPP_Output { - - private $data; - - private $output; - - /** - * Widget / shortcode settings. - * - * @since 4.0.0 - * @var array - */ - private $options; - - /** - * Administrative settings. - * - * @since 2.3.3 - * @var array - */ - private $admin_options = array(); - - /** - * Default thumbnail sizes - * - * @since 3.2.2 - * @var array - */ - private $default_thumbnail_sizes = array(); - - /** - * WPP_Image object - * - * @since 4.0.2 - * @var object - */ - private $wpp_image; - - public function __construct( array $popular_posts = array(), array $options = array() ) { - - $this->data = $popular_posts; - $this->options = $options; - $this->admin_options = WPP_Settings::get( 'admin_options' ); - - $this->wpp_image = WPP_Image::get_instance(); - - if ( filter_var( $this->admin_options['tools']['thumbnail']['default'], FILTER_VALIDATE_URL ) ) { - $this->wpp_image->set_default( $this->admin_options['tools']['thumbnail']['default'] ); - } - - $this->default_thumbnail_sizes = $this->wpp_image->get_image_sizes(); - - $this->build_output(); - - } - - /** - * Build the HTML output. - * - * @since 4.0.0 - */ - private function build_output() { - - // Got some posts, format 'em! - if ( !empty($this->data) ) { - - $this->options = WPP_Helper::merge_array_r( - WPP_Settings::$defaults[ 'widget_options' ], - $this->options - ); - - // Allow WP themers / coders access to raw data - // so they can build their own output - if ( has_filter( 'wpp_custom_html' ) ) { - $this->output = apply_filters( 'wpp_custom_html', $this->data, $this->options ); - return; - } - - /* Open HTML wrapper */ - // Output a custom wrapper - if ( - isset($this->options['markup']['custom_html']) - && $this->options['markup']['custom_html'] - && isset($this->options['markup']['wpp-start']) - && isset($this->options['markup']['wpp-end']) - ){ - $this->output .= "\n" . htmlspecialchars_decode( $this->options['markup']['wpp-start'], ENT_QUOTES ) ."\n"; - } - // Output the default wrapper - else { - - $classes = "wpp-list"; - - if ( $this->options['thumbnail']['active'] ) - $classes .= " wpp-list-with-thumbnails"; - - $this->output .= "\n" . "<ul class=\"{$classes}\">" . "\n"; - - } - - // Format each post - foreach( $this->data as $post_object ) { - $this->output .= $this->render_post( $post_object ); - } - - /* Close HTML wrapper */ - // Output a custom wrapper - if ( - isset($this->options['markup']['custom_html']) - && $this->options['markup']['custom_html'] - && isset($this->options['markup']['wpp-start']) - && isset($this->options['markup']['wpp-end']) - ){ - $this->output .= "\n" . htmlspecialchars_decode( $this->options['markup']['wpp-end'], ENT_QUOTES ) ."\n"; - } - // Output default wrapper - else { - $this->output .= "</ul>" . "\n"; - } - - } - // Got nothing to show, give 'em the old "Sorry. No data so far." message! - else { - $this->output = apply_filters( 'wpp_no_data', "<p class=\"wpp-no-data\">" . __('Sorry. No data so far.', 'wordpress-popular-posts') . "</p>" ); - } - - } - - /** - * Build the HTML markup for a single post. - * - * @since 4.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function render_post( stdClass $post_object ) { - - $post = ''; - - $postID = $post_object->id; - - // Permalink - $permalink = $this->get_permalink( $post_object ); - - // Thumbnail - $post_thumbnail = $this->get_thumbnail( $post_object ); - - // Post title (and title attribute) - $post_title_attr = esc_attr( wp_strip_all_tags( $this->get_title( $post_object ) ) ); - $post_title = $this->get_title( $post_object ); - - if ( $this->options['shorten_title']['active'] ) { - - $length = ( filter_var($this->options['shorten_title']['length'], FILTER_VALIDATE_INT) && $this->options['shorten_title']['length'] > 0 ) - ? $this->options['shorten_title']['length'] - : 25; - - $post_title = WPP_Helper::truncate( $post_title, $length, $this->options['shorten_title']['words'] ); - - } - - // Post excerpt - $post_excerpt = $this->get_excerpt( $post_object ); - - // Post rating - $post_rating = $this->get_rating( $post_object ); - - /** - * Post meta - */ - - // Post date - $post_date = $this->get_date( $post_object ); - - // Post taxonomies - $post_taxonomies = $this->get_taxonomies( $post_object ); - - // Post author - $post_author = $this->get_author( $post_object ); - - // Post views count - $post_views = $this->get_pageviews( $post_object ); - - // Post comments count - $post_comments = $this->get_comments( $post_object ); - - // Post meta - $post_meta = join( ' | ', $this->get_metadata( $post_object ) ); - - // Build custom HTML output - if ( $this->options['markup']['custom_html'] ) { - - $data = array( - 'id' => $post_object->id, - 'title' => '<a href="' . $permalink . '" title="' . $post_title_attr . '" class="wpp-post-title" target="' . $this->admin_options['tools']['link']['target'] . '">' . $post_title . '</a>', - 'summary' => $post_excerpt, - 'stats' => $post_meta, - 'img' => ( !empty( $post_thumbnail ) ) ? '<a href="' . $permalink . '" title="' . $post_title_attr . '" target="' . $this->admin_options['tools']['link']['target'] . '">' . $post_thumbnail . '</a>' : '', - 'img_no_link' => $post_thumbnail, - 'url' => $permalink, - 'text_title' => $post_title_attr, - 'taxonomy' => $post_taxonomies, - 'author' => ( !empty($post_author) ) ? '<a href="' . get_author_posts_url( $post_object->uid ) . '">' . $post_author . '</a>' : '', - 'views' => ( $this->options['order_by'] == "views" || $this->options['order_by'] == "comments" ) ? number_format_i18n( $post_views ) : number_format_i18n( $post_views, 2 ), - 'comments' => number_format_i18n( $post_comments ), - 'date' => $post_date - ); - - $post = $this->format_content( htmlspecialchars_decode( $this->options['markup']['post-html'], ENT_QUOTES ), $data, $this->options['rating'] ). "\n"; - - } // Use the "stock" HTML output - else { - - $is_single = WPP_Helper::is_single(); - - $post_thumbnail = ( !empty($post_thumbnail) ) - ? "<a " . ( $is_single == $postID ? '' : "href=\"{$permalink}\"" ) . " title=\"{$post_title_attr}\" target=\"{$this->admin_options['tools']['link']['target']}\">{$post_thumbnail}</a>\n" - : ""; - - $post_excerpt = ( !empty($post_excerpt) ) - ? " <span class=\"wpp-excerpt\">{$post_excerpt}</span>\n" - : ""; - - $post_meta = ( !empty($post_meta) ) - ? " <span class=\"wpp-meta post-stats\">{$post_meta}</span>\n" - : ''; - - $post_rating = ( !empty($post_rating) ) - ? " <span class=\"wpp-rating\">{$post_rating}</span>\n" - : ""; - - $wpp_post_class = array(); - - if ( $is_single == $postID ) { - $wpp_post_class[] = "current"; - } - - // Allow themers / plugin developer - // to add custom classes to each post - $wpp_post_class = apply_filters( "wpp_post_class", $wpp_post_class, $postID ); - - $post = - "<li" . ( ( is_array( $wpp_post_class ) && !empty( $wpp_post_class ) ) ? ' class="' . esc_attr( implode( " ", $wpp_post_class ) ) . '"' : '' ) . ">\n" - . $post_thumbnail - . "<a " . ( $is_single == $postID ? '' : "href=\"{$permalink}\"" ) . " title=\"{$post_title_attr}\" class=\"wpp-post-title\" target=\"{$this->admin_options['tools']['link']['target']}\">{$post_title}</a>\n" - . $post_excerpt - . $post_meta - . $post_rating - . "</li>\n"; - - } - - return apply_filters( 'wpp_post', $post, $post_object, $this->options ); - - } - - /** - * Return the permalink. - * - * @since 4.0.12 - * @access private - * @param object $post_object - * @return string - */ - private function get_permalink( stdClass $post_object ) { - - $translate = WPP_translate::get_instance(); - $trid = $translate->get_object_id( $post_object->id, get_post_type( $post_object->id ) ); - - if ( $post_object->id != $trid ) { - return get_permalink( $trid ); - } - - return get_permalink( $post_object->id ); - } - - /** - * Return the processed post/page title. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_title( stdClass $post_object ) { - - $translate = WPP_translate::get_instance(); - $trid = $translate->get_object_id( $post_object->id, get_post_type( $post_object->id ) ); - - if ( $post_object->id != $trid ) { - $title = get_the_title( $trid ); - } - else { - $title = $post_object->title; - } - - return apply_filters( 'the_title', $title, $post_object->id ); - - } - - /** - * Return the processed thumbnail. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_thumbnail( stdClass $post_object ) { - - $this->wpp_image = WPP_Image::get_instance(); - - $thumbnail = ''; - - if ( - $this->options['thumbnail']['active'] - && $this->wpp_image->can_create_thumbnails() - ) { - - // Create / get thumbnail from custom field - if ( 'custom_field' == $this->admin_options['tools']['thumbnail']['source'] ) { - - $thumb_url = get_post_meta( - $post_object->id, - $this->admin_options['tools']['thumbnail']['field'], - true - ); - - if ( '' != $thumb_url ) { - - // Resize CF image - if ( $this->admin_options['tools']['thumbnail']['resize'] ) { - - $thumbnail = $this->wpp_image->get_img( - $post_object, - $thumb_url, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - $this->options['thumbnail']['crop'], - $this->admin_options['tools']['thumbnail']['source'] - ); - - } // Use original CF image - else { - - $thumbnail = $this->wpp_image->render_image( - $thumb_url, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - 'wpp-thumbnail wpp_cf', - $post_object - ); - - } - - } // Custom field is empty / not set, use default thumbnail - else { - - $thumbnail = $this->wpp_image->get_img( - null, - null, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - $this->options['thumbnail']['crop'], - $this->admin_options['tools']['thumbnail']['source'] - ); - - } - - } // Create / get thumbnail from Featured Image, post images, etc. - else { - - // Use stock images as defined in theme's function.php - if ( - 'predefined' == $this->options['thumbnail']['build'] - && 'featured' == $this->admin_options['tools']['thumbnail']['source'] - ) { - - if ( current_theme_supports( 'post-thumbnails' ) ) { - - // Featured Image found! - if ( has_post_thumbnail( $post_object->id ) ) { - - // Find corresponding image size - $size = null; - - foreach ( $this->default_thumbnail_sizes as $name => $attr ) : - if ( - $attr['width'] == $this->options['thumbnail']['width'] - && $attr['height'] == $this->options['thumbnail']['height'] - && $attr['crop'] == $this->options['thumbnail']['crop'] - ) { - $size = $name; - break; - } - endforeach; - - // Couldn't find a matching size so let's go with width/height combo instead (this should never happen but better safe than sorry!) - if ( null == $size ) { - $size = array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ); - } - - $thumbnail = get_the_post_thumbnail( - $post_object->id, - $size, - array( 'class' => 'wpp-thumbnail wpp_featured_stock' ) - ); - - } // There's no Featured Image set for this post - else { - - $thumbnail = $this->wpp_image->get_img( - null, - null, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - $this->options['thumbnail']['crop'], - $this->admin_options['tools']['thumbnail']['source'] - ); - - } - - } // Current theme does not support Featured Images (?) - else { - - $thumbnail = $this->wpp_image->get_img( - null, - null, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - $this->options['thumbnail']['crop'], - $this->admin_options['tools']['thumbnail']['source'] - ); - - } - - } // Build / Fetch WPP thumbnail - else { - - $thumbnail = $this->wpp_image->get_img( - $post_object, - null, - array( $this->options['thumbnail']['width'], $this->options['thumbnail']['height'] ), - $this->options['thumbnail']['crop'], - $this->admin_options['tools']['thumbnail']['source'] - ); - - } - - } - - } - - return $thumbnail; - - } - - /** - * Return post views count. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return int|float - */ - private function get_pageviews( stdClass $post_object ) { - - $pageviews = 0; - - if ( - ( - $this->options['order_by'] == "views" - || $this->options['order_by'] == "avg" - || $this->options['stats_tag']['views'] - ) - && ( isset( $post_object->pageviews ) || isset( $post_object->avg_views ) ) - ) { - $pageviews = ( $this->options['order_by'] == "views" || $this->options['order_by'] == "comments" ) - ? $post_object->pageviews - : $post_object->avg_views; - } - - return $pageviews; - - } - - /** - * Return post comment count. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return int - */ - private function get_comments( stdClass $post_object ) { - - $comments = ( ( $this->options['order_by'] == "comments" || $this->options['stats_tag']['comment_count'] ) && isset( $post_object->comment_count ) ) - ? $post_object->comment_count - : 0; - - return $comments; - - } - - /** - * Get post date. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_date( stdClass $post_object ) { - - $date = ''; - - if ( $this->options['stats_tag']['date']['active'] ) { - $date = ( 'relative' == $this->options['stats_tag']['date']['format'] ) - ? sprintf( __( '%s ago', 'wordpress-popular-posts' ), human_time_diff( strtotime($post_object->date), current_time( 'timestamp' ) ) ) - : date_i18n( $this->options['stats_tag']['date']['format'], strtotime($post_object->date) ); - } - - return $date; - - } - - /** - * Get post taxonomies. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_taxonomies( stdClass $post_object ) { - - $post_tax = ''; - - if ( (isset($this->options['stats_tag']['category']) && $this->options['stats_tag']['category']) || $this->options['stats_tag']['taxonomy'] ) { - - $taxonomy = 'category'; - - if ( - $this->options['stats_tag']['taxonomy']['active'] - && !empty( $this->options['stats_tag']['taxonomy']['name'] ) - ) { - $taxonomy = $this->options['stats_tag']['taxonomy']['name']; - } - - $translate = WPP_translate::get_instance(); - $trid = $translate->get_object_id( $post_object->id, get_post_type( $post_object->id ) ); - - if ( $post_object->id != $trid ) { - $terms = wp_get_post_terms( $trid, $taxonomy ); - } - else { - $terms = wp_get_post_terms( $post_object->id, $taxonomy ); - } - - if ( !is_wp_error( $terms ) ) { - - // Usage: https://wordpress.stackexchange.com/a/46824 - if ( has_filter( 'wpp_post_exclude_terms' ) ) { - $args = apply_filters( 'wpp_post_exclude_terms', array() ); - $terms = wp_list_filter( $terms, $args, 'NOT' ); - } - - if ( - is_array( $terms ) - && !empty( $terms ) - ) { - - foreach( $terms as $term ) { - - $term_link = get_term_link( $term ); - - if ( is_wp_error( $term_link ) ) - continue; - - $post_tax .= "<a href=\"{$term_link}\" class=\"{$taxonomy} {$taxonomy}-{$term->term_id}\">{$term->name}</a>, "; - - } - - } - - } - - if ( '' != $post_tax ) - $post_tax = rtrim( $post_tax, ", " ); - - } - - return $post_tax; - - } - - /** - * Get post author. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_author( stdClass $post_object ) { - - $author = ( $this->options['stats_tag']['author'] ) - ? get_the_author_meta( 'display_name', $post_object->uid ) - : ""; - - return $author; - - } - - /** - * Return post excerpt. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_excerpt( stdClass $post_object ) { - - $excerpt = ''; - - if ( $this->options['post-excerpt']['active'] ) { - - $translate = WPP_translate::get_instance(); - $trid = $translate->get_object_id( $post_object->id, get_post_type( $post_object->id ) ); - - if ( $post_object->id != $trid ) { - $the_post = get_post( $trid ); - - $excerpt = ( empty($the_post->post_excerpt) ) - ? $the_post->post_content - : $post_object->post_excerpt; - } - else { - $excerpt = ( empty( $post_object->post_excerpt ) ) - ? $post_object->post_content - : $post_object->post_excerpt; - } - - // remove caption tags - $excerpt = preg_replace( "/\[caption.*\[\/caption\]/", "", $excerpt ); - - // remove Flash objects - $excerpt = preg_replace( "/<object[0-9 a-z_?*=\":\-\/\.#\,\\n\\r\\t]+/smi", "", $excerpt ); - - // remove iframes - $excerpt = preg_replace( "/<iframe.*?\/iframe>/i", "", $excerpt ); - - // remove WP shortcodes - $excerpt = strip_shortcodes( $excerpt ); - - // remove style/script tags - $excerpt = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $excerpt ); - - // remove HTML tags if requested - if ( $this->options['post-excerpt']['keep_format'] ) { - $excerpt = strip_tags( $excerpt, '<a><b><i><em><strong>' ); - } else { - $excerpt = strip_tags( $excerpt ); - - // remove URLs, too - $excerpt = preg_replace( '_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!10(?:\.\d{1,3}){3})(?!127(?:\.\d{1,3}){3})(?!169\.254(?:\.\d{1,3}){2})(?!192\.168(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,})))(?::\d{2,5})?(?:/[^\s]*)?$_iuS', '', $excerpt ); - } - - } - - // Balance tags, if needed - if ( '' !== $excerpt ) { - - $excerpt = WPP_helper::truncate( $excerpt, $this->options['post-excerpt']['length'], $this->options['post-excerpt']['words'] ); - - if ( $this->options['post-excerpt']['keep_format'] ) - $excerpt = force_balance_tags( $excerpt ); - - } - - return $excerpt; - - } - - /** - * Return post rating. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return string - */ - private function get_rating( stdClass $post_object ) { - - $rating = ''; - - if ( function_exists('the_ratings') && $this->options['rating'] ) { - $rating = the_ratings( 'span', $post_object->id, false ); - } - - return $rating; - } - - /** - * Return post metadata. - * - * @since 3.0.0 - * @access private - * @param object $post_object - * @return array - */ - private function get_metadata( stdClass $post_object ) { - - $stats = array(); - - // comments - if ( $this->options['stats_tag']['comment_count'] ) { - - $comments = $this->get_comments( $post_object ); - - $comments_text = sprintf( - _n( '1 comment', '%s comments', $comments, 'wordpress-popular-posts' ), - number_format_i18n( $comments ) - ); - - } - - // views - if ( $this->options['stats_tag']['views'] ) { - - $pageviews = $this->get_pageviews( $post_object ); - - if ( $this->options['order_by'] == 'avg' ) { - $views_text = sprintf( - _n( '1 view per day', '%s views per day', $pageviews, 'wordpress-popular-posts' ), - number_format_i18n( $pageviews, 2 ) - ); - } - else { - $views_text = sprintf( - _n( '1 view', '%s views', $pageviews, 'wordpress-popular-posts' ), - number_format_i18n( $pageviews ) - ); - } - - } - - if ( "comments" == $this->options['order_by'] ) { - if ( $this->options['stats_tag']['comment_count'] ) - $stats[] = '<span class="wpp-comments">' . $comments_text . '</span>'; // First comments count - if ( $this->options['stats_tag']['views'] ) - $stats[] = '<span class="wpp-views">' . $views_text . "</span>"; // ... then views - } else { - if ( $this->options['stats_tag']['views'] ) - $stats[] = '<span class="wpp-views">' . $views_text . "</span>"; // First views count - if ( $this->options['stats_tag']['comment_count'] ) - $stats[] = '<span class="wpp-comments">' . $comments_text . '</span>'; // ... then comments - } - - // author - if ( $this->options['stats_tag']['author'] ) { - $author = $this->get_author( $post_object ); - $display_name = '<a href="' . get_author_posts_url( $post_object->uid ) . '">' . $author . '</a>'; - $stats[] = '<span class="wpp-author">' . sprintf(__('by %s', 'wordpress-popular-posts'), $display_name).'</span>'; - } - - // date - if ( $this->options['stats_tag']['date']['active'] ) { - $date = $this->get_date( $post_object ); - $stats[] = '<span class="wpp-date">' . ( 'relative' == $this->options['stats_tag']['date']['format'] ? sprintf(__('posted %s', 'wordpress-popular-posts'), $date) : sprintf(__('posted on %s', 'wordpress-popular-posts'), $date) ) . '</span>'; - } - - // taxonomy - if ( $this->options['stats_tag']['category'] ) { - - $post_tax = $this->get_taxonomies( $post_object ); - - if ( $post_tax != '' ) { - $stats[] = '<span class="wpp-category">' . sprintf( __('under %s', 'wordpress-popular-posts'), $post_tax ) . '</span>'; - } - - } - - return $stats; - - } - - /** - * Parse content tags. - * - * @since 1.4.6 - * @access private - * @param string HTML string with content tags - * @param array Post data - * @param bool Used to display post rating (if functionality is available) - * @return string - */ - private function format_content( $string, $data = array(), $rating ) { - - if ( empty( $string ) || ( empty( $data ) || !is_array( $data ) ) ) - return false; - - $params = array(); - $pattern = '/\{(pid|excerpt|summary|meta|stats|title|image|thumb|thumb_img|thumb_url|rating|score|url|text_title|author|taxonomy|category|views|comments|date)\}/i'; - preg_match_all( $pattern, $string, $matches ); - - array_map( 'strtolower', $matches[0] ); - - if ( in_array( "{pid}", $matches[0] ) ) { - $string = str_replace( "{pid}", $data['id'], $string ); - } - - if ( in_array( "{title}", $matches[0] ) ) { - $string = str_replace( "{title}", $data['title'], $string ); - } - - if ( in_array( "{meta}", $matches[0] ) || in_array( "{stats}", $matches[0] ) ) { - $string = str_replace( array("{meta}", "{stats}"), $data['stats'], $string ); - } - - if ( in_array( "{excerpt}", $matches[0] ) || in_array( "{summary}", $matches[0] ) ) { - $string = str_replace( array("{excerpt}", "{summary}"), $data['summary'], $string ); - } - - if ( in_array( "{image}", $matches[0]) || in_array("{thumb}", $matches[0] ) ) { - $string = str_replace( array("{image}", "{thumb}"), $data['img'], $string ); - } - - if ( in_array( "{thumb_img}", $matches[0] ) ) { - $string = str_replace( "{thumb_img}", $data['img_no_link'], $string ); - } - - if ( in_array( "{thumb_url}", $matches[0] ) && !empty( $data['img_no_link'] ) ) { - - $dom = new DOMDocument; - - if ( $dom->loadHTML( $data['img_no_link'] ) ) { - - $img_tag = $dom->getElementsByTagName( 'img' ); - - if ( $img_tag->length ) { - - foreach( $img_tag as $node ) { - if ( $node->hasAttribute( 'src' ) ) { - $string = str_replace( "{thumb_url}", $node->getAttribute( 'src' ), $string ); - } - } - - } - - } - - } - - // WP-PostRatings check - if ( $rating ) { - - if ( function_exists( 'the_ratings_results' ) && in_array( "{rating}", $matches[0] ) ) { - $string = str_replace( "{rating}", the_ratings_results($data['id']), $string ); - } - - if ( function_exists( 'expand_ratings_template' ) && in_array( "{score}", $matches[0] ) ) { - $string = str_replace( "{score}", expand_ratings_template( '%RATINGS_SCORE%', $data['id'] ), $string); - // removing the redundant plus sign - $string = str_replace( '+', '', $string ); - } - } - - if ( in_array( "{url}", $matches[0] ) ) { - $string = str_replace( "{url}", $data['url'], $string ); - } - - if ( in_array( "{text_title}", $matches[0] ) ) { - $string = str_replace( "{text_title}", $data['text_title'], $string ); - } - - if ( in_array( "{author}", $matches[0] ) ) { - $string = str_replace( "{author}", $data['author'], $string ); - } - - if ( in_array( "{taxonomy}", $matches[0] ) || in_array( "{category}", $matches[0] ) ) { - $string = str_replace( array("{taxonomy}", "{category}"), $data['taxonomy'], $string ); - } - - if ( in_array( "{views}", $matches[0] ) ) { - $string = str_replace( "{views}", $data['views'], $string ); - } - - if ( in_array( "{comments}", $matches[0] ) ) { - $string = str_replace( "{comments}", $data['comments'], $string ); - } - - if ( in_array( "{date}", $matches[0] ) ) { - $string = str_replace( "{date}", $data['date'], $string ); - } - - return $string; - - } - - /** - * Output the HTML. - * - * @since 4.0.0 - */ - public function output() { - echo $this->output; - } - - /** - * Return the HTML. - * - * @since 4.0.0 - * @return string - */ - public function get_output() { - return $this->output; - } - -} // End WPP_Output class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-query.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-query.php deleted file mode 100644 index 4a6bf63a14c0339663b5a770ae6fa9b2325a1473..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-query.php +++ /dev/null @@ -1,461 +0,0 @@ -<?php -/** - * Queries the database for popular posts. - * - * To use this class, you must pass it an array of parameters (mostly the same ones used with - * the wpp_get_mostpopular() template tag). The very minimum required parameters are 'range', 'order_by' - * and 'limit'. - * - * eg.: $popular_posts = new WPP_Query( array('range' => 'last7days', 'order_by' => 'views', 'limit' => 5) ); - * - * @since 4.0.0 - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ - -class WPP_Query { - - /* - * Database query string. - * - * @since 4.0.0 - * @access private - * @var string $query - */ - private $query; - - /* - * List of posts. - * - * @since 4.0.0 - * @access private - * @var array $posts - */ - private $posts = array(); - - /* - * Plugin options. - * - * @since 4.0.0 - * @access private - * @var array $options - */ - private $options; - - /* - * Constructor. - * - * @since 4.0.0 - * @param array $options - */ - public function __construct( array $options = array() ){ - $this->options = $options; - $this->build_query(); - $this->run_query(); - } - - /* - * Builds the database query. - * - * @since 4.0.0 - * @access private - */ - private function build_query(){ - - /* - * @var wpdb $wpdb - */ - global $wpdb; - - if ( isset($wpdb) ) { - - $this->options = WPP_Helper::merge_array_r( - WPP_Settings::$defaults[ 'widget_options' ], - (array) $this->options - ); - - $args = array(); - $fields = "p.ID AS id, p.post_title AS title, p.post_author AS uid"; - $table = ""; - $join = ""; - $where = "WHERE 1 = 1"; - $groupby = ""; - $orderby = ""; - $limit = "LIMIT " . ( filter_var($this->options['limit'], FILTER_VALIDATE_INT) && $this->options['limit'] > 0 ? $this->options['limit'] : 10 ) . ( isset($this->options['offset']) && filter_var($this->options['offset'], FILTER_VALIDATE_INT) !== false && $this->options['offset'] >= 0 ? " OFFSET {$this->options['offset']}" : "" ); - - // Get post date - if ( isset($this->options['stats_tag']['date']['active']) && $this->options['stats_tag']['date']['active'] ) { - $fields .= ", p.post_date AS date"; - } - - // Get post excerpt $instance - if ( isset($this->options['post-excerpt']['active']) && $this->options['post-excerpt']['active'] ) { - $fields .= ", p.post_excerpt AS post_excerpt, p.post_content AS post_content"; - } - - // Get entries from these post types - $post_types = array( 'post', 'page' ); - - if ( isset($this->options['post_type']) && !empty($this->options['post_type']) ) { - - $post_types = explode( ",", $this->options['post_type'] ); - $pt = ''; - $where .= " AND p.post_type IN("; - - foreach( $post_types as $post_type ) { - $pt .= "%s, "; - array_push( $args, trim($post_type) ); - } - - $where .= rtrim($pt, ", ") . ")"; - - } - else { - $where .= " AND p.post_type IN('post', 'page')"; - } - - // Get entries from these authors - if ( isset($this->options['author']) && !empty($this->options['author']) ) { - - $author_IDs = explode( ",", $this->options['author'] ); - $uid = ''; - $where .= " AND p.post_author IN("; - - foreach( $author_IDs as $author_ID ) { - $uid .= "%d, "; - array_push( $args, trim($author_ID) ); - } - - $where .= rtrim($uid, ", ") . ")"; - - } - - // Get / exclude entries from this taxonomy - if ( - ( isset($this->options['cat']) && !empty($this->options['cat']) ) - || ( isset($this->options['term_id']) && !empty($this->options['term_id']) ) - ) { - - if ( isset($this->options['taxonomy']) && !empty($this->options['taxonomy']) ) { - - $registered_taxonomies = get_taxonomies( array('public' => true) ); - - // Invalid taxonomy, fallback to "category" - if ( !isset($registered_taxonomies[$this->options['taxonomy']]) ) { - $this->options['taxonomy'] = 'category'; - } - - } // Default to "category" - else { - $this->options['taxonomy'] = 'category'; - } - - if ( isset($this->options['cat']) && !empty($this->options['cat']) ) { - $this->options['term_id'] = $this->options['cat']; - } - - $term_IDs = explode( ",", $this->options['term_id'] ); - $in_term_IDs = array(); - $out_term_IDs = array(); - - foreach( $term_IDs as $term_ID ) { - - if ( $term_ID >= 0 ) - $in_term_IDs[] = trim( $term_ID ); - else - $out_term_IDs[] = trim( $term_ID ) * -1; - - } - - if ( !empty($in_term_IDs) ) { - - $where .= " AND p.ID IN ( - SELECT object_id - FROM `{$wpdb->term_relationships}` AS r - JOIN `{$wpdb->term_taxonomy}` AS x ON x.term_taxonomy_id = r.term_taxonomy_id - WHERE x.taxonomy = '{$this->options['taxonomy']}'"; - - $inTID = ''; - - foreach( $in_term_IDs as $in_term_ID ) { - $inTID .= "%d, "; - array_push( $args, $in_term_ID ); - } - - $where .= " AND x.term_id IN(" . rtrim($inTID, ", ") . ") )"; - - } - - if ( !empty($out_term_IDs) ) { - - $post_ids = get_posts( - array( - 'post_type' => $post_types, - 'posts_per_page' => -1, - 'tax_query' => array( - array( - 'taxonomy' => $this->options['taxonomy'], - 'field' => 'id', - 'terms' => $out_term_IDs, - ), - ), - 'fields' => 'ids' - ) - ); - - if ( is_array($post_ids) && !empty($post_ids) ) { - - if ( isset($this->options['pid']) && !empty($this->options['pid']) ) { - $this->options['pid'] .= "," . implode( ",", $post_ids ); - } - else { - $this->options['pid'] = implode( ",", $post_ids ); - } - - } - - } - - } - - // Exclude these entries from the listing - if ( isset($this->options['pid']) && !empty($this->options['pid']) ) { - - $excluded_post_IDs = explode( ",", $this->options['pid'] ); - $xpid = ''; - $where .= " AND p.ID NOT IN("; - - foreach( $excluded_post_IDs as $excluded_post_ID ) { - $xpid .= "%d, "; - array_push( $args, trim($excluded_post_ID) ); - } - - $where .= rtrim($xpid, ", ") . ")"; - - } - - // All-time range - if ( "all" == $this->options['range'] ) { - - // Order by views count - if ( "comments" != $this->options['order_by'] ) { - - $table = "`{$wpdb->prefix}popularpostsdata` v"; - $join = "LEFT JOIN `{$wpdb->posts}` p ON v.postid = p.ID"; - - // Order by views - if ( "views" == $this->options['order_by'] ) { - - if ( !isset($this->options['stats_tag']['views']) || $this->options['stats_tag']['views'] ) { - $fields .= ", v.pageviews"; - } - - $orderby = "ORDER BY v.pageviews DESC"; - - } - // Order by average views - else { - - $now = current_time( 'mysql' ); - - $fields .= ", ( v.pageviews/(IF ( DATEDIFF('{$now}', MIN(v.day)) > 0, DATEDIFF('{$now}', MIN(v.day)), 1) ) ) AS avg_views"; - $groupby = "GROUP BY v.postid"; - $orderby = "ORDER BY avg_views DESC"; - - } - - // Display comments count, too - if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) { - $fields .= ", p.comment_count"; - } - - } - // Order by comments count - else { - - $table = "`{$wpdb->posts}` p"; - $where .= " AND p.comment_count > 0"; - $orderby = "ORDER BY p.comment_count DESC"; - - // Display comment count - if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) { - $fields .= ", p.comment_count"; - } - - // Display views count, too - if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) { - $fields .= ", IFNULL(v.pageviews, 0) AS pageviews"; - $join = "LEFT JOIN `{$wpdb->prefix}popularpostsdata` v ON p.ID = v.postid"; - } - - } - - } - // Custom time range - else { - - $now = current_time( 'mysql' ); - - // Determine time range - switch( $this->options['range'] ){ - case "last24hours": - case "daily": - $interval = "24 HOUR"; - break; - - case "last7days": - case "weekly": - $interval = "6 DAY"; - break; - - case "last30days": - case "monthly": - $interval = "29 DAY"; - break; - - case "custom": - $time_units = array( "MINUTE", "HOUR", "DAY", "WEEK", "MONTH" ); - $interval = "24 HOUR"; - - // Valid time unit - if ( - isset( $this->options['time_unit'] ) - && in_array( strtoupper( $this->options['time_unit'] ), $time_units ) - && isset( $this->options['time_quantity'] ) - && filter_var( $this->options['time_quantity'], FILTER_VALIDATE_INT ) - && $this->options['time_quantity'] > 0 - ) { - $interval = "{$this->options['time_quantity']} " . strtoupper( $this->options['time_unit'] ); - } - - break; - - default: - $interval = "24 HOUR"; - break; - } - - // Get entries published within the specified time range - if ( isset($this->options['freshness']) && $this->options['freshness'] ) { - $where .= " AND p.post_date > DATE_SUB('{$now}', INTERVAL {$interval})"; - } - - // Order by views count - if ( "comments" != $this->options['order_by'] ) { - - $table = "`{$wpdb->prefix}popularpostssummary` v"; - $join = "LEFT JOIN `{$wpdb->posts}` p ON v.postid = p.ID"; - $where .= " AND v.view_datetime > DATE_SUB('{$now}', INTERVAL {$interval})"; - $groupby = "GROUP BY v.postid"; - - // Order by views - if ( "views" == $this->options['order_by'] ) { - - if ( !isset($this->options['stats_tag']['views']) || $this->options['stats_tag']['views'] ) { - $fields .= ", SUM(v.pageviews) AS pageviews"; - $orderby = "ORDER BY pageviews DESC"; - } - else { - $orderby = "ORDER BY SUM(v.pageviews) DESC"; - } - - } - // Order by average views - else { - $fields .= ", ( SUM(v.pageviews)/(IF ( DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})) > 0, DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})), 1) ) ) AS avg_views"; - $orderby = "ORDER BY avg_views DESC"; - } - - // Display comments count, too - if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) { - $fields .= ", IFNULL(c.comment_count, 0) AS comment_count"; - $join .= " LEFT JOIN (SELECT comment_post_ID, COUNT(comment_post_ID) AS comment_count FROM `{$wpdb->comments}` WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID"; - } - - } - // Order by comments count - else { - - $table = "`{$wpdb->comments}` c"; - $join = "LEFT JOIN {$wpdb->posts} p ON c.comment_post_ID = p.ID"; - $where .= " AND c.comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND c.comment_approved = 1"; - $groupby = "GROUP BY c.comment_post_ID"; - - // Display comment count - if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) { - $fields .= ", COUNT(c.comment_post_ID) AS comment_count"; - $orderby = "ORDER BY comment_count DESC"; - } - else { - $orderby = "ORDER BY COUNT(c.comment_post_ID) DESC"; - } - - // Display views count, too - if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) { - $fields .= ", IFNULL(v.pageviews, 0) AS pageviews"; - $join .= " LEFT JOIN (SELECT postid, SUM(pageviews) AS pageviews FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid"; - } - - } - - } - - // List only published, non password-protected posts - $where .= " AND p.post_password = '' AND p.post_status = 'publish'"; - - $fields = apply_filters( 'wpp_query_fields', $fields, $this->options ); - $table = apply_filters( 'wpp_query_table', $table, $this->options ); - $join = apply_filters( 'wpp_query_join', $join, $this->options ); - $where = apply_filters( 'wpp_query_where', $where, $this->options ); - $groupby = apply_filters( 'wpp_query_group_by', $groupby, $this->options ); - $orderby = apply_filters( 'wpp_query_order_by', $orderby, $this->options ); - $limit = apply_filters( 'wpp_query_limit', $limit, $this->options ); - - // Finally, build the query - $query = "SELECT {$fields} FROM {$table} {$join} {$where} {$groupby} {$orderby} {$limit};"; - $this->query = ( !empty($args) && !has_filter('wpp_query_where') ) ? $wpdb->prepare( $query, $args ) : $query; - - } - - } - - /* - * Queries the database. - * - * @since 4.0.0 - * @access private - */ - private function run_query(){ - - /* - * @var wpdb $wpdb - */ - global $wpdb; - - if ( isset($wpdb) && !empty($this->query) && !is_wp_error($this->query) ) { - $this->posts = $wpdb->get_results( $this->query ); - } - - } - - /* - * Returns the query string. - * - * @since 4.0.0 - * @return WP_Error|string Query string on success, WP_Error on failure - */ - public function get_query(){ - return $this->query; - } - - /* - * Returns the list of posts. - * - * @since 4.0.0 - * @return array - */ - public function get_posts(){ - return $this->posts; - } - -} // end WPP_Query class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-settings.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-settings.php deleted file mode 100644 index 42fb66cdcdf580bedbb552d4633173066e3898fe..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-settings.php +++ /dev/null @@ -1,166 +0,0 @@ -<?php - -/** - * Set / get plugin default options. - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ - -/** - * Set / get plugin default options. - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ - -class WPP_Settings { - - /** - * Plugin uploads directory. - * - * @since 3.0.4 - * @var array - */ - static public $defaults = array( - 'widget_options' => array( - 'title' => '', - 'limit' => 10, - 'offset' => 0, - 'range' => 'daily', - 'time_unit' => 'hour', - 'time_quantity' => 24, - 'freshness' => false, - 'order_by' => 'views', - 'post_type' => 'post,page', - 'pid' => '', - 'author' => '', - 'cat' => '', - 'taxonomy' => 'category', - 'term_id' => '', - 'shorten_title' => array( - 'active' => false, - 'length' => 25, - 'words' => false - ), - 'post-excerpt' => array( - 'active' => false, - 'length' => 55, - 'keep_format' => false, - 'words' => false - ), - 'thumbnail' => array( - 'active' => false, - 'build' => 'manual', - 'width' => 75, - 'height' => 75, - 'crop' => true - ), - 'rating' => false, - 'stats_tag' => array( - 'comment_count' => false, - 'views' => true, - 'author' => false, - 'date' => array( - 'active' => false, - 'format' => 'F j, Y' - ), - 'category' => false, - 'taxonomy' => array( - 'active' => false, - 'name' => 'category' - ) - ), - 'markup' => array( - 'custom_html' => false, - 'title-start' => '<h2>', - 'title-end' => '</h2>', - 'wpp-start' => '<ul class="wpp-list">', - 'wpp-end' => '</ul>', - 'post-html' => '<li>{thumb} {title} <span class="wpp-meta post-stats">{stats}</span></li>' - - ) - ), - 'admin_options' => array( - 'stats' => array( - 'range' => 'last7days', - 'time_unit' => 'hour', - 'time_quantity' => 24, - 'order_by' => 'views', - 'limit' => 10, - 'post_type' => 'post,page', - 'freshness' => false - ), - 'tools' => array( - 'ajax' => false, - 'css' => true, - 'link' => array( - 'target' => '_self' - ), - 'thumbnail' => array( - 'source' => 'featured', - 'field' => '', - 'resize' => false, - 'default' => '', - 'responsive' => false - ), - 'log' => array( - 'level' => 1, - 'limit' => 0, - 'expires_after' => 180 - ), - 'cache' => array( - 'active' => false, - 'interval' => array( - 'time' => 'hour', - 'value' => 1 - ) - ), - 'sampling' => array( - 'active' => false, - 'rate' => 100 - ) - ) - ) - ); - - /** - * Returns plugin options. - * - * @since 4.0.0 - * @access public - * @param string $option_set - * @return array - */ - public static function get( $option_set = null ){ - - $options = self::$defaults; - - if ( 'widget_options' == $option_set ) { - return $options[ 'widget_options' ]; - } - - if ( !$admin_options = get_option( 'wpp_settings_config' ) ) { - $admin_options = $options[ 'admin_options' ]; - add_option( 'wpp_settings_config', $admin_options ); - } - else { - $options[ 'admin_options' ] = WPP_Helper::merge_array_r( - $options[ 'admin_options' ], - (array) $admin_options - ); - } - - if ( 'admin_options' == $option_set ) { - return $options[ 'admin_options' ]; - } - - return $options; - - } - -} // End WPP_Settings class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-template.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-template.php deleted file mode 100644 index b166bfccf8d4eaa10b57e3d3f008e8eb00696e98..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-template.php +++ /dev/null @@ -1,105 +0,0 @@ -<?php -/** - * WordPress Popular Posts template tags for use in themes. - */ - -/** - * Template tag - gets views count. - * - * @since 2.0.3 - * @global object wpdb - * @param int id - * @param string range - * @param bool number_format - * @return string - */ -function wpp_get_views($id = NULL, $range = NULL, $number_format = true) { - - // have we got an id? - if ( empty($id) || is_null($id) || !is_numeric($id) ) { - return "-1"; - } else { - global $wpdb; - - $table_name = $wpdb->prefix . "popularposts"; - - if ( !$range || 'all' == $range ) { - $query = "SELECT pageviews FROM {$table_name}data WHERE postid = '{$id}'"; - } else { - $interval = ""; - - switch( $range ){ - case "last24hours": - case "daily": - $interval = "24 HOUR"; - break; - - case "last7days": - case "weekly": - $interval = "6 DAY"; - break; - - case "last30days": - case "monthly": - $interval = "29 DAY"; - break; - - default: - $interval = "24 HOUR"; - break; - } - - $now = current_time('mysql'); - - $query = "SELECT SUM(pageviews) FROM {$table_name}summary WHERE postid = '{$id}' AND view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) LIMIT 1;"; - } - - $result = $wpdb->get_var($query); - - if ( !$result ) { - return "0"; - } - - return ($number_format) ? number_format_i18n( intval($result) ) : $result; - } - -} - -/** - * Template tag - gets popular posts. - * - * @since 2.0.3 - * @param mixed args - */ -function wpp_get_mostpopular($args = NULL) { - - $shortcode = '[wpp'; - - if ( is_null( $args ) ) { - $shortcode .= ']'; - } else { - if( is_array( $args ) ){ - $atts = ''; - foreach( $args as $key => $arg ){ - $atts .= ' ' . $key . '="' . htmlspecialchars($arg, ENT_QUOTES, $encoding = ini_get("default_charset"), false) . '"'; - } - } else { - $atts = trim( str_replace( "&", " ", $args ) ); - } - - $shortcode .= ' ' . $atts . ' php=true]'; - } - - echo do_shortcode( $shortcode ); - -} - -/** - * Template tag - gets popular posts. Deprecated in 2.0.3, use wpp_get_mostpopular instead. - * - * @since 1.0 - * @param mixed args - */ -function get_mostpopular($args = NULL) { - trigger_error( 'The get_mostpopular() template tag has been deprecated since 2.0.3. Please use wpp_get_mostpopular() instead.', E_USER_WARNING ); -} diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-translate.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-translate.php deleted file mode 100644 index de05c595d27a3158b2720d9b962180e7937862bf..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-translate.php +++ /dev/null @@ -1,141 +0,0 @@ -<?php -/** - * Obtains translation data from objects. - * - * @link http://cabrerahector.com - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - */ -/** - * Obtains translation data from objects. - * - * @since 4.0.0 - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/includes - * @author Hector Cabrera <me@cabrerahector.com> - */ - -class WPP_translate { - - /** - * Class instance. - * - * @since 4.0.0 - * @access private - * @var object|WPP_translate - */ - private static $instance; - - /** - * Default language code. - * - * @since 4.0.0 - * @access private - * @var string - */ - private $default_language; - - /** - * Current language code. - * - * @since 4.0.0 - * @access private - * @var string - */ - private $current_language; - - /** - * Initialize the collections used to maintain the actions and filters. - * - * @since 4.0.0 - * @access private - */ - private function __construct() { - - $this->default_language = apply_filters( 'wpml_default_language', NULL ); - $this->current_language = apply_filters( 'wpml_current_language', NULL ); - - } - - /** - * Get an instance of this class. - * - * @since 4.0.0 - * @return object|\WPP_translate - */ - public static function get_instance() { - - if ( is_null(self::$instance) ) { - self::$instance = new WPP_translate(); - } - - return self::$instance; - - } - - /* - * Retrieves the code of the default language. - * - * @since 4.0.0 - * @return string|null - */ - public function get_default_language() { - return $this->default_language; - } - - /* - * Retrieves the code of the currently active language. - * - * @since 4.0.0 - * @return string|null - */ - public function get_current_language() { - return $this->current_language; - } - - /* - * Retrieves the ID of an object. - * - * @since 4.0.0 - * @param integer $object_id - * @param string $object_type - * @param boolean $return_original_if_missing - * @param string $lang_code - * @return integer - */ - public function get_object_id( $object_id = null, $object_type = 'post', $return_original_if_missing = true, $lang_code = null ) { - - return apply_filters( - 'wpml_object_id', - $object_id, - $object_type, - $return_original_if_missing, - $lang_code - ); - - } - - /* - * Retrieves the language code of an object. - * - * @since 4.0.0 - * @param integer $object_id - * @param string $object_type - * @return string|null - */ - public function get_object_lang_code( $object_id = null, $object_type = 'post' ) { - - return apply_filters( - 'wpml_element_language_code', - null, - array( - 'element_id' => $object_id, - 'element_type' => $object_type - ) - ); - - } - -} // End WPP_translate class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-widget.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-widget.php deleted file mode 100644 index 0278e4d622830614113d53a67f93cb35cf148c0c..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts-widget.php +++ /dev/null @@ -1,416 +0,0 @@ -<?php - -class WPP_Widget extends WP_Widget { - - /** - * Administrative settings. - * - * @since 2.3.3 - * @var array - */ - private $admin_options = array(); - - public function __construct(){ - - // Create the widget - parent::__construct( - 'wpp', - 'WordPress Popular Posts', - array( - 'classname' => 'popular-posts', - 'description' => __( 'The most Popular Posts on your blog.', 'wordpress-popular-posts' ) - ) - ); - - $this->admin_options = WPP_Settings::get( 'admin_options' ); - - // Widget's AJAX hook - if ( $this->admin_options['tools']['ajax'] ) { - add_action( 'wp_ajax_wpp_get_popular', array( $this, 'get_popular') ); - add_action( 'wp_ajax_nopriv_wpp_get_popular', array( $this, 'get_popular') ); - } - - } - - /** - * Outputs the content of the widget. - * - * @since 1.0.0 - * @param array args The array of form elements - * @param array instance The current instance of the widget - */ - public function widget( $args, $instance ){ - /** - * @var string $name - * @var string $id - * @var string $description - * @var string $class - * @var string $before_widget - * @var string $after_widget - * @var string $before_title - * @var string $after_title - * @var string $widget_id - * @var string $widget_name - */ - extract( $args, EXTR_SKIP ); - - $instance = WPP_Helper::merge_array_r( - WPP_Settings::$defaults[ 'widget_options' ], - (array) $instance - ); - - $markup = ( $instance['markup']['custom_html'] || has_filter('wpp_custom_html') || has_filter('wpp_post') ) - ? 'custom' - : 'regular'; - - echo "\n". "<!-- WordPress Popular Posts Plugin [W] [{$instance['range']}] [{$instance['order_by']}] [{$markup}]" . ( !empty($instance['pid']) ? " [PID]" : "" ) . ( !empty($instance['cat']) ? " [CAT]" : "" ) . ( !empty($instance['author']) ? " [UID]" : "" ) . " -->" . "\n"; - - echo "\n" . $before_widget . "\n"; - - // Has user set a title? - if ( '' != $instance['title'] ) { - - $title = apply_filters( 'widget_title', $instance['title'] ); - - if ( - $instance['markup']['custom_html'] - && $instance['markup']['title-start'] != "" - && $instance['markup']['title-end'] != "" - ) { - echo htmlspecialchars_decode( $instance['markup']['title-start'], ENT_QUOTES) . $title . htmlspecialchars_decode($instance['markup']['title-end'], ENT_QUOTES ); - } else { - echo $before_title . $title . $after_title; - } - } - - // Expose Widget ID for customization - $instance['widget_id'] = $widget_id; - - // Get posts - if ( $this->admin_options['tools']['ajax'] ) { - - if ( empty( $before_widget ) || !preg_match( '/id="[^"]*"/', $before_widget ) ) { - ?> - <p><?php printf( __('Error: cannot ajaxify WordPress Popular Posts on this theme. It\'s missing the <em>id</em> attribute on before_widget (see <a href="%s" target="_blank" rel="nofollow">register_sidebar</a> for more)', 'wordpress-popular-posts'), 'https://codex.wordpress.org/Function_Reference/register_sidebar' ); ?>.</p> - <?php - } else { - ?> - <script type="text/javascript"> - /* jQuery is available, so proceed */ - if ( window.jQuery ) { - - jQuery(document).ready(function($){ - - var widget_container = $('#<?php echo $widget_id; ?>'); - widget_container.append('<p class="wpp-loader"><span><?php _e( "Loading...", "wordpress-popular-posts" ); ?></span></p>'); - - $.get( - '<?php echo admin_url('admin-ajax.php'); ?>', - { - action: 'wpp_get_popular', - id: '<?php echo $this->number; ?>' - }, function( response ){ - widget_container.children("p.wpp-loader").remove(); - widget_container.append(response); - widget_container.trigger('wpp-onload'); - } - ); - - }); - - } /* jQuery is not defined */ - else { - if ( window.console && window.console.log ) { - window.console.log( 'WordPress Popular Posts: jQuery is not defined!' ); - } - } - </script> - <?php - } - } else { - $this->get_popular( $instance ); - } - - echo "\n" . $after_widget . "\n"; - - } - - /** - * Generates the administration form for the widget. - * - * @since 1.0.0 - * @param array instance The array of keys and values for the widget. - */ - public function form( $instance ){ - - $instance = WPP_Helper::merge_array_r( - WPP_Settings::$defaults[ 'widget_options' ], - (array) $instance - ); - $wpp_image = WPP_Image::get_instance(); - - include( plugin_dir_path( __FILE__ ) . '/widget-form.php' ); - - } - - /** - * Processes the widget's options to be saved. - * - * @since 1.0.0 - * @param array new_instance The previous instance of values before the update. - * @param array old_instance The new instance of values to be generated via the update. - * @return array instance Updated instance. - */ - public function update( $new_instance, $old_instance ){ - - $wpp_image = WPP_Image::get_instance(); - - $instance = $old_instance; - - $instance['title'] = htmlspecialchars( stripslashes_deep(strip_tags( $new_instance['title'] )), ENT_QUOTES ); - $instance['limit'] = ( WPP_Helper::is_number($new_instance['limit']) && $new_instance['limit'] > 0 ) - ? $new_instance['limit'] - : 10; - $instance['range'] = $new_instance['range']; - $instance['time_quantity'] = ( WPP_Helper::is_number($new_instance['time_quantity']) && $new_instance['time_quantity'] > 0 ) - ? $new_instance['time_quantity'] - : 24; - $instance['time_unit'] = $new_instance['time_unit']; - $instance['order_by'] = $new_instance['order_by']; - - // FILTERS - // user did not set a post type name, so we fall back to default - $instance['post_type'] = ( '' == $new_instance['post_type'] ) - ? 'post,page' - : $new_instance['post_type']; - - $instance['freshness'] = isset( $new_instance['freshness'] ); - - // Post / Page / CTP filter - $ids = array_filter( explode( ",", rtrim(preg_replace( '|[^0-9,]|', '', $new_instance['pid'] ), ",") ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $instance['pid'] = ''; - } - else { - $instance['pid'] = implode( ",", $ids ); - } - - // Taxonomy filter - $instance['taxonomy'] = $new_instance['taxonomy']; - $instance['cat'] = ''; // Deprecated in 4.0.0! - - $ids = array_filter( explode( ",", rtrim(preg_replace( '|[^0-9,-]|', '', $new_instance['term_id'] ), ",") ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $instance['term_id'] = ''; - } - else { - $instance['term_id'] = implode( ",", $ids ); - } - - // Author filter - $ids = array_filter( explode( ",", rtrim(preg_replace( '|[^0-9,]|', '', $new_instance['uid'] ), ",") ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $instance['author'] = ''; - } - else { - $instance['author'] = implode( ",", $ids ); - } - - $instance['shorten_title']['words'] = $new_instance['shorten_title-words']; - $instance['shorten_title']['active'] = isset( $new_instance['shorten_title-active'] ); - $instance['shorten_title']['length'] = ( WPP_Helper::is_number($new_instance['shorten_title-length']) && $new_instance['shorten_title-length'] > 0 ) - ? $new_instance['shorten_title-length'] - : 25; - - $instance['post-excerpt']['keep_format'] = isset( $new_instance['post-excerpt-format'] ); - $instance['post-excerpt']['words'] = $new_instance['post-excerpt-words']; - $instance['post-excerpt']['active'] = isset( $new_instance['post-excerpt-active'] ); - $instance['post-excerpt']['length'] = ( WPP_Helper::is_number($new_instance['post-excerpt-length']) && $new_instance['post-excerpt-length'] > 0 ) - ? $new_instance['post-excerpt-length'] - : 55; - - $instance['thumbnail']['active'] = false; - $instance['thumbnail']['width'] = 15; - $instance['thumbnail']['height'] = 15; - - // can create thumbnails - if ( $wpp_image->can_create_thumbnails() ) { - - $instance['thumbnail']['active'] = isset( $new_instance['thumbnail-active'] ); - $instance['thumbnail']['build'] = $new_instance['thumbnail-size-source']; - - // Use predefined thumbnail sizes - if ( 'predefined' == $new_instance['thumbnail-size-source'] ) { - - $default_thumbnail_sizes = $wpp_image->get_image_sizes(); - $size = $default_thumbnail_sizes[ $new_instance['thumbnail-size'] ]; - - $instance['thumbnail']['width'] = $size['width']; - $instance['thumbnail']['height'] = $size['height']; - $instance['thumbnail']['crop'] = $size['crop']; - - } // Set thumbnail size manually - else { - if ( WPP_Helper::is_number($new_instance['thumbnail-width']) && WPP_Helper::is_number($new_instance['thumbnail-height']) ) { - $instance['thumbnail']['width'] = $new_instance['thumbnail-width']; - $instance['thumbnail']['height'] = $new_instance['thumbnail-height']; - $instance['thumbnail']['crop'] = true; - } - } - - } - - $instance['rating'] = isset( $new_instance['rating'] ); - $instance['stats_tag']['comment_count'] = isset( $new_instance['comment_count'] ); - $instance['stats_tag']['views'] = isset( $new_instance['views'] ); - $instance['stats_tag']['author'] = isset( $new_instance['author'] ); - $instance['stats_tag']['date']['active'] = isset( $new_instance['date'] ); - $instance['stats_tag']['date']['format'] = empty($new_instance['date_format']) - ? 'F j, Y' - : $new_instance['date_format']; - - $instance['stats_tag']['taxonomy']['active'] = isset( $new_instance['stats_taxonomy'] ); - $instance['stats_tag']['taxonomy']['name'] = isset( $new_instance['stats_taxonomy_name'] ) ? $new_instance['stats_taxonomy_name'] : 'category'; - $instance['stats_tag']['category'] = isset( $new_instance['stats_taxonomy'] ); // Deprecated in 4.0.0! - - $instance['markup']['custom_html'] = isset( $new_instance['custom_html'] ); - $instance['markup']['wpp-start'] = empty($new_instance['wpp-start']) - ? htmlspecialchars( '<ul class="wpp-list">', ENT_QUOTES ) - : htmlspecialchars( $new_instance['wpp-start'], ENT_QUOTES ); - - $instance['markup']['wpp-end'] = empty($new_instance['wpp-end']) - ? htmlspecialchars( '</ul>', ENT_QUOTES ) - : htmlspecialchars( $new_instance['wpp-end'], ENT_QUOTES ); - - $instance['markup']['post-html'] = empty($new_instance['post-html']) - ? htmlspecialchars( '<li>{thumb} {title} {stats}</li>', ENT_QUOTES ) - : htmlspecialchars( $new_instance['post-html'], ENT_QUOTES ); - - $instance['markup']['title-start'] = empty($new_instance['title-start']) - ? '' - : htmlspecialchars( $new_instance['title-start'], ENT_QUOTES ); - - $instance['markup']['title-end'] = empty($new_instance['title-end']) - ? '' : - htmlspecialchars( $new_instance['title-end'], ENT_QUOTES ); - - return $instance; - - } - - /** - * Returns HTML list via AJAX - * - * @since 2.3.3 - */ - public function get_popular( $instance = null ) { - - if ( defined('DOING_AJAX') && DOING_AJAX ) { - - if ( isset( $_GET['id'] ) && WPP_helper::is_number( $_GET['id'] ) ) { - - $id = $_GET['id']; - $widget_instances = $this->get_settings(); - - if ( isset( $widget_instances[$id] ) ) { - $instance = $widget_instances[$id]; - - if ( !isset( $instance['widget_id'] ) ) { - $instance['widget_id'] = $this->id; - } - } - - } - - } - - if ( is_array( $instance ) && !empty( $instance ) ) { - - // Return cached results - if ( $this->admin_options['tools']['cache']['active'] ) { - - $transient_name = md5( json_encode($instance) ); - $popular_posts = get_transient( $transient_name ); - - if ( false === $popular_posts ) { - - $popular_posts = new WPP_Query( $instance ); - - switch( $this->admin_options['tools']['cache']['interval']['time'] ){ - - case 'minute': - $time = 60; - break; - - case 'hour': - $time = 60 * 60; - break; - - case 'day': - $time = 60 * 60 * 24; - break; - - case 'week': - $time = 60 * 60 * 24 * 7; - break; - - case 'month': - $time = 60 * 60 * 24 * 30; - break; - - case 'year': - $time = 60 * 60 * 24 * 365; - break; - - default: - $time = 60 * 60; - break; - - } - - $expiration = $time * $this->admin_options['tools']['cache']['interval']['value']; - - // Store transient - set_transient( $transient_name, $popular_posts, $expiration ); - - // Store transient in WPP transients array for garbage collection - $wpp_transients = get_option('wpp_transients'); - - if ( !$wpp_transients ) { - $wpp_transients = array( $transient_name ); - add_option( 'wpp_transients', $wpp_transients ); - } else { - if ( !in_array($transient_name, $wpp_transients) ) { - $wpp_transients[] = $transient_name; - update_option( 'wpp_transients', $wpp_transients ); - } - } - - } - - } // Get popular posts - else { - $popular_posts = new WPP_Query( $instance ); - } - - $output = new WPP_Output( $popular_posts->get_posts(), $instance ); - - echo ( $this->admin_options['tools']['cache']['active'] ? '<!-- cached -->' : '' ); - $output->output(); - - } - - if ( - defined('DOING_AJAX') - && DOING_AJAX && !is_preview() - && !( is_singular() && isset( $_GET['fl_builder'] ) ) - ) { - wp_die(); - } - - } - -} // end class WPP_Widget diff --git a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts.php b/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts.php deleted file mode 100644 index 615dc9c537cf235b54a42260f73d4227ed0aeb31..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/class-wordpress-popular-posts.php +++ /dev/null @@ -1,231 +0,0 @@ -<?php - -class WordPressPopularPosts { - - /** - * The unique identifier of this plugin. - * - * @since 4.0.0 - * @access protected - * @var string $plugin_name - */ - protected $plugin_name; - - /** - * The current version of this plugin. - * - * @since 4.0.0 - * @access protected - * @var string $version - */ - protected $version; - - /** - * Constructor. - * - * @since 4.0.0 - */ - public function __construct(){ - - $this->plugin_name = 'wordpress-popular-posts'; - $this->version = '4.0.12'; - - $this->load_dependencies(); - $this->set_locale(); - $this->define_admin_hooks(); - $this->define_public_hooks(); - - } - - /** - * Loads the required dependencies for this plugin. - * - * @since 4.0.0 - * @access private - */ - private function load_dependencies(){ - - /** - * The class responsible for defining internationalization functionality of the plugin. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-i18n.php'; - - /** - * The class responsible for translating objects. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-translate.php'; - - /** - * Settings class. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-settings.php'; - - /** - * Helper class. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-helper.php'; - - /** - * Template functions. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-template.php'; - - /** - * The class responsible for handling the actions and filters of the plugin. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-loader.php'; - - /** - * The class responsible for querying the database. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-query.php'; - - /** - * The class responsible for creating images. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-image.php'; - - /** - * The class responsible for building the HTML output. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-output.php'; - - /** - * The widget class. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wordpress-popular-posts-widget.php'; - - /** - * The class responsible for defining all actions that occur on the admin-facing side of the site. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wordpress-popular-posts-admin.php'; - - /** - * The class responsible for defining all actions that occur on the public-facing side of the site. - */ - require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wordpress-popular-posts-public.php'; - - /** - * Get loader. - */ - $this->loader = new WPP_Loader(); - - } - - /** - * Register all of the hooks related to the admin area functionality of the plugin. - * - * @since 4.0.0 - * @access private - */ - public function define_admin_hooks() { - - $plugin_admin = new WPP_Admin( $this->get_plugin_name(), $this->get_version() ); - - // Check admin notices - $this->loader->add_action( 'admin_notices', $plugin_admin, 'check_admin_notices' ); - // Upgrade check - $this->loader->add_action( 'admin_head', $plugin_admin, 'upgrade_check' ); - // Hook fired when a new blog is activated on WP Multisite - $this->loader->add_action( 'wpmu_new_blog', $plugin_admin, 'activate_new_site' ); - // Hook fired when a blog is deleted on WP Multisite - $this->loader->add_filter( 'wpmu_drop_tables', $plugin_admin, 'delete_site_data', 10, 2 ); - // Load WPP's admin styles and scripts - $this->loader->add_action( 'admin_print_styles', $plugin_admin, 'enqueue_styles' ); - $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' ); - // Add admin screen - $this->loader->add_action( 'admin_menu', $plugin_admin, 'add_plugin_admin_menu' ); - // Thickbox setup - $this->loader->add_action( 'admin_init', $plugin_admin, 'thickbox_setup' ); - // Contextual help - $this->loader->add_action( 'admin_head', $plugin_admin, 'add_contextual_help' ); - // Add plugin settings link - $this->loader->add_filter( 'plugin_action_links', $plugin_admin, 'add_plugin_settings_link', 10, 2 ); - // Update chart - $this->loader->add_action( 'wp_ajax_wpp_update_chart', $plugin_admin, 'update_chart' ); - // Get lists - $this->loader->add_action( 'wp_ajax_wpp_get_most_viewed', $plugin_admin, 'get_most_viewed' ); - $this->loader->add_action( 'wp_ajax_wpp_get_most_commented', $plugin_admin, 'get_most_commented' ); - // Delete plugin data - $this->loader->add_action( 'wp_ajax_wpp_clear_data', $plugin_admin, 'clear_data' ); - // Empty plugin's images cache - $this->loader->add_action( 'wp_ajax_wpp_clear_thumbnail', $plugin_admin, 'clear_thumbnails' ); - // Flush cached thumbnail on featured image change - $this->loader->add_action( 'update_postmeta', $plugin_admin, 'flush_post_thumbnail', 10, 4 ); - // Purge post data on post/page deletion - $this->loader->add_action( 'admin_init', $plugin_admin, 'purge_post_data' ); - // Purge old data on demand - $this->loader->add_action( 'wpp_cache_event', $plugin_admin, 'purge_data' ); - // Initialize widget - $this->loader->add_action( 'widgets_init', $plugin_admin, 'register_widget' ); - - } - - /** - * Register all of the hooks related to the public area functionality of the plugin. - * - * @since 4.0.0 - * @access private - */ - public function define_public_hooks() { - - $plugin_public = new WPP_Public( $this->get_plugin_name(), $this->get_version() ); - - // Register logging AJAX hook - $this->loader->add_action( 'wp_ajax_update_views_ajax', $plugin_public, 'update_views' ); - $this->loader->add_action( 'wp_ajax_nopriv_update_views_ajax', $plugin_public, 'update_views' ); - // Add WPP's stylesheet and scripts - $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); - $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); - // Add [wpp] shortcode - $this->loader->add_shortcode( 'wpp', $plugin_public, 'wpp_shortcode' ); - - } - - /** - * Define the locale for this plugin for internationalization. - * - * Uses the Plugin_Name_i18n class in order to set the domain and to register the hook - * with WordPress. - * - * @since 4.0.0 - * @access private - */ - private function set_locale() { - - $plugin_i18n = new WPP_i18n(); - $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' ); - - } - - /** - * The name of the plugin used to uniquely identify it within the context of - * WordPress and to define internationalization functionality. - * - * @since 4.0.0 - * @return string The name of the plugin. - */ - public function get_plugin_name() { - return $this->plugin_name; - } - - /** - * Retrieve the version number of the plugin. - * - * @since 4.0.0 - * @return string The version number of the plugin. - */ - public function get_version() { - return $this->version; - } - - /** - * Run the loader to execute all of the hooks with WordPress. - * - * @since 4.0.0 - */ - public function run() { - $this->loader->run(); - } - -} // End WordPressPopularPosts class diff --git a/wp-content/plugins/wordpress-popular-posts/includes/widget-form.php b/wp-content/plugins/wordpress-popular-posts/includes/widget-form.php deleted file mode 100644 index 4150cdef0c187924fa718f069e5f03d40cd50d42..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/includes/widget-form.php +++ /dev/null @@ -1,189 +0,0 @@ -<!-- Widget title --> -<p> - <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-title-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" class="widefat" /> -</p> - -<!-- Limit --> -<p> - <label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php _e('Show up to', 'wordpress-popular-posts'); ?>:</label><br /> - <input type="text" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo $instance['limit']; ?>" class="widefat" style="width:50px!important" /> <?php _e('posts', 'wordpress-popular-posts'); ?> -</p> - -<!-- Order by --> -<p> - <label for="<?php echo $this->get_field_id( 'order_by' ); ?>"><?php _e('Sort posts by', 'wordpress-popular-posts'); ?>:</label><br /> - <select id="<?php echo $this->get_field_id( 'order_by' ); ?>" name="<?php echo $this->get_field_name( 'order_by' ); ?>" class="widefat"> - <option value="comments" <?php if ( 'comments' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Comments', 'wordpress-popular-posts'); ?></option> - <option value="views" <?php if ( 'views' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Total views', 'wordpress-popular-posts'); ?></option> - <option value="avg" <?php if ( 'avg' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Avg. daily views', 'wordpress-popular-posts'); ?></option> - </select> -</p> - -<!-- Filters --> -<br /><hr /><br /> - -<legend><strong><?php _e('Filters', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<label for="<?php echo $this->get_field_id( 'range' ); ?>"><?php _e('Time Range', 'wordpress-popular-posts'); ?>:</label><br /> -<select id="<?php echo $this->get_field_id( 'range' ); ?>" name="<?php echo $this->get_field_name( 'range' ); ?>" class="widefat" style="margin-bottom:5px;"> - <option value="daily" <?php if ( 'daily' == $instance['range'] || 'last24hours' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 24 hours', 'wordpress-popular-posts'); ?></option> - <option value="weekly" <?php if ( 'weekly' == $instance['range'] || 'last7days' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 7 days', 'wordpress-popular-posts'); ?></option> - <option value="monthly" <?php if ( 'monthly' == $instance['range'] || 'last30days' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 30 days', 'wordpress-popular-posts'); ?></option> - <option value="all" <?php if ( 'all' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('All-time', 'wordpress-popular-posts'); ?></option> - <option value="custom" <?php if ( 'custom' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Custom', 'wordpress-popular-posts'); ?></option> -</select><br /> - -<div style="display: <?php echo ( 'custom' == $instance['range'] ) ? "block" : "none"; ?>"> - <input type="text" id="<?php echo $this->get_field_id( 'time_quantity' ); ?>" name="<?php echo $this->get_field_name( 'time_quantity' ); ?>" value="<?php echo $instance['time_quantity']; ?>" style="display: inline; float: left; width: 50px!important;" /> - - <select id="<?php echo $this->get_field_id( 'time_unit' ); ?>" name="<?php echo $this->get_field_name( 'time_unit' ); ?>" style="margin-bottom: 5px;"> - <option <?php if ($instance['time_unit'] == "minute") {?>selected="selected"<?php } ?> value="minute"><?php _e("Minute(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($instance['time_unit'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", 'wordpress-popular-posts'); ?></option> - <option <?php if ($instance['time_unit'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", 'wordpress-popular-posts'); ?></option> - </select> -</div> -<div class="clearfix"></div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['freshness']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'freshness' ); ?>" name="<?php echo $this->get_field_name( 'freshness' ); ?>" /> <label for="<?php echo $this->get_field_id( 'freshness' ); ?>"><small><?php _e('Display only posts published within the selected Time Range', 'wordpress-popular-posts'); ?></small></label><br /><br /> - -<label for="<?php echo $this->get_field_id( 'post_type' ); ?>"><?php _e('Post type(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-post-type-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -<input type="text" id="<?php echo $this->get_field_id( 'post_type' ); ?>" name="<?php echo $this->get_field_name( 'post_type' ); ?>" value="<?php echo $instance['post_type']; ?>" class="widefat" /><br /><br /> - -<label for="<?php echo $this->get_field_id( 'pid' ); ?>"><?php _e('Post ID(s) to exclude', 'wordpress-popular-posts'); ?>:</label> -<input type="text" id="<?php echo $this->get_field_id( 'pid' ); ?>" name="<?php echo $this->get_field_name( 'pid' ); ?>" value="<?php echo $instance['pid']; ?>" class="widefat" /><br /><br /> - -<label for="<?php echo $this->get_field_id( 'tax_id' ); ?>"><?php _e('Taxonomy', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-taxonomy-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small><br /> -<?php -// Taxonomy filter -if ( $taxonomies = get_taxonomies( array('public' => true), 'objects' ) ) { - - foreach ( $taxonomies as $taxonomy ) { - if ( 'post_format' == $taxonomy->name ) - continue; - - echo '<label><input type="radio" name="' . $this->get_field_name( 'taxonomy' ) . '" value="' . $taxonomy->name . '"' . ( ( !empty($instance['cat']) && 'category' == $taxonomy->name ) || ( $instance['taxonomy'] == $taxonomy->name ) ? ' checked' : '' ) . '> ' . $taxonomy->labels->singular_name . '</label><br>'; - } -?> -<input type="text" id="<?php echo $this->get_field_id( 'term_id' ); ?>" name="<?php echo $this->get_field_name( 'term_id' ); ?>" value="<?php echo ( !empty($instance['cat']) ) ? $instance['cat'] : $instance['term_id']; ?>" class="widefat" style="margin-top: 4px;" /><br /> -<small><?php _e('Taxonomy IDs, separated by comma (prefix a minus sign to exclude)', 'wordpress-popular-posts'); ?></small> -<br /><br /> -<?php -} -?> - -<label for="<?php echo $this->get_field_id( 'uid' ); ?>"><?php _e('Author ID(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-author-ids-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -<input type="text" id="<?php echo $this->get_field_id( 'uid' ); ?>" name="<?php echo $this->get_field_name( 'uid' ); ?>" value="<?php echo $instance['author']; ?>" class="widefat" /><br /><br /> - -<!-- Post features --> -<br /><hr /><br /> - -<legend><strong><?php _e('Posts settings', 'wordpress-popular-posts'); ?></strong></legend> -<br /> - -<div style="display:<?php if ( function_exists('the_ratings_results') ) : ?>block<?php else: ?>none<?php endif; ?>;"> - <input type="checkbox" class="checkbox" <?php echo ($instance['rating']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'rating' ); ?>" name="<?php echo $this->get_field_name( 'rating' ); ?>" /> <label for="<?php echo $this->get_field_id( 'rating' ); ?>"><?php _e('Display post rating', 'wordpress-popular-posts'); ?></label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-display-post-rating-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['shorten_title']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'shorten_title-active' ); ?>" name="<?php echo $this->get_field_name( 'shorten_title-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'shorten_title-active' ); ?>"><?php _e('Shorten title', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['shorten_title']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <label for="<?php echo $this->get_field_id( 'shorten_title-length' ); ?>"><?php _e('Shorten title to', 'wordpress-popular-posts'); ?> <input type="text" id="<?php echo $this->get_field_id( 'shorten_title-length' ); ?>" name="<?php echo $this->get_field_name( 'shorten_title-length' ); ?>" value="<?php echo $instance['shorten_title']['length']; ?>" class="widefat" style="width:50px!important" /></label><br /> - <label><input type="radio" name="<?php echo $this->get_field_name( 'shorten_title-words' ); ?>" value="0" <?php echo (!isset($instance['shorten_title']['words']) || !$instance['shorten_title']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('characters', 'wordpress-popular-posts'); ?></label><br /> - <label><input type="radio" name="<?php echo $this->get_field_name( 'shorten_title-words' ); ?>" value="1" <?php echo (isset($instance['shorten_title']['words']) && $instance['shorten_title']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('words', 'wordpress-popular-posts'); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['post-excerpt']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'post-excerpt-active' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'post-excerpt-active' ); ?>"><?php _e('Display post excerpt', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['post-excerpt']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'post-excerpt-format' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-format' ); ?>" <?php echo ($instance['post-excerpt']['keep_format']) ? 'checked="checked"' : ''; ?> /> <label for="<?php echo $this->get_field_id( 'post-excerpt-format' ); ?>"><?php _e('Keep text format and links', 'wordpress-popular-posts'); ?></label><br /><br /> - <label for="<?php echo $this->get_field_id( 'post-excerpt-length' ); ?>"><?php _e('Excerpt length', 'wordpress-popular-posts'); ?>: <input type="text" id="<?php echo $this->get_field_id( 'post-excerpt-length' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-length' ); ?>" value="<?php echo $instance['post-excerpt']['length']; ?>" class="widefat" style="width:50px!important" /></label><br /> - - <label><input type="radio" name="<?php echo $this->get_field_name( 'post-excerpt-words' ); ?>" value="0" <?php echo (!isset($instance['post-excerpt']['words']) || !$instance['post-excerpt']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('characters', 'wordpress-popular-posts'); ?></label><br /> - <label><input type="radio" name="<?php echo $this->get_field_name( 'post-excerpt-words' ); ?>" value="1" <?php echo (isset($instance['post-excerpt']['words']) && $instance['post-excerpt']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('words', 'wordpress-popular-posts'); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['thumbnail']['active'] && $wpp_image->can_create_thumbnails()) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>"><?php _e('Display post thumbnail', 'wordpress-popular-posts'); ?></label> - -<div style="display:<?php if ($instance['thumbnail']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <label><input type='radio' id='thumbnail-predefined-size' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='predefined' <?php echo ($instance['thumbnail']['build'] == 'predefined') ? 'checked="checked"' : ''; ?> /><?php _e('Use predefined size', 'wordpress-popular-posts'); ?></label><br /> - - <select id="<?php echo $this->get_field_id( 'thumbnail-size' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-size' ); ?>" class="widefat" style="margin:5px 0;"> - <?php - foreach ( $wpp_image->get_image_sizes() as $name => $attr ) : - echo '<option value="' . $name . '"' . ( ($instance['thumbnail']['build'] == 'predefined' && $attr['width'] == $instance['thumbnail']['width'] && $attr['height'] == $instance['thumbnail']['height'] ) ? ' selected="selected"' : '' ) . '>' . $name . ' (' . $attr['width'] . ' x ' . $attr['height'] . ( $attr['crop'] ? ', hard crop' : ', soft crop' ) . ')</option>'; - endforeach; - ?> - </select> - - <hr /> - - <label><input type='radio' id='thumbnail-manual-size' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='manual' <?php echo ($instance['thumbnail']['build'] == 'manual') ? 'checked="checked"' : ''; ?> /><?php _e('Set size manually', 'wordpress-popular-posts'); ?></label><br /> - - <label for="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>"><?php _e('Width', 'wordpress-popular-posts'); ?>:</label> - <input type="text" id="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-width' ); ?>" value="<?php echo $instance['thumbnail']['width']; ?>" class="widefat" style="margin:3px 0; width:50px!important" <?php echo ($wpp_image->can_create_thumbnails()) ? '' : 'disabled="disabled"' ?> /> px<br /> - - <label for="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>"><?php _e('Height', 'wordpress-popular-posts'); ?>:</label> - <input type="text" id="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-height' ); ?>" value="<?php echo $instance['thumbnail']['height']; ?>" class="widefat" style="width:50px!important" <?php echo ($wpp_image->can_create_thumbnails()) ? '' : 'disabled="disabled"' ?> /> px -</div><br /> - -<!-- Stats tag options --> -<br /><hr /><br /> - -<legend><strong><?php _e('Stats Tag settings', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['comment_count']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'comment_count' ); ?>" name="<?php echo $this->get_field_name( 'comment_count' ); ?>" /> <label for="<?php echo $this->get_field_id( 'comment_count' ); ?>"><?php _e('Display comment count', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['views']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'views' ); ?>" name="<?php echo $this->get_field_name( 'views' ); ?>" /> <label for="<?php echo $this->get_field_id( 'views' ); ?>"><?php _e('Display views', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['author']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'author' ); ?>" name="<?php echo $this->get_field_name( 'author' ); ?>" /> <label for="<?php echo $this->get_field_id( 'author' ); ?>"><?php _e('Display author', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['date']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'date' ); ?>" name="<?php echo $this->get_field_name( 'date' ); ?>" /> <label for="<?php echo $this->get_field_id( 'date' ); ?>"><?php _e('Display date', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['stats_tag']['date']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <legend><strong><?php _e('Date Format', 'wordpress-popular-posts'); ?></strong></legend><br /> - - <label title='m/d/Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='relative' <?php echo ($instance['stats_tag']['date']['format'] == 'relative') ? 'checked="checked"' : ''; ?> /><?php _e('Relative', 'wordpress-popular-posts'); ?></label><br /> - <label title='<?php echo get_option('date_format'); ?>'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='<?php echo get_option('date_format'); ?>' <?php echo ($instance['stats_tag']['date']['format'] == get_option('date_format')) ? 'checked="checked"' : ''; ?> /><?php echo date_i18n(get_option('date_format'), time()); ?></label> <small>(<a href="<?php echo admin_url('options-general.php'); ?>" title="<?php _e('WordPress Date Format', 'wordpress-popular-posts'); ?>" target="_blank"><?php _e('WordPress Date Format', 'wordpress-popular-posts'); ?></a>)</small><br /> - <label title='F j, Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='F j, Y' <?php echo ($instance['stats_tag']['date']['format'] == 'F j, Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('F j, Y', time()); ?></label><br /> - <label title='Y/m/d'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='Y/m/d' <?php echo ($instance['stats_tag']['date']['format'] == 'Y/m/d') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('Y/m/d', time()); ?></label><br /> - <label title='m/d/Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='m/d/Y' <?php echo ($instance['stats_tag']['date']['format'] == 'm/d/Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('m/d/Y', time()); ?></label><br /> - <label title='d/m/Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='d/m/Y' <?php echo ($instance['stats_tag']['date']['format'] == 'd/m/Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('d/m/Y', time()); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['taxonomy']['active'] || $instance['stats_tag']['category']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'stats_taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'stats_taxonomy' ); ?>" /> <label for="<?php echo $this->get_field_id( 'stats_taxonomy' ); ?>"><?php _e('Display taxonomy', 'wordpress-popular-posts'); ?></label><br /> -<?php -if ( $taxonomies ) { -?> -<div style="display:<?php if ($instance['stats_tag']['taxonomy']['active'] || $instance['stats_tag']['category']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> -<?php - foreach ( $taxonomies as $taxonomy ) { - if ( 'post_format' == $taxonomy->name ) - continue; - - echo '<label><input type="radio" name="' . $this->get_field_name( 'stats_taxonomy_name' ) . '" value="' . $taxonomy->name . '"' . ( ( $instance['stats_tag']['taxonomy']['name'] == $taxonomy->name ) ? ' checked' : '' ) . '> ' . $taxonomy->labels->singular_name . '</label><br>'; - } -?> -</div> -<?php -} -?> - -<!-- HTML Markup options --> -<br /><hr /><br /> - -<legend><strong><?php _e('HTML Markup settings', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['markup']['custom_html']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'custom_html' ); ?>" name="<?php echo $this->get_field_name( 'custom_html' ); ?>" /> <label for="<?php echo $this->get_field_id( 'custom_html' ); ?>"><?php _e('Use custom HTML Markup', 'wordpress-popular-posts'); ?></label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-use-custom-html-markup-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small><br /> - -<div style="display:<?php if ($instance['markup']['custom_html']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'title-start' ); ?>"><?php _e('Before / after title', 'wordpress-popular-posts'); ?>:</label> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'title-start' ); ?>" name="<?php echo $this->get_field_name( 'title-start' ); ?>" value="<?php echo $instance['markup']['title-start']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /> <input type="text" id="<?php echo $this->get_field_id( 'title-end' ); ?>" name="<?php echo $this->get_field_name( 'title-end' ); ?>" value="<?php echo $instance['markup']['title-end']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /></p> - - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'wpp_start' ); ?>"><?php _e('Before / after Popular Posts', 'wordpress-popular-posts'); ?>:</label> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'wpp-start' ); ?>" name="<?php echo $this->get_field_name( 'wpp-start' ); ?>" value="<?php echo esc_attr($instance['markup']['wpp-start']); ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /> <input type="text" id="<?php echo $this->get_field_id( 'wpp-end' ); ?>" name="<?php echo $this->get_field_name( 'wpp-end' ); ?>" value="<?php echo $instance['markup']['wpp-end']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /></p> - - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'post-html' ); ?>"><?php _e('Post HTML Markup', 'wordpress-popular-posts'); ?>:</label> <br /> - <textarea class="widefat" rows="10" id="<?php echo $this->get_field_id( 'post-html' ); ?>" name="<?php echo $this->get_field_name( 'post-html' ); ?>"><?php echo $instance['markup']['post-html']; ?></textarea> -</div> -<br /> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/index.php b/wp-content/plugins/wordpress-popular-posts/index.php deleted file mode 100644 index a0cf42a0a344342a3a3fd6ba524a11ea39de9f08..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/index.php +++ /dev/null @@ -1,2 +0,0 @@ -<?php -// Silence is golden diff --git a/wp-content/plugins/wordpress-popular-posts/js/admin.js b/wp-content/plugins/wordpress-popular-posts/js/admin.js deleted file mode 100644 index e5d3c2805c4616a9d1423f570d6a9377e06b4365..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/js/admin.js +++ /dev/null @@ -1,142 +0,0 @@ -(function ($) { - "use strict"; - $(function () { - // ADS - if ( $('#wpp_donate').is(':visible') ) { - - $.ajax({ - type: "GET", - url: "http://cabrerahector.com/ads/get.php", - timeout: 5000, - dataType: "jsonp", - success: function(results){ - if ( !$.isEmptyObject(results) ) { - $("#wpp_advertisement").html( results.ad ); - - setTimeout(function(){ - // Ad blocker detected :( - if ( "none" == $("#wpp_advertisement img").css('display') ) { - $("#wpp_advertisement").html('<h3 style="margin-top:0; font-size: 1.7em; text-align:center; line-height: 1em;">An <em>awesome</em> ad would be here...</h3><p style="font-size:1.1em; text-align:center;">... <em>if you weren\'t using an <strong>ad blocker</strong></em> :(</p><p style="font-size:0.8em; line-height: 1.4em;">Showing ads help us developers offer our services for free to everyone, so please consider disabling your ad blocker for this page.</p><p style="font-size:0.8em; line-height: 1.4em;">It won\'t be an annoying one, I promise :)</p>').show(); - } - - $("#wpp_advertisement").show(); - }, 250); - } - }, - error: function(XMLHttpRequest, textStatus, errorThrown){ - if ( window.console && window.console.log ) - window.console.log( 'Could not retrieve the ad: ' + textStatus ); - } - }); - - } - - // STATISTICS TABS - $("#wpp-stats-tabs a").click(function(e){ - var activeTab = $(this).attr("rel"); - $(this).removeClass("button-secondary").addClass("button-primary").siblings().removeClass("button-primary").addClass("button-secondary"); - $(".wpp-stats:visible").hide("fast", function(){ - $("#"+activeTab).slideDown("fast"); - }); - - e.preventDefault(); - }); - - $(".wpp-stats").each(function(){ - if ($("li", this).length == 1) { - $("li", this).addClass("wpp-stats-last-item"); - } else { - $("li:last", this).addClass("wpp-stats-last-item"); - } - }); - - // TOOLS - // thumb source selection - $("#thumb_source").change(function() { - if ($(this).val() == "custom_field") { - $("#lbl_field, #thumb_field, #row_custom_field, #row_custom_field_resize").show(); - } else { - $("#lbl_field, #thumb_field, #row_custom_field, #row_custom_field_resize").hide(); - } - }); - // file upload - $('#upload_thumb_button').click(function(e) { - tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false); - e.preventDefault(); - }); - window.send_to_editor = function(html) { - var regex = /<img[^>]+src="(http:\/\/[^">]+)"/g; - var result = regex.exec(html); - - if ( null != result ) { - $('#upload_thumb_src').val(result[1]); - - var img = new Image(); - img.onload = function() { - $("#thumb-review").html( this ).parent().fadeIn(); - } - img.src = result[1]; - } - - tb_remove(); - }; - // log limit - $("#log_limit").change(function(){ - var me = $(this); - - if (me.val() == 1) { - me.parent().children("label, .description").show(); - me.parent().children("br").hide(); - } else { - me.parent().children("label, .description").hide(); - me.parent().children("br").show(); - } - }); - // cache interval - $("#cache").change(function() { - if ($(this).val() == 1) { - $("#cache_refresh_interval").show(); - } else { - $("#cache_refresh_interval, #cache_too_long").hide(); - } - }); - // interval - $("#cache_interval_time").change(function() { - var value = parseInt( $("#cache_interval_value").val() ); - var time = $(this).val(); - - if ( time == "hour" && value > 72 ) { - $("#cache_too_long").show(); - } else if ( time == "day" && value > 3 ) { - $("#cache_too_long").show(); - } else if ( time == "week" && value > 1 ) { - $("#cache_too_long").show(); - } else if ( time == "month" && value >= 1 ) { - $("#cache_too_long").show(); - } else if ( time == "year" && value >= 1 ) { - $("#cache_too_long").show(); - } else { - $("#cache_too_long").hide(); - } - }); - - $("#cache_interval_value").change(function() { - var value = parseInt( $(this).val() ); - var time = $("#cache_interval_time").val(); - - if ( time == "hour" && value > 72 ) { - $("#cache_too_long").show(); - } else if ( time == "day" && value > 3 ) { - $("#cache_too_long").show(); - } else if ( time == "week" && value > 1 ) { - $("#cache_too_long").show(); - } else if ( time == "month" && value >= 1 ) { - $("#cache_too_long").show(); - } else if ( time == "year" && value >= 1 ) { - $("#cache_too_long").show(); - } else { - $("#cache_too_long").hide(); - } - }); - }); -}(jQuery)); \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/js/index.php b/wp-content/plugins/wordpress-popular-posts/js/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/js/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/js/wpp-upload.js b/wp-content/plugins/wordpress-popular-posts/js/wpp-upload.js deleted file mode 100644 index be5c1e6c717d300ad082b5a6b638652bc9856b30..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/js/wpp-upload.js +++ /dev/null @@ -1,23 +0,0 @@ -jQuery(document).ready(function($) { - - $('#upload_thumb_button').click(function(e) { - e.preventDefault(); - tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false); - }); - - window.send_to_editor = function(html) { - - var image_url = $('img',html).attr('src'); - $('#upload_thumb_src').val(image_url); - - var img = new Image(); - img.src = image_url; - - $("#thumb-review").html( img ); - $("#thumb-review").parent().show(); - - tb_remove(); - - }; - -}); \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/lang/index.php b/wp-content/plugins/wordpress-popular-posts/lang/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.mo b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.mo deleted file mode 100644 index 11b67a5ace315e48990f0d8f9082f0e10f7f744f..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.po b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.po deleted file mode 100644 index 9e7ac8f53d158af59cc6c8907d238dd18ac0baf7..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-de_DE.po +++ /dev/null @@ -1,1516 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-14 14:07-0430\n" -"PO-Revision-Date: \n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.8.6\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../views/admin.php:28 ../views/admin.php:43 ../views/admin.php:63 -#: ../views/admin.php:99 -msgid "Settings saved." -msgstr "Einstellungen gespeichert" - -#: ../views/admin.php:54 -msgid "Please provide the name of your custom field." -msgstr "Gebe einen Namen für das benutzerdefinierte Feld an." - -#: ../views/admin.php:107 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 -#, fuzzy -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"Alle Einträge im Cache werden gelöscht und können nicht mehr wieder " -"hergestellt werden." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 ../views/admin.php:154 ../views/admin.php:186 -msgid "Do you want to continue?" -msgstr "Möchtest du fortfahren?" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:128 -msgid "Success! The cache table has been cleared!" -msgstr "Erfolg: Die Cache-Tabelle wurde geleert!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:132 -msgid "Error: cache table does not exist." -msgstr "Fehler: Cache-Tabelle ist nicht vorhanden." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:136 ../views/admin.php:144 ../views/admin.php:168 -#: ../views/admin.php:176 ../views/admin.php:200 ../views/admin.php:208 -msgid "Invalid action." -msgstr "Ungültige Aktion." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:140 ../views/admin.php:172 ../views/admin.php:204 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"Du hast nicht die erforderlichen Rechte um das zu tun. Bitte wende dich an " -"den Administrator für weitere Hilfe." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:154 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"Alle gespeicherten Daten von WordPress Popular Posts werden gelöscht und " -"können nicht wieder hergestellt werden." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:160 -msgid "Success! All data have been cleared!" -msgstr "Erfolg: Alle Daten wurden gelöscht!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:164 -msgid "Error: one or both data tables are missing." -msgstr "Fehler: Eine oder beide Tabellen fehlen." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:186 -#, fuzzy -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" -"Alle Einträge im Cache werden gelöscht und können nicht mehr wieder " -"hergestellt werden." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:192 -#, fuzzy -msgid "Success! All files have been deleted!" -msgstr "Erfolg: Alle Daten wurden gelöscht!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:196 -msgid "The thumbnail cache is already empty!" -msgstr "" - -#: ../views/admin.php:244 -msgid "Stats" -msgstr "Statistiken" - -#: ../views/admin.php:245 -msgid "Tools" -msgstr "Werkzeuge" - -#: ../views/admin.php:246 -msgid "Parameters" -msgstr "Parameter" - -#: ../views/admin.php:247 -msgid "About" -msgstr "Über" - -#: ../views/admin.php:258 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since WordPress " -"Popular Posts was installed." -msgstr "" -"Klicke auf jeden Reiter, um die beliebtesten Beiträge deines Blogs von den " -"letzten 24 Stunden, dieser Woche, den letzten 30 Tagen oder des gesamten " -"Zeitraums seit der Installation von WordPress Popular Posts zu sehen." - -#: ../views/admin.php:264 -msgid "Order by comments" -msgstr "Sortiert nach Kommentaren" - -#: ../views/admin.php:265 -msgid "Order by views" -msgstr "Sortiert nach Seitenaufrufen" - -#: ../views/admin.php:266 -msgid "Order by avg. daily views" -msgstr "Sortierte nach durchschn. Tagesaufrufen" - -#: ../views/admin.php:268 -msgid "Post type" -msgstr "Post-Type" - -#: ../views/admin.php:269 -msgid "Limit" -msgstr "Max. aufzulistende Einträge:" - -#: ../views/admin.php:271 ../views/admin.php:379 ../views/admin.php:483 -#: ../views/admin.php:522 -msgid "Apply" -msgstr "Anwenden" - -#: ../views/admin.php:274 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: ../views/admin.php:283 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "Letzte 24 Stunden" - -#: ../views/admin.php:284 ../views/form.php:27 -msgid "Last 7 days" -msgstr "Letzte 7 Tage" - -#: ../views/admin.php:285 ../views/form.php:28 -msgid "Last 30 days" -msgstr "Letzte 30 Tage" - -#: ../views/admin.php:286 ../views/form.php:29 -msgid "All-time" -msgstr "Allzeithoch" - -#: ../views/admin.php:308 -msgid "Thumbnails" -msgstr "Vorschaubilder" - -#: ../views/admin.php:313 -msgid "Default thumbnail" -msgstr "Standardvorschaubild" - -#: ../views/admin.php:318 -msgid "Upload thumbnail" -msgstr "Vorschaubild hochladen" - -#: ../views/admin.php:320 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"Anleitung: ein Bild hochladen (oder aus existierenden wählen) und " -"\"vollständige Größe\" einstellen. Anschließend \"Anwenden\" anklicken." - -#: ../views/admin.php:324 -msgid "Pick image from" -msgstr "Wähle Bildquelle" - -#: ../views/admin.php:327 -msgid "Featured image" -msgstr "Beitragsbild" - -#: ../views/admin.php:328 -msgid "First image on post" -msgstr "Erstes Bild im Beitrag" - -#: ../views/admin.php:329 -msgid "First attachment" -msgstr "" - -#: ../views/admin.php:330 -msgid "Custom field" -msgstr "Benutzerdefiniertes Feld" - -#: ../views/admin.php:333 -#, fuzzy -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "Woher kommen die Vorschaubilder?" - -#: ../views/admin.php:337 -msgid "Custom field name" -msgstr "Name des benutzerdefiniertes Feldes" - -#: ../views/admin.php:343 -msgid "Resize image from Custom field?" -msgstr "Bild aus benutzerdefiniertem Feld skalieren?" - -#: ../views/admin.php:346 -msgid "No, I will upload my own thumbnail" -msgstr "Nein, ich lade mein eigenes Vorschaubild hoch" - -#: ../views/admin.php:347 -msgid "Yes" -msgstr "Ja" - -#: ../views/admin.php:352 -msgid "Responsive support" -msgstr "" - -#: ../views/admin.php:355 ../views/admin.php:425 ../views/admin.php:465 -#: ../views/admin.php:512 -msgid "Enabled" -msgstr "Aktiviert" - -#: ../views/admin.php:356 ../views/admin.php:409 ../views/admin.php:424 -#: ../views/admin.php:464 ../views/admin.php:513 -msgid "Disabled" -msgstr "Deaktiviert" - -#: ../views/admin.php:359 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" - -#: ../views/admin.php:369 -#, fuzzy -msgid "Empty image cache" -msgstr "Cache leeren" - -#: ../views/admin.php:370 -#, fuzzy -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" -"Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts " -"zu leeren." - -#: ../views/admin.php:390 -msgid "Data" -msgstr "Daten" - -#: ../views/admin.php:395 -msgid "Log views from" -msgstr "Erfasse Aufrufe" - -#: ../views/admin.php:398 -msgid "Visitors only" -msgstr "von jedem außer eingeloggten Benutzern" - -#: ../views/admin.php:399 -msgid "Logged-in users only" -msgstr "nur von eingeloggten Benutzern" - -#: ../views/admin.php:400 -msgid "Everyone" -msgstr "von jedem" - -#: ../views/admin.php:406 -msgid "Log limit" -msgstr "" - -#: ../views/admin.php:410 -msgid "Keep data for" -msgstr "" - -#: ../views/admin.php:413 -msgid "day(s)" -msgstr "" - -#: ../views/admin.php:415 -msgid "" -"Data from entries that haven't been viewed within the specified time frame " -"will be automatically discarded" -msgstr "" - -#: ../views/admin.php:421 -msgid "Ajaxify widget" -msgstr "Widget via Ajax" - -#: ../views/admin.php:429 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"Falls du ein Cache-Plugin wie z. B. WP Super Cache verwendest, verhindert " -"das Aktivieren, dass die Liste nicht gecachet wird und stets aktuell ist." - -#: ../views/admin.php:433 -msgid "WPP Cache Expiry Policy" -msgstr "" - -#: ../views/admin.php:433 ../views/admin.php:461 ../views/form.php:2 -#: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43 -#: ../views/form.php:52 ../views/form.php:125 -msgid "What is this?" -msgstr "Was ist das?" - -#: ../views/admin.php:436 -msgid "Never cache" -msgstr "" - -#: ../views/admin.php:437 -msgid "Enable caching" -msgstr "" - -#: ../views/admin.php:441 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" - -#: ../views/admin.php:445 -msgid "Refresh cache every" -msgstr "" - -#: ../views/admin.php:449 -msgid "Minute(s)" -msgstr "" - -#: ../views/admin.php:450 -msgid "Hour(s)" -msgstr "Stunde(n)" - -#: ../views/admin.php:451 -msgid "Day(s)" -msgstr "Tag(e)" - -#: ../views/admin.php:452 -msgid "Week(s)" -msgstr "Woche(n)" - -#: ../views/admin.php:453 -msgid "Month(s)" -msgstr "Monat(e)" - -#: ../views/admin.php:454 -msgid "Year(s)" -msgstr "Jahr(e)" - -#: ../views/admin.php:457 -msgid "Really? That long?" -msgstr "Wirklich? So lang?" - -#: ../views/admin.php:461 -msgid "Data Sampling" -msgstr "" - -#: ../views/admin.php:469 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" - -#: ../views/admin.php:473 -msgid "Sample Rate" -msgstr "" - -#: ../views/admin.php:477 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" - -#: ../views/admin.php:494 -msgid "Miscellaneous" -msgstr "Sonstiges" - -#: ../views/admin.php:499 -msgid "Open links in" -msgstr "Links öffnen in" - -#: ../views/admin.php:502 -msgid "Current window" -msgstr "aktuellem Fenster" - -#: ../views/admin.php:503 -msgid "New tab/window" -msgstr "Neuem Tab/Fenster" - -#: ../views/admin.php:509 -msgid "Use plugin's stylesheet" -msgstr "Stylesheet des Plugins benutzen" - -#: ../views/admin.php:516 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"Als Voreinstellung schließt dieses Plugin eine Stylesheet-Datei wpp.css ein. " -"Du kannst mit ihr die Auflistung beliebter Beiträge gestalten. Falls du dein " -"eigenes Stylesheet verwenden oder die wpp.css nicht im HEAD-Abschnitt " -"einbinden willst, deaktiviere die Einbindung." - -#: ../views/admin.php:535 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Posts speichert Daten in zwei getrennten Tabellen: eine " -"für die beliebtesten Beiträge der letzten 30 Tage (auch: \"Cache-Tabelle\"), " -"und die andere für die Allzeit-Daten (auch \"historische Daten\" oder " -"einfach \"Datentabelle\"). Solltest du aus verschiedenen Gründen die Cache-" -"Tabelle leeren wollen oder sowohl die Datentabelle als auch die Cache-" -"Tabelle, nutze die folgenden Schaltflächen." - -#: ../views/admin.php:536 -msgid "Empty cache" -msgstr "Cache leeren" - -#: ../views/admin.php:536 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" -"Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts " -"zu leeren." - -#: ../views/admin.php:537 -msgid "Clear all data" -msgstr "Alle Daten löschen" - -#: ../views/admin.php:537 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" -"Nutze diese Schaltfläche, um alle Einträge in der Datentabelle von Wordpress " -"Popular Posts zu löschen." - -#: ../views/admin.php:544 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: ../views/admin.php:552 -msgid "Parameter" -msgstr "Parameter" - -#: ../views/admin.php:553 -msgid "What it does " -msgstr "Was es macht" - -#: ../views/admin.php:554 -msgid "Possible values" -msgstr "Erlaubte Werte" - -#: ../views/admin.php:555 -msgid "Defaults to" -msgstr "Voreinstellung" - -#: ../views/admin.php:556 -msgid "Example" -msgstr "Beispiel" - -#: ../views/admin.php:562 -msgid "Sets a heading for the list" -msgstr "Bestimmt die Überschrift der Liste" - -#: ../views/admin.php:563 ../views/admin.php:570 ../views/admin.php:577 -#: ../views/admin.php:612 ../views/admin.php:619 ../views/admin.php:626 -#: ../views/admin.php:633 ../views/admin.php:724 ../views/admin.php:738 -#: ../views/admin.php:745 -msgid "Text string" -msgstr "Zeichenkette" - -#: ../views/admin.php:564 ../views/admin.php:620 ../views/admin.php:627 -#: ../views/admin.php:634 -msgid "None" -msgstr "nichts" - -#: ../views/admin.php:569 -msgid "Set the opening tag for the heading of the list" -msgstr "Bestimmt den öffnenden Tag der Listenüberschrift" - -#: ../views/admin.php:576 -msgid "Set the closing tag for the heading of the list" -msgstr "Bestimmt den schließenden Tag der Listenüberschrift" - -#: ../views/admin.php:583 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "Bestimmt die maximale Anzahl der beliebten Beiträge in der Auflistung" - -#: ../views/admin.php:584 ../views/admin.php:640 ../views/admin.php:654 -#: ../views/admin.php:675 ../views/admin.php:682 -msgid "Positive integer" -msgstr "Positive Ganzzahl" - -#: ../views/admin.php:590 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" -"Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der " -"eingestellten Zeitspanne anzuzeigen." - -#: ../views/admin.php:597 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" -"Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der " -"eingestellten Zeitspanne anzuzeigen." - -#: ../views/admin.php:604 -msgid "Sets the sorting option of the popular posts" -msgstr "Bestimmt die Auswahl der Reihenfolge der beliebten Beiträge" - -#: ../views/admin.php:605 -msgid "(for average views per day)" -msgstr "(für durchschn. Aufrufe pro Tag)" - -#: ../views/admin.php:611 -msgid "Defines the type of posts to show on the listing" -msgstr "Bestimmt die Art der Dokumente, die aufgelistet werden" - -#: ../views/admin.php:618 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts die Beiträge und Seiten anhand " -"ihrer angegebener ID(s) in der Liste nicht an." - -#: ../views/admin.php:625 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts alle Einträge, die den " -"angegebenen Kategorie-IDs zugeordnet sind, an. Ein Minus-Zeichen vor der ID " -"schließt die Beiträge dieser Kategorie aus." - -#: ../views/admin.php:632 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"Falls gesetzt, wird WordPress Popular Posts alle Einträge anhand angegebener " -"Autor(en)-ID(s) ausgeben." - -#: ../views/admin.php:639 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" -"Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf " -"\"n\" Zeichen." - -#: ../views/admin.php:646 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf " -"\"n\" Wörter anstatt Zeichen." - -#: ../views/admin.php:653 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts einen Auszug von \"n\" " -"Buchstaben Länge bei jedem Beitrag an." - -#: ../views/admin.php:660 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"Falls gesetzt, behält WordPress Popular Posts die formatierenden Tags (fett, " -"kursiv usw.) und die Links im Auszug bei." - -#: ../views/admin.php:667 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"Falls gesetzt, kürzt WordPress Popular Posts jeden Auszug, wenn möglich, auf " -"\"n\" Wörter anstatt Zeichen." - -#: ../views/admin.php:674 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die " -"Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut " -"bestimmt die Breite der Vorschaubilder." - -#: ../views/admin.php:681 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die " -"Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut " -"bestimmt die Höhe der Vorschaubilder." - -#: ../views/admin.php:688 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"Falls gesetzt und wenn das Plugin WP-PostRatings in Deinem Blog läuft, zeigt " -"WordPress Popular Posts die Bewertungen der Nutzer an." - -#: ../views/admin.php:695 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Kommentare jeder " -"Beitrag bis jetzt erhielt." - -#: ../views/admin.php:702 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Aufrufe jeder " -"Beitrag seit der Installation erhielt." - -#: ../views/admin.php:709 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts an, wer welchen Beitrag " -"veröffentlicht hat." - -#: ../views/admin.php:716 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"Falls gesetzt, zeigt WordPress Popular Posts das Veröffentlichungsdatum " -"jeden Beitrags in der Liste an." - -#: ../views/admin.php:723 -msgid "Sets the date format" -msgstr "Bestimmt das Datumsformat" - -#: ../views/admin.php:730 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "Falls gesetzt, zeigt WordPress Popular Posts die Kategorie an" - -#: ../views/admin.php:737 -msgid "Sets the opening tag for the listing" -msgstr "Bestimmt das öffnende Tag der Auflistung" - -#: ../views/admin.php:744 -msgid "Sets the closing tag for the listing" -msgstr "Bestimmt das schließende Tag der Auflistung" - -#: ../views/admin.php:751 -msgid "Sets the HTML structure of each post" -msgstr "Setzt die HTML-Struktur jeden Beitrags" - -#: ../views/admin.php:752 -msgid "Text string, custom HTML" -msgstr "Zeichenkette, benutzerdefiniertes HTML" - -#: ../views/admin.php:752 -msgid "Available Content Tags" -msgstr "Verfügbare Content-Tags" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays linked post/page title" -msgstr "zeigt den verlinkten Titel des Beitrags/der Seiten an" - -#: ../views/admin.php:752 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"zeigt den Auszug (excerpt) des Beitrags/der Seite an, erfordert " -"excerpt_length größer als 0" - -#: ../views/admin.php:752 -msgid "displays the default stats tags" -msgstr "zeigt die standard­mäßigen Statistik-Tags an" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das " -"installierte und aktivierte Plugin WP-PostRatings" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das " -"installierte und aktivierte Plugin WP-PostRatings" - -#: ../views/admin.php:752 -msgid "outputs the URL of the post/page" -msgstr "gibt die URL des Beitrags/der Seite aus" - -#: ../views/admin.php:752 -msgid "displays post/page title, no link" -msgstr "zeigt den Titel des Beitrags/der Seite an, ohne Link" - -#: ../views/admin.php:752 -msgid "displays linked author name, requires stats_author=1" -msgstr "zeigt den verlinkten Autoren­namen an, erfordert stats_author=1" - -#: ../views/admin.php:752 -msgid "displays linked category name, requires stats_category=1" -msgstr "" -"zeigt den verlinkten Kategorien­namen an, erfordert stats_category=1" - -#: ../views/admin.php:752 -msgid "displays views count only, no text" -msgstr "zeigt nur die Anzahl an, ohne Text" - -#: ../views/admin.php:752 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" -"zeigt nur die Anzahl der Kom­men­tare an, ohne Text, erfordert " -"stats_comment=1" - -#: ../views/admin.php:752 -msgid "displays post/page date, requires stats_date=1" -msgstr "" - -#: ../views/admin.php:765 -#, php-format -msgid "About WordPress Popular Posts %s" -msgstr "Über WordPress Popular Posts %s" - -#: ../views/admin.php:766 -msgid "This version includes the following changes" -msgstr "Diese Version enthält die folgenden Änderungen" - -#: ../views/admin.php:778 -msgid "Do you like this plugin?" -msgstr "Gefällt dir dieses Plugin?" - -#: ../views/admin.php:785 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" -"Jede Spende motiviert mich, der WordPress-Gemeinschaft nützliches Zeugs " -"weiterhin kostenlos zur Verfügung zu stellen!" - -#: ../views/admin.php:786 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: ../views/admin.php:792 -msgid "Need help?" -msgstr "Brauchen Sie Hilfe?" - -#: ../views/admin.php:793 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" - -#: ../views/admin.php:794 -msgid "Let's make this plugin even better!" -msgstr "" - -#: ../views/form.php:2 -msgid "Title" -msgstr "Titel:" - -#: ../views/form.php:7 -msgid "Show up to" -msgstr "Zeige bis zu:" - -#: ../views/form.php:8 -msgid "posts" -msgstr "Beiträge" - -#: ../views/form.php:12 -msgid "Sort posts by" -msgstr "Sortiere Beiträge nach:" - -#: ../views/form.php:14 -msgid "Comments" -msgstr "Kommentaren" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "Zahl der Aufrufe" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "Durchschn. tägl. Aufrufe" - -#: ../views/form.php:22 -msgid "Filters" -msgstr "Filter:" - -#: ../views/form.php:24 -msgid "Time Range" -msgstr "Zeitspanne:" - -#: ../views/form.php:34 -msgid "Post type(s)" -msgstr "Post-Type(s):" - -#: ../views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "Post-ID(s), die ausgeschlossen werden:" - -#: ../views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "Kategorie(n)-ID(s):" - -#: ../views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "Autor(en)-ID(s):" - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "Einstellungen für Beiträge" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "Zeige Bewertung" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "Kürze den Titel" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "Kürze den Titel auf" - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "Buchstaben" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "Wörter" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "Zeige Auszug" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "Behalte Textformat und Links bei" - -#: ../views/form.php:67 -msgid "Excerpt length" -msgstr "Länge des Auszugs:" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "Zeige Vorschaubild" - -#: ../views/form.php:76 -msgid "Use predefined size" -msgstr "" - -#: ../views/form.php:88 -msgid "Set size manually" -msgstr "" - -#: ../views/form.php:90 -msgid "Width" -msgstr "Breite:" - -#: ../views/form.php:93 -msgid "Height" -msgstr "Höhe:" - -#: ../views/form.php:99 -msgid "Stats Tag settings" -msgstr "Einstellungen des Statistik-Tags" - -#: ../views/form.php:101 -msgid "Display comment count" -msgstr "Zeige Anzahl Kommentare" - -#: ../views/form.php:103 -msgid "Display views" -msgstr "Zeige Aufrufe" - -#: ../views/form.php:105 -msgid "Display author" -msgstr "Zeige Autor" - -#: ../views/form.php:107 -msgid "Display date" -msgstr "Zeige Datum" - -#: ../views/form.php:110 -msgid "Date Format" -msgstr "Datumsformat" - -#: ../views/form.php:112 -msgid "WordPress Date Format" -msgstr "Datumsformat WordPress" - -#: ../views/form.php:119 -msgid "Display category" -msgstr "Zeige Kategorie" - -#: ../views/form.php:123 -msgid "HTML Markup settings" -msgstr "Einstellungen des HTML-Codes" - -#: ../views/form.php:125 -msgid "Use custom HTML Markup" -msgstr "Verwende nutzerdefinierten HTML-Code" - -#: ../views/form.php:128 -msgid "Before / after title" -msgstr "Vor / nach dem Titel:" - -#: ../views/form.php:131 -msgid "Before / after Popular Posts" -msgstr "Vor / nach Beliebte Beiträge:" - -#: ../views/form.php:134 -msgid "Post HTML Markup" -msgstr "Zeige HTML-Code" - -#: ../wordpress-popular-posts.php:304 -msgid "The most Popular Posts on your blog." -msgstr "Die beliebtesten Beiträge deines Blogs." - -#: ../wordpress-popular-posts.php:482 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" - -#: ../wordpress-popular-posts.php:726 -msgid "Upload" -msgstr "Hochladen" - -#: ../wordpress-popular-posts.php:1099 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"Deine PHP-Version ist zu alt. Das Plugin\"WordPress Popular Posts\" benötigt " -"mindestens PHP-Version %1$s für die einwandfreie Funktion. Bitte nehme " -"Kontakt mit deinem Hosting-Provider auf und bitte ihn, PHP auf v%1$s oder " -"höher zu aktualisieren." - -#: ../wordpress-popular-posts.php:1106 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"Deine WordPress-Version ist zu alt. Das Plugin WordPress Popular Posts " -"benötigt mindestens Version %1$s. Bitte aktualisiere WordPress via Dashboard " -"> Aktualisieren." - -#: ../wordpress-popular-posts.php:1131 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> wurde <strong>deaktiviert</" -"strong>.</p></div>" - -#: ../wordpress-popular-posts.php:1826 -msgid "Sorry. No data so far." -msgstr "Noch keine Daten vorhanden." - -#: ../wordpress-popular-posts.php:2353 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "1 Kommentar" -msgstr[1] "%s Kommentare" - -#: ../wordpress-popular-posts.php:2365 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "1 Aufruf pro Tag" -msgstr[1] "%s Aufrufe pro Tag" - -#: ../wordpress-popular-posts.php:2371 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "1 Aufruf" -msgstr[1] "%s Aufrufe" - -#: ../wordpress-popular-posts.php:2394 -#, php-format -msgid "by %s" -msgstr "von %s" - -#: ../wordpress-popular-posts.php:2400 -#, php-format -msgid "posted on %s" -msgstr "veröffentlicht am %s" - -#: ../wordpress-popular-posts.php:2408 -#, php-format -msgid "under %s" -msgstr "in %s" - -#~ msgid "FAQ" -#~ msgstr "Häufige Fragen und Antworten" - -#~ msgid "What does \"Title\" do?" -#~ msgstr "Was macht \"Titel\"?" - -#~ msgid "" -#~ "It allows you to show a heading for your most popular posts listing. If " -#~ "left empty, no heading will be displayed at all." -#~ msgstr "" -#~ "Ermöglicht dir, eine Überschrift für die Auflistung anzugeben. Falls leer " -#~ "belassen, wird keine Überschrift angezeigt." - -#~ msgid "What is \"Post type\" for?" -#~ msgstr "Für was steht \"Post-Type\"?" - -#~ msgid "" -#~ "This filter allows you to decide which post types to show on the listing. " -#~ "By default, it will retrieve only posts and pages (which should be fine " -#~ "for most cases)." -#~ msgstr "" -#~ "Dieser Filter erlaubt dir zu entscheiden, welche Post-Types aufgelistet " -#~ "werden. Per Voreinstellung werden nur Seiten und Beiträge angezeigt (was " -#~ "in den meisten Fällen ausreicht)." - -#~ msgid "What is \"Category(ies) ID(s)\" for?" -#~ msgstr "Für was steht \"Kategorie(n)-ID(s)\"?" - -#~ msgid "" -#~ "This filter allows you to select which categories should be included or " -#~ "excluded from the listing. A negative sign in front of the category ID " -#~ "number will exclude posts belonging to it from the list, for example. You " -#~ "can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Dieser Filter erlaubt dir auszuwählen, welche Kategorien in der " -#~ "Auflistung eingeschlossen oder ausgeschlossen werden sollten. Ein Minus-" -#~ "Zeichen vor einer Kategorien-ID schließt Beiträge, die die ID zugewiesen " -#~ "bekamen, von der Liste aus. du kannst mehr als eine ID, mit Kommas " -#~ "getrennt, angeben." - -#~ msgid "What is \"Author(s) ID(s)\" for?" -#~ msgstr "Für was steht \"Autor(en)-ID(s)\"?" - -#~ msgid "" -#~ "Just like the Category filter, this one lets you filter posts by author " -#~ "ID. You can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Wie beim Kategorienfilter kannst du auch Beiträge nach Autoren filtern. " -#~ "Du kannst mehr als eine Autoren-ID, getrennt durch Kommas, angeben." - -#~ msgid "What does \"Display post rating\" do?" -#~ msgstr "Was macht \"Zeige Bewertung\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how your readers are rating " -#~ "your most popular posts. This feature requires having WP-PostRatings " -#~ "plugin installed and enabled on your blog for it to work." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts an, wie deine Leser deine " -#~ "beliebtesten Beiträge bewertet haben. Diese Funktion erfordert die " -#~ "Installation und Aktivierung des Plugins WP-PostRatings." - -#~ msgid "What does \"Use custom HTML Markup\" do?" -#~ msgstr "Was macht \"Verwende benutzerdefinierten HTML-Code\"?" - -#~ msgid "" -#~ "If checked, you will be able to customize the HTML markup of your popular " -#~ "posts listing. For example, you can decide whether to wrap your posts in " -#~ "an unordered list, an ordered list, a div, etc. If you know xHTML/CSS, " -#~ "this is for you!" -#~ msgstr "" -#~ "Falls aktiviert, ist es dir möglich, eigenen HTML-Code in der Auflistung " -#~ "einzusetzen. Du kannst z. B. bestimmen, ob die Einträge in einer " -#~ "ungeordneten Liste, geordneten Liste, einem DIV oder was auch immer " -#~ "gesetzt werden. Wenn du HTML und CSS kannst, ist diese Auswahl dein " -#~ "Freund." - -#~ msgid "What is Time Range for?" -#~ msgstr "Für was steht die Zeitspanne?" - -#~ msgid "" -#~ "It will tell WordPress Popular Posts to retrieve all posts with most " -#~ "views / comments within the selected time range." -#~ msgstr "" -#~ "Weist WordPress Popular Posts an, alle Beiträge mit den meisten Aufrufen " -#~ "bzw. Kommentaren innerhalb der eingestellten Zeitspanne anzuzeigen." - -#~ msgid "What is \"Sort post by\" for?" -#~ msgstr "Für was steht \"Sortiere Beiträge nach\"?" - -#~ msgid "" -#~ "It allows you to decide whether to order your popular posts listing by " -#~ "total views, comments, or average views per day." -#~ msgstr "" -#~ "Ermöglicht dir zu entscheiden, ob die Listeneinträge nach absoluter " -#~ "Anzahl der Aufrufe, Kommentare oder durchschnittlichen Aufrufen pro Tag " -#~ "geordnet werden." - -#~ msgid "What does \"Shorten title\" do?" -#~ msgstr "Was macht \"Kürze den Titel\"?" - -#~ msgid "" -#~ "If checked, all posts titles will be shortened to \"n\" characters/words. " -#~ "A new \"Shorten title to\" option will appear so you can set it to " -#~ "whatever you like." -#~ msgstr "" -#~ "Falls aktiviert, werden alle Titel auf \"n\" Zeichen gekürzt. Eine neue " -#~ "Auswahl \"Kürze den Titel zu\" wird erscheinen, mit der du die Titellänge " -#~ "setzen kannst." - -#~ msgid "What does \"Display post excerpt\" do?" -#~ msgstr "Was macht \"Zeige Auszug\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will also include a small extract of " -#~ "your posts in the list. Similarly to the previous option, you will be " -#~ "able to decide how long the post excerpt should be." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts zusätzlich einen kurzen " -#~ "Auszug Deines Beitrags in der Liste an. Wie bei der vorhergehenden " -#~ "Auswahl ist es dir möglich, die Länge des Auszugs einzustellen." - -#~ msgid "What does \"Keep text format and links\" do?" -#~ msgstr "Was macht \"Behalte Textformat und Links bei\"?" - -#~ msgid "" -#~ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular " -#~ "Posts will keep the styling tags (eg. bold, italic, etc) that were found " -#~ "in the excerpt. Hyperlinks will remain intact, too." -#~ msgstr "" -#~ "Falls aktiviert und wenn die Darstellung von Auszügen aktiviert ist, " -#~ "behält WordPress Popular Posts die formatierenden Tags (z. B. fett, " -#~ "kursiv usw.) im Auszug. Auch Links bleiben unverändert." - -#~ msgid "What does \"Display post thumbnail\" do?" -#~ msgstr "Was macht \"Zeige Vorschaubild\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will attempt to retrieve the " -#~ "thumbnail of each post. You can set up the source of the thumbnail via " -#~ "Settings - WordPress Popular Posts - Tools." -#~ msgstr "" -#~ "Falls aktiviert, versucht WordPress Popular Posts, das Vorschaubild von " -#~ "jedem Beitrag darzustellen. Du kannst die Quelle des Vorschaubildes unter " -#~ "\"Werkzeuge\" einstellen." - -#~ msgid "What does \"Display comment count\" do?" -#~ msgstr "Was macht \"Zeige Anzahl Kommentare\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display how many comments each " -#~ "popular post has got in the selected Time Range." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele Kommentare " -#~ "jeder beliebte Beitrag in der eingestellten Zeitspanne erhielt." - -#~ msgid "What does \"Display views\" do?" -#~ msgstr "Was macht \"Zeige Aufrufe\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how many pageviews a single " -#~ "post has gotten in the selected Time Range." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele " -#~ "Seitenaufrufe jeder einzelne Beitrag in der eingestellten Zeitspanne " -#~ "erhielt." - -#~ msgid "What does \"Display author\" do?" -#~ msgstr "Was macht \"Zeige Autor\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the name of the author " -#~ "of each entry listed." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts den Autorennamen in jedem " -#~ "Listeneintrag an." - -#~ msgid "What does \"Display date\" do?" -#~ msgstr "Was macht \"Zeige Datum\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the date when each " -#~ "popular posts was published." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts das Veröffentlichungsdatum " -#~ "jeden Beitrags an." - -#~ msgid "What does \"Display category\" do?" -#~ msgstr "Was macht \"Zeige Kategorie\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the category of each " -#~ "post." -#~ msgstr "" -#~ "Falls aktiviert, zeigt WordPress Popular Posts den Kategorie in jedem " -#~ "Listeneintrag an." - -#~ msgid "What are \"Content Tags\"?" -#~ msgstr "Was sind \"Content-Tags\"?" - -#, fuzzy -#~ msgid "" -#~ "Content Tags are codes to display a variety of items on your popular " -#~ "posts custom HTML structure. For example, setting it to \"{title}: " -#~ "{summary}\" (without the quotes) would display \"Post title: excerpt of " -#~ "the post here\". For more Content Tags, see the <a href=\"%s\" target=" -#~ "\"_blank\">Parameters</a> section." -#~ msgstr "" -#~ "Content-Tags sind Code-Schnipsel, um verschiedene Angaben über die " -#~ "beliebtesten Beiträge in deiner selbst definierten HTML-Struktur " -#~ "anzuzeigen. Zum Beispiel zeigt \"{title}: {summary}\" (ohne die " -#~ "Anführungszeichen) \"Überschrift: Auszug des Beitrags\" an. Für weitere " -#~ "Content-Tags siehe \"Liste der gültigen Parameter von wpp_gewt-" -#~ "mostpopular() und des [wpp]-Shortcodes\"." - -#~ msgid "What are \"Template Tags\"?" -#~ msgstr "Was sind \"Template-Tags\"?" - -#~ msgid "" -#~ "Template Tags are simply php functions that allow you to perform certain " -#~ "actions. For example, WordPress Popular Posts currently supports two " -#~ "different template tags: wpp_get_mostpopular() and wpp_get_views()." -#~ msgstr "" -#~ "Template-Tags sind schlicht und einfach PHP-Funktionen, die bestimmten " -#~ "Aktionen ausführen. Zum Beispiel unterstützt WordPress Popular Posts zwei " -#~ "verschiedene Template-Tags: wpp_get_mostpopular() und wpp_get_views()." - -#~ msgid "What are the template tags that WordPress Popular Posts supports?" -#~ msgstr "Welche Template-Tags unterstützt WordPress Popular Posts?" - -#~ msgid "" -#~ "The following are the template tags supported by WordPress Popular Posts" -#~ msgstr "Die folgenden Template-Tags unterstützt WordPress Popular Posts" - -#~ msgid "Template tag" -#~ msgstr "Template-Tag" - -#, fuzzy -#~ msgid "" -#~ "Similar to the widget functionality, this tag retrieves the most popular " -#~ "posts on your blog. This function also accepts <a href=\"%1$s" -#~ "\">parameters</a> so you can customize your popular listing, but these " -#~ "are not required." -#~ msgstr "" -#~ "Ähnlich wie das Widget zeigt dieser Tag die beliebtesten Beiträge Deines " -#~ "Blogs an. Diese Funktion akzeptiert auch Parameter, so dass du die " -#~ "Auflistung nach deinen Vorstellungen setzen kannst, aber sie sind sind " -#~ "erforderlich." - -#~ msgid "" -#~ "Displays the number of views of a single post. Post ID is required or it " -#~ "will return false." -#~ msgstr "" -#~ "Zeigt die Anzahl der Aufrufe eines einzelnen Beitrags an. Die Post-ID ist " -#~ "erforderlich, andersfalls wird false zurückgegeben." - -#~ msgid "Post ID" -#~ msgstr "Post-ID" - -#~ msgid "What are \"shortcodes\"?" -#~ msgstr "Was sind \"Shortcodes\"?" - -#~ msgid "" -#~ "Shortcodes are similar to BB Codes, these allow us to call a php function " -#~ "by simply typing something like [shortcode]. With WordPress Popular " -#~ "Posts, the shortcode [wpp] will let you insert a list of the most popular " -#~ "posts in posts content and pages too! For more information about " -#~ "shortcodes, please visit the <a href=\"%s\" target=\"_blank\">WordPress " -#~ "Shortcode API</a> page." -#~ msgstr "" -#~ "Shortcodes sind vergleichbar mit BB-Codes. Sie erlauben uns, eine PHP-" -#~ "Funktion aufzurufen durch einen einfachen Text wie [shortcode]. Der " -#~ "Shortcode [wpp] fügt die Liste der beliebtesten Beiträge in den Text " -#~ "sowohl von Beiträgen als auch Seiten ein. Für mehr Informationen über " -#~ "Shortcodes besuche <a href=\"%s\" target=\"_blank\">WordPress Shortcode " -#~ "API</a>." - -#~ msgid "Popular Posts" -#~ msgstr "Beliebteste Beiträge" - -#~ msgid "displays thumbnail linked to post/page" -#~ msgstr "zeigt verlinktes Vorschaubild des Beitrags/der Seite an" - -#~ msgid "px" -#~ msgstr "px" - -#~ msgid "Listing refresh interval" -#~ msgstr "Aktualisierungsintervall der Liste" - -#~ msgid "Live" -#~ msgstr "Echtzeit" - -#~ msgid "Custom interval" -#~ msgstr "Benutzerdefiniertes Intervall" - -#~ msgid "" -#~ "Sets how often the listing should be updated. For most sites the Live " -#~ "option should be fine, however if you are experiencing slowdowns or your " -#~ "blog gets a lot of visitors then you might want to change the refresh rate" -#~ msgstr "" -#~ "Stellt ein, wie oft die Liste aktualisiert wird. Für die meisten Websites " -#~ "erreicht die Echtzeit-Einstellung gute Werte. Solltest du jedoch " -#~ "Verlangsamungen feststellen oder deine Website erreicht viele Besucher, " -#~ "solltest du die Aktualisierungsrate ändern." - -#~ msgid "Refresh list every" -#~ msgstr "Benutzerdefiniertes Intervall" - -#~ msgid "" -#~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() " -#~ "and the [wpp] shortcode\"." -#~ msgstr "" -#~ "Bitte schlage nach bei \"Liste der gültigen Parameter von wpp_gewt-" -#~ "mostpopular() und des [wpp]-Shortcodes\"." - -#~ msgid "" -#~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] " -#~ "shortcode" -#~ msgstr "" -#~ "Liste der gültigen Parameter von wpp_get-mostpopular() und des [wpp]-" -#~ "Shortcodes" - -#~ msgid "" -#~ "These parameters can be used by both the template tag " -#~ "wpp_get_most_popular() and the shortcode [wpp]." -#~ msgstr "" -#~ "Diese Parameter können sowohl im Template-Tag wpp_get_most_popular() als " -#~ "auch im Shortcode [wpp] eingesetzt werden." - -#~ msgid "Preview" -#~ msgstr "Vorschau" - -#~ msgid "Excerpt Properties" -#~ msgstr "Eigenschaften des Auszugs" - -#~ msgid "Thumbnail settings" -#~ msgstr "Einstellungen für die Vorschaubilder" - -#~ msgid "" -#~ "Here you will find a handy group of options to tweak Wordpress Popular " -#~ "Posts." -#~ msgstr "" -#~ "Hier findest du einen überschaubaren Bereich an Einstellungen, um " -#~ "Wordpress Popular Posts zu optimieren." - -#, fuzzy -#~ msgid "Popular Posts links behavior" -#~ msgstr "Aktualisierungsintervall der Liste" - -#~ msgid "Views logging behavior" -#~ msgstr "Zählverhalten" - -#~ msgid "Wordpress Popular Posts Stylesheet" -#~ msgstr "Wordpress Popular Posts Stylesheet" - -#~ msgid "Data tools" -#~ msgstr "Datenwerkzeuge" - -#~ msgid "Popular posts listing refresh interval" -#~ msgstr "Aktualisierungsintervall der Liste" - -#~ msgid "Frequently Asked Questions" -#~ msgstr "Häufig gestellte Fragen" - -#~ msgid "Sets the opening tag for each item on the list" -#~ msgstr "Bestimmt den öffnenden Tag für jeden Listeneintrag" - -#~ msgid "Sets the closing tag for each item on the list" -#~ msgstr "Bestimmt den schließenden Tag für jeden Listeneintrag" - -#~ msgid "" -#~ "If set, this option will allow you to decide the order of the contents " -#~ "within each item on the list." -#~ msgstr "" -#~ "Falls gesetzt, kannst du die Reihenfolge der Einträge in der Liste " -#~ "bestimmen." - -#~ msgid "" -#~ "If set, you can decide the order of each content inside a single item on " -#~ "the list. For example, setting it to \"{title}: {summary}\" would output " -#~ "something like \"Your Post Title: summary here\". This attribute requires " -#~ "do_pattern to be true." -#~ msgstr "" -#~ "Falls gesetzt, kannst du die Reihenfolge des Inhalts innerhalbs eines " -#~ "einzelnen Listeneintrags einstellen. Zum Beispiel zeigt \"{title}: " -#~ "{summary}\" (ohne Anführungszeichen) sowas wie \"Überschrift: Text des " -#~ "Auszugs\" an. Dieses Attribut erfordert, dass do_pattern auf 1 (true) " -#~ "gesetzt ist." - -#~ msgid "Available tags" -#~ msgstr "Verfügbare Tags" - -#~ msgid "Rate it" -#~ msgstr "Bewerte es" - -#~ msgid "on the official Plugin Directory!" -#~ msgstr "im offiziellen Plugin-Verzeichnis!" - -#~ msgid "Do you love this plugin?" -#~ msgstr "Magst du dieses Plugin?" - -#~ msgid "Buy me a beer!" -#~ msgstr "Spende mir ein Bier!" - -#~ msgid "comments" -#~ msgstr "Komentare" - -#~ msgid "views per day" -#~ msgstr "Aufrufe pro Tag" - -#~ msgid "views" -#~ msgstr "Aufrufe" - -#~ msgid "by" -#~ msgstr "von" - -#~ msgid "What does \"Use content formatting tags\" do?" -#~ msgstr "Was macht \"Verwende textformatierende Tags\"?" - -#~ msgid "Before / after each post:" -#~ msgstr "Vor / nach jedem Beitrag:" - -#~ msgid "Use content formatting tags" -#~ msgstr "Verwende textformatierende Tags" - -#~ msgid "Content format:" -#~ msgstr "Inhaltsformat:" - -#~ msgid "Wordpress Popular Posts Stats" -#~ msgstr "Wordpress Popular Posts Statistik" diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.mo b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.mo deleted file mode 100644 index 3e64524c82bede8111b0df9169a3b7c947d23847..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.po b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.po deleted file mode 100644 index 7a103167f1e3ac5fec6fac369cef5c69c72904ad..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-es_ES.po +++ /dev/null @@ -1,1606 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-14 14:07-0430\n" -"PO-Revision-Date: \n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.8.6\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../views/admin.php:28 ../views/admin.php:43 ../views/admin.php:63 -#: ../views/admin.php:99 -msgid "Settings saved." -msgstr "Configuración guardada." - -#: ../views/admin.php:54 -msgid "Please provide the name of your custom field." -msgstr "Por favor indica el nombre de tu custom field." - -#: ../views/admin.php:107 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" -"Cualquier cambio hecho a la hoja de estilos por defecto de WPP se " -"perderá cada vez que el plugin se actualize. Para evitar esto, por " -"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-" -"popular-posts/style) en la carpeta de tu tema actual." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de " -"WordPress Popular Posts y no se puede deshacer." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 ../views/admin.php:154 ../views/admin.php:186 -msgid "Do you want to continue?" -msgstr "\\277Deseas continuar?" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:128 -msgid "Success! The cache table has been cleared!" -msgstr "¡Éxito! ¡La tabla caché ha sido borrada!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:132 -msgid "Error: cache table does not exist." -msgstr "Error: la tabla caché no existe." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:136 ../views/admin.php:144 ../views/admin.php:168 -#: ../views/admin.php:176 ../views/admin.php:200 ../views/admin.php:208 -msgid "Invalid action." -msgstr "Acci\\277n inv\\341lida." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:140 ../views/admin.php:172 ../views/admin.php:204 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor " -"contacta al administrador del sitio." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:154 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las " -"tablas de WordPress Popular Posts y no se puede deshacer." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:160 -msgid "Success! All data have been cleared!" -msgstr "¡Éxito! ¡Toda la data ha sido borrada!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:164 -msgid "Error: one or both data tables are missing." -msgstr "Error: una o ambas tablas de datos no existen." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:186 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se " -"puede deshacer." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:192 -msgid "Success! All files have been deleted!" -msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:196 -msgid "The thumbnail cache is already empty!" -msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!" - -#: ../views/admin.php:244 -msgid "Stats" -msgstr "Estadísticas" - -#: ../views/admin.php:245 -msgid "Tools" -msgstr "Herramientas" - -#: ../views/admin.php:246 -msgid "Parameters" -msgstr "Parámetros" - -#: ../views/admin.php:247 -msgid "About" -msgstr "Acerca de" - -#: ../views/admin.php:258 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since WordPress " -"Popular Posts was installed." -msgstr "" -"Haz clic en cada pestaña para ver las entradas más populares " -"de tu blog en las últimas 24 horas, esta semana, los últimos " -"30 días o de todos los tiempos desde que WordPress Popular Posts fue " -"instalado." - -#: ../views/admin.php:264 -msgid "Order by comments" -msgstr "Ordenar por comentarios" - -#: ../views/admin.php:265 -msgid "Order by views" -msgstr "Ordenar por vistas" - -#: ../views/admin.php:266 -msgid "Order by avg. daily views" -msgstr "Ordenar por average de vistas diarias" - -#: ../views/admin.php:268 -msgid "Post type" -msgstr "Post type" - -#: ../views/admin.php:269 -msgid "Limit" -msgstr "Límite" - -#: ../views/admin.php:271 ../views/admin.php:379 ../views/admin.php:483 -#: ../views/admin.php:522 -msgid "Apply" -msgstr "Aplicar" - -#: ../views/admin.php:274 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" -"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado" - -#: ../views/admin.php:283 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "Últimas 24 horas" - -#: ../views/admin.php:284 ../views/form.php:27 -msgid "Last 7 days" -msgstr "Últimos 7 días" - -#: ../views/admin.php:285 ../views/form.php:28 -msgid "Last 30 days" -msgstr "Últimos 30 días" - -#: ../views/admin.php:286 ../views/form.php:29 -msgid "All-time" -msgstr "Todos los tiempos" - -#: ../views/admin.php:308 -msgid "Thumbnails" -msgstr "Miniaturas" - -#: ../views/admin.php:313 -msgid "Default thumbnail" -msgstr "Miniatura por defecto" - -#: ../views/admin.php:318 -msgid "Upload thumbnail" -msgstr "Subir miniatura" - -#: ../views/admin.php:320 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo " -"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios" - -#: ../views/admin.php:324 -msgid "Pick image from" -msgstr "Seleccionar imagen desde" - -#: ../views/admin.php:327 -msgid "Featured image" -msgstr "Imagen destacada" - -#: ../views/admin.php:328 -msgid "First image on post" -msgstr "Primera imagen de la entrada" - -#: ../views/admin.php:329 -msgid "First attachment" -msgstr "Primer archivo adjuntado" - -#: ../views/admin.php:330 -msgid "Custom field" -msgstr "Custom field" - -#: ../views/admin.php:333 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" -"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas" - -#: ../views/admin.php:337 -msgid "Custom field name" -msgstr "Nombre del custom field" - -#: ../views/admin.php:343 -msgid "Resize image from Custom field?" -msgstr "¡Ajustar la imagen del Custom field?" - -#: ../views/admin.php:346 -msgid "No, I will upload my own thumbnail" -msgstr "No, subiré mi propia miniatura" - -#: ../views/admin.php:347 -msgid "Yes" -msgstr "Sí" - -#: ../views/admin.php:352 -msgid "Responsive support" -msgstr "Soporte Responsive" - -#: ../views/admin.php:355 ../views/admin.php:425 ../views/admin.php:465 -#: ../views/admin.php:512 -msgid "Enabled" -msgstr "Habilitado" - -#: ../views/admin.php:356 ../views/admin.php:409 ../views/admin.php:424 -#: ../views/admin.php:464 ../views/admin.php:513 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../views/admin.php:359 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" -"Si se activa, WordPress Popular Posts quitará los atributos height y " -"width de las etiquetas image de las miniaturas" - -#: ../views/admin.php:369 -msgid "Empty image cache" -msgstr "Vaciar el caché de imágenes" - -#: ../views/admin.php:370 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" -"Utiliza este botón para vaciar el caché de miniaturas de WPP" - -#: ../views/admin.php:390 -msgid "Data" -msgstr "Datos" - -#: ../views/admin.php:395 -msgid "Log views from" -msgstr "Registrar vistas de" - -#: ../views/admin.php:398 -msgid "Visitors only" -msgstr "Sólo visitantes" - -#: ../views/admin.php:399 -msgid "Logged-in users only" -msgstr "Sólo usuarios conectados" - -#: ../views/admin.php:400 -msgid "Everyone" -msgstr "Todos" - -#: ../views/admin.php:406 -msgid "Log limit" -msgstr "Límite del registro" - -#: ../views/admin.php:410 -msgid "Keep data for" -msgstr "Guardar datos por" - -#: ../views/admin.php:413 -msgid "day(s)" -msgstr "día(s)" - -#: ../views/admin.php:415 -msgid "" -"Data from entries that haven't been viewed within the specified time frame " -"will be automatically discarded" -msgstr "" -"Los datos de aquellas entradas que no han sido vistas en el tiempo " -"especificado serán automáticamente descartados" - -#: ../views/admin.php:421 -msgid "Ajaxify widget" -msgstr "Usar Ajax con el widget" - -#: ../views/admin.php:429 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"Si estás utilizando un plugin de cacheo como WP Super Cache, " -"habilitar esta característica evitará que la lista de entradas " -"populares sea guardada en caché" - -#: ../views/admin.php:433 -msgid "WPP Cache Expiry Policy" -msgstr "WPP Política de Expiración del Cache" - -#: ../views/admin.php:433 ../views/admin.php:461 ../views/form.php:2 -#: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43 -#: ../views/form.php:52 ../views/form.php:125 -msgid "What is this?" -msgstr "¿Qué es esto?" - -#: ../views/admin.php:436 -msgid "Never cache" -msgstr "Nunca almacenar en caché" - -#: ../views/admin.php:437 -msgid "Enable caching" -msgstr "Habilitar caché" - -#: ../views/admin.php:441 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" -"Configura lel tiempo de expiración del cache de WPP. WPP puede " -"almacenar en caché el listado de entradas populares por una cantidad " -"de tiempo especificada. Recomendado para sitios web grandes / de alto " -"tráfico" - -#: ../views/admin.php:445 -msgid "Refresh cache every" -msgstr "Refrescar el caché cada" - -#: ../views/admin.php:449 -msgid "Minute(s)" -msgstr "Minuto(s)" - -#: ../views/admin.php:450 -msgid "Hour(s)" -msgstr "Hora(s)" - -#: ../views/admin.php:451 -msgid "Day(s)" -msgstr "Día(s)" - -#: ../views/admin.php:452 -msgid "Week(s)" -msgstr "Semana(s)" - -#: ../views/admin.php:453 -msgid "Month(s)" -msgstr "Mes(es)" - -#: ../views/admin.php:454 -msgid "Year(s)" -msgstr "Año(s)" - -#: ../views/admin.php:457 -msgid "Really? That long?" -msgstr "¿En serio? ¿Tanto tiempo?" - -#: ../views/admin.php:461 -msgid "Data Sampling" -msgstr "Sampleo de Datos" - -#: ../views/admin.php:469 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" -"Por defecto, WordPress Popular Posts almacena en la base de datos todas y " -"cada una de las visitas que recibe tu sitio. Para sitios pequeños / " -"medianos esto generalmente está bien, pero en sitios grandes / de " -"mucho tráfico la escritura constante en la base de datos pudiese " -"causar un impacto en su rendimiento. Con <a href=\"%1$s\" target=\"_blank" -"\">data sampling</a>, WordPress Popular Posts almacenará sólo " -"un subconjunto de tu tráfico y reportará sobre las tendencias " -"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" " -"target=\"_blank\">por favor leer acá</a>)" - -#: ../views/admin.php:473 -msgid "Sample Rate" -msgstr "Rata de Sampleo" - -#: ../views/admin.php:477 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" -"Se recomienda una rata de sampleo de %d para sitios grandes / de alto " -"tráfico. Para sitios con menos tráfico, deberías " -"disminuir el valor" - -#: ../views/admin.php:494 -msgid "Miscellaneous" -msgstr "Misceláneos" - -#: ../views/admin.php:499 -msgid "Open links in" -msgstr "Abrir links en" - -#: ../views/admin.php:502 -msgid "Current window" -msgstr "Ventana actual" - -#: ../views/admin.php:503 -msgid "New tab/window" -msgstr "Nueva pestaña/ventana" - -#: ../views/admin.php:509 -msgid "Use plugin's stylesheet" -msgstr "Utilizar la hoja de estilos del plugin" - -#: ../views/admin.php:516 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que " -"puedes utilizar para darle estilos a tu listado de entradas populares. Si " -"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se " -"incluya en el header de tu sitio web, utiliza esto." - -#: ../views/admin.php:535 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Posts mantiene la data en dos tablas separadas: una para " -"guardar diariamente las entradas más populares (\"caché\", de " -"aquí en adelante), y otra tabla para almacenar la data de Todos los " -"tiempos (\"data histórica\" o simplemente \"data\"). Si por alguna " -"razón necesitas vaciar la tabla caché, o inclusive las dos " -"tablas históricas y de caché, por favor utiliza los botones de " -"abajo." - -#: ../views/admin.php:536 -msgid "Empty cache" -msgstr "Vaciar el caché" - -#: ../views/admin.php:536 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" -"Utiliza este botón para vaciar manualmente sólo las entradas " -"del caché de WPP" - -#: ../views/admin.php:537 -msgid "Clear all data" -msgstr "Eliminar toda la data" - -#: ../views/admin.php:537 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" -"Utiliza este botón para limpiar manualmente las tablas de datos de WPP" - -#: ../views/admin.php:544 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" -"Con los siguientes parámetros puedes personalizar el listado de " -"entradas populares cuando utilices el <a href=\"%1$s\">template tag " -"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>" - -#: ../views/admin.php:552 -msgid "Parameter" -msgstr "Parámetro" - -#: ../views/admin.php:553 -msgid "What it does " -msgstr "Qué hace" - -#: ../views/admin.php:554 -msgid "Possible values" -msgstr "Valores posibles" - -#: ../views/admin.php:555 -msgid "Defaults to" -msgstr "Por defecto" - -#: ../views/admin.php:556 -msgid "Example" -msgstr "Ejemplo" - -#: ../views/admin.php:562 -msgid "Sets a heading for the list" -msgstr "Configura el encabezado de la lista" - -#: ../views/admin.php:563 ../views/admin.php:570 ../views/admin.php:577 -#: ../views/admin.php:612 ../views/admin.php:619 ../views/admin.php:626 -#: ../views/admin.php:633 ../views/admin.php:724 ../views/admin.php:738 -#: ../views/admin.php:745 -msgid "Text string" -msgstr "Texto" - -#: ../views/admin.php:564 ../views/admin.php:620 ../views/admin.php:627 -#: ../views/admin.php:634 -msgid "None" -msgstr "Ninguno" - -#: ../views/admin.php:569 -msgid "Set the opening tag for the heading of the list" -msgstr "Configura la etiqueta de apertura para el encabezado de la lista" - -#: ../views/admin.php:576 -msgid "Set the closing tag for the heading of the list" -msgstr "Configura la etiqueta de cierre para el encabezado de la lista" - -#: ../views/admin.php:583 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" -"Configura el máximo de entradas populares a ser mostradas en la lista" - -#: ../views/admin.php:584 ../views/admin.php:640 ../views/admin.php:654 -#: ../views/admin.php:675 ../views/admin.php:682 -msgid "Positive integer" -msgstr "Entero positivo" - -#: ../views/admin.php:590 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas que " -"hayan sido populares dentro del rango de tiempo especificado por ti" - -#: ../views/admin.php:597 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas " -"populares publicadas dentro del rango de tiempo especificado por ti" - -#: ../views/admin.php:604 -msgid "Sets the sorting option of the popular posts" -msgstr "Configura el ordenado de las entradas populares" - -#: ../views/admin.php:605 -msgid "(for average views per day)" -msgstr "(para el porcentaje de vistas por día)" - -#: ../views/admin.php:611 -msgid "Defines the type of posts to show on the listing" -msgstr "Define el tipo de entrada a mostrar en el listado" - -#: ../views/admin.php:618 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" -"Si se configura, WordPress Popular Posts excluirá todos los IDs de " -"las entradas especificadas." - -#: ../views/admin.php:625 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" -"Si se configura, WordPress Popular Posts mostrará todas las entradas " -"que pertenecen a la(s) categoría(s) especificada(s). Si se usa un " -"signo negativo, la(s) categoría(s) será(n) excluída(s)." - -#: ../views/admin.php:632 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"Si se configura, WordPress Popular Posts traerá todas las entradas " -"creadas por el (los) ID(s) de autor(es) especificado(s)." - -#: ../views/admin.php:639 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" -"Si se configura, WordPress Popular Posts acortará cada titulo en \"n" -"\" caracteres cuando sea posible" - -#: ../views/admin.php:646 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo " -"en \"n\" palabras en vez de caracteres" - -#: ../views/admin.php:653 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"Si se configura, WordPress Popular Posts construirá e incluirá " -"un extracto de \"n\" caracteres del contenido de cada entrada listada como " -"popular" - -#: ../views/admin.php:660 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"Si se configura, WordPress Popular Posts mantendrá todas las " -"etiquetas de estilo (strong, italic, etc) y los hipervínculos " -"encontrados en el extracto" - -#: ../views/admin.php:667 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" " -"palabras en vez de caracteres" - -#: ../views/admin.php:674 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el ancho de tus miniaturas" - -#: ../views/admin.php:681 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el alto de tus miniaturas" - -#: ../views/admin.php:688 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"Si se configura, y si el plugin WP-PostRatings está instalado y " -"habilitado en tu blog, WordPress Popular Posts mostrará como tus " -"visitantes han calificado a tus entradas" - -#: ../views/admin.php:695 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántos " -"comentarios ha obtenido cada entrada popular hasta ahora" - -#: ../views/admin.php:702 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántas " -"vistas ha obtenido cada entrada popular desde que el plugin fue instalado" - -#: ../views/admin.php:709 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará quién " -"publicó cada entrada popular de la lista" - -#: ../views/admin.php:716 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue " -"publicada cada entrada popular" - -#: ../views/admin.php:723 -msgid "Sets the date format" -msgstr "Configura el formato de la fecha" - -#: ../views/admin.php:730 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará la categoría" - -#: ../views/admin.php:737 -msgid "Sets the opening tag for the listing" -msgstr "Configura la etiqueta de apertura del listado" - -#: ../views/admin.php:744 -msgid "Sets the closing tag for the listing" -msgstr "Configura la etiqueta de cierre del listado" - -#: ../views/admin.php:751 -msgid "Sets the HTML structure of each post" -msgstr "Configura la estructura HTML de cada entrada" - -#: ../views/admin.php:752 -msgid "Text string, custom HTML" -msgstr "Texto, HTML personalizado" - -#: ../views/admin.php:752 -msgid "Available Content Tags" -msgstr "Content Tags disponibles" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" -"muestra la miniatura con un link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" -"muestra la miniatura sin link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../views/admin.php:752 -msgid "displays linked post/page title" -msgstr "" -"muestra el título de la entrada/página con vínculo" - -#: ../views/admin.php:752 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"muestra el resumen de la entrada/página, requiere que excerpt_length " -"sea mayor a 0" - -#: ../views/admin.php:752 -msgid "displays the default stats tags" -msgstr "muestra el stats tag por defecto" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"muestra el rating actual de la entrada/página, requiere que WP-" -"PostRatings esté instalado y activo" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"muestra el rating actual de la entrada/página como un entero, " -"requiere que WP-PostRatings esté instalado y activo" - -#: ../views/admin.php:752 -msgid "outputs the URL of the post/page" -msgstr "muestra la URL de la entrada/página" - -#: ../views/admin.php:752 -msgid "displays post/page title, no link" -msgstr "" -"muestra el título de la entrada/página, sin vínculo" - -#: ../views/admin.php:752 -msgid "displays linked author name, requires stats_author=1" -msgstr "" -"muestra el nombre del autor con vínculo, requiere stats_author=1" - -#: ../views/admin.php:752 -msgid "displays linked category name, requires stats_category=1" -msgstr "" -"muestra el nombre de la categoría vinculado, requiere stats_category=1" - -#: ../views/admin.php:752 -msgid "displays views count only, no text" -msgstr "muestra el número de vistas, sin texto adicional" - -#: ../views/admin.php:752 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" -"muestra el número de comentarios, sin texto adicional, requiere " -"stats_comments=1" - -#: ../views/admin.php:752 -msgid "displays post/page date, requires stats_date=1" -msgstr "muestra la fecha de la entrada/página, requiere stats_date=1" - -#: ../views/admin.php:765 -#, php-format -msgid "About WordPress Popular Posts %s" -msgstr "Acerca de WordPress Popular Posts %s" - -#: ../views/admin.php:766 -msgid "This version includes the following changes" -msgstr "Esta versión incluye los siguientes cambios" - -#: ../views/admin.php:778 -msgid "Do you like this plugin?" -msgstr "¿Te gusta este plugin?" - -#: ../views/admin.php:785 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" -"¡Cada donación me motiva a seguir publicando cosas gratuitas " -"para la comunidad de WordPress!" - -#: ../views/admin.php:786 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" -"¡Puedes <a href=\"%s\" target=\"_blank\">dejar una reseña</a> " -"también!" - -#: ../views/admin.php:792 -msgid "Need help?" -msgstr "¿Necesitas ayuda?" - -#: ../views/admin.php:793 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" -"Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, " -"hacer preguntas y dejar tu feedback." - -#: ../views/admin.php:794 -msgid "Let's make this plugin even better!" -msgstr "¡Hagamos a este plugin inclusive mejor!" - -#: ../views/form.php:2 -msgid "Title" -msgstr "Título" - -#: ../views/form.php:7 -msgid "Show up to" -msgstr "Mostrar hasta" - -#: ../views/form.php:8 -msgid "posts" -msgstr "entradas" - -#: ../views/form.php:12 -msgid "Sort posts by" -msgstr "Ordenar entradas por" - -#: ../views/form.php:14 -msgid "Comments" -msgstr "Comentarios" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "Total de vistas" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "Porcentaje de vistas diarias" - -#: ../views/form.php:22 -msgid "Filters" -msgstr "Filtros" - -#: ../views/form.php:24 -msgid "Time Range" -msgstr "Rango de Tiempo" - -#: ../views/form.php:34 -msgid "Post type(s)" -msgstr "Post type(s)" - -#: ../views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "ID(s) de Entrada(s) a excluir" - -#: ../views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "ID(s) de Categoría(s)" - -#: ../views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "ID(s) de Autor(es)" - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "Configuración de las entradas" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "Mostrar rating de la entrada" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "Acortar título" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "Acortar título en" - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "caracteres" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "palabras" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "Mostrar resumen de la entrada" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "Mantener formato de texto y links" - -#: ../views/form.php:67 -msgid "Excerpt length" -msgstr "Largo del resumen" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "Mostrar miniatura" - -#: ../views/form.php:76 -msgid "Use predefined size" -msgstr "Utilizar un tamaño predefinido" - -#: ../views/form.php:88 -msgid "Set size manually" -msgstr "Configurar el tamaño manualmente" - -#: ../views/form.php:90 -msgid "Width" -msgstr "Ancho" - -#: ../views/form.php:93 -msgid "Height" -msgstr "Alto" - -#: ../views/form.php:99 -msgid "Stats Tag settings" -msgstr "Configuración del Stats Tag" - -#: ../views/form.php:101 -msgid "Display comment count" -msgstr "Mostrar cantidad de comentarios" - -#: ../views/form.php:103 -msgid "Display views" -msgstr "Mostrar vistas" - -#: ../views/form.php:105 -msgid "Display author" -msgstr "Mostrar autor" - -#: ../views/form.php:107 -msgid "Display date" -msgstr "Mostrar fecha" - -#: ../views/form.php:110 -msgid "Date Format" -msgstr "Formato de la fecha" - -#: ../views/form.php:112 -msgid "WordPress Date Format" -msgstr "Formato de fecha de WordPress" - -#: ../views/form.php:119 -msgid "Display category" -msgstr "Mostrar categoría" - -#: ../views/form.php:123 -msgid "HTML Markup settings" -msgstr "Configuración del Markup HTML" - -#: ../views/form.php:125 -msgid "Use custom HTML Markup" -msgstr "Utilizar Markup HTML personalizado" - -#: ../views/form.php:128 -msgid "Before / after title" -msgstr "Antes / después del título" - -#: ../views/form.php:131 -msgid "Before / after Popular Posts" -msgstr "Antes / después de las entradas populares" - -#: ../views/form.php:134 -msgid "Post HTML Markup" -msgstr "Markup HTML de la Entrada" - -#: ../wordpress-popular-posts.php:304 -msgid "The most Popular Posts on your blog." -msgstr "Las entradas más populares en tu blog." - -#: ../wordpress-popular-posts.php:482 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" -"Error: no es posible ajaxificar WordPress Popular Posts en este tema. Falta " -"el atributo <em>id</em> en before_widget (ver <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> para más información)." - -#: ../wordpress-popular-posts.php:726 -msgid "Upload" -msgstr "Subir" - -#: ../wordpress-popular-posts.php:1099 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"Tu versión de PHP es muy antigua. El plugin WordPress Popular Posts " -"requiere al menos PHP version %1$s para funcionar correctamente. Por favor " -"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o " -"mejor." - -#: ../wordpress-popular-posts.php:1106 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"Tu versión de WordPress es muy antigua. El plugin WordPress Popular " -"Posts requiere al menos la versión %1$s para funcionar correctamente. " -"Por favor actualiza tu blog via Escritorio > Actualizaciones." - -#: ../wordpress-popular-posts.php:1131 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> ha sido <strong>desactivado</" -"strong>.</p></div>" - -#: ../wordpress-popular-posts.php:1826 -msgid "Sorry. No data so far." -msgstr "Lo lamentamos. No hay nada que mostrar aún." - -#: ../wordpress-popular-posts.php:2353 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "1 comentario" -msgstr[1] "%s comentarios" - -#: ../wordpress-popular-posts.php:2365 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "1 vista por día" -msgstr[1] "%s vistas por día" - -#: ../wordpress-popular-posts.php:2371 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "1 vista" -msgstr[1] "%s vistas" - -#: ../wordpress-popular-posts.php:2394 -#, php-format -msgid "by %s" -msgstr "por %s" - -#: ../wordpress-popular-posts.php:2400 -#, php-format -msgid "posted on %s" -msgstr "publicado el %s" - -#: ../wordpress-popular-posts.php:2408 -#, php-format -msgid "under %s" -msgstr "bajo %s" - -#~ msgid "FAQ" -#~ msgstr "FAQ" - -#~ msgid "What does \"Title\" do?" -#~ msgstr "¿Para qué es \"Título\"?" - -#~ msgid "" -#~ "It allows you to show a heading for your most popular posts listing. If " -#~ "left empty, no heading will be displayed at all." -#~ msgstr "" -#~ "Te permite mostrar un encabezado para tu lista de entradas populares. Si " -#~ "se deja vacío, no se mostrará el encabezado." - -#~ msgid "What is \"Post type\" for?" -#~ msgstr "¿Para qué es el \"Post type\"?" - -#~ msgid "" -#~ "This filter allows you to decide which post types to show on the listing. " -#~ "By default, it will retrieve only posts and pages (which should be fine " -#~ "for most cases)." -#~ msgstr "" -#~ "Este filtro te permite decidir que tipo de entradas deseas mostrar en el " -#~ "listado. Por defecto, traterá sólo entradas y pá" -#~ "ginas (que es lo que se quiere, en la mayoría de los casos)." - -#~ msgid "What is \"Category(ies) ID(s)\" for?" -#~ msgstr "¿Para qué es el \"ID(s) de Categoría(s)\"?" - -#~ msgid "" -#~ "This filter allows you to select which categories should be included or " -#~ "excluded from the listing. A negative sign in front of the category ID " -#~ "number will exclude posts belonging to it from the list, for example. You " -#~ "can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Este filtro te permite seleccionar qué categorías " -#~ "deberían ser incluídas o excluídas del listado. Un " -#~ "signo negativo enfrente del ID de la categoría la excluirá " -#~ "de la lista, por ejemplo. Puedes especificar más de un ID " -#~ "separándolos con comas." - -#~ msgid "What is \"Author(s) ID(s)\" for?" -#~ msgstr "¿Para qué es el \"ID de Autor(es)\"?" - -#~ msgid "" -#~ "Just like the Category filter, this one lets you filter posts by author " -#~ "ID. You can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Justo como el filtro de Categoría, éste te permite filtrar " -#~ "entradas por ID del autor. Puedes especificar más de un ID " -#~ "separándolos con comas." - -#~ msgid "What does \"Display post rating\" do?" -#~ msgstr "¿Qué hace \"Mostrar rating de la entrada\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how your readers are rating " -#~ "your most popular posts. This feature requires having WP-PostRatings " -#~ "plugin installed and enabled on your blog for it to work." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará cómo tus " -#~ "lectores están calificando tus entradas populares. Esta " -#~ "característica requiere que el plugin WP-PostRatings esté " -#~ "instalado y habilitado en tu blog para que funcione." - -#~ msgid "What does \"Use custom HTML Markup\" do?" -#~ msgstr "¿Qué hace \"Utilizar Markup HTML personalizado\"?" - -#~ msgid "" -#~ "If checked, you will be able to customize the HTML markup of your popular " -#~ "posts listing. For example, you can decide whether to wrap your posts in " -#~ "an unordered list, an ordered list, a div, etc. If you know xHTML/CSS, " -#~ "this is for you!" -#~ msgstr "" -#~ "Si se tilda, podrás personalizad el markup HTML de tu listado de " -#~ "entradas populares. Por ejemplo, podrás decidir si colocar tu " -#~ "listado en una lista desordenada, una ordenada, dentro de un div, etc. Si " -#~ "sabes xHTML/CSS, ¡esto es para ti!" - -#~ msgid "What is Time Range for?" -#~ msgstr "¿Para qué es \"Rango de Tiempo\"?" - -#~ msgid "" -#~ "It will tell WordPress Popular Posts to retrieve all posts with most " -#~ "views / comments within the selected time range." -#~ msgstr "" -#~ "Le indica a WordPress Popular Posts que muestre las entradas más " -#~ "vistas / comentadas en el rango de tiempo seleccionado." - -#~ msgid "What is \"Sort post by\" for?" -#~ msgstr "¿Para qué es \"Ordenar entradas por\"?" - -#~ msgid "" -#~ "It allows you to decide whether to order your popular posts listing by " -#~ "total views, comments, or average views per day." -#~ msgstr "" -#~ "Te permite decidir si ordenar tus entradas populares por la cantidad " -#~ "total de vistas, comentarios, o por el porcentaje diario de vistas." - -#~ msgid "What does \"Shorten title\" do?" -#~ msgstr "¿Qué hace \"Acortar título\"?" - -#~ msgid "" -#~ "If checked, all posts titles will be shortened to \"n\" characters/words. " -#~ "A new \"Shorten title to\" option will appear so you can set it to " -#~ "whatever you like." -#~ msgstr "" -#~ "Si se tilda, todos los títulos de las entradas se acortarán " -#~ "\"n\" caracteres/palabras. Una nueva opción \"Acortar tí" -#~ "tulo en\" se mostrará para que puedas configurarlo como quieras." - -#~ msgid "What does \"Display post excerpt\" do?" -#~ msgstr "¿Qué hace \"Mostrar resumen de la entrada\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will also include a small extract of " -#~ "your posts in the list. Similarly to the previous option, you will be " -#~ "able to decide how long the post excerpt should be." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts incluirá un pequeño " -#~ "extracto de tus entradas en la lista. Similar a la opción " -#~ "anterior, podrás decidir qué tan largo debe ser el extracto." - -#~ msgid "What does \"Keep text format and links\" do?" -#~ msgstr "¿Qué hace \"Mantener el formato de texto y links\"?" - -#~ msgid "" -#~ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular " -#~ "Posts will keep the styling tags (eg. bold, italic, etc) that were found " -#~ "in the excerpt. Hyperlinks will remain intact, too." -#~ msgstr "" -#~ "Si se tilda, y si la opción Mostrar Resumen está " -#~ "habilitada, WordPress Popular Posts mantendrá las etiquetas de " -#~ "estilos que se encontraron en el extracto. Los hipervínculos " -#~ "también se mantendrán." - -#~ msgid "What does \"Display post thumbnail\" do?" -#~ msgstr "¿Qué hace \"Mostrar miniatura de la entrada\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will attempt to retrieve the " -#~ "thumbnail of each post. You can set up the source of the thumbnail via " -#~ "Settings - WordPress Popular Posts - Tools." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts intentará obtener la imagen " -#~ "miniatura de cada entrada. Puedes configurar la fuente de la miniatura " -#~ "via Configuración - Wordpress Popular Posts - Herramientas." - -#~ msgid "What does \"Display comment count\" do?" -#~ msgstr "¿Qué hace \"Mostrar cantidad de comentarios\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display how many comments each " -#~ "popular post has got in the selected Time Range." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará cuántos " -#~ "comentarios ha obtenido cada entrada popular dentro del Rango de Tiempo " -#~ "seleccionado." - -#~ msgid "What does \"Display views\" do?" -#~ msgstr "¿Qué hace \"Mostrar vistas\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how many pageviews a single " -#~ "post has gotten in the selected Time Range." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará cuántas " -#~ "vistas ha obtenido cada entrada en el Rango de Tiempo seleccionado." - -#~ msgid "What does \"Display author\" do?" -#~ msgstr "¿Qué hace \"Mostrar autor\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the name of the author " -#~ "of each entry listed." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará el nombre del autor " -#~ "de cada entrada listada." - -#~ msgid "What does \"Display date\" do?" -#~ msgstr "¿Qué hace \"Mostrar fecha\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the date when each " -#~ "popular posts was published." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará la fecha en la que " -#~ "fue publicada cada entrada popular." - -#~ msgid "What does \"Display category\" do?" -#~ msgstr "¿Qué hace \"Mostrar categoría\"?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the category of each " -#~ "post." -#~ msgstr "" -#~ "Si se tilda, WordPress Popular Posts mostrará la categoría " -#~ "de cada entrada." - -#~ msgid "What are \"Content Tags\"?" -#~ msgstr "¿Qué son los \"Content Tags\"?" - -#~ msgid "" -#~ "Content Tags are codes to display a variety of items on your popular " -#~ "posts custom HTML structure. For example, setting it to \"{title}: " -#~ "{summary}\" (without the quotes) would display \"Post title: excerpt of " -#~ "the post here\". For more Content Tags, see the <a href=\"%s\" target=" -#~ "\"_blank\">Parameters</a> section." -#~ msgstr "" -#~ "Los Content Tags son etiquetas que sirven para mostrar una variedad de " -#~ "items en la estructura HTML de tu lista. Por ejemplo, configurarlo como " -#~ "\"{title}: {summary}\" (sin las comillas) mostraría \"Tí" -#~ "tulo de la entrada: extracto de la entrada aquí\". Para ver otras " -#~ "Content Tags, ver la sección <a href=\"%s\" target=\"_blank" -#~ "\">Parámetros</a." - -#~ msgid "What are \"Template Tags\"?" -#~ msgstr "¿Qué son los \"Template Tags\"?" - -#~ msgid "" -#~ "Template Tags are simply php functions that allow you to perform certain " -#~ "actions. For example, WordPress Popular Posts currently supports two " -#~ "different template tags: wpp_get_mostpopular() and wpp_get_views()." -#~ msgstr "" -#~ "Los Template Tags son simplemente funciones php que nos permiten realizar " -#~ "ciertas acciones. Por ejemplo, WordPress Popular Posts actualmente " -#~ "soporta dos template tags diferentes: wpp_get_mostpopular() y " -#~ "wpp_get_views()." - -#~ msgid "What are the template tags that WordPress Popular Posts supports?" -#~ msgstr "" -#~ "¿Cuáles son los Template Tags soportados por WordPress " -#~ "Popular Posts?" - -#~ msgid "" -#~ "The following are the template tags supported by WordPress Popular Posts" -#~ msgstr "" -#~ "Los siguientes son los template tags soportados por WordPress Popular " -#~ "Posts" - -#~ msgid "Template tag" -#~ msgstr "Template tag" - -#~ msgid "" -#~ "Similar to the widget functionality, this tag retrieves the most popular " -#~ "posts on your blog. This function also accepts <a href=\"%1$s" -#~ "\">parameters</a> so you can customize your popular listing, but these " -#~ "are not required." -#~ msgstr "" -#~ "Parecido a la funcionalidad del widget, esta etiqueta obtiene las " -#~ "entradas más populares de tu blog. Esta función " -#~ "también acepta <a href=\"%1$s\">parámetros</a> para que " -#~ "puedas personalizar el listado, pero éstos no son requeridos." - -#~ msgid "" -#~ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a " -#~ "complete list of attributes." -#~ msgstr "" -#~ "Por favor ver la <a href=\"%1$s\">sección Parámetros</a> " -#~ "para la lista completa de atributos." - -#~ msgid "" -#~ "Displays the number of views of a single post. Post ID is required or it " -#~ "will return false." -#~ msgstr "" -#~ "Muestra la cantidad de vistas de una entrada. El ID de la entrada es " -#~ "requerido, o la función devolverá false." - -#~ msgid "Post ID" -#~ msgstr "ID de la entrada" - -#~ msgid "What are \"shortcodes\"?" -#~ msgstr "¿Qué son los \"shortcodes\"?" - -#~ msgid "" -#~ "Shortcodes are similar to BB Codes, these allow us to call a php function " -#~ "by simply typing something like [shortcode]. With WordPress Popular " -#~ "Posts, the shortcode [wpp] will let you insert a list of the most popular " -#~ "posts in posts content and pages too! For more information about " -#~ "shortcodes, please visit the <a href=\"%s\" target=\"_blank\">WordPress " -#~ "Shortcode API</a> page." -#~ msgstr "" -#~ "Los Shortcodes son similares a los BB Codes, éstos nos permiten " -#~ "llamar a una función php simplemente escribiendo algo como " -#~ "[shortcode]. Con WordPress Popular Posts, el shortcode [wpp] te " -#~ "permitirá insertar una lista de las entradas más populares " -#~ "en el contenido de tus entradas y en páginas también. Para " -#~ "mayor información sobre los shortcodes, por favor visita la " -#~ "página <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</" -#~ "a>." - -#~ msgid "" -#~ "With the following parameters you can customize the popular posts list " -#~ "when using either the <a href=\"%1$s\">wpp_get_most_popular() template " -#~ "tag</a> or the <a href=\"%2$s\">[wpp] shortcode</a>." -#~ msgstr "" -#~ "Con los siguientes parámetros puedes personalizar la lista de " -#~ "entradas populares al utilizar tanto el <a href=\"%1$s" -#~ "\">wpp_get_most_popular() template tag</a> como el <a href=\"%2$s\">[wpp] " -#~ "shortcode</a>." - -#~ msgid "Popular Posts" -#~ msgstr "Entradas Populares" - -#~ msgid "displays thumbnail linked to post/page" -#~ msgstr "muestra la miniatura vinculada a la entrada/página" - -#~ msgid "displays thumbnail image without linking to post/page" -#~ msgstr "" -#~ "muestra la imagen miniatura sin un link hacia la entrada/página" - -#~ msgid "px" -#~ msgstr "px" - -#~ msgid "" -#~ "By default, WordPress Popular Posts stores in database every single visit " -#~ "your site receives. For small / medium sites this is generally OK, but on " -#~ "large / high traffic sites the constant writing to the database may have " -#~ "an impact on performance. With data sampling, WordPress Popular Posts " -#~ "will store only a subset of your traffic and report on the tendencies " -#~ "detected in that sample set (for more on <em>data sampling</em>, please " -#~ "<a href=\"%1$s\" target=\"_blank\">read here</a>)" -#~ msgstr "" -#~ "Por defecto, WordPress Popular Posts almacena en la base de datos todas y " -#~ "cada una de las visitas que tu sitio recibe. Para sitios web pequeñ" -#~ "os / medianos esto está bien, pero en sitios grandes / de alto " -#~ "tráfico la escritura constante en la base de datos pudiera causar " -#~ "un impacto en el rendimiento. Con el sampleo de datos, WordPress Popular " -#~ "Posts almacenará sólo un subconjunto de tu tráfico y " -#~ "reportará de acuerdo a las tendencias detectadas en dicho sub " -#~ "conjunto (para mayor información acerca de; <em>sampleo de data</" -#~ "em>, por favor <a href=\"%1$s\" target=\"_blank\">leer aquí</a>)" - -#~ msgid "Listing refresh interval" -#~ msgstr "Intervalo de refrescamiento del listado" - -#~ msgid "Live" -#~ msgstr "En vivo" - -#~ msgid "Custom interval" -#~ msgstr "Intervalo personalizado" - -#~ msgid "" -#~ "Sets how often the listing should be updated. For most sites the Live " -#~ "option should be fine, however if you are experiencing slowdowns or your " -#~ "blog gets a lot of visitors then you might want to change the refresh rate" -#~ msgstr "" -#~ "Configura cuán frecuentemente debe actualizarse listado. Para la " -#~ "mayoría de los sitios la opción En Vivo debería " -#~ "estar bien, sin embargo si estás experimentando lentitud o tu blog " -#~ "recibe muchos visitantes entonces quizás prefieras cambiar la tasa " -#~ "de refrescamiento" - -#~ msgid "Refresh list every" -#~ msgstr "Refrescar la lista cada" - -#~ msgid "" -#~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() " -#~ "and the [wpp] shortcode\"." -#~ msgstr "" -#~ "Por favor revisa \"Listado de parámetros aceptados por " -#~ "wpp_get_mostpopular() y el shortcode [wpp]\"." - -#~ msgid "" -#~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] " -#~ "shortcode" -#~ msgstr "" -#~ "Lista de parámetros aceptados por wpp_get_mostpopular() y el " -#~ "shortcode [wpp]" - -#~ msgid "" -#~ "These parameters can be used by both the template tag " -#~ "wpp_get_most_popular() and the shortcode [wpp]." -#~ msgstr "" -#~ "Estos parámetros pueden ser utilizados tanto por el template tag " -#~ "wpp_get_mostpopular() como por el shortcode [wpp]." - -#~ msgid "Preview" -#~ msgstr "Vista previa" - -#~ msgid "Excerpt Properties" -#~ msgstr "Propiedades del resumen" - -#~ msgid "Thumbnail settings" -#~ msgstr "Configuración de miniatura" - -#~ msgid "" -#~ "Here you will find a handy group of options to tweak Wordpress Popular " -#~ "Posts." -#~ msgstr "" -#~ "Aquí encontrarás un útil grupo de opciones para " -#~ "ajustar a Wordpress Popular Posts." - -#~ msgid "Popular Posts links behavior" -#~ msgstr "Comportamiento de los link en las Entradas Populares" - -#~ msgid "Views logging behavior" -#~ msgstr "Comportamiento del registro de vistas" - -#~ msgid "Wordpress Popular Posts Stylesheet" -#~ msgstr "Hoja de estilos de Wordpress Popular Posts" - -#~ msgid "Data tools" -#~ msgstr "Herramientas de datos" - -#~ msgid "Popular posts listing refresh interval" -#~ msgstr "Intervalo de refrescamiento de las Entradas Populares" - -#~ msgid "Frequently Asked Questions" -#~ msgstr "Preguntas Frecuentes (FAQ)" - -#~ msgid "Sets the opening tag for each item on the list" -#~ msgstr "Configura la etiqueta de apertura de cada ítem del listado" - -#~ msgid "Sets the closing tag for each item on the list" -#~ msgstr "Configura la etiqueta de cierre de cada ítem del listado" - -#~ msgid "" -#~ "If set, this option will allow you to decide the order of the contents " -#~ "within each item on the list." -#~ msgstr "" -#~ "Si se configura, esta opción te permitirá decidir el orden " -#~ "de los contenidos dentro de cada item en la lista." - -#~ msgid "" -#~ "If set, you can decide the order of each content inside a single item on " -#~ "the list. For example, setting it to \"{title}: {summary}\" would output " -#~ "something like \"Your Post Title: summary here\". This attribute requires " -#~ "do_pattern to be true." -#~ msgstr "" -#~ "Si se configura, puedes decidir el orden de cada contenido dentro de cada " -#~ "item en la lista. Por ejemplo, configurarlo como \"{title}: {summary}\" " -#~ "mostraría \"El título de tu entrada: resumen aquí\". " -#~ "Este atributo requiere que do_pattern sea true." - -#~ msgid "Available tags" -#~ msgstr "Etiquetas disponibles" - -#~ msgid "Rate it" -#~ msgstr "¡Califícalo" - -#~ msgid "on the official Plugin Directory!" -#~ msgstr "en el Directorio Oficial de Plugins!" - -#~ msgid "Do you love this plugin?" -#~ msgstr "¿Adoras este plugin?" - -#~ msgid "Buy me a beer!" -#~ msgstr "¡Cómprame una cerveza!" - -#~ msgid "comments" -#~ msgstr "comentarios" - -#~ msgid "views per day" -#~ msgstr "vistas por día" - -#~ msgid "views" -#~ msgstr "vistas" - -#~ msgid "by" -#~ msgstr "por" - -#~ msgid "What does \"Use content formatting tags\" do?" -#~ msgstr "" -#~ "¿Qué hace \"Utilizar etiquetas de formato de contenido\"?" - -#~ msgid "Before / after each post:" -#~ msgstr "Antes / después de cada entrada" - -#~ msgid "Use content formatting tags" -#~ msgstr "Utilizar etiquetas de formato de contenido" - -#~ msgid "Content format:" -#~ msgstr "Formato de contenido:" - -#~ msgid "Wordpress Popular Posts Stats" -#~ msgstr "Estadísticas de Wordpress Popular Posts" diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.mo b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.mo deleted file mode 100644 index b21db1057a6b428fb134980b372988ca3fb7966b..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.po b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.po deleted file mode 100644 index 0b9f0151de1cfb4922406aa17d82f2a0d1d9d892..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-fr_FR.po +++ /dev/null @@ -1,1583 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-14 14:26-0430\n" -"PO-Revision-Date: \n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Mathieu Chartier <mathieu.chartier@internet-formation.fr>\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.8.6\n" -"Plural-Forms: nplurals=2; plural=(n!= 1);\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../views/admin.php:28 ../views/admin.php:43 ../views/admin.php:63 -#: ../views/admin.php:99 -msgid "Settings saved." -msgstr "Réglages enregistrés." - -#: ../views/admin.php:54 -msgid "Please provide the name of your custom field." -msgstr "Veuillez fournir le nom de votre champ personnalisé." - -#: ../views/admin.php:107 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" -"Les modifications apportées à la feuille de style par défaut de WPP seront " -"perdues après chaque mise à jour du plugin. Afin d'éviter cel , veuillez " -"copier le fichier wpp.css (situé dans wp-content/plugins/wordpress-popular-" -"post/style) dans le répertoire de votre thème" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"Cette opération va supprimer tout le cache de la table de l'extension et ne " -"peut être annulée." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 ../views/admin.php:154 ../views/admin.php:186 -msgid "Do you want to continue?" -msgstr "Voulez-vous continuer ?" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:128 -msgid "Success! The cache table has been cleared!" -msgstr "La table de cache a été vidée avec succès !" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:132 -msgid "Error: cache table does not exist." -msgstr "Erreur : la table de cache n'existe pas." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:136 ../views/admin.php:144 ../views/admin.php:168 -#: ../views/admin.php:176 ../views/admin.php:200 ../views/admin.php:208 -msgid "Invalid action." -msgstr "Action invalide." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:140 ../views/admin.php:172 ../views/admin.php:204 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"Désolé, vous ne devez pas avoir les autorisations suffisantes pour faire " -"fonctionner l'extension. Veuillez contactez l'administrateur du site pour " -"l'installation." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:154 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"Cette opération va supprimer toutes les informations stockées à partir des " -"tables de l'extension et ne peut être annulée." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:160 -msgid "Success! All data have been cleared!" -msgstr "Toutes les données ont été effacées avec succès !" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:164 -msgid "Error: one or both data tables are missing." -msgstr "Erreur : une ou deux tables de données sont manquantes." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:186 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" -"Cette opération va supprimer toutes les miniatures en cache et ne peut être " -"annulée." - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:192 -msgid "Success! All files have been deleted!" -msgstr "Tous les fichiers ont été supprimés avec succès !" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:196 -msgid "The thumbnail cache is already empty!" -msgstr "Le cache des miniatures est déjà vide !" - -#: ../views/admin.php:244 -msgid "Stats" -msgstr "Statistiques" - -#: ../views/admin.php:245 -msgid "Tools" -msgstr "Outils" - -#: ../views/admin.php:246 -msgid "Parameters" -msgstr "Paramètres" - -#: ../views/admin.php:247 -msgid "About" -msgstr "À propos de" - -#: ../views/admin.php:258 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since WordPress " -"Popular Posts was installed." -msgstr "" -"Cliquez sur chaque onglet pour voir quelles sont les publications les plus " -"populaires sur votre blog dans les dernières 24 heures, la semaine, les 30 " -"derniers jours ou sur toute la durée depuis que le plugin a été installé." - -#: ../views/admin.php:264 -msgid "Order by comments" -msgstr "Ordonner par commentaires" - -#: ../views/admin.php:265 -msgid "Order by views" -msgstr "Ordonner par vues" - -#: ../views/admin.php:266 -msgid "Order by avg. daily views" -msgstr "Ordonner par moyenne de vues par jour" - -#: ../views/admin.php:268 -msgid "Post type" -msgstr "Type de publications " - -#: ../views/admin.php:269 -msgid "Limit" -msgstr "Limite " - -#: ../views/admin.php:271 ../views/admin.php:379 ../views/admin.php:483 -#: ../views/admin.php:522 -msgid "Apply" -msgstr "Appliquer" - -#: ../views/admin.php:274 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" -"Afficher uniquement les articles publiés dans l'intervalle de temps " -"sélectionné" - -#: ../views/admin.php:283 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "Dernières 24 heures" - -#: ../views/admin.php:284 ../views/form.php:27 -msgid "Last 7 days" -msgstr "7 derniers jours" - -#: ../views/admin.php:285 ../views/form.php:28 -msgid "Last 30 days" -msgstr "30 derniers jours" - -#: ../views/admin.php:286 ../views/form.php:29 -msgid "All-time" -msgstr "Sans limite" - -#: ../views/admin.php:308 -msgid "Thumbnails" -msgstr "Miniatures" - -#: ../views/admin.php:313 -msgid "Default thumbnail" -msgstr "Miniature par défaut" - -#: ../views/admin.php:318 -msgid "Upload thumbnail" -msgstr "Charger une miniature" - -#: ../views/admin.php:320 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"Comment faire ? Télécharger (ou sélectionnez) une image, réglez la taille " -"sur \"Taille originale\" et cliquez sur Ajouter. Ensuite, appuyez sur " -"Appliquer pour enregistrer les modifications" - -#: ../views/admin.php:324 -msgid "Pick image from" -msgstr "Choisissez l'image de" - -#: ../views/admin.php:327 -msgid "Featured image" -msgstr "Image sélectionnée" - -#: ../views/admin.php:328 -msgid "First image on post" -msgstr "Première image de la publication" - -#: ../views/admin.php:329 -msgid "First attachment" -msgstr "Première ressource attachée" - -#: ../views/admin.php:330 -msgid "Custom field" -msgstr "Champ personnalisé" - -#: ../views/admin.php:333 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "Indiquez à partir d'où WPP doit récupérer des vignettes" - -#: ../views/admin.php:337 -msgid "Custom field name" -msgstr "Nom du champ personnalisé" - -#: ../views/admin.php:343 -msgid "Resize image from Custom field?" -msgstr "Retailler l'image du champ personnalisé ?" - -#: ../views/admin.php:346 -msgid "No, I will upload my own thumbnail" -msgstr "Non, je souhaite ajouter ma propre miniature" - -#: ../views/admin.php:347 -msgid "Yes" -msgstr "Oui" - -#: ../views/admin.php:352 -msgid "Responsive support" -msgstr "Responsive design" - -#: ../views/admin.php:355 ../views/admin.php:425 ../views/admin.php:465 -#: ../views/admin.php:512 -msgid "Enabled" -msgstr "Activé" - -#: ../views/admin.php:356 ../views/admin.php:409 ../views/admin.php:424 -#: ../views/admin.php:464 ../views/admin.php:513 -msgid "Disabled" -msgstr "Désactivé" - -#: ../views/admin.php:359 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" -"Si l'option est activée, le plugin retire les attributs height et width des " -"balises d'image des miniatures" - -#: ../views/admin.php:369 -msgid "Empty image cache" -msgstr "Vider le cache des images" - -#: ../views/admin.php:370 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "Utilisez ce bouton pour effacer le cache de miniatures" - -#: ../views/admin.php:390 -msgid "Data" -msgstr "Données" - -#: ../views/admin.php:395 -msgid "Log views from" -msgstr "Journal des vues à partir de" - -#: ../views/admin.php:398 -msgid "Visitors only" -msgstr "Visiteurs seulement" - -#: ../views/admin.php:399 -msgid "Logged-in users only" -msgstr "Utilisateurs connectés seulement" - -#: ../views/admin.php:400 -msgid "Everyone" -msgstr "Tout le monde" - -#: ../views/admin.php:406 -msgid "Log limit" -msgstr "Limite du journal" - -#: ../views/admin.php:410 -msgid "Keep data for" -msgstr "Conserver les données pour" - -#: ../views/admin.php:413 -msgid "day(s)" -msgstr "jour(s)" - -#: ../views/admin.php:415 -msgid "" -"Data from entries that haven't been viewed within the specified time frame " -"will be automatically discarded" -msgstr "" -"Les données provenant des publications qui ne sont pas vues dans le laps de " -"temps spécifié seront rejetées automatiquement" - -#: ../views/admin.php:421 -msgid "Ajaxify widget" -msgstr "Utiliser Ajax pour le widget" - -#: ../views/admin.php:429 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"Si vous utilisez une extension de mise en cache comme WP Super Cache, " -"l'activation de cette fonctionnalité permet de conserver la mise en cache " -"propre pour les publications populaires" - -#: ../views/admin.php:433 -msgid "WPP Cache Expiry Policy" -msgstr "Politique de gestion du cache Expires de WPP" - -#: ../views/admin.php:433 ../views/admin.php:461 ../views/form.php:2 -#: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43 -#: ../views/form.php:52 ../views/form.php:125 -msgid "What is this?" -msgstr "Qu'est-ce que c'est ?" - -#: ../views/admin.php:436 -msgid "Never cache" -msgstr "Ne jamais mettre en cache" - -#: ../views/admin.php:437 -msgid "Enable caching" -msgstr "Cache activé" - -#: ../views/admin.php:441 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" -"Définit le temps d'expiration du cache de WPP. WPP peut mettre en cache la " -"liste populaire pour un laps de temps spécifié. Recommandé pour les grands " -"sites à fort trafic" - -#: ../views/admin.php:445 -msgid "Refresh cache every" -msgstr "Rafraîchir le cache chaque" - -#: ../views/admin.php:449 -msgid "Minute(s)" -msgstr "Minute(s)" - -#: ../views/admin.php:450 -msgid "Hour(s)" -msgstr "Heure(s)" - -#: ../views/admin.php:451 -msgid "Day(s)" -msgstr "Jour(s)" - -#: ../views/admin.php:452 -msgid "Week(s)" -msgstr "Semaine(s)" - -#: ../views/admin.php:453 -msgid "Month(s)" -msgstr "Mois" - -#: ../views/admin.php:454 -msgid "Year(s)" -msgstr "Année(s)" - -#: ../views/admin.php:457 -msgid "Really? That long?" -msgstr "Vraiment ? C'est long ?" - -#: ../views/admin.php:461 -msgid "Data Sampling" -msgstr "Échantillonnage des données" - -#: ../views/admin.php:469 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" -"Par défaut, WordPress Popular Posts enregistre dans chaque base de données " -"unique les visites que votre site reçoit. Pour les petits/moyens sites, " -"c'est généralement bon, mais sur les grands sites à trafic élevé, l'écriture " -"constante dans la base de données peut impacter les performances globale. " -"Avec <a href=\"%1$s\" target=\"_blank\">l'échantillonnage des données</a>, " -"WordPress Popular Posts stockera uniquement un sous-ensemble de votre trafic " -"et dressera un rapport sur les tendances détectées dans l'échantillon " -"récupéré (pour plus d'informations, <a href=\"%2$s\" target=\"_blank\">lire " -"ici</a>)" - -#: ../views/admin.php:473 -msgid "Sample Rate" -msgstr "Taux d'échantillonnage" - -#: ../views/admin.php:477 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" -"Un taux de %d est recommandé pour les grands sites à fort trafic. Pour les " -"sites de trafic plus faibles, vous devriez baisser la valeur" - -#: ../views/admin.php:494 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../views/admin.php:499 -msgid "Open links in" -msgstr "Ouvrir les liens dans" - -#: ../views/admin.php:502 -msgid "Current window" -msgstr "La fenêtre courante" - -#: ../views/admin.php:503 -msgid "New tab/window" -msgstr "Un nouvel onglet" - -#: ../views/admin.php:509 -msgid "Use plugin's stylesheet" -msgstr "Utiliser le CSS de l'extension" - -#: ../views/admin.php:516 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"Par défaut, l'extension contient une feuille de style appelée wpp.css que " -"vous pouvez utiliser pour styliser le rendu. Si vous souhaitez utiliser " -"votre propre feuille de style ou si vous ne voulez pas l'inclure dans le " -"<head> de votre site, cochez cette case." - -#: ../views/admin.php:535 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Posts conserve les données dans deux tableaux distincts, " -"un pour stocker les publications les plus populaires sur une base " -"quotidienne (à partir de maintenant, en \"cache\"), et une autre conserve " -"les données de tout temps (à partir de maintenant : \"données historiques\" " -"ou tout simplement \"données\"). Si pour une raison quelconque vous devez " -"effacer la table de cache, ou même les deux tableaux historiques et cache, " -"s'il vous plaît utiliser les boutons ci-dessous pour le faire." - -#: ../views/admin.php:536 -msgid "Empty cache" -msgstr "Vider le cache" - -#: ../views/admin.php:536 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" -"Utilisez ce bouton pour effacer manuellement les données mises en cache par " -"WPP" - -#: ../views/admin.php:537 -msgid "Clear all data" -msgstr "Effacer toutes les données" - -#: ../views/admin.php:537 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" -"Utilisez ce bouton pour effacer manuellement les données des tables de " -"l'extension" - -#: ../views/admin.php:544 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" -"Avec les paramètres suivants, vous pouvez personnaliser la liste des " -"publications populaires en utilisant soit la balise <a href=\"%1$s" -"\">wpp_get_mostpopular() du thème</a> ou le <a href=\"%2$s\">shortcode " -"[wpp]</a>." - -#: ../views/admin.php:552 -msgid "Parameter" -msgstr "Paramètre" - -#: ../views/admin.php:553 -msgid "What it does " -msgstr "Ce qu'il fait " - -#: ../views/admin.php:554 -msgid "Possible values" -msgstr "Valeurs possibles" - -#: ../views/admin.php:555 -msgid "Defaults to" -msgstr "Par défaut" - -#: ../views/admin.php:556 -msgid "Example" -msgstr "Exemple" - -#: ../views/admin.php:562 -msgid "Sets a heading for the list" -msgstr "Configurez un entête de liste" - -#: ../views/admin.php:563 ../views/admin.php:570 ../views/admin.php:577 -#: ../views/admin.php:612 ../views/admin.php:619 ../views/admin.php:626 -#: ../views/admin.php:633 ../views/admin.php:724 ../views/admin.php:738 -#: ../views/admin.php:745 -msgid "Text string" -msgstr "Texte" - -#: ../views/admin.php:564 ../views/admin.php:620 ../views/admin.php:627 -#: ../views/admin.php:634 -msgid "None" -msgstr "Aucun" - -#: ../views/admin.php:569 -msgid "Set the opening tag for the heading of the list" -msgstr "Définissez la balise d'ouverture de l'entête de liste" - -#: ../views/admin.php:576 -msgid "Set the closing tag for the heading of the list" -msgstr "Définissez la balise de fermeture de l'entête de liste" - -#: ../views/admin.php:583 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "Définissez le nombre maximum de publications à afficher dans la liste" - -#: ../views/admin.php:584 ../views/admin.php:640 ../views/admin.php:654 -#: ../views/admin.php:675 ../views/admin.php:682 -msgid "Positive integer" -msgstr "Entier positif" - -#: ../views/admin.php:590 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" -"Précise à WordPress Popular Posts de récupérer les publications les plus " -"populaires au sein de l'intervalle de temps spécifié" - -#: ../views/admin.php:597 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" -"Indique à WordPress Popular Posts de récupérer les publications les plus " -"populaires publiées dans l'intervalle de temps spécifié" - -#: ../views/admin.php:604 -msgid "Sets the sorting option of the popular posts" -msgstr "Indiquez l'option de tri des publications populaires" - -#: ../views/admin.php:605 -msgid "(for average views per day)" -msgstr "(pour les vues en moyenne par jour)" - -#: ../views/admin.php:611 -msgid "Defines the type of posts to show on the listing" -msgstr "Définit le type de messages à afficher sur la fiche" - -#: ../views/admin.php:618 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" -"Si configuré, l'extension exclura les publications dont les IDs composent la " -"liste." - -#: ../views/admin.php:625 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" -"Si coché, WordPress Popular Posts récupèrera toutes les publications qui " -"appartiennent aux IDs de catégories spécifiés. Si un signe \"-\" est " -"utilisé, les catégories seront exclues." - -#: ../views/admin.php:632 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"Si l'option est activée, WPP récupèrera toutes les publications " -"correspondant aux IDs d'auteurs spécifiés" - -#: ../views/admin.php:639 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" -"Si coché, WordPress Popular Posts raccourcira chaque titre à \"n\" " -"caractères (tant que possible)" - -#: ../views/admin.php:646 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"Si l'option est mise à 1, WordPress Popular Posts raccourcira chaque titre à " -"\"n\" mots plutôt que \"n\" caractères\"" - -#: ../views/admin.php:653 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"Si l'option est cochée, WPP construira des extraits de \"n\" caractères de " -"long pour chaque publication considérée comme populaire" - -#: ../views/admin.php:660 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"Si coché, WordPress Popular Posts maintiendra toutes les balises de mise en " -"forme (strong, italic, bold...) et les liens hypertextes présents dans " -"l'extrait" - -#: ../views/admin.php:667 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"Si l'option est sur 1, WordPress Popular Posts raccourcira l'extrait à \"n\" " -"mots au lieu de \"n\" caractères." - -#: ../views/admin.php:674 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"Si l'option est cochée, et si votre serveur le permet, vous pourrez afficher " -"les vignettes de vos publications. Cette option paramètre la largeur des " -"vignettes." - -#: ../views/admin.php:681 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"Si l'option est cochée, et si votre serveur le permet, vous pourrez afficher " -"les vignettes de vos publications. Cette option paramètre la hauteur des " -"vignettes." - -#: ../views/admin.php:688 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"Si l'option est configurée, et si le plugin WP-PostRatings est installé et " -"activé, WPP affichera les notes attribuées par vos visiteurs sur vos " -"publications" - -#: ../views/admin.php:695 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" -"Si l'option est activée, WordPress Popular Posts affichera le nombre de " -"commentaires obtenus jusqu'à maintenant pour chaque publication" - -#: ../views/admin.php:702 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" -"Si coché, WPP affichera le nombre de vues de chaque publication depuis que " -"l'extension a été installée" - -#: ../views/admin.php:709 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "Si coché, WPP affichera l'auteur de chaque publication de la liste" - -#: ../views/admin.php:716 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"Si coché, WordPress Popular Posts affichera la date à laquelle chaque " -"publication populaire de la liste a été publiée" - -#: ../views/admin.php:723 -msgid "Sets the date format" -msgstr "Définissez le format des dates" - -#: ../views/admin.php:730 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "Si configuré, l'extension affiche la catégorie des articles" - -#: ../views/admin.php:737 -msgid "Sets the opening tag for the listing" -msgstr "Configurez la balise d'ouverture de liste" - -#: ../views/admin.php:744 -msgid "Sets the closing tag for the listing" -msgstr "Configurez la balise de fermeture de liste" - -#: ../views/admin.php:751 -msgid "Sets the HTML structure of each post" -msgstr "Configurez la structure HTML de chaque publication" - -#: ../views/admin.php:752 -msgid "Text string, custom HTML" -msgstr "HTML personnalisé pour les textes" - -#: ../views/admin.php:752 -msgid "Available Content Tags" -msgstr "Balises de contenu autorisées" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" -"Affiche la miniature liée à l'article ou la page. Nécessite thumbnail_width " -"(largeur de la vignette) & thumbnail_height (hauteur de la vignette)" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" -"Affiche la miniature sans lien vers l'article ou la page. Nécessite " -"thumbnail_width (largeur de la vignette) & thumbnail_height (hauteur de la " -"vignette)" - -#: ../views/admin.php:752 -msgid "displays linked post/page title" -msgstr "Afficher le titre lié à la publication" - -#: ../views/admin.php:752 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"Afficher les extraits (la taille de l'extrait doit être supérieure à 0)" - -#: ../views/admin.php:752 -msgid "displays the default stats tags" -msgstr "Afficher les balises de statistiques par défaut" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"Afficher la note des publications (nécessaire l'installation et l'activation " -"de WP-PostRatings)" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"Afficher la note (sous forme d'entier) des publications (nécessaire " -"l'installation et l'activation de WP-PostRatings)" - -#: ../views/admin.php:752 -msgid "outputs the URL of the post/page" -msgstr "renvoie l'URL de la publication" - -#: ../views/admin.php:752 -msgid "displays post/page title, no link" -msgstr "Afficher le titre des publications sans lien hypertexte" - -#: ../views/admin.php:752 -msgid "displays linked author name, requires stats_author=1" -msgstr "Afficher le nom de l'auteur lié (nécessaire stats_author=1)" - -#: ../views/admin.php:752 -msgid "displays linked category name, requires stats_category=1" -msgstr "Afficher le nom de la catégorie (nécessite stats_category=1)" - -#: ../views/admin.php:752 -msgid "displays views count only, no text" -msgstr "Afficher uniquement le nombre de vues, pas de texte supplémentaire" - -#: ../views/admin.php:752 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" -"Afficher uniquement le nombre de commentaires, pas de texte (nécessite " -"stats_comments=1)" - -#: ../views/admin.php:752 -msgid "displays post/page date, requires stats_date=1" -msgstr "Afficher la date des publications (nécessaire stats_date=1)" - -#: ../views/admin.php:765 -#, php-format -msgid "About WordPress Popular Posts %s" -msgstr "À propos de WordPress Popular Posts %s" - -#: ../views/admin.php:766 -msgid "This version includes the following changes" -msgstr "Cette version contient les modifications suivantes" - -#: ../views/admin.php:778 -msgid "Do you like this plugin?" -msgstr "Aimez-vous cette extension ?" - -#: ../views/admin.php:785 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" -"Chaque contribution me motive à continuer de développer des outils gratuits " -"pour la communauté WordPress !" - -#: ../views/admin.php:786 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" -"Vous pouvez <a href=\"%s\" target=\"_blank\">déposer un avis</a> également !" - -#: ../views/admin.php:792 -msgid "Need help?" -msgstr "Besoin d'aide ?" - -#: ../views/admin.php:793 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" -"Visitez <a href=\"%s\" target=\"_blank\">le forum</a> pour obtenir un " -"support, des réponses aux questions voire des retours d'expérience." - -#: ../views/admin.php:794 -msgid "Let's make this plugin even better!" -msgstr "Rendons cette extension encore meilleure !" - -#: ../views/form.php:2 -msgid "Title" -msgstr "Titre" - -#: ../views/form.php:7 -msgid "Show up to" -msgstr "Afficher jusqu'à" - -#: ../views/form.php:8 -msgid "posts" -msgstr "publications" - -#: ../views/form.php:12 -msgid "Sort posts by" -msgstr "Classer les publications par " - -#: ../views/form.php:14 -msgid "Comments" -msgstr "Commentaires" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "Total des vues" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "Moyenne des vues par jour" - -#: ../views/form.php:22 -msgid "Filters" -msgstr "Filtres" - -#: ../views/form.php:24 -msgid "Time Range" -msgstr "Intervalle de temps " - -#: ../views/form.php:34 -msgid "Post type(s)" -msgstr "Type(s) de publications " - -#: ../views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "ID(s) des publications à exclure " - -#: ../views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "ID(s) des catégories " - -#: ../views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "ID(s) des auteurs " - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "Configuration des publications" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "Afficher la note des publications" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "Titre raccourci" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "Titre raccourci à " - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "signes" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "mots" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "Afficher les extraits" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "Conserver le format des textes et des liens" - -#: ../views/form.php:67 -msgid "Excerpt length" -msgstr "Longueur des extraits" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "Afficher les miniatures" - -#: ../views/form.php:76 -msgid "Use predefined size" -msgstr "Utiliser la taille prédéfinie" - -#: ../views/form.php:88 -msgid "Set size manually" -msgstr "Paramétrer la taille manuellement" - -#: ../views/form.php:90 -msgid "Width" -msgstr "Largeur" - -#: ../views/form.php:93 -msgid "Height" -msgstr "Hauteur" - -#: ../views/form.php:99 -msgid "Stats Tag settings" -msgstr "Paramètres des statistiques" - -#: ../views/form.php:101 -msgid "Display comment count" -msgstr "Afficher le nombre de commentaires" - -#: ../views/form.php:103 -msgid "Display views" -msgstr "Afficher le nombre de vues" - -#: ../views/form.php:105 -msgid "Display author" -msgstr "Afficher le nom de l'auteur" - -#: ../views/form.php:107 -msgid "Display date" -msgstr "Afficher la date" - -#: ../views/form.php:110 -msgid "Date Format" -msgstr "Format des dates" - -#: ../views/form.php:112 -msgid "WordPress Date Format" -msgstr "Format des dates de WordPress" - -#: ../views/form.php:119 -msgid "Display category" -msgstr "Afficher la catégorie" - -#: ../views/form.php:123 -msgid "HTML Markup settings" -msgstr "Configuration des balises HTML" - -#: ../views/form.php:125 -msgid "Use custom HTML Markup" -msgstr "Utilisez une balise personnalisée" - -#: ../views/form.php:128 -msgid "Before / after title" -msgstr "Avant / après le titre" - -#: ../views/form.php:131 -msgid "Before / after Popular Posts" -msgstr "Avant / après les publications populaires" - -#: ../views/form.php:134 -msgid "Post HTML Markup" -msgstr "Balise HTML des publications" - -#: ../wordpress-popular-posts.php:304 -msgid "The most Popular Posts on your blog." -msgstr "Les publications les plus populaires sur votre blog." - -#: ../wordpress-popular-posts.php:482 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" -"Erreur : impossible d'utiliser Ajax pour WordPress Popular Posts sur votre " -"thème. Il manque l'attribut <em>id</em> sur before_widget (voir <a target=" -"\"_blank\" href=\"http://codex.wordpress.org/Function_Reference/" -"register_sidebar\" rel=\"nofollow\">register_sidebar</a> pour en savoir " -"plus)." - -#: ../wordpress-popular-posts.php:726 -msgid "Upload" -msgstr "Charger" - -#: ../wordpress-popular-posts.php:1099 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"Votre version de PHP est trop ancienne. WordPress Popular Posts nécessite au " -"moins la version de PHP %1$s pour fonctionner correctement. Veuillez " -"contacter votre fournisseur d'hébergement pour leur demander de mettre à " -"jour PHP à %1$s ou plus." - -#: ../wordpress-popular-posts.php:1106 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"Votre version de WordPress est trop ancienne. Wordpress Popular Posts " -"nécessite au moins la version WordPress %1$s pour fonctionner correctement. " -"Veuillez effectuer une mise à jour de votre WordPress pour pouvoir " -"l'utiliser." - -#: ../wordpress-popular-posts.php:1131 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> a été <strong>désactivé</" -"strong>.</p></div>" - -#: ../wordpress-popular-posts.php:1826 -msgid "Sorry. No data so far." -msgstr "Désolé. Pas assez de données pour afficher des publications." - -#: ../wordpress-popular-posts.php:2353 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "1 commentaire" -msgstr[1] "%s commentaires" - -#: ../wordpress-popular-posts.php:2365 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "1 vue par jour" -msgstr[1] "%s vues par jour" - -#: ../wordpress-popular-posts.php:2371 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "1 vue" -msgstr[1] "%s vues" - -#: ../wordpress-popular-posts.php:2394 -#, php-format -msgid "by %s" -msgstr "par %s" - -#: ../wordpress-popular-posts.php:2400 -#, php-format -msgid "posted on %s" -msgstr "publié le %s" - -#: ../wordpress-popular-posts.php:2408 -#, php-format -msgid "under %s" -msgstr "%s" - -#~ msgid "FAQ" -#~ msgstr "FAQ" - -#~ msgid "" -#~ "These FAQs are widget specific. For more general FAQs about WordPress " -#~ "Popular Posts, please click <a href=\"%s\" target=\"_blank\">here</a>" -#~ msgstr "" -#~ "Cette FAQ est spécifique au widget. Pour davantage de FAQ au sujet de " -#~ "WordPress Popular Posts, veuillez cliquer <a href=\"%s\" target=\"_blank" -#~ "\">ici</a>" - -#~ msgid "What does \"Title\" do?" -#~ msgstr "À quoi sert l'option d'affichage du titre ?" - -#~ msgid "" -#~ "It allows you to show a heading for your most popular posts listing. If " -#~ "left empty, no heading will be displayed at all." -#~ msgstr "" -#~ "Il vous permet d'afficher un titre pour vos publications. Si laisser " -#~ "vide, aucun titre ne sera affiché." - -#~ msgid "What is \"Post type\" for?" -#~ msgstr "À quoi sert \"Post type\" ?" - -#~ msgid "" -#~ "This filter allows you to decide which post types to show on the listing. " -#~ "By default, it will retrieve only posts and pages (which should be fine " -#~ "for most cases)." -#~ msgstr "" -#~ "Ce filtre vous permet de décider quel post-type doit être affiché dans la " -#~ "liste des publications. Par défaut, il récupère seulement les articles et " -#~ "les pages (ce qui devrait être bon pour la plupart des cas)." - -#~ msgid "What is \"Category(ies) ID(s)\" for?" -#~ msgstr "Qu'est-ce que les IDs de catégories ?" - -#~ msgid "" -#~ "This filter allows you to select which categories should be included or " -#~ "excluded from the listing. A negative sign in front of the category ID " -#~ "number will exclude posts belonging to it from the list, for example. You " -#~ "can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Ce filtre vous permet de sélectionner les catégories qui doivent être " -#~ "incluses ou exclues de la liste. Un signe négatif devant l'ID de " -#~ "catégorie exclut les publications appartenant à la liste par exemple. " -#~ "Vous pouvez spécifier plus d'un ID en les séparant par des virgules." - -#~ msgid "What is \"Author(s) ID(s)\" for?" -#~ msgstr "Qu'est-ce que les IDs d'auteur ?" - -#~ msgid "" -#~ "Just like the Category filter, this one lets you filter posts by author " -#~ "ID. You can specify more than one ID with a comma separated list." -#~ msgstr "" -#~ "Exactement comme le filtre de catégorie, celui-ci vous permet de filtrer " -#~ "les messages en fonction des IDs d'auteur. Vous pouvez spécifier autant " -#~ "d'ID que désiré en les séparant par des virgules." - -#~ msgid "What does \"Display post rating\" do?" -#~ msgstr "Que permet l'option \"Afficher la note d'une publication\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how your readers are rating " -#~ "your most popular posts. This feature requires having WP-PostRatings " -#~ "plugin installed and enabled on your blog for it to work." -#~ msgstr "" -#~ "Si elle est cochée, WordPress Popular Posts montrera comment vos lecteurs " -#~ "ont noté vos publications les plus populaires. Cette fonction nécessite " -#~ "d'avoir installé et activé l'extension WP-PostRatings sur votre blog pour " -#~ "que cela fonctionne." - -#~ msgid "What does \"Use custom HTML Markup\" do?" -#~ msgstr "À quoi sert l'option \"utiliser une balise HTML personnalisée\" ?" - -#~ msgid "" -#~ "If checked, you will be able to customize the HTML markup of your popular " -#~ "posts listing. For example, you can decide whether to wrap your posts in " -#~ "an unordered list, an ordered list, a div, etc. If you know xHTML/CSS, " -#~ "this is for you!" -#~ msgstr "" -#~ "Si coché, vous serez en mesure de personnaliser le balisage HTML des " -#~ "publications populaires. Par exemple, vous pouvez décider d'insérer vos " -#~ "publications dans une liste non ordonnée, une liste ordonnée, une div, " -#~ "etc. Si vous connaissez xHTML / CSS , cette option est pour vous !" - -#~ msgid "What is Time Range for?" -#~ msgstr "À quoi sert l'intervalle de temps ?" - -#~ msgid "" -#~ "It will tell WordPress Popular Posts to retrieve all posts with most " -#~ "views / comments within the selected time range." -#~ msgstr "" -#~ "Il indique à l'extension de récupérer tous les messages avec la plupart " -#~ "des vues / commentaires au sein de l'intervalle de temps sélectionné." - -#~ msgid "What is \"Sort post by\" for?" -#~ msgstr "Que permet l'option \"Classer les publications par\" ?" - -#~ msgid "" -#~ "It allows you to decide whether to order your popular posts listing by " -#~ "total views, comments, or average views per day." -#~ msgstr "" -#~ "Il vous permet de décider de l'ordre des listes de publications " -#~ "populaires par total des vues, par commentaires ou par la moyenne des " -#~ "vues par jour ." - -#~ msgid "What does \"Shorten title\" do?" -#~ msgstr "Que fait l'option \"Titre raccourci\" ?" - -#~ msgid "" -#~ "If checked, all posts titles will be shortened to \"n\" characters/words. " -#~ "A new \"Shorten title to\" option will appear so you can set it to " -#~ "whatever you like." -#~ msgstr "" -#~ "Si elle est cochée, tous les titres des publications seront raccourcis à " -#~ "\"n\" caractères/mots. Une nouvelle option \"titre raccourci à\" " -#~ "apparaîtra afin que vous puissiez définir sa longueur comme désiré." - -#~ msgid "What does \"Display post excerpt\" do?" -#~ msgstr "À quoi sert l'option \"Afficher l'extrait\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will also include a small extract of " -#~ "your posts in the list. Similarly to the previous option, you will be " -#~ "able to decide how long the post excerpt should be." -#~ msgstr "" -#~ "Si elle est cochée, WPP va inclure également un petit extrait des " -#~ "publications dans la liste. De même que l'option précédente, vous serez " -#~ "en mesure de décider la longueur de l'extrait affiché." - -#~ msgid "What does \"Keep text format and links\" do?" -#~ msgstr "Que fait l'option \"Conserver le format des textes et des liens\" ?" - -#~ msgid "" -#~ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular " -#~ "Posts will keep the styling tags (eg. bold, italic, etc) that were found " -#~ "in the excerpt. Hyperlinks will remain intact, too." -#~ msgstr "" -#~ "Si elle est cochée, et si la fonction d'affichage des extraits est " -#~ "activée, WordPress Popular Posts conservera les balises HTML de mise en " -#~ "forme (par exemple : gras, italique, etc.) qui ont été trouvés dans " -#~ "l'extrait, et les liens hypertextes resteront intacts également." - -#~ msgid "What does \"Display post thumbnail\" do?" -#~ msgstr "Que fait l'option \"Afficher l'image à la Une\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will attempt to retrieve the " -#~ "thumbnail of each post. You can set up the source of the thumbnail via " -#~ "Settings - WordPress Popular Posts - Tools." -#~ msgstr "" -#~ "Si elle est cochée, WordPress Popular Posts tentera de récupérer la " -#~ "vignette de chaque publication. Vous pouvez configurer la source de la " -#~ "vignette via Réglages - WordPress Popular Posts - Outils ." - -#~ msgid "What does \"Display comment count\" do?" -#~ msgstr "Que permet l'option \"Afficher le nombre de commentaires\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display how many comments each " -#~ "popular post has got in the selected Time Range." -#~ msgstr "" -#~ "Si elle est cochée, WPP affichera le nombre de commentaires que chaque " -#~ "publication a obtenu dans l'intervalle de temps sélectionné." - -#~ msgid "What does \"Display views\" do?" -#~ msgstr "Que fait l'option \"Afficher le nombre de vues\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will show how many pageviews a single " -#~ "post has gotten in the selected Time Range." -#~ msgstr "" -#~ "Si elle est cochée, WordPress Popular Posts montrera combien de vues a " -#~ "obtenu une publication dans l'intervalle de temps sélectionné." - -#~ msgid "What does \"Display author\" do?" -#~ msgstr "Que fait l'option \"Afficher l'auteur\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the name of the author " -#~ "of each entry listed." -#~ msgstr "" -#~ "Si elle est cochée, WPP affichera le nom de l'auteur de chaque " -#~ "publication répertoriée." - -#~ msgid "What does \"Display date\" do?" -#~ msgstr "À quoi sert l'option \"afficher la date\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the date when each " -#~ "popular posts was published." -#~ msgstr "" -#~ "Si l'option est cochée, WordPress Popular Posts affiche la date de " -#~ "publication des articles (et pages)." - -#~ msgid "What does \"Display category\" do?" -#~ msgstr "À quoi sert l'option \"afficher la catégorie\" ?" - -#~ msgid "" -#~ "If checked, WordPress Popular Posts will display the category of each " -#~ "post." -#~ msgstr "" -#~ "Si elle est cochée, WordPress Popular Posts affiche la catégorie de " -#~ "chaque article." - -#~ msgid "What are \"Content Tags\"?" -#~ msgstr "Que sont les \"balises de contenu\" ?" - -#~ msgid "" -#~ "Content Tags are codes to display a variety of items on your popular " -#~ "posts custom HTML structure. For example, setting it to \"{title}: " -#~ "{summary}\" (without the quotes) would display \"Post title: excerpt of " -#~ "the post here\". For more Content Tags, see the <a href=\"%s\" target=" -#~ "\"_blank\">Parameters</a> section." -#~ msgstr "" -#~ "Les mots-clés sont des codes utilisés pour afficher une variété d'items " -#~ "dans la structure du code HTML personnalisée de vos publications " -#~ "populaires. Par exemple, mettre \"{title} : {summary}\" (sans les " -#~ "guillemets)affiche \"Titre de la publication : extrait\". Pour en savoir " -#~ "plus sur les étiquettes de contenu, voir la section <a href=\"%s\" target=" -#~ "\"_blank\">Paramètres</a>." - -#~ msgid "What are \"Template Tags\"?" -#~ msgstr "Que sont les « balises de thèmes » ?" - -#~ msgid "" -#~ "Template Tags are simply php functions that allow you to perform certain " -#~ "actions. For example, WordPress Popular Posts currently supports two " -#~ "different template tags: wpp_get_mostpopular() and wpp_get_views()." -#~ msgstr "" -#~ "Les thèmes sont tout simplement des fonctions PHP qui vous permettent " -#~ "d'effectuer certaines actions. Par exemple, WPP supporte actuellement " -#~ "deux différentes fonctions de thèmes : wpp_get_mostpopular() et " -#~ "wpp_get_views()." - -#~ msgid "What are the template tags that WordPress Popular Posts supports?" -#~ msgstr "Quelles sont les balises de thèmes supportées par l'extension ?" - -#~ msgid "" -#~ "The following are the template tags supported by WordPress Popular Posts" -#~ msgstr "" -#~ "Voici les balises de thèmes prises en charge par WordPress Popular Posts" - -#~ msgid "Template tag" -#~ msgstr "Balise du thème" - -#~ msgid "" -#~ "Similar to the widget functionality, this tag retrieves the most popular " -#~ "posts on your blog. This function also accepts <a href=\"%1$s" -#~ "\">parameters</a> so you can customize your popular listing, but these " -#~ "are not required." -#~ msgstr "" -#~ "Similaire à la fonctionnalité de widget, cette balise récupère les " -#~ "publications les plus populaires sur votre blog. Cette fonction accepte " -#~ "également des <a href=\"%1$s\">paramètres</a> pour que vous puissiez " -#~ "personnaliser votre liste populaire, mais ceux-ci n'est pas obligatoire." - -#~ msgid "" -#~ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a " -#~ "complete list of attributes." -#~ msgstr "" -#~ "Veuillez vous référer à la section <a href=\"%1$s\">Paramètres</a> pour " -#~ "consulter la liste complète des attributs." - -#~ msgid "" -#~ "Displays the number of views of a single post. Post ID is required or it " -#~ "will return false." -#~ msgstr "" -#~ "Affiche le nombre de vues d'un article. L'ID de l'article est nécessaire " -#~ "ou \"false\" est retourné." - -#~ msgid "Post ID" -#~ msgstr "ID de la publication" - -#~ msgid "What are \"shortcodes\"?" -#~ msgstr "Qu'est-ce qu'on shortcode ?" - -#~ msgid "" -#~ "Shortcodes are similar to BB Codes, these allow us to call a php function " -#~ "by simply typing something like [shortcode]. With WordPress Popular " -#~ "Posts, the shortcode [wpp] will let you insert a list of the most popular " -#~ "posts in posts content and pages too! For more information about " -#~ "shortcodes, please visit the <a href=\"%s\" target=\"_blank\">WordPress " -#~ "Shortcode API</a> page." -#~ msgstr "" -#~ "Les shortcodes sont similaires à des BB codes, ils permettent d'appeler " -#~ "une fonction PHP en tapant simplement quelque chose comme [shortcode]. " -#~ "Avec ce plugin, le shortcode [WPP] permet d'insérer une liste des " -#~ "publications les plus populaires dans les contenus des articles et des " -#~ "pages ! Pour plus d'informations sur les shortcodes, consultez la <a href=" -#~ "\"%s\" target=\"_blank\">page de l'API WordPress Shortcode</a>." - -#~ msgid "Popular Posts" -#~ msgstr "Publications populaires" - -#~ msgid "px" -#~ msgstr "px" - -#~ msgid "" -#~ "By default, WordPress Popular Posts stores in database every single visit " -#~ "your site receives. For small / medium sites this is generally OK, but on " -#~ "large / high traffic sites the constant writing to the database may have " -#~ "an impact on performance. With data sampling, WordPress Popular Posts " -#~ "will store only a subset of your traffic and report on the tendencies " -#~ "detected in that sample set (for more on <em>data sampling</em>, please " -#~ "<a href=\"%1$s\" target=\"_blank\">read here</a>)" -#~ msgstr "" -#~ "Por defecto, WordPress Popular Posts almacena en la base de datos todas y " -#~ "cada una de las visitas que tu sitio recibe. Para sitios web pequeñ" -#~ "os / medianos esto está bien, pero en sitios grandes / de alto " -#~ "tráfico la escritura constante en la base de datos pudiera causar " -#~ "un impacto en el rendimiento. Con el sampleo de datos, WordPress Popular " -#~ "Posts almacenará sólo un subconjunto de tu tráfico y " -#~ "reportará de acuerdo a las tendencias detectadas en dicho sub " -#~ "conjunto (para mayor información acerca de; <em>sampleo de data</" -#~ "em>, por favor <a href=\"%1$s\" target=\"_blank\">leer aquí</a>)" - -#~ msgid "Listing refresh interval" -#~ msgstr "Intervalo de refrescamiento del listado" - -#~ msgid "Live" -#~ msgstr "En vivo" - -#~ msgid "Custom interval" -#~ msgstr "Intervalo personalizado" - -#~ msgid "" -#~ "Sets how often the listing should be updated. For most sites the Live " -#~ "option should be fine, however if you are experiencing slowdowns or your " -#~ "blog gets a lot of visitors then you might want to change the refresh rate" -#~ msgstr "" -#~ "Configura cuán frecuentemente debe actualizarse listado. Para la " -#~ "mayoría de los sitios la opción En Vivo debería " -#~ "estar bien, sin embargo si estás experimentando lentitud o tu blog " -#~ "recibe muchos visitantes entonces quizás prefieras cambiar la tasa " -#~ "de refrescamiento" - -#~ msgid "Refresh list every" -#~ msgstr "Refrescar la lista cada" - -#~ msgid "" -#~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() " -#~ "and the [wpp] shortcode\"." -#~ msgstr "" -#~ "Por favor revisa \"Listado de parámetros aceptados por " -#~ "wpp_get_mostpopular() y el shortcode [wpp]\"." - -#~ msgid "" -#~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] " -#~ "shortcode" -#~ msgstr "" -#~ "Lista de parámetros aceptados por wpp_get_mostpopular() y el " -#~ "shortcode [wpp]" - -#~ msgid "" -#~ "These parameters can be used by both the template tag " -#~ "wpp_get_most_popular() and the shortcode [wpp]." -#~ msgstr "" -#~ "Estos parámetros pueden ser utilizados tanto por el template tag " -#~ "wpp_get_mostpopular() como por el shortcode [wpp]." - -#~ msgid "Preview" -#~ msgstr "Vista previa" - -#~ msgid "Excerpt Properties" -#~ msgstr "Propiedades del resumen" - -#~ msgid "Thumbnail settings" -#~ msgstr "Configuración de miniatura" - -#~ msgid "" -#~ "Here you will find a handy group of options to tweak Wordpress Popular " -#~ "Posts." -#~ msgstr "" -#~ "Aquí encontrarás un útil grupo de opciones para " -#~ "ajustar a Wordpress Popular Posts." - -#~ msgid "Popular Posts links behavior" -#~ msgstr "Comportamiento de los link en las Entradas Populares" - -#~ msgid "Views logging behavior" -#~ msgstr "Comportamiento del registro de vistas" - -#~ msgid "Wordpress Popular Posts Stylesheet" -#~ msgstr "Hoja de estilos de Wordpress Popular Posts" - -#~ msgid "Data tools" -#~ msgstr "Herramientas de datos" - -#~ msgid "Popular posts listing refresh interval" -#~ msgstr "Intervalo de refrescamiento de las Entradas Populares" - -#~ msgid "Frequently Asked Questions" -#~ msgstr "Preguntas Frecuentes (FAQ)" - -#~ msgid "Sets the opening tag for each item on the list" -#~ msgstr "Configura la etiqueta de apertura de cada ítem del listado" - -#~ msgid "Sets the closing tag for each item on the list" -#~ msgstr "Configura la etiqueta de cierre de cada ítem del listado" - -#~ msgid "" -#~ "If set, this option will allow you to decide the order of the contents " -#~ "within each item on the list." -#~ msgstr "" -#~ "Si se configura, esta opción te permitirá decidir el orden " -#~ "de los contenidos dentro de cada item en la lista." - -#~ msgid "" -#~ "If set, you can decide the order of each content inside a single item on " -#~ "the list. For example, setting it to \"{title}: {summary}\" would output " -#~ "something like \"Your Post Title: summary here\". This attribute requires " -#~ "do_pattern to be true." -#~ msgstr "" -#~ "Si se configura, puedes decidir el orden de cada contenido dentro de cada " -#~ "item en la lista. Por ejemplo, configurarlo como \"{title}: {summary}\" " -#~ "mostraría \"El título de tu entrada: resumen aquí\". " -#~ "Este atributo requiere que do_pattern sea true." - -#~ msgid "Available tags" -#~ msgstr "Etiquetas disponibles" - -#~ msgid "Rate it" -#~ msgstr "¡Califícalo" - -#~ msgid "on the official Plugin Directory!" -#~ msgstr "en el Directorio Oficial de Plugins!" - -#~ msgid "Do you love this plugin?" -#~ msgstr "¿Adoras este plugin?" - -#~ msgid "Buy me a beer!" -#~ msgstr "¡Cómprame una cerveza!" - -#~ msgid "comments" -#~ msgstr "comentarios" - -#~ msgid "views per day" -#~ msgstr "vistas por día" - -#~ msgid "views" -#~ msgstr "vistas" - -#~ msgid "by" -#~ msgstr "por" - -#~ msgid "What does \"Use content formatting tags\" do?" -#~ msgstr "" -#~ "¿Qué hace \"Utilizar etiquetas de formato de contenido\"?" - -#~ msgid "Before / after each post:" -#~ msgstr "Antes / después de cada entrada" - -#~ msgid "Use content formatting tags" -#~ msgstr "Utilizar etiquetas de formato de contenido" - -#~ msgid "Content format:" -#~ msgstr "Formato de contenido:" - -#~ msgid "Wordpress Popular Posts Stats" -#~ msgstr "Estadísticas de Wordpress Popular Posts" diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.mo b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.mo deleted file mode 100644 index b7cc507aba696dbb262c5b9ceed71e31a5d62341..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.po b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.po deleted file mode 100644 index 340c99ba6d0189c95ba3859c23aa4eadbefa5d59..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts-ja.po +++ /dev/null @@ -1,1379 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-27 18:13-0430\n" -"PO-Revision-Date: \n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_n\n" -"X-Poedit-Basepath: .\n" -"X-Generator: Poedit 1.6.5\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../views/admin.php:23 ../views/admin.php:32 ../views/admin.php:46 -#: ../views/admin.php:67 -msgid "Settings saved." -msgstr "設定を保存しました。" - -#: ../views/admin.php:38 -msgid "Please provide the name of your custom field." -msgstr "カスタムフィールドの名称を入れてください。" - -#: ../views/admin.php:84 -msgid "" -"This operation will delete all entries from Wordpress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"この操作は、WordPress Popular Postsのキャッシュ・テーブルにあるデータをすべて" -"削除します。もとにもどすことはできません。" - -#: ../views/admin.php:84 ../views/admin.php:92 -msgid "Do you want to continue?" -msgstr "続けてもいいですか?" - -#: ../views/admin.php:92 -msgid "" -"This operation will delete all stored info from Wordpress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"この操作は、WordPress Popular Postsのデータ・テーブルのデータをすべて削除しま" -"す。もとにもどすことはできません。" - -#: ../views/admin.php:109 -msgid "Stats" -msgstr "統計" - -#: ../views/admin.php:110 -msgid "Tools" -msgstr "ツール" - -#: ../views/admin.php:111 ../views/admin.php:662 -msgid "Parameters" -msgstr "パラメータ" - -#: ../views/admin.php:112 -msgid "FAQ" -msgstr "よくある質問" - -#: ../views/admin.php:113 -msgid "About" -msgstr "約" - -#: ../views/admin.php:124 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since Wordpress " -"Popular Posts was installed." -msgstr "" -"タブをクリックすると、24時間、1週間、1か月、WordPress Popular Postsを設置して" -"から今日までの累積で、最も人気のあるコンテンツを表示します。" - -#: ../views/admin.php:130 -msgid "Order by comments" -msgstr "コメント数でランキング" - -#: ../views/admin.php:131 -msgid "Order by views" -msgstr "閲覧数でランキング" - -#: ../views/admin.php:132 -msgid "Order by avg. daily views" -msgstr "1日の平均閲覧数でランキング" - -#: ../views/admin.php:134 -msgid "Post type" -msgstr "投稿タイプ" - -#: ../views/admin.php:135 -msgid "Limit" -msgstr "表示する数" - -#: ../views/admin.php:136 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: ../views/admin.php:138 ../views/admin.php:215 ../views/admin.php:281 -#: ../views/admin.php:318 -msgid "Apply" -msgstr "適用" - -#: ../views/admin.php:144 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "24時間" - -#: ../views/admin.php:145 ../views/form.php:27 -msgid "Last 7 days" -msgstr "1週間" - -#: ../views/admin.php:146 ../views/form.php:28 -msgid "Last 30 days" -msgstr "1か月" - -#: ../views/admin.php:147 ../views/form.php:29 -msgid "All-time" -msgstr "累積" - -#: ../views/admin.php:169 -#, fuzzy -msgid "Thumbnails" -msgstr "サムネールの場所" - -#: ../views/admin.php:174 -msgid "Default thumbnail" -msgstr "デフォルトのサムネール" - -#: ../views/admin.php:179 -msgid "Upload thumbnail" -msgstr "サムネールをアップロードする" - -#: ../views/admin.php:182 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"やり方: 画像をアップロードまたは選択し、サイズをフルサイズに設定して、アップ" -"ロードをクリックしてください。終了したら、変更を保存をクリックします。" - -#: ../views/admin.php:186 -msgid "Pick image from" -msgstr "次から画像を選ぶ" - -#: ../views/admin.php:189 -msgid "Featured image" -msgstr "アイキャッチ画像" - -#: ../views/admin.php:190 -msgid "First image on post" -msgstr "投稿に最初に現れる画像" - -#: ../views/admin.php:191 -msgid "Custom field" -msgstr "カスタム・フィールド" - -#: ../views/admin.php:194 -msgid "Tell Wordpress Popular Posts where it should get thumbnails from" -msgstr "ここからサムネール画像を取得するようにする。" - -#: ../views/admin.php:198 -msgid "Custom field name" -msgstr "カスタム・フィールドの名前" - -#: ../views/admin.php:204 -msgid "Resize image from Custom field?" -msgstr "カスタム・フィールドの画像をサイズ変更しますか?" - -#: ../views/admin.php:207 -msgid "No, I will upload my own thumbnail" -msgstr "いいえ、自分のサムネールをアップロードします。" - -#: ../views/admin.php:208 -msgid "Yes" -msgstr "はい" - -#: ../views/admin.php:224 -msgid "Data" -msgstr "" - -#: ../views/admin.php:229 -msgid "Log views from" -msgstr "次のものから閲覧数を記録します。" - -#: ../views/admin.php:232 -msgid "Visitors only" -msgstr "訪問者のみ" - -#: ../views/admin.php:233 -msgid "Logged-in users only" -msgstr "" - -#: ../views/admin.php:234 -msgid "Everyone" -msgstr "ログイン・ユーザも含める" - -#: ../views/admin.php:240 -msgid "Ajaxify widget" -msgstr "Ajaxを使うウィジェット" - -#: ../views/admin.php:243 ../views/admin.php:309 -msgid "Disabled" -msgstr "無効" - -#: ../views/admin.php:244 ../views/admin.php:308 -msgid "Enabled" -msgstr "有効" - -#: ../views/admin.php:248 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"WP Super Cacheのようなキャッシュ系プラグインを使っている場合、この機能を有効" -"にすると、人気投稿リストがキャッシュされるのを防ぐことができます。" - -#: ../views/admin.php:252 -#, fuzzy -msgid "Listing refresh interval" -msgstr "書き換えの間隔" - -#: ../views/admin.php:255 -msgid "Live" -msgstr "同期" - -#: ../views/admin.php:256 -msgid "Custom interval" -msgstr "間隔を指定" - -#: ../views/admin.php:260 -msgid "" -"Sets how often the listing should be updated. For most sites the Live option " -"should be fine, however if you are experiencing slowdowns or your blog gets " -"a lot of visitors then you might want to change the refresh rate" -msgstr "" -"リストがどれくらいの間隔で書き換えられるかを設定します。ほとんどのサイトで" -"は、「同期」を設定して問題ないでしょう。速度が遅くなったり、訪問者が非常に多" -"いときは、書き換えの間隔を変えてみてください。" - -#: ../views/admin.php:264 -#, fuzzy -msgid "Refresh list every" -msgstr "書き換えの間隔" - -#: ../views/admin.php:268 -msgid "Hour(s)" -msgstr "時間" - -#: ../views/admin.php:269 -msgid "Day(s)" -msgstr "日" - -#: ../views/admin.php:270 -msgid "Week(s)" -msgstr "週" - -#: ../views/admin.php:271 -msgid "Month(s)" -msgstr "か月" - -#: ../views/admin.php:272 -msgid "Year(s)" -msgstr "年" - -#: ../views/admin.php:275 -msgid "Really? That long?" -msgstr "本当にこんなに長くていいのですか?" - -#: ../views/admin.php:290 -msgid "Miscellaneous" -msgstr "" - -#: ../views/admin.php:295 -msgid "Open links in" -msgstr "" - -#: ../views/admin.php:298 -msgid "Current window" -msgstr "" - -#: ../views/admin.php:299 -msgid "New tab/window" -msgstr "" - -#: ../views/admin.php:305 -msgid "Use plugin's stylesheet" -msgstr "" - -#: ../views/admin.php:312 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"人気の投稿リストのスタイルを指定するのに、wpp.cssという名前のスタイルシートが" -"デフォルトで含まれています。自分のスタイルシートを使ったり、このスタイルシー" -"トがヘッダ・セクションで読み込まれるのがいやな場合は、これを使ってください。" - -#: ../views/admin.php:329 -#, fuzzy -msgid "" -"Wordpress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Postsは2つのテーブルにデータを保存しています。1つは過去1か" -"月間最も人気のあったエントリを保存します(これを「キャッシュ」と呼びます)。も" -"う1つは、累積のデータを保存します(これを「累積データ」または単に「データ」と" -"呼びます)。何かの理由で、キャッシュや累積データを削除する必要がある場合は、下" -"のボタンを使ってください。" - -#: ../views/admin.php:330 -msgid "Empty cache" -msgstr "キャッシュを空にする" - -#: ../views/admin.php:330 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "WPPのキャッシュだけを手動で空にするにはこのボタンを使ってください。" - -#: ../views/admin.php:331 -msgid "Clear all data" -msgstr "全てのデータを空にする" - -#: ../views/admin.php:331 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "WPPの全データを手動で空にしたいときには、このボタンを使ってください。" - -#: ../views/admin.php:338 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: ../views/admin.php:346 -msgid "Parameter" -msgstr "パラメータ" - -#: ../views/admin.php:347 ../views/admin.php:661 -msgid "What it does " -msgstr "できること " - -#: ../views/admin.php:348 -msgid "Possible values" -msgstr "使える値" - -#: ../views/admin.php:349 -msgid "Defaults to" -msgstr "デフォルト値" - -#: ../views/admin.php:350 ../views/admin.php:663 -msgid "Example" -msgstr "例" - -#: ../views/admin.php:356 -msgid "Sets a heading for the list" -msgstr "リストの見出しを設定する" - -#: ../views/admin.php:357 ../views/admin.php:364 ../views/admin.php:371 -#: ../views/admin.php:406 ../views/admin.php:413 ../views/admin.php:420 -#: ../views/admin.php:427 ../views/admin.php:518 ../views/admin.php:532 -#: ../views/admin.php:539 -msgid "Text string" -msgstr "文字列" - -#: ../views/admin.php:358 -msgid "Popular Posts" -msgstr "人気の投稿" - -#: ../views/admin.php:363 -msgid "Set the opening tag for the heading of the list" -msgstr "リストの見出しの前につけるHTMLタグを設定する" - -#: ../views/admin.php:370 -msgid "Set the closing tag for the heading of the list" -msgstr "リストの見出しの後につけるHTMLタグを設定する" - -#: ../views/admin.php:377 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "リストに表示する投稿数の上限を設定する" - -#: ../views/admin.php:378 ../views/admin.php:434 ../views/admin.php:448 -#: ../views/admin.php:469 ../views/admin.php:476 -msgid "Positive integer" -msgstr "正の整数" - -#: ../views/admin.php:384 -msgid "" -"Tells Wordpress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "設定された期間内で最も人気のあるエントリを表示する" - -#: ../views/admin.php:391 -#, fuzzy -msgid "" -"Tells Wordpress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "設定された期間内で最も人気のあるエントリを表示する" - -#: ../views/admin.php:398 -msgid "Sets the sorting option of the popular posts" -msgstr "人気の投稿並び順を決める" - -#: ../views/admin.php:399 -msgid "(for average views per day)" -msgstr "(1日の平均閲覧数)" - -#: ../views/admin.php:405 -msgid "Defines the type of posts to show on the listing" -msgstr "リストに表示する投稿のタイプを決める" - -#: ../views/admin.php:412 -msgid "" -"If set, Wordpress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "これを設定すると、特定の投稿IDが表示されないようになります。" - -#: ../views/admin.php:414 ../views/admin.php:421 ../views/admin.php:428 -msgid "None" -msgstr "なし" - -#: ../views/admin.php:419 -msgid "" -"If set, Wordpress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" -"これを設定すると、指定されたカテゴリIDのエントリが全て表示されるようになりま" -"す。マイナス符号を使うと、そのカテゴリは表示から外されるようになります。" - -#: ../views/admin.php:426 -msgid "" -"If set, Wordpress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"これを設定すると、指定された投稿者IDのエントリが全て表示されるようになりま" -"す。" - -#: ../views/admin.php:433 -msgid "" -"If set, Wordpress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "これを設定すると、投稿タイトルを\"n\"文字になるようにします。" - -#: ../views/admin.php:440 -msgid "" -"If set to 1, Wordpress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"これを1に設定すると、タイトルを\"n\"文字ではなくて、\"n\"語になるようにします" -"(日本語では意味がありません)。" - -#: ../views/admin.php:447 -msgid "" -"If set, Wordpress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"これを設定すると、投稿のコンテンツから\"n\"文字の抜粋を作り、表示に含めます。" - -#: ../views/admin.php:454 -msgid "" -"If set, Wordpress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"これを設定すると、抜粋に含まれるスタイル・タグ(strongやitalicなど)やハイパー" -"リンクをすべてそのまま使うようになります。" - -#: ../views/admin.php:461 -msgid "" -"If set to 1, Wordpress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"これを1に設定すると、抜粋の長さが\"n\"文字ではなくて、\"n\"語の長さになります" -"(日本語では意味がありません)。" - -#: ../views/admin.php:468 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"これを設定し、サーバ設定が許可していれば、投稿に含まれるサムネールを表示する" -"ことができるようになります。この属性はサムネールの幅を設定します。" - -#: ../views/admin.php:475 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"これを設定し、サーバ設定が許可していれば、投稿に含まれるサムネールを表示する" -"ことができるようになります。この属性はサムネールの高さを設定します。" - -#: ../views/admin.php:482 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, Wordpress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"これを設定し、WP-PostRatingsプラグインが有効化されていれば、エントリの評価を" -"訪問者に示すことができるようになります。" - -#: ../views/admin.php:489 -msgid "" -"If set, Wordpress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" -"これを設定すると、それぞれの投稿にこれまでいくつのコメントがついたかを表示す" -"ることができます。" - -#: ../views/admin.php:496 -msgid "" -"If set, Wordpress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" -"これを設定すると、WordPress Popular Postsをインストールしてからの閲覧数を表示" -"することができるようになります。" - -#: ../views/admin.php:503 -msgid "" -"If set, Wordpress Popular Posts will show who published each popular post on " -"the list" -msgstr "" -"これを設定すると、リストに表示される投稿を公開した作者を表示することができる" -"ようになります。" - -#: ../views/admin.php:510 -msgid "" -"If set, Wordpress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"これを設定すると、それぞれの投稿が公開された日付を表示するようになります。" - -#: ../views/admin.php:517 -msgid "Sets the date format" -msgstr "日付フォーマットを設定する" - -#: ../views/admin.php:524 -msgid "If set, Wordpress Popular Posts will display the category" -msgstr "これを設定すると、カテゴリが表示されます。" - -#: ../views/admin.php:531 -msgid "Sets the opening tag for the listing" -msgstr "リストの開始タグを指定する。" - -#: ../views/admin.php:538 -msgid "Sets the closing tag for the listing" -msgstr "リストの終了タグを指定する。" - -#: ../views/admin.php:545 -msgid "Sets the HTML structure of each post" -msgstr "それぞれの投稿のHTML構造を設定します。" - -#: ../views/admin.php:546 -msgid "Text string, custom HTML" -msgstr "文字列。カスタムHTML。" - -#: ../views/admin.php:546 -msgid "Available Content Tags" -msgstr "利用できるコンテンツ・タグ" - -#: ../views/admin.php:546 -msgid "displays thumbnail linked to post/page" -msgstr "投稿や固定ページに結びついたサムネールを表示します。" - -#: ../views/admin.php:546 -msgid "displays linked post/page title" -msgstr "投稿や固定ページへのリンクを表示します。" - -#: ../views/admin.php:546 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"投稿や固定ページの抜粋を表示します。抜粋の長さが0より大きな数値になっているこ" -"とが必要です。" - -#: ../views/admin.php:546 -msgid "displays the default stats tags" -msgstr "デフォルトの統計タグを表示します。" - -#: ../views/admin.php:546 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"投稿と固定ページの現在の評価を表示します。WP-PostRatingsがインストールされて" -"いて、有効化していることが必要です。" - -#: ../views/admin.php:546 -#, fuzzy -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"投稿と固定ページの現在の評価を表示します。WP-PostRatingsがインストールされて" -"いて、有効化していることが必要です。" - -#: ../views/admin.php:546 -msgid "outputs the URL of the post/page" -msgstr "投稿や固定ページのURLを出力します。" - -#: ../views/admin.php:546 -msgid "displays post/page title, no link" -msgstr "投稿や固定ページのタイトルをリンクなしで表示します。" - -#: ../views/admin.php:546 -msgid "displays linked author name, requires stats_author=1" -msgstr "投稿者名へのリンクを表示します。stats_author=1の設定が必要です。" - -#: ../views/admin.php:546 -msgid "displays linked category name, requires stats_category=1" -msgstr "カテゴリ名へのリンクを表示します。stats_category=1の設定が必要です。" - -#: ../views/admin.php:546 -msgid "displays views count only, no text" -msgstr "閲覧数の数値だけを表示します。" - -#: ../views/admin.php:546 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "コメント数の数値だけを表示します。stats_comments=1の設定が必要です。" - -#: ../views/admin.php:558 -msgid "What does \"Title\" do?" -msgstr "「タイトル」は何をするのですか?" - -#: ../views/admin.php:561 -msgid "" -"It allows you to show a heading for your most popular posts listing. If left " -"empty, no heading will be displayed at all." -msgstr "" -"人気投稿リストの見出しが表示されるようになります。空欄にすると、何も表示しま" -"せん。" - -#: ../views/admin.php:564 -msgid "What is Time Range for?" -msgstr "期間は何のためにあるのですか?" - -#: ../views/admin.php:566 -msgid "" -"It will tell Wordpress Popular Posts to retrieve all posts with most views / " -"comments within the selected time range." -msgstr "" -"指定された期間の中で、最も閲覧数の多い投稿、または最もコメントの多い投稿を表" -"示するようになります。" - -#: ../views/admin.php:569 -msgid "What is \"Sort post by\" for?" -msgstr "「並び替え順」はなんのためにありのですか?" - -#: ../views/admin.php:571 -msgid "" -"It allows you to decide whether to order your popular posts listing by total " -"views, comments, or average views per day." -msgstr "" -"合計閲覧数、コメント数、1日の平均閲覧数のどれで投稿を並べるかを選択することが" -"できます。" - -#: ../views/admin.php:574 -msgid "What does \"Display post rating\" do?" -msgstr "「投稿評価を表示する」というのは何ですか?" - -#: ../views/admin.php:576 -msgid "" -"If checked, Wordpress Popular Posts will show how your readers are rating " -"your most popular posts. This feature requires having WP-PostRatings plugin " -"installed and enabled on your blog for it to work." -msgstr "" -"これをチェックすると、読者があなたの人気の投稿をどう評価しているかを示すこと" -"ができます。WP-PostRatingsプラグインがインストールされていて、有効化してあれ" -"ば利用することができます。" - -#: ../views/admin.php:579 -msgid "What does \"Shorten title\" do?" -msgstr "「タイトルを短縮する」は何をするのですか?" - -#: ../views/admin.php:581 -msgid "" -"If checked, all posts titles will be shortened to \"n\" characters/words. A " -"new \"Shorten title to\" option will appear so you can set it to whatever " -"you like." -msgstr "" -"これをチェックすると、全ての投稿タイトルが\"n\"文字または\"n\"語になります。" -"「次の文字数までタイトルを縮める」というオプションが新しく現れますので、あな" -"たの好きな数値に設定することができます。" - -#: ../views/admin.php:584 -msgid "What does \"Display post excerpt\" do?" -msgstr "「投稿抜粋を表示する」は何をするものですか?" - -#: ../views/admin.php:586 -msgid "" -"If checked, Wordpress Popular Posts will also include a small extract of " -"your posts in the list. Similarly to the previous option, you will be able " -"to decide how long the post excerpt should be." -msgstr "" -"これをチェックすると、投稿のリストに短い抜粋を含めることができるようになりま" -"す。前のオプションと同様に、抜粋の長さを決めることができます。" - -#: ../views/admin.php:589 -msgid "What does \"Keep text format and links\" do?" -msgstr "" -"「テキスト・フォーマットとリンクを保存する」というのは何をするものですか?" - -#: ../views/admin.php:591 -msgid "" -"If checked, and if the Post Excerpt feature is enabled, Wordpress Popular " -"Posts will keep the styling tags (eg. bold, italic, etc) that were found in " -"the excerpt. Hyperlinks will remain intact, too." -msgstr "" -"これをチェックして、投稿抜粋の機能が有効になっていると、抜粋に含まれるスタイ" -"ルタグ(boldやitalicなど)がそのまま使われます。ハイパーリンクもそのままにな" -"ります。" - -#: ../views/admin.php:594 -msgid "What is \"Post type\" for?" -msgstr "「投稿タイプ」とは何に使うのですか?" - -#: ../views/admin.php:596 -msgid "" -"This filter allows you to decide which post types to show on the listing. By " -"default, it will retrieve only posts and pages (which should be fine for " -"most cases)." -msgstr "" -"このフィルタを通すと、どの投稿タイプが表示されるかを決めることができます。デ" -"フォルトでは、投稿と固定ページが表示されます(ほとんどの場合、これで十分なは" -"ずです)。" - -#: ../views/admin.php:599 -msgid "What is \"Category(ies) ID(s)\" for?" -msgstr "「カテゴリID」というのは何に使うのですか?" - -#: ../views/admin.php:601 -msgid "" -"This filter allows you to select which categories should be included or " -"excluded from the listing. A negative sign in front of the category ID " -"number will exclude posts belonging to it from the list, for example. You " -"can specify more than one ID with a comma separated list." -msgstr "" -"このフィルタを通すと、どのカテゴリをリストに表示するかを決めることができま" -"す。たとえば、カテゴリIDの前にマイナスの符号をつけると、リストに表示されなく" -"なります。カンマで区切れば複数のIDを指定することができます。" - -#: ../views/admin.php:604 -msgid "What is \"Author(s) ID(s)\" for?" -msgstr "「投稿者ID」はどのように使うのですか?" - -#: ../views/admin.php:606 -msgid "" -"Just like the Category filter, this one lets you filter posts by author ID. " -"You can specify more than one ID with a comma separated list." -msgstr "" -"カテゴリ・フィルタと同様、これを指定すると、投稿者IDでフィルタをかけることが" -"できるようになります。カンマで区切れば複数のIDを指定することができます。" - -#: ../views/admin.php:609 -msgid "What does \"Display post thumbnail\" do?" -msgstr "「投稿サムネールを表示する」というのは、何をするのですか?" - -#: ../views/admin.php:611 -msgid "" -"If checked, Wordpress Popular Posts will attempt to retrieve the thumbnail " -"of each post. You can set up the source of the thumbnail via Settings - " -"Wordpress Popular Posts - Tools." -msgstr "" -"これをチェックすると、Popular Postsは投稿のサムネールを取得しようとします。表" -"示するサムネール画像は、設定 < WordPress Popular Posts < ツール で設定" -"することができます。" - -#: ../views/admin.php:614 -msgid "What does \"Display comment count\" do?" -msgstr "「コメント数を表示する」というのは、何をするのですか?" - -#: ../views/admin.php:616 -msgid "" -"If checked, Wordpress Popular Posts will display how many comments each " -"popular post has got in the selected Time Range." -msgstr "" -"これをチェックすると、設定された期間で、投稿にいくつのコメントがついたかを表" -"示することができます。" - -#: ../views/admin.php:619 -msgid "What does \"Display views\" do?" -msgstr "「閲覧数を表示する」というのは何?" - -#: ../views/admin.php:621 -msgid "" -"If checked, Wordpress Popular Posts will show how many pageviews a single " -"post has gotten in the selected Time Range." -msgstr "" -"これをチェックすると、個別の投稿が指定された期間内で何回閲覧されたかを表示す" -"るようになります。" - -#: ../views/admin.php:624 -msgid "What does \"Display author\" do?" -msgstr "「投稿者を表示する」は何をするのですか?" - -#: ../views/admin.php:626 -msgid "" -"If checked, Wordpress Popular Posts will display the name of the author of " -"each entry listed." -msgstr "" -"これをチェックすると、リストのエントリを書いた投稿者名が表示されるようになり" -"ます。" - -#: ../views/admin.php:629 -msgid "What does \"Display date\" do?" -msgstr "「日付を表示する」というのは?" - -#: ../views/admin.php:631 -msgid "" -"If checked, Wordpress Popular Posts will display the date when each popular " -"posts was published." -msgstr "これをチェックすると、投稿が公開された日付を表示するようになります。" - -#: ../views/admin.php:634 -#, fuzzy -msgid "What does \"Display category\" do?" -msgstr "「投稿者を表示する」は何をするのですか?" - -#: ../views/admin.php:636 -#, fuzzy -msgid "" -"If checked, Wordpress Popular Posts will display the category of each post." -msgstr "" -"これをチェックすると、リストのエントリを書いた投稿者名が表示されるようになり" -"ます。" - -#: ../views/admin.php:639 -msgid "What does \"Use custom HTML Markup\" do?" -msgstr "「カスタムHTMLマークアップを使う」というのは、何をするのですか?" - -#: ../views/admin.php:641 -msgid "" -"If checked, you will be able to customize the HTML markup of your popular " -"posts listing. For example, you can decide whether to wrap your posts in an " -"unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is " -"for you!" -msgstr "" -"これをチェックすると、リスト表示のHTMLマークアップを変更することができます。" -"たとえば、番号付きリストにしたり、番号なしリストにしたり、divで囲ったりするこ" -"とができます。xHTML/CSSの知識がある場合は、やってみてください。" - -#: ../views/admin.php:644 -msgid "What are \"Content Tags\"?" -msgstr "「コンテンツ・タグ」って何?" - -#: ../views/admin.php:646 -#, fuzzy, php-format -msgid "" -"Content Tags are codes to display a variety of items on your popular posts " -"custom HTML structure. For example, setting it to \"{title}: " -"{summary}\" (without the quotes) would display \"Post title: excerpt of the " -"post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank" -"\">Parameters</a> section." -msgstr "" -"コンテンツ・タグは、カスタムHTMLでいろいろな項目を表示できるようになるコード" -"です。たとえば、「{title}: {summary}」とすると、「投稿タイトル: 投稿抜粋」と" -"表示されます。他のコンテント・タグについては、「wpp_get_postpopular()と[wpp]" -"ショートコードで使えるパラメータ・リスト」をご覧ください。" - -#: ../views/admin.php:649 -msgid "What are \"Template Tags\"?" -msgstr "「テンプレート・タグ」というのは?" - -#: ../views/admin.php:651 -msgid "" -"Template Tags are simply php functions that allow you to perform certain " -"actions. For example, Wordpress Popular Posts currently supports two " -"different template tags: wpp_get_mostpopular() and wpp_get_views()." -msgstr "" -"テンプレート・タグは、簡単なPHP関数で、それに対応するアクションをさせることが" -"できます。たとえば、WordPress Popular Postsは現在、二つのテンプレート・タグを" -"持っています。wpp_get_mostpopular()とwpp_get_views()です。" - -#: ../views/admin.php:654 -msgid "What are the template tags that Wordpress Popular Posts supports?" -msgstr "" -"WordPress Popular Postsがサポートするテンプレート・タグにはどんなものがありま" -"すか?" - -#: ../views/admin.php:656 -msgid "" -"The following are the template tags supported by Wordpress Popular Posts" -msgstr "次のものが使えます。" - -#: ../views/admin.php:660 -msgid "Template tag" -msgstr "テンプレート・タグ" - -#: ../views/admin.php:669 -#, fuzzy, php-format -msgid "" -"Similar to the widget functionality, this tag retrieves the most popular " -"posts on your blog. This function also accepts <a href=\"%1$s\">parameters</" -"a> so you can customize your popular listing, but these are not required." -msgstr "" -"ウィジェットを使うのと同じ結果になります。このタグを使うと、人気の投稿を表示" -"することができます。この関数は、パラメータも受けつけるので、リスト表示をカス" -"タマイズすることもできます。かならずカスタマイズしなければならないというわけ" -"ではありません。" - -#: ../views/admin.php:670 -#, php-format -msgid "" -"Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete " -"list of attributes." -msgstr "" - -#: ../views/admin.php:675 -msgid "" -"Displays the number of views of a single post. Post ID is required or it " -"will return false." -msgstr "" -"個別投稿の閲覧数を表示します。投稿IDを指定することが必要です。それがないと、" -"falseを返します。" - -#: ../views/admin.php:676 -msgid "Post ID" -msgstr "投稿ID" - -#: ../views/admin.php:683 -msgid "What are \"shortcodes\"?" -msgstr "「ショートコード」とは何ですか?" - -#: ../views/admin.php:685 -#, fuzzy, php-format -msgid "" -"Shortcodes are similar to BB Codes, these allow us to call a php function by " -"simply typing something like [shortcode]. With Wordpress Popular Posts, the " -"shortcode [wpp] will let you insert a list of the most popular posts in " -"posts content and pages too! For more information about shortcodes, please " -"visit the <a href=\"%s\" target=\"_blank\">Wordpress Shortcode API</a> page." -msgstr "" -"ショートコードはBBコードに似ていて、[shortcode]みたいな書き方をすると、phpの" -"関数が呼び出されることになっています。WordPress Popular Postsでは、[wpp]とい" -"うショートコードを書くと、投稿やページで人気の投稿がリスト表示されるようにな" -"ります。ショートコードについての詳しい情報は、次のページを見てください。" - -#: ../views/admin.php:694 -#, php-format -msgid "About Wordpress Popular Posts %s" -msgstr "WordPress Popular Posts %s" - -#: ../views/admin.php:695 -msgid "This version includes the following changes" -msgstr "" - -#: ../views/admin.php:709 -msgid "Do you like this plugin?" -msgstr "このプラグインが気に入りましたか?" - -#: ../views/admin.php:716 -msgid "" -"Each donation motivates me to keep releasing free stuff for the Wordpress " -"community!" -msgstr "" -"寄付は、WordPressコミュニティのためにフリー・ソフトをリリースし続けるモチベー" -"ションになります!" - -#: ../views/admin.php:717 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: ../views/admin.php:721 -msgid "Need help?" -msgstr "" - -#: ../views/admin.php:722 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" - -#: ../views/admin.php:723 -msgid "Let's make this plugin even better!" -msgstr "" - -#: ../views/form.php:2 -#, fuzzy -msgid "Title" -msgstr "タイトル:" - -#: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24 -#: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43 -#: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63 -#: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87 -#: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93 -#: ../views/form.php:105 ../views/form.php:111 -msgid "What is this?" -msgstr "これは何ですか?" - -#: ../views/form.php:7 -#, fuzzy -msgid "Show up to" -msgstr "表示する数" - -#: ../views/form.php:8 -msgid "posts" -msgstr "投稿" - -#: ../views/form.php:12 -#, fuzzy -msgid "Sort posts by" -msgstr "並べ替え順" - -#: ../views/form.php:14 -msgid "Comments" -msgstr "コメント" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "累積閲覧数" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "1日の平均閲覧数" - -#: ../views/form.php:22 -#, fuzzy -msgid "Filters" -msgstr "フィルタ:" - -#: ../views/form.php:24 -#, fuzzy -msgid "Time Range" -msgstr "時間間隔" - -#: ../views/form.php:34 -#, fuzzy -msgid "Post type(s)" -msgstr "投稿タイプ:" - -#: ../views/form.php:37 -#, fuzzy -msgid "Post(s) ID(s) to exclude" -msgstr "表示しない投稿ID" - -#: ../views/form.php:40 -#, fuzzy -msgid "Category(ies) ID(s)" -msgstr "カテゴリID" - -#: ../views/form.php:43 -#, fuzzy -msgid "Author(s) ID(s)" -msgstr "投稿者ID" - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "投稿設定" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "投稿評価を表示する" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "タイトルを短縮する" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "タイトル短縮のし方" - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "文字" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "語" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "抜粋を表示する" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "フォーマットとリンクを保持する" - -#: ../views/form.php:67 -#, fuzzy -msgid "Excerpt length" -msgstr "抜粋の長さ" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "投稿サムネールを表示する" - -#: ../views/form.php:76 -#, fuzzy -msgid "Width" -msgstr "幅:" - -#: ../views/form.php:77 ../views/form.php:80 -msgid "px" -msgstr "ピクセル" - -#: ../views/form.php:79 -#, fuzzy -msgid "Height" -msgstr "高さ:" - -#: ../views/form.php:85 -msgid "Stats Tag settings" -msgstr "統計タグ設定" - -#: ../views/form.php:87 -msgid "Display comment count" -msgstr "コメント数を表示する" - -#: ../views/form.php:89 -msgid "Display views" -msgstr "閲覧数を表示する" - -#: ../views/form.php:91 -msgid "Display author" -msgstr "投稿者を表示する" - -#: ../views/form.php:93 -msgid "Display date" -msgstr "日付を表示する" - -#: ../views/form.php:96 -msgid "Date Format" -msgstr "日付フォーマット" - -#: ../views/form.php:98 -#, fuzzy -msgid "Wordpress Date Format" -msgstr "日付フォーマット" - -#: ../views/form.php:105 -msgid "Display category" -msgstr "カテゴリを表示する" - -#: ../views/form.php:109 -msgid "HTML Markup settings" -msgstr "HTMLマークアップの設定" - -#: ../views/form.php:111 -msgid "Use custom HTML Markup" -msgstr "カスタムHTMLマークアップを使う" - -#: ../views/form.php:114 -#, fuzzy -msgid "Before / after title" -msgstr "タイトルの前/後:" - -#: ../views/form.php:117 -#, fuzzy -msgid "Before / after Popular Posts" -msgstr "投稿の前/後:" - -#: ../views/form.php:120 -#, fuzzy -msgid "Post HTML Markup" -msgstr "投稿用HTMLマークアップ:" - -#: ../wordpress-popular-posts.php:269 -msgid "The most Popular Posts on your blog." -msgstr "あなたのブログで最も人気のある投稿。" - -#: ../wordpress-popular-posts.php:410 -msgid "" -"Error: cannot ajaxify Wordpress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" - -#: ../wordpress-popular-posts.php:636 -msgid "Upload" -msgstr "アップロード" - -#: ../wordpress-popular-posts.php:1002 -#, fuzzy, php-format -msgid "" -"Your PHP installation is too old. Wordpress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"お使いのPHPは古すぎます。WordPress Popular Postsが正常に働くには、PHP 5.2.0以" -"上が必須です。お使いのホスティング会社に連絡をとって、PHP 5.2.xかそれ以上に" -"アップグレードするように要望してください。" - -#: ../wordpress-popular-posts.php:1009 -#, fuzzy, php-format -msgid "" -"Your Wordpress version is too old. Wordpress Popular Posts requires at least " -"Wordpress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"お使いのWordPressは古すぎます。WordPress Popular Postsが正常に働くには、バー" -"ジョン2.8以上が必須です。ツール > 更新 でブログをアップデートしてくださ" -"い。" - -#: ../wordpress-popular-posts.php:1034 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" - -#: ../wordpress-popular-posts.php:1094 -msgid "Success! The cache table has been cleared!" -msgstr "成功しました! キャッシュ・テーブルは空になっています!" - -#: ../wordpress-popular-posts.php:1096 -msgid "Error: cache table does not exist." -msgstr "エラー: キャッシュ・テーブルが存在しません。" - -#: ../wordpress-popular-posts.php:1103 -msgid "Success! All data have been cleared!" -msgstr "成功しました! 全てのデータが削除されました!" - -#: ../wordpress-popular-posts.php:1105 -msgid "Error: one or both data tables are missing." -msgstr "エラー: テーブルの1つか、あるいは2つともなくなっています。" - -#: ../wordpress-popular-posts.php:1108 -msgid "Invalid action." -msgstr "不正な操作" - -#: ../wordpress-popular-posts.php:1111 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"申し訳ありませんが、この操作を行う権限がありません。サイト管理者にサポートを" -"お願いしてください。" - -#: ../wordpress-popular-posts.php:1639 -msgid "Sorry. No data so far." -msgstr "申し訳ありませんが、まだデータがありません。" - -#: ../wordpress-popular-posts.php:2111 -#, fuzzy -msgid "1 comment" -msgstr "コメント" - -#: ../wordpress-popular-posts.php:2123 -#, fuzzy -msgid "1 view per day" -msgstr "ビュー(本日)" - -#: ../wordpress-popular-posts.php:2129 -#, fuzzy -msgid "1 view" -msgstr "ビュー" - -#: ../wordpress-popular-posts.php:2141 -#, php-format -msgid "by %s" -msgstr "" - -#: ../wordpress-popular-posts.php:2147 -#, fuzzy, php-format -msgid "posted on %s" -msgstr "投稿日付" - -#: ../wordpress-popular-posts.php:2155 -#, fuzzy, php-format -msgid "under %s" -msgstr "カテゴリ:" - -#~ msgid "" -#~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() " -#~ "and the [wpp] shortcode\"." -#~ msgstr "" -#~ "「wpp_get_mostpopular()が受けつけるパラメータ・リスト」と[wpp]ショートコー" -#~ "ドのところを見てください。" - -#~ msgid "" -#~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] " -#~ "shortcode" -#~ msgstr "" -#~ "wpp_get_mostpopular()と[wpp]ショートコードが受けつけるパラメータ・リスト" - -#~ msgid "" -#~ "These parameters can be used by both the template tag " -#~ "wpp_get_most_popular() and the shortcode [wpp]." -#~ msgstr "" -#~ "これは、wpp_get_mostpopular()テンプレートタグと[wpp]ショートコードで使える" -#~ "パラメータです。" - -#~ msgid "Preview" -#~ msgstr "プレビュー" - -#~ msgid "Excerpt Properties" -#~ msgstr "抜粋の扱い方" - -#~ msgid "Thumbnail settings" -#~ msgstr "サムネール設定" - -#~ msgid "" -#~ "Here you will find a handy group of options to tweak Wordpress Popular " -#~ "Posts." -#~ msgstr "" -#~ "ここでは、WordPress Popular Postsをカスタマイズできるオプションのリストを" -#~ "見ることができます。" - -#, fuzzy -#~ msgid "Popular Posts links behavior" -#~ msgstr "人気投稿リストの書き換え間隔" - -#~ msgid "Views logging behavior" -#~ msgstr "閲覧数を記録するやり方" - -#~ msgid "Wordpress Popular Posts Stylesheet" -#~ msgstr "WordPress Popular Postsのスタイルシート" - -#~ msgid "Data tools" -#~ msgstr "データを扱う道具" - -#~ msgid "Popular posts listing refresh interval" -#~ msgstr "人気投稿リストの書き換え間隔" - -#~ msgid "Frequently Asked Questions" -#~ msgstr "よくある質問" - -#~ msgid "Sets the opening tag for each item on the list" -#~ msgstr "リスト項目の開始タグを設定します。" - -#~ msgid "Sets the closing tag for each item on the list" -#~ msgstr "リスト項目の終了タグを設定します。" - -#~ msgid "" -#~ "If set, this option will allow you to decide the order of the contents " -#~ "within each item on the list." -#~ msgstr "" -#~ "これを設定すると、リスト表示される項目の順序を決めることができます。" - -#~ msgid "" -#~ "If set, you can decide the order of each content inside a single item on " -#~ "the list. For example, setting it to \"{title}: {summary}\" would output " -#~ "something like \"Your Post Title: summary here\". This attribute requires " -#~ "do_pattern to be true." -#~ msgstr "" -#~ "これを設定すると、リスト表示される個別の項目の中で何をどの順序で表示するか" -#~ "を決めることができます。たとえば、\"{title}: {summary}\"とすると、\"投稿タ" -#~ "イトル: サマリ\"という形で表示されます。この属性を使うには、do_patternが" -#~ "trueに設定されていることが必要です。" - -#~ msgid "Available tags" -#~ msgstr "利用できるタグ" - -#~ msgid "Rate it" -#~ msgstr "評価する" - -#~ msgid "on the official Plugin Directory!" -#~ msgstr "公式プラグイン・ディレクトリで!" - -#~ msgid "Do you love this plugin?" -#~ msgstr "このプラグインが大好きですか?" - -#~ msgid "Buy me a beer!" -#~ msgstr "ビールを奢ってください!" - -#~ msgid "comments" -#~ msgstr "コメント" - -#~ msgid "views per day" -#~ msgstr "ビュー(本日)" - -#~ msgid "views" -#~ msgstr "ビュー" - -#~ msgid "by" -#~ msgstr "投稿者:" diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.mo b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.mo deleted file mode 100644 index 1f3dfbd04f8238c8c9f6b3bc1725a0735704ec3a..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.po b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.po deleted file mode 100644 index 8f7c6ec18f8188b906831384ef3fbfb00f4f2b4b..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.po +++ /dev/null @@ -1,1168 +0,0 @@ -# Copyright (C) 2013 Wordpress Popular Posts -# This file is distributed under the same license as the Wordpress Popular Posts package. -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n" -"POT-Creation-Date: 2014-09-23 16:52-0430\n" -"PO-Revision-Date: 2014-09-23 16:52-0430\n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.9\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext;_n:1,2;__ngettext_noop;_n_noop;_x;" -"_nx;_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;" -"esc_html_x;_c;_nc\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: ..\n" -"X-Poedit-SearchPath-1: .\n" - -#: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48 -#: ../views/admin.php:69 -msgid "Settings saved." -msgstr "" - -#: ../views/admin.php:40 -msgid "Please provide the name of your custom field." -msgstr "" - -#: ../views/admin.php:75 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" - -#: ../views/admin.php:90 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" - -#: ../views/admin.php:90 ../views/admin.php:98 ../views/admin.php:106 -msgid "Do you want to continue?" -msgstr "" - -#: ../views/admin.php:98 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" - -#: ../views/admin.php:106 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" - -#: ../views/admin.php:123 -msgid "Stats" -msgstr "" - -#: ../views/admin.php:124 -msgid "Tools" -msgstr "" - -#: ../views/admin.php:125 ../views/admin.php:689 -msgid "Parameters" -msgstr "" - -#: ../views/admin.php:126 -msgid "FAQ" -msgstr "" - -#: ../views/admin.php:127 -msgid "About" -msgstr "" - -#: ../views/admin.php:138 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since WordPress " -"Popular Posts was installed." -msgstr "" - -#: ../views/admin.php:144 -msgid "Order by comments" -msgstr "" - -#: ../views/admin.php:145 -msgid "Order by views" -msgstr "" - -#: ../views/admin.php:146 -msgid "Order by avg. daily views" -msgstr "" - -#: ../views/admin.php:148 -msgid "Post type" -msgstr "" - -#: ../views/admin.php:149 -msgid "Limit" -msgstr "" - -#: ../views/admin.php:150 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: ../views/admin.php:152 ../views/admin.php:242 ../views/admin.php:308 -#: ../views/admin.php:345 -msgid "Apply" -msgstr "" - -#: ../views/admin.php:158 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "" - -#: ../views/admin.php:159 ../views/form.php:27 -msgid "Last 7 days" -msgstr "" - -#: ../views/admin.php:160 ../views/form.php:28 -msgid "Last 30 days" -msgstr "" - -#: ../views/admin.php:161 ../views/form.php:29 -msgid "All-time" -msgstr "" - -#: ../views/admin.php:183 -msgid "Thumbnails" -msgstr "" - -#: ../views/admin.php:188 -msgid "Default thumbnail" -msgstr "" - -#: ../views/admin.php:193 -msgid "Upload thumbnail" -msgstr "" - -#: ../views/admin.php:195 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" - -#: ../views/admin.php:199 -msgid "Pick image from" -msgstr "" - -#: ../views/admin.php:202 -msgid "Featured image" -msgstr "" - -#: ../views/admin.php:203 -msgid "First image on post" -msgstr "" - -#: ../views/admin.php:204 -msgid "Custom field" -msgstr "" - -#: ../views/admin.php:207 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" - -#: ../views/admin.php:211 -msgid "Custom field name" -msgstr "" - -#: ../views/admin.php:217 -msgid "Resize image from Custom field?" -msgstr "" - -#: ../views/admin.php:220 -msgid "No, I will upload my own thumbnail" -msgstr "" - -#: ../views/admin.php:221 -msgid "Yes" -msgstr "" - -#: ../views/admin.php:232 -msgid "Empty image cache" -msgstr "" - -#: ../views/admin.php:233 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" - -#: ../views/admin.php:251 -msgid "Data" -msgstr "" - -#: ../views/admin.php:256 -msgid "Log views from" -msgstr "" - -#: ../views/admin.php:259 -msgid "Visitors only" -msgstr "" - -#: ../views/admin.php:260 -msgid "Logged-in users only" -msgstr "" - -#: ../views/admin.php:261 -msgid "Everyone" -msgstr "" - -#: ../views/admin.php:267 -msgid "Ajaxify widget" -msgstr "" - -#: ../views/admin.php:270 ../views/admin.php:336 -msgid "Disabled" -msgstr "" - -#: ../views/admin.php:271 ../views/admin.php:335 -msgid "Enabled" -msgstr "" - -#: ../views/admin.php:275 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" - -#: ../views/admin.php:279 -msgid "Listing refresh interval" -msgstr "" - -#: ../views/admin.php:282 -msgid "Live" -msgstr "" - -#: ../views/admin.php:283 -msgid "Custom interval" -msgstr "" - -#: ../views/admin.php:287 -msgid "" -"Sets how often the listing should be updated. For most sites the Live option " -"should be fine, however if you are experiencing slowdowns or your blog gets " -"a lot of visitors then you might want to change the refresh rate" -msgstr "" - -#: ../views/admin.php:291 -msgid "Refresh list every" -msgstr "" - -#: ../views/admin.php:295 -msgid "Hour(s)" -msgstr "" - -#: ../views/admin.php:296 -msgid "Day(s)" -msgstr "" - -#: ../views/admin.php:297 -msgid "Week(s)" -msgstr "" - -#: ../views/admin.php:298 -msgid "Month(s)" -msgstr "" - -#: ../views/admin.php:299 -msgid "Year(s)" -msgstr "" - -#: ../views/admin.php:302 -msgid "Really? That long?" -msgstr "" - -#: ../views/admin.php:317 -msgid "Miscellaneous" -msgstr "" - -#: ../views/admin.php:322 -msgid "Open links in" -msgstr "" - -#: ../views/admin.php:325 -msgid "Current window" -msgstr "" - -#: ../views/admin.php:326 -msgid "New tab/window" -msgstr "" - -#: ../views/admin.php:332 -msgid "Use plugin's stylesheet" -msgstr "" - -#: ../views/admin.php:339 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" - -#: ../views/admin.php:356 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" - -#: ../views/admin.php:357 -msgid "Empty cache" -msgstr "" - -#: ../views/admin.php:357 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" - -#: ../views/admin.php:358 -msgid "Clear all data" -msgstr "" - -#: ../views/admin.php:358 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" - -#: ../views/admin.php:365 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: ../views/admin.php:373 -msgid "Parameter" -msgstr "" - -#: ../views/admin.php:374 ../views/admin.php:688 -msgid "What it does " -msgstr "" - -#: ../views/admin.php:375 -msgid "Possible values" -msgstr "" - -#: ../views/admin.php:376 -msgid "Defaults to" -msgstr "" - -#: ../views/admin.php:377 ../views/admin.php:690 -msgid "Example" -msgstr "" - -#: ../views/admin.php:383 -msgid "Sets a heading for the list" -msgstr "" - -#: ../views/admin.php:384 ../views/admin.php:391 ../views/admin.php:398 -#: ../views/admin.php:433 ../views/admin.php:440 ../views/admin.php:447 -#: ../views/admin.php:454 ../views/admin.php:545 ../views/admin.php:559 -#: ../views/admin.php:566 -msgid "Text string" -msgstr "" - -#: ../views/admin.php:385 -msgid "Popular Posts" -msgstr "" - -#: ../views/admin.php:390 -msgid "Set the opening tag for the heading of the list" -msgstr "" - -#: ../views/admin.php:397 -msgid "Set the closing tag for the heading of the list" -msgstr "" - -#: ../views/admin.php:404 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" - -#: ../views/admin.php:405 ../views/admin.php:461 ../views/admin.php:475 -#: ../views/admin.php:496 ../views/admin.php:503 -msgid "Positive integer" -msgstr "" - -#: ../views/admin.php:411 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" - -#: ../views/admin.php:418 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" - -#: ../views/admin.php:425 -msgid "Sets the sorting option of the popular posts" -msgstr "" - -#: ../views/admin.php:426 -msgid "(for average views per day)" -msgstr "" - -#: ../views/admin.php:432 -msgid "Defines the type of posts to show on the listing" -msgstr "" - -#: ../views/admin.php:439 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" - -#: ../views/admin.php:441 ../views/admin.php:448 ../views/admin.php:455 -msgid "None" -msgstr "" - -#: ../views/admin.php:446 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" - -#: ../views/admin.php:453 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" - -#: ../views/admin.php:460 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" - -#: ../views/admin.php:467 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" - -#: ../views/admin.php:474 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" - -#: ../views/admin.php:481 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" - -#: ../views/admin.php:488 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" - -#: ../views/admin.php:495 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" - -#: ../views/admin.php:502 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" - -#: ../views/admin.php:509 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" - -#: ../views/admin.php:516 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" - -#: ../views/admin.php:523 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" - -#: ../views/admin.php:530 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" - -#: ../views/admin.php:537 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" - -#: ../views/admin.php:544 -msgid "Sets the date format" -msgstr "" - -#: ../views/admin.php:551 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "" - -#: ../views/admin.php:558 -msgid "Sets the opening tag for the listing" -msgstr "" - -#: ../views/admin.php:565 -msgid "Sets the closing tag for the listing" -msgstr "" - -#: ../views/admin.php:572 -msgid "Sets the HTML structure of each post" -msgstr "" - -#: ../views/admin.php:573 -msgid "Text string, custom HTML" -msgstr "" - -#: ../views/admin.php:573 -msgid "Available Content Tags" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays thumbnail linked to post/page" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays linked post/page title" -msgstr "" - -#: ../views/admin.php:573 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays the default stats tags" -msgstr "" - -#: ../views/admin.php:573 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" - -#: ../views/admin.php:573 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" - -#: ../views/admin.php:573 -msgid "outputs the URL of the post/page" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays post/page title, no link" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays linked author name, requires stats_author=1" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays linked category name, requires stats_category=1" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays views count only, no text" -msgstr "" - -#: ../views/admin.php:573 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" - -#: ../views/admin.php:585 -msgid "What does \"Title\" do?" -msgstr "" - -#: ../views/admin.php:588 -msgid "" -"It allows you to show a heading for your most popular posts listing. If left " -"empty, no heading will be displayed at all." -msgstr "" - -#: ../views/admin.php:591 -msgid "What is Time Range for?" -msgstr "" - -#: ../views/admin.php:593 -msgid "" -"It will tell WordPress Popular Posts to retrieve all posts with most views / " -"comments within the selected time range." -msgstr "" - -#: ../views/admin.php:596 -msgid "What is \"Sort post by\" for?" -msgstr "" - -#: ../views/admin.php:598 -msgid "" -"It allows you to decide whether to order your popular posts listing by total " -"views, comments, or average views per day." -msgstr "" - -#: ../views/admin.php:601 -msgid "What does \"Display post rating\" do?" -msgstr "" - -#: ../views/admin.php:603 -msgid "" -"If checked, WordPress Popular Posts will show how your readers are rating " -"your most popular posts. This feature requires having WP-PostRatings plugin " -"installed and enabled on your blog for it to work." -msgstr "" - -#: ../views/admin.php:606 -msgid "What does \"Shorten title\" do?" -msgstr "" - -#: ../views/admin.php:608 -msgid "" -"If checked, all posts titles will be shortened to \"n\" characters/words. A " -"new \"Shorten title to\" option will appear so you can set it to whatever " -"you like." -msgstr "" - -#: ../views/admin.php:611 -msgid "What does \"Display post excerpt\" do?" -msgstr "" - -#: ../views/admin.php:613 -msgid "" -"If checked, WordPress Popular Posts will also include a small extract of " -"your posts in the list. Similarly to the previous option, you will be able " -"to decide how long the post excerpt should be." -msgstr "" - -#: ../views/admin.php:616 -msgid "What does \"Keep text format and links\" do?" -msgstr "" - -#: ../views/admin.php:618 -msgid "" -"If checked, and if the Post Excerpt feature is enabled, WordPress Popular " -"Posts will keep the styling tags (eg. bold, italic, etc) that were found in " -"the excerpt. Hyperlinks will remain intact, too." -msgstr "" - -#: ../views/admin.php:621 -msgid "What is \"Post type\" for?" -msgstr "" - -#: ../views/admin.php:623 -msgid "" -"This filter allows you to decide which post types to show on the listing. By " -"default, it will retrieve only posts and pages (which should be fine for " -"most cases)." -msgstr "" - -#: ../views/admin.php:626 -msgid "What is \"Category(ies) ID(s)\" for?" -msgstr "" - -#: ../views/admin.php:628 -msgid "" -"This filter allows you to select which categories should be included or " -"excluded from the listing. A negative sign in front of the category ID " -"number will exclude posts belonging to it from the list, for example. You " -"can specify more than one ID with a comma separated list." -msgstr "" - -#: ../views/admin.php:631 -msgid "What is \"Author(s) ID(s)\" for?" -msgstr "" - -#: ../views/admin.php:633 -msgid "" -"Just like the Category filter, this one lets you filter posts by author ID. " -"You can specify more than one ID with a comma separated list." -msgstr "" - -#: ../views/admin.php:636 -msgid "What does \"Display post thumbnail\" do?" -msgstr "" - -#: ../views/admin.php:638 -msgid "" -"If checked, WordPress Popular Posts will attempt to retrieve the thumbnail " -"of each post. You can set up the source of the thumbnail via Settings - " -"WordPress Popular Posts - Tools." -msgstr "" - -#: ../views/admin.php:641 -msgid "What does \"Display comment count\" do?" -msgstr "" - -#: ../views/admin.php:643 -msgid "" -"If checked, WordPress Popular Posts will display how many comments each " -"popular post has got in the selected Time Range." -msgstr "" - -#: ../views/admin.php:646 -msgid "What does \"Display views\" do?" -msgstr "" - -#: ../views/admin.php:648 -msgid "" -"If checked, WordPress Popular Posts will show how many pageviews a single " -"post has gotten in the selected Time Range." -msgstr "" - -#: ../views/admin.php:651 -msgid "What does \"Display author\" do?" -msgstr "" - -#: ../views/admin.php:653 -msgid "" -"If checked, WordPress Popular Posts will display the name of the author of " -"each entry listed." -msgstr "" - -#: ../views/admin.php:656 -msgid "What does \"Display date\" do?" -msgstr "" - -#: ../views/admin.php:658 -msgid "" -"If checked, WordPress Popular Posts will display the date when each popular " -"posts was published." -msgstr "" - -#: ../views/admin.php:661 -msgid "What does \"Display category\" do?" -msgstr "" - -#: ../views/admin.php:663 -msgid "" -"If checked, WordPress Popular Posts will display the category of each post." -msgstr "" - -#: ../views/admin.php:666 -msgid "What does \"Use custom HTML Markup\" do?" -msgstr "" - -#: ../views/admin.php:668 -msgid "" -"If checked, you will be able to customize the HTML markup of your popular " -"posts listing. For example, you can decide whether to wrap your posts in an " -"unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is " -"for you!" -msgstr "" - -#: ../views/admin.php:671 -msgid "What are \"Content Tags\"?" -msgstr "" - -#: ../views/admin.php:673 -#, php-format -msgid "" -"Content Tags are codes to display a variety of items on your popular posts " -"custom HTML structure. For example, setting it to \"{title}: " -"{summary}\" (without the quotes) would display \"Post title: excerpt of the " -"post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank" -"\">Parameters</a> section." -msgstr "" - -#: ../views/admin.php:676 -msgid "What are \"Template Tags\"?" -msgstr "" - -#: ../views/admin.php:678 -msgid "" -"Template Tags are simply php functions that allow you to perform certain " -"actions. For example, WordPress Popular Posts currently supports two " -"different template tags: wpp_get_mostpopular() and wpp_get_views()." -msgstr "" - -#: ../views/admin.php:681 -msgid "What are the template tags that WordPress Popular Posts supports?" -msgstr "" - -#: ../views/admin.php:683 -msgid "" -"The following are the template tags supported by WordPress Popular Posts" -msgstr "" - -#: ../views/admin.php:687 -msgid "Template tag" -msgstr "" - -#: ../views/admin.php:696 -#, php-format -msgid "" -"Similar to the widget functionality, this tag retrieves the most popular " -"posts on your blog. This function also accepts <a href=\"%1$s\">parameters</" -"a> so you can customize your popular listing, but these are not required." -msgstr "" - -#: ../views/admin.php:697 -#, php-format -msgid "" -"Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete " -"list of attributes." -msgstr "" - -#: ../views/admin.php:702 -msgid "" -"Displays the number of views of a single post. Post ID is required or it " -"will return false." -msgstr "" - -#: ../views/admin.php:703 -msgid "Post ID" -msgstr "" - -#: ../views/admin.php:710 -msgid "What are \"shortcodes\"?" -msgstr "" - -#: ../views/admin.php:712 -#, php-format -msgid "" -"Shortcodes are similar to BB Codes, these allow us to call a php function by " -"simply typing something like [shortcode]. With WordPress Popular Posts, the " -"shortcode [wpp] will let you insert a list of the most popular posts in " -"posts content and pages too! For more information about shortcodes, please " -"visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page." -msgstr "" - -#: ../views/admin.php:721 -#, php-format -msgid "About WordPress Popular Posts %s" -msgstr "" - -#: ../views/admin.php:722 -msgid "This version includes the following changes" -msgstr "" - -#: ../views/admin.php:741 -msgid "Do you like this plugin?" -msgstr "" - -#: ../views/admin.php:748 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" - -#: ../views/admin.php:749 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: ../views/admin.php:753 -msgid "Need help?" -msgstr "" - -#: ../views/admin.php:754 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" - -#: ../views/admin.php:755 -msgid "Let's make this plugin even better!" -msgstr "" - -#: ../views/form.php:2 -msgid "Title" -msgstr "" - -#: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24 -#: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43 -#: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63 -#: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87 -#: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93 -#: ../views/form.php:105 ../views/form.php:111 -msgid "What is this?" -msgstr "" - -#: ../views/form.php:7 -msgid "Show up to" -msgstr "" - -#: ../views/form.php:8 -msgid "posts" -msgstr "" - -#: ../views/form.php:12 -msgid "Sort posts by" -msgstr "" - -#: ../views/form.php:14 -msgid "Comments" -msgstr "" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "" - -#: ../views/form.php:22 -msgid "Filters" -msgstr "" - -#: ../views/form.php:24 -msgid "Time Range" -msgstr "" - -#: ../views/form.php:34 -msgid "Post type(s)" -msgstr "" - -#: ../views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "" - -#: ../views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "" - -#: ../views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "" - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "" - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "" - -#: ../views/form.php:67 -msgid "Excerpt length" -msgstr "" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "" - -#: ../views/form.php:76 -msgid "Width" -msgstr "" - -#: ../views/form.php:77 ../views/form.php:80 -msgid "px" -msgstr "" - -#: ../views/form.php:79 -msgid "Height" -msgstr "" - -#: ../views/form.php:85 -msgid "Stats Tag settings" -msgstr "" - -#: ../views/form.php:87 -msgid "Display comment count" -msgstr "" - -#: ../views/form.php:89 -msgid "Display views" -msgstr "" - -#: ../views/form.php:91 -msgid "Display author" -msgstr "" - -#: ../views/form.php:93 -msgid "Display date" -msgstr "" - -#: ../views/form.php:96 -msgid "Date Format" -msgstr "" - -#: ../views/form.php:98 -msgid "WordPress Date Format" -msgstr "" - -#: ../views/form.php:105 -msgid "Display category" -msgstr "" - -#: ../views/form.php:109 -msgid "HTML Markup settings" -msgstr "" - -#: ../views/form.php:111 -msgid "Use custom HTML Markup" -msgstr "" - -#: ../views/form.php:114 -msgid "Before / after title" -msgstr "" - -#: ../views/form.php:117 -msgid "Before / after Popular Posts" -msgstr "" - -#: ../views/form.php:120 -msgid "Post HTML Markup" -msgstr "" - -#: ../wordpress-popular-posts.php:276 -msgid "The most Popular Posts on your blog." -msgstr "" - -#: ../wordpress-popular-posts.php:433 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" - -#: ../wordpress-popular-posts.php:658 -msgid "Upload" -msgstr "" - -#: ../wordpress-popular-posts.php:1032 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" - -#: ../wordpress-popular-posts.php:1039 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" - -#: ../wordpress-popular-posts.php:1064 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" - -#: ../wordpress-popular-posts.php:1124 -msgid "Success! The cache table has been cleared!" -msgstr "" - -#: ../wordpress-popular-posts.php:1126 -msgid "Error: cache table does not exist." -msgstr "" - -#: ../wordpress-popular-posts.php:1133 -msgid "Success! All data have been cleared!" -msgstr "" - -#: ../wordpress-popular-posts.php:1135 -msgid "Error: one or both data tables are missing." -msgstr "" - -#: ../wordpress-popular-posts.php:1138 ../wordpress-popular-posts.php:1176 -msgid "Invalid action." -msgstr "" - -#: ../wordpress-popular-posts.php:1141 ../wordpress-popular-posts.php:1179 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" - -#: ../wordpress-popular-posts.php:1171 -msgid "Success! All files have been deleted!" -msgstr "" - -#: ../wordpress-popular-posts.php:1173 -msgid "The thumbnail cache is already empty!" -msgstr "" - -#: ../wordpress-popular-posts.php:1696 -msgid "Sorry. No data so far." -msgstr "" - -#: ../wordpress-popular-posts.php:2156 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2168 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2174 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2186 -#, php-format -msgid "by %s" -msgstr "" - -#: ../wordpress-popular-posts.php:2192 -#, php-format -msgid "posted on %s" -msgstr "" - -#: ../wordpress-popular-posts.php:2200 -#, php-format -msgid "under %s" -msgstr "" diff --git a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.pot b/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.pot deleted file mode 100644 index 142d314ef1bd8396c6e2f694668effe7c6809291..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/lang/wordpress-popular-posts.pot +++ /dev/null @@ -1,980 +0,0 @@ -# Copyright (C) 2014 Wordpress Popular Posts -# This file is distributed under the same license as the Wordpress Popular Posts package. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Wordpress Popular Posts\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n" -"POT-Creation-Date: 2016-01-14 14:06-0430\n" -"PO-Revision-Date: 2015-04-24 13:30-0430\n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.6\n" -"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;" -"esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../views/admin.php:28 ../views/admin.php:43 ../views/admin.php:63 -#: ../views/admin.php:99 -msgid "Settings saved." -msgstr "" - -#: ../views/admin.php:54 -msgid "Please provide the name of your custom field." -msgstr "" - -#: ../views/admin.php:107 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin update. " -"In order to prevent this from happening, please copy the wpp.css file (located at wp-" -"content/plugins/wordpress-popular-posts/style) into your theme's directory" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache table and " -"cannot be undone." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:122 ../views/admin.php:154 ../views/admin.php:186 -msgid "Do you want to continue?" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:128 -msgid "Success! The cache table has been cleared!" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:132 -msgid "Error: cache table does not exist." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:136 ../views/admin.php:144 ../views/admin.php:168 -#: ../views/admin.php:176 ../views/admin.php:200 ../views/admin.php:208 -msgid "Invalid action." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:140 ../views/admin.php:172 ../views/admin.php:204 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the site " -"administrator for support." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:154 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' data tables " -"and cannot be undone." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:160 -msgid "Success! All data have been cleared!" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:164 -msgid "Error: one or both data tables are missing." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:186 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:192 -msgid "Success! All files have been deleted!" -msgstr "" - -#. translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) -#: ../views/admin.php:196 -msgid "The thumbnail cache is already empty!" -msgstr "" - -#: ../views/admin.php:244 -msgid "Stats" -msgstr "" - -#: ../views/admin.php:245 -msgid "Tools" -msgstr "" - -#: ../views/admin.php:246 -msgid "Parameters" -msgstr "" - -#: ../views/admin.php:247 -msgid "About" -msgstr "" - -#: ../views/admin.php:258 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in the last 24 " -"hours, this week, last 30 days or all time since WordPress Popular Posts was installed." -msgstr "" - -#: ../views/admin.php:264 -msgid "Order by comments" -msgstr "" - -#: ../views/admin.php:265 -msgid "Order by views" -msgstr "" - -#: ../views/admin.php:266 -msgid "Order by avg. daily views" -msgstr "" - -#: ../views/admin.php:268 -msgid "Post type" -msgstr "" - -#: ../views/admin.php:269 -msgid "Limit" -msgstr "" - -#: ../views/admin.php:271 ../views/admin.php:379 ../views/admin.php:483 -#: ../views/admin.php:522 -msgid "Apply" -msgstr "" - -#: ../views/admin.php:274 ../views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: ../views/admin.php:283 ../views/form.php:26 -msgid "Last 24 hours" -msgstr "" - -#: ../views/admin.php:284 ../views/form.php:27 -msgid "Last 7 days" -msgstr "" - -#: ../views/admin.php:285 ../views/form.php:28 -msgid "Last 30 days" -msgstr "" - -#: ../views/admin.php:286 ../views/form.php:29 -msgid "All-time" -msgstr "" - -#: ../views/admin.php:308 -msgid "Thumbnails" -msgstr "" - -#: ../views/admin.php:313 -msgid "Default thumbnail" -msgstr "" - -#: ../views/admin.php:318 -msgid "Upload thumbnail" -msgstr "" - -#: ../views/admin.php:320 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. After it's " -"done, hit on Apply to save changes" -msgstr "" - -#: ../views/admin.php:324 -msgid "Pick image from" -msgstr "" - -#: ../views/admin.php:327 -msgid "Featured image" -msgstr "" - -#: ../views/admin.php:328 -msgid "First image on post" -msgstr "" - -#: ../views/admin.php:329 -msgid "First attachment" -msgstr "" - -#: ../views/admin.php:330 -msgid "Custom field" -msgstr "" - -#: ../views/admin.php:333 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" - -#: ../views/admin.php:337 -msgid "Custom field name" -msgstr "" - -#: ../views/admin.php:343 -msgid "Resize image from Custom field?" -msgstr "" - -#: ../views/admin.php:346 -msgid "No, I will upload my own thumbnail" -msgstr "" - -#: ../views/admin.php:347 -msgid "Yes" -msgstr "" - -#: ../views/admin.php:352 -msgid "Responsive support" -msgstr "" - -#: ../views/admin.php:355 ../views/admin.php:425 ../views/admin.php:465 -#: ../views/admin.php:512 -msgid "Enabled" -msgstr "" - -#: ../views/admin.php:356 ../views/admin.php:409 ../views/admin.php:424 -#: ../views/admin.php:464 ../views/admin.php:513 -msgid "Disabled" -msgstr "" - -#: ../views/admin.php:359 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes out of " -"thumbnails' image tags" -msgstr "" - -#: ../views/admin.php:369 -msgid "Empty image cache" -msgstr "" - -#: ../views/admin.php:370 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" - -#: ../views/admin.php:390 -msgid "Data" -msgstr "" - -#: ../views/admin.php:395 -msgid "Log views from" -msgstr "" - -#: ../views/admin.php:398 -msgid "Visitors only" -msgstr "" - -#: ../views/admin.php:399 -msgid "Logged-in users only" -msgstr "" - -#: ../views/admin.php:400 -msgid "Everyone" -msgstr "" - -#: ../views/admin.php:406 -msgid "Log limit" -msgstr "" - -#: ../views/admin.php:410 -msgid "Keep data for" -msgstr "" - -#: ../views/admin.php:413 -msgid "day(s)" -msgstr "" - -#: ../views/admin.php:415 -msgid "" -"Data from entries that haven't been viewed within the specified time frame will be " -"automatically discarded" -msgstr "" - -#: ../views/admin.php:421 -msgid "Ajaxify widget" -msgstr "" - -#: ../views/admin.php:429 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this feature will " -"keep the popular list from being cached by it" -msgstr "" - -#: ../views/admin.php:433 -msgid "WPP Cache Expiry Policy" -msgstr "" - -#: ../views/admin.php:433 ../views/admin.php:461 ../views/form.php:2 ../views/form.php:34 -#: ../views/form.php:40 ../views/form.php:43 ../views/form.php:52 ../views/form.php:125 -msgid "What is this?" -msgstr "" - -#: ../views/admin.php:436 -msgid "Never cache" -msgstr "" - -#: ../views/admin.php:437 -msgid "Enable caching" -msgstr "" - -#: ../views/admin.php:441 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a specified " -"amount of time. Recommended for large / high traffic sites" -msgstr "" - -#: ../views/admin.php:445 -msgid "Refresh cache every" -msgstr "" - -#: ../views/admin.php:449 -msgid "Minute(s)" -msgstr "" - -#: ../views/admin.php:450 -msgid "Hour(s)" -msgstr "" - -#: ../views/admin.php:451 -msgid "Day(s)" -msgstr "" - -#: ../views/admin.php:452 -msgid "Week(s)" -msgstr "" - -#: ../views/admin.php:453 -msgid "Month(s)" -msgstr "" - -#: ../views/admin.php:454 -msgid "Year(s)" -msgstr "" - -#: ../views/admin.php:457 -msgid "Really? That long?" -msgstr "" - -#: ../views/admin.php:461 -msgid "Data Sampling" -msgstr "" - -#: ../views/admin.php:469 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit your site " -"receives. For small / medium sites this is generally OK, but on large / high traffic " -"sites the constant writing to the database may have an impact on performance. With <a " -"href=\"%1$s\" target=\"_blank\">data sampling</a>, WordPress Popular Posts will store " -"only a subset of your traffic and report on the tendencies detected in that sample set " -"(for more, <a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" - -#: ../views/admin.php:473 -msgid "Sample Rate" -msgstr "" - -#: ../views/admin.php:477 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For lower traffic " -"sites, you should lower the value" -msgstr "" - -#: ../views/admin.php:494 -msgid "Miscellaneous" -msgstr "" - -#: ../views/admin.php:499 -msgid "Open links in" -msgstr "" - -#: ../views/admin.php:502 -msgid "Current window" -msgstr "" - -#: ../views/admin.php:503 -msgid "New tab/window" -msgstr "" - -#: ../views/admin.php:509 -msgid "Use plugin's stylesheet" -msgstr "" - -#: ../views/admin.php:516 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can use to style " -"your popular posts listing. If you wish to use your own stylesheet or do not want it " -"to have it included in the header section of your site, use this." -msgstr "" - -#: ../views/admin.php:535 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for storing the " -"most popular entries on a daily basis (from now on, \"cache\"), and another one to " -"keep the All-time data (from now on, \"historical data\" or just \"data\"). If for " -"some reason you need to clear the cache table, or even both historical and cache " -"tables, please use the buttons below to do so." -msgstr "" - -#: ../views/admin.php:536 -msgid "Empty cache" -msgstr "" - -#: ../views/admin.php:536 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" - -#: ../views/admin.php:537 -msgid "Clear all data" -msgstr "" - -#: ../views/admin.php:537 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" - -#: ../views/admin.php:544 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when using " -"either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or the <a href=" -"\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: ../views/admin.php:552 -msgid "Parameter" -msgstr "" - -#: ../views/admin.php:553 -msgid "What it does " -msgstr "" - -#: ../views/admin.php:554 -msgid "Possible values" -msgstr "" - -#: ../views/admin.php:555 -msgid "Defaults to" -msgstr "" - -#: ../views/admin.php:556 -msgid "Example" -msgstr "" - -#: ../views/admin.php:562 -msgid "Sets a heading for the list" -msgstr "" - -#: ../views/admin.php:563 ../views/admin.php:570 ../views/admin.php:577 -#: ../views/admin.php:612 ../views/admin.php:619 ../views/admin.php:626 -#: ../views/admin.php:633 ../views/admin.php:724 ../views/admin.php:738 -#: ../views/admin.php:745 -msgid "Text string" -msgstr "" - -#: ../views/admin.php:564 ../views/admin.php:620 ../views/admin.php:627 -#: ../views/admin.php:634 -msgid "None" -msgstr "" - -#: ../views/admin.php:569 -msgid "Set the opening tag for the heading of the list" -msgstr "" - -#: ../views/admin.php:576 -msgid "Set the closing tag for the heading of the list" -msgstr "" - -#: ../views/admin.php:583 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" - -#: ../views/admin.php:584 ../views/admin.php:640 ../views/admin.php:654 -#: ../views/admin.php:675 ../views/admin.php:682 -msgid "Positive integer" -msgstr "" - -#: ../views/admin.php:590 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within the time " -"range specified by you" -msgstr "" - -#: ../views/admin.php:597 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published within " -"the time range specified by you" -msgstr "" - -#: ../views/admin.php:604 -msgid "Sets the sorting option of the popular posts" -msgstr "" - -#: ../views/admin.php:605 -msgid "(for average views per day)" -msgstr "" - -#: ../views/admin.php:611 -msgid "Defines the type of posts to show on the listing" -msgstr "" - -#: ../views/admin.php:618 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the " -"listing." -msgstr "" - -#: ../views/admin.php:625 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the specified " -"category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded " -"instead." -msgstr "" - -#: ../views/admin.php:632 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by specified " -"author(s) ID(s)." -msgstr "" - -#: ../views/admin.php:639 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" characters " -"whenever possible" -msgstr "" - -#: ../views/admin.php:646 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words " -"instead of characters" -msgstr "" - -#: ../views/admin.php:653 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters " -"long from the content of each post listed as popular" -msgstr "" - -#: ../views/admin.php:660 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) " -"and hyperlinks found in the excerpt" -msgstr "" - -#: ../views/admin.php:667 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead " -"of characters" -msgstr "" - -#: ../views/admin.php:674 -msgid "" -"If set, and if your current server configuration allows it, you will be able to " -"display thumbnails of your posts. This attribute sets the width for thumbnails" -msgstr "" - -#: ../views/admin.php:681 -msgid "" -"If set, and if your current server configuration allows it, you will be able to " -"display thumbnails of your posts. This attribute sets the height for thumbnails" -msgstr "" - -#: ../views/admin.php:688 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your blog, " -"WordPress Popular Posts will show how your visitors are rating your entries" -msgstr "" - -#: ../views/admin.php:695 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular post has got " -"until now" -msgstr "" - -#: ../views/admin.php:702 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post has got " -"since it was installed" -msgstr "" - -#: ../views/admin.php:709 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on the list" -msgstr "" - -#: ../views/admin.php:716 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post on the " -"list was published" -msgstr "" - -#: ../views/admin.php:723 -msgid "Sets the date format" -msgstr "" - -#: ../views/admin.php:730 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "" - -#: ../views/admin.php:737 -msgid "Sets the opening tag for the listing" -msgstr "" - -#: ../views/admin.php:744 -msgid "Sets the closing tag for the listing" -msgstr "" - -#: ../views/admin.php:751 -msgid "Sets the HTML structure of each post" -msgstr "" - -#: ../views/admin.php:752 -msgid "Text string, custom HTML" -msgstr "" - -#: ../views/admin.php:752 -msgid "Available Content Tags" -msgstr "" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail linked to post/page, requires thumbnail_width & thumbnail_height" -msgstr "" - -#: ../views/admin.php:752 -msgid "" -"displays thumbnail image without linking to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays linked post/page title" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays the default stats tags" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays post/page current rating, requires WP-PostRatings installed and enabled" -msgstr "" - -#: ../views/admin.php:752 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings installed and " -"enabled" -msgstr "" - -#: ../views/admin.php:752 -msgid "outputs the URL of the post/page" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays post/page title, no link" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays linked author name, requires stats_author=1" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays linked category name, requires stats_category=1" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays views count only, no text" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" - -#: ../views/admin.php:752 -msgid "displays post/page date, requires stats_date=1" -msgstr "" - -#: ../views/admin.php:765 -#, php-format -msgid "About WordPress Popular Posts %s" -msgstr "" - -#: ../views/admin.php:766 -msgid "This version includes the following changes" -msgstr "" - -#: ../views/admin.php:778 -msgid "Do you like this plugin?" -msgstr "" - -#: ../views/admin.php:785 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress community!" -msgstr "" - -#: ../views/admin.php:786 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: ../views/admin.php:792 -msgid "Need help?" -msgstr "" - -#: ../views/admin.php:793 -#, php-format -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions and " -"feedback." -msgstr "" - -#: ../views/admin.php:794 -msgid "Let's make this plugin even better!" -msgstr "" - -#: ../views/form.php:2 -msgid "Title" -msgstr "" - -#: ../views/form.php:7 -msgid "Show up to" -msgstr "" - -#: ../views/form.php:8 -msgid "posts" -msgstr "" - -#: ../views/form.php:12 -msgid "Sort posts by" -msgstr "" - -#: ../views/form.php:14 -msgid "Comments" -msgstr "" - -#: ../views/form.php:15 -msgid "Total views" -msgstr "" - -#: ../views/form.php:16 -msgid "Avg. daily views" -msgstr "" - -#: ../views/form.php:22 -msgid "Filters" -msgstr "" - -#: ../views/form.php:24 -msgid "Time Range" -msgstr "" - -#: ../views/form.php:34 -msgid "Post type(s)" -msgstr "" - -#: ../views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "" - -#: ../views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "" - -#: ../views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "" - -#: ../views/form.php:48 -msgid "Posts settings" -msgstr "" - -#: ../views/form.php:52 -msgid "Display post rating" -msgstr "" - -#: ../views/form.php:55 -msgid "Shorten title" -msgstr "" - -#: ../views/form.php:58 -msgid "Shorten title to" -msgstr "" - -#: ../views/form.php:59 ../views/form.php:69 -msgid "characters" -msgstr "" - -#: ../views/form.php:60 ../views/form.php:70 -msgid "words" -msgstr "" - -#: ../views/form.php:63 -msgid "Display post excerpt" -msgstr "" - -#: ../views/form.php:66 -msgid "Keep text format and links" -msgstr "" - -#: ../views/form.php:67 -msgid "Excerpt length" -msgstr "" - -#: ../views/form.php:73 -msgid "Display post thumbnail" -msgstr "" - -#: ../views/form.php:76 -msgid "Use predefined size" -msgstr "" - -#: ../views/form.php:88 -msgid "Set size manually" -msgstr "" - -#: ../views/form.php:90 -msgid "Width" -msgstr "" - -#: ../views/form.php:93 -msgid "Height" -msgstr "" - -#: ../views/form.php:99 -msgid "Stats Tag settings" -msgstr "" - -#: ../views/form.php:101 -msgid "Display comment count" -msgstr "" - -#: ../views/form.php:103 -msgid "Display views" -msgstr "" - -#: ../views/form.php:105 -msgid "Display author" -msgstr "" - -#: ../views/form.php:107 -msgid "Display date" -msgstr "" - -#: ../views/form.php:110 -msgid "Date Format" -msgstr "" - -#: ../views/form.php:112 -msgid "WordPress Date Format" -msgstr "" - -#: ../views/form.php:119 -msgid "Display category" -msgstr "" - -#: ../views/form.php:123 -msgid "HTML Markup settings" -msgstr "" - -#: ../views/form.php:125 -msgid "Use custom HTML Markup" -msgstr "" - -#: ../views/form.php:128 -msgid "Before / after title" -msgstr "" - -#: ../views/form.php:131 -msgid "Before / after Popular Posts" -msgstr "" - -#: ../views/form.php:134 -msgid "Post HTML Markup" -msgstr "" - -#: ../wordpress-popular-posts.php:304 -msgid "The most Popular Posts on your blog." -msgstr "" - -#: ../wordpress-popular-posts.php:482 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</" -"em> attribute on before_widget (see <a href=\"http://codex.wordpress.org/" -"Function_Reference/register_sidebar\" target=\"_blank\" rel=\"nofollow" -"\">register_sidebar</a> for more)." -msgstr "" - -#: ../wordpress-popular-posts.php:726 -msgid "Upload" -msgstr "" - -#: ../wordpress-popular-posts.php:1099 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least PHP " -"version %1$s to function correctly. Please contact your hosting provider and ask them " -"to upgrade PHP to %1$s or higher." -msgstr "" - -#: ../wordpress-popular-posts.php:1106 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least WordPress " -"version %1$s to function correctly. Please update your blog via Dashboard > Update." -msgstr "" - -#: ../wordpress-popular-posts.php:1131 -#, php-format -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</strong>.</" -"p></div>" -msgstr "" - -#: ../wordpress-popular-posts.php:1826 -msgid "Sorry. No data so far." -msgstr "" - -#: ../wordpress-popular-posts.php:2353 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2365 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2371 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "" -msgstr[1] "" - -#: ../wordpress-popular-posts.php:2394 -#, php-format -msgid "by %s" -msgstr "" - -#: ../wordpress-popular-posts.php:2400 -#, php-format -msgid "posted on %s" -msgstr "" - -#: ../wordpress-popular-posts.php:2408 -#, php-format -msgid "under %s" -msgstr "" diff --git a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.mo b/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.mo deleted file mode 100644 index 60f2a2dfa55fb52dcc909990e8f3ad20f450dd1d..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.po b/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.po deleted file mode 100644 index b5229e48316a8f8360b9e47d3a8a1563e235aec5..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_ES.po +++ /dev/null @@ -1,1334 +0,0 @@ -# Copyright (C) 2014 Wordpress Popular Posts -# This file is distributed under the same license as the Wordpress Popular Posts package. -msgid "" -msgstr "" -"Project-Id-Version: WordPress Popular Posts\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n" -"POT-Creation-Date: 2017-10-23 17:44-0400\n" -"PO-Revision-Date: 2017-10-23 17:47-0400\n" -"Last-Translator: \n" -"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" -"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;" -"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;" -"esc_html_x;_c;_nc;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../admin/class-wordpress-popular-posts-admin.php:221 -msgid "Upload" -msgstr "Subir" - -#: ../admin/class-wordpress-popular-posts-admin.php:238 -msgid "Overview" -msgstr "General" - -#: ../admin/class-wordpress-popular-posts-admin.php:239 -msgid "" -"Welcome to WordPress Popular Posts' Dashboard! In this screen you will find " -"statistics on what's popular on your site, tools to further tweak WPP to " -"your needs, and more!" -msgstr "" -"¡Bienvenido al Dashboard de WordPress Popular Posts! En esta pantalla " -"encontrarás estadísticas de lo más popular en tu sitio, " -"herramientas para configurar WPP a tu gusto, ¡y mucho más!" - -#: ../admin/class-wordpress-popular-posts-admin.php:245 -msgid "Like this plugin?" -msgstr "¿Te gusta este plugin?" - -#: ../admin/class-wordpress-popular-posts-admin.php:247 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" -"¡Cada donación me motiva a seguir publicando cosas gratuitas " -"para la comunidad de WordPress!" - -#: ../admin/class-wordpress-popular-posts-admin.php:254 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" -"¡Puedes <a href=\"%s\" target=\"_blank\">dejar una reseña</a> " -"también!" - -#: ../admin/class-wordpress-popular-posts-admin.php:263 -#, php-format -msgid "" -"<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s" -"\">Documentation</a></li><li><a href=\"%2$s\">Support</a></li></ul>" -msgstr "" -"<p><strong>Para más información:</strong></p><ul><li><a href=" -"\"%1$s\">Documentación</a></li><li><a href=\"%2$s\">Soporte</a></li></" -"ul>" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:752 -#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:720 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "1 vista" -msgstr[1] "%s vistas" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:807 -#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:701 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "1 comentario" -msgstr[1] "%s comentarios" - -#: ../admin/class-wordpress-popular-posts-admin.php:665 -#: ../includes/widget-form.php:17 -msgid "Comments" -msgstr "Comentarios" - -#: ../admin/class-wordpress-popular-posts-admin.php:669 -msgid "Views" -msgstr "Vistas" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 -#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459 -msgid "View" -msgstr "Vista" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 -#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459 -msgid "Edit" -msgstr "Editar" - -#: ../admin/class-wordpress-popular-posts-admin.php:764 -#: ../admin/class-wordpress-popular-posts-admin.php:819 -#: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470 -msgid "" -"Looks like traffic to your site is a little light right now. <br />Spread " -"the word and come back later!" -msgstr "" -"Parece que el tráfico hacia tu sitio web está un poco ligero. " -"<br />¡Haz un poco de promoción y regresa luego!" - -#: ../admin/class-wordpress-popular-posts-admin.php:887 -msgid "Settings" -msgstr "Configuración" - -#: ../admin/class-wordpress-popular-posts-admin.php:1261 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"Tu versión de PHP es muy antigua. El plugin WordPress Popular Posts " -"requiere al menos PHP version %1$s para funcionar correctamente. Por favor " -"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o " -"mejor." - -#: ../admin/class-wordpress-popular-posts-admin.php:1268 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"Tu versión de WordPress es muy antigua. El plugin WordPress Popular " -"Posts requiere al menos la versión %1$s para funcionar correctamente. " -"Por favor actualiza tu blog via Escritorio > Actualizaciones." - -#: ../admin/class-wordpress-popular-posts-admin.php:1293 -#, php-format -msgid "" -"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been " -"<strong>deactivated</strong>.</p></div>" -msgstr "" -"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido " -"<strong>desactivado</strong>.</p></div>" - -#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255 -msgid "Stats" -msgstr "Estadísticas" - -#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256 -msgid "Tools" -msgstr "Herramientas" - -#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257 -msgid "Parameters" -msgstr "Parámetros" - -#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48 -#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113 -msgid "Settings saved." -msgstr "Configuración guardada." - -#: ../admin/partials/admin.php:62 -msgid "Please provide the name of your custom field." -msgstr "Por favor indica el nombre de tu custom field." - -#: ../admin/partials/admin.php:121 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" -"Cualquier cambio hecho a la hoja de estilos por defecto de WPP se " -"perderá cada vez que el plugin se actualize. Para evitar esto, por " -"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-" -"popular-posts/style) a la carpeta de tu tema actual" - -#: ../admin/partials/admin.php:136 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de " -"WordPress Popular Posts y no se puede deshacer." - -#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175 -#: ../admin/partials/admin.php:214 -msgid "Do you want to continue?" -msgstr "\\277Deseas continuar?" - -#: ../admin/partials/admin.php:148 -msgid "Success! The cache table has been cleared!" -msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!" - -#: ../admin/partials/admin.php:152 -msgid "Error: cache table does not exist." -msgstr "Error: la tabla cach\\351 no existe." - -#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164 -#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203 -#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241 -msgid "Invalid action." -msgstr "Acci\\363n inv\\311lida." - -#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199 -#: ../admin/partials/admin.php:237 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor " -"contacta al administrador del sitio." - -#: ../admin/partials/admin.php:175 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las " -"tablas de WordPress Popular Posts y no se puede deshacer." - -#: ../admin/partials/admin.php:187 -msgid "Success! All data have been cleared!" -msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!" - -#: ../admin/partials/admin.php:191 -msgid "Error: one or both data tables are missing." -msgstr "Error: una o ambas tablas de datos no existen." - -#: ../admin/partials/admin.php:214 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se " -"puede deshacer." - -#: ../admin/partials/admin.php:225 -msgid "Success! All files have been deleted!" -msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!" - -#: ../admin/partials/admin.php:229 -msgid "The thumbnail cache is already empty!" -msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!" - -#: ../admin/partials/admin.php:254 -msgid "Menu" -msgstr "Menú" - -#: ../admin/partials/admin.php:282 -msgid "Post type" -msgstr "Post type" - -#: ../admin/partials/admin.php:285 -msgid "Limit" -msgstr "Límite" - -#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48 -msgid "Display only posts published within the selected Time Range" -msgstr "" -"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado" - -#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332 -#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655 -#: ../admin/partials/admin.php:694 -msgid "Apply" -msgstr "Aplicar" - -#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335 -msgid "Cancel" -msgstr "Cancelar" - -#: ../admin/partials/admin.php:308 -msgid "Custom Time Range" -msgstr "Rango de Tiempo Personalizado" - -#: ../admin/partials/admin.php:309 -msgid "Date Range" -msgstr "Rango de Fechas" - -#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621 -#: ../includes/widget-form.php:41 -msgid "Minute(s)" -msgstr "Minuto(s)" - -#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622 -#: ../includes/widget-form.php:42 -msgid "Hour(s)" -msgstr "Hora(s)" - -#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623 -#: ../includes/widget-form.php:43 -msgid "Day(s)" -msgstr "Día(s)" - -#: ../admin/partials/admin.php:325 -msgid "Select a date..." -msgstr "Selecciona una fecha..." - -#: ../admin/partials/admin.php:354 -#, php-format -msgid "" -"Err... A nice little chart is supposed to be here, instead you are seeing " -"this because your browser is too old. <br /> Please <a href=\"%s\" target=" -"\"_blank\">get a better browser</a>." -msgstr "" -"Ehh... se supone que aquí saldría un gráfico, pero en " -"vez de eso estás viendo ésto porque tu navegador es demasiado " -"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor " -"navegador</a>." - -#: ../admin/partials/admin.php:480 -msgid "Thumbnails" -msgstr "Miniaturas" - -#: ../admin/partials/admin.php:485 -msgid "Default thumbnail" -msgstr "Miniatura por defecto" - -#: ../admin/partials/admin.php:490 -msgid "Upload thumbnail" -msgstr "Subir miniatura" - -#: ../admin/partials/admin.php:492 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo " -"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios" - -#: ../admin/partials/admin.php:496 -msgid "Pick image from" -msgstr "Seleccionar imagen desde" - -#: ../admin/partials/admin.php:499 -msgid "Featured image" -msgstr "\tImagen destacada" - -#: ../admin/partials/admin.php:500 -msgid "First image on post" -msgstr "Primera imagen de la entrada" - -#: ../admin/partials/admin.php:501 -msgid "First attachment" -msgstr "Primer adjunto" - -#: ../admin/partials/admin.php:502 -msgid "Custom field" -msgstr "Custom field" - -#: ../admin/partials/admin.php:505 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" -"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas" - -#: ../admin/partials/admin.php:509 -msgid "Custom field name" -msgstr "Nombre del custom field" - -#: ../admin/partials/admin.php:515 -msgid "Resize image from Custom field?" -msgstr "¡Ajustar la imagen del Custom field?" - -#: ../admin/partials/admin.php:518 -msgid "No, I will upload my own thumbnail" -msgstr "No, subiré mi propia miniatura" - -#: ../admin/partials/admin.php:519 -msgid "Yes" -msgstr "Sí" - -#: ../admin/partials/admin.php:524 -msgid "Responsive support" -msgstr "Soporte Responsive" - -#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597 -#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684 -msgid "Enabled" -msgstr "Habilitado" - -#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581 -#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636 -#: ../admin/partials/admin.php:685 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../admin/partials/admin.php:531 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" -"Si se activa, WordPress Popular Posts quitará los atributos height y " -"width de las etiquetas image de las miniaturas" - -#: ../admin/partials/admin.php:541 -msgid "Empty image cache" -msgstr "Vaciar el caché de imágenes" - -#: ../admin/partials/admin.php:542 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" -"Utiliza este botón para vaciar el caché de miniaturas de WPP" - -#: ../admin/partials/admin.php:562 -msgid "Data" -msgstr "Datos" - -#: ../admin/partials/admin.php:567 -msgid "Log views from" -msgstr "Registrar vistas de" - -#: ../admin/partials/admin.php:570 -msgid "Visitors only" -msgstr "Sólo visitantes" - -#: ../admin/partials/admin.php:571 -msgid "Logged-in users only" -msgstr "Sólo usuarios conectados" - -#: ../admin/partials/admin.php:572 -msgid "Everyone" -msgstr "Todos" - -#: ../admin/partials/admin.php:578 -msgid "Log limit" -msgstr "Límite del registro" - -#: ../admin/partials/admin.php:582 -msgid "Keep data for" -msgstr "Guardar datos por" - -#: ../admin/partials/admin.php:585 -msgid "day(s)" -msgstr "día(s)" - -#: ../admin/partials/admin.php:587 -msgid "" -"Data older than the specified time frame will be automatically discarded" -msgstr "" -"La data que sea más antigua que el tiempo especificado serán " -"automáticamente descartada" - -#: ../admin/partials/admin.php:593 -msgid "Ajaxify widget" -msgstr "Usar Ajax con el widget" - -#: ../admin/partials/admin.php:601 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"Si estás utilizando un plugin de cacheo como WP Super Cache, " -"habilitar esta característica evitará que la lista de entradas " -"populares sea guardada en caché" - -#: ../admin/partials/admin.php:605 -msgid "WPP Cache Expiry Policy" -msgstr "WPP Política de Expiración del Cache" - -#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633 -#: ../includes/widget-form.php:3 ../includes/widget-form.php:50 -#: ../includes/widget-form.php:56 ../includes/widget-form.php:75 -#: ../includes/widget-form.php:85 ../includes/widget-form.php:177 -msgid "What is this?" -msgstr "¿Qué es ésto?" - -#: ../admin/partials/admin.php:608 -msgid "Never cache" -msgstr "Nunca almacenar en caché" - -#: ../admin/partials/admin.php:609 -msgid "Enable caching" -msgstr "Habilitar caché" - -#: ../admin/partials/admin.php:613 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" -"Configura lel tiempo de expiración del cache de WPP. WPP puede " -"almacenar en caché el listado de entradas populares por una cantidad " -"de tiempo especificada. Recomendado para sitios web grandes / de alto " -"tráfico" - -#: ../admin/partials/admin.php:617 -msgid "Refresh cache every" -msgstr "Refrescar el caché cada" - -#: ../admin/partials/admin.php:624 -msgid "Week(s)" -msgstr "Semana(s)" - -#: ../admin/partials/admin.php:625 -msgid "Month(s)" -msgstr "Mes(es)" - -#: ../admin/partials/admin.php:626 -msgid "Year(s)" -msgstr "Año(s)" - -#: ../admin/partials/admin.php:629 -msgid "Really? That long?" -msgstr "¿En serio? ¿Tanto tiempo?" - -#: ../admin/partials/admin.php:633 -msgid "Data Sampling" -msgstr "Sampleo de Datos" - -#: ../admin/partials/admin.php:641 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" -"Por defecto, WordPress Popular Posts almacena en la base de datos todas y " -"cada una de las visitas que recibe tu sitio. Para sitios pequeños / " -"medianos esto generalmente está bien, pero en sitios grandes / de " -"mucho tráfico la escritura constante en la base de datos pudiese " -"causar un impacto en su rendimiento. Con <a href=\"%1$s\" target=\"_blank" -"\">data sampling</a>, WordPress Popular Posts almacenará sólo " -"un subconjunto de tu tráfico y reportará sobre las tendencias " -"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" " -"target=\"_blank\">por favor leer acá</a>)" - -#: ../admin/partials/admin.php:645 -msgid "Sample Rate" -msgstr "Rata de Sampleo" - -#: ../admin/partials/admin.php:649 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" -"Se recomienda una rata de sampleo de %d para sitios grandes / de alto " -"tráfico. Para sitios con menos tráfico, deberías " -"disminuir el valor" - -#: ../admin/partials/admin.php:666 -msgid "Miscellaneous" -msgstr "Misceláneos" - -#: ../admin/partials/admin.php:671 -msgid "Open links in" -msgstr "Abrir enlaces en" - -#: ../admin/partials/admin.php:674 -msgid "Current window" -msgstr "Ventana actual" - -#: ../admin/partials/admin.php:675 -msgid "New tab/window" -msgstr "Nueva pestaña/ventana" - -#: ../admin/partials/admin.php:681 -msgid "Use plugin's stylesheet" -msgstr "Utilizar la hoja de estilos del plugin" - -#: ../admin/partials/admin.php:688 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que " -"puedes utilizar para darle estilos a tu listado de entradas populares. Si " -"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se " -"incluya en el header de tu sitio web, utiliza esto." - -#: ../admin/partials/admin.php:707 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Posts mantiene la data en dos tablas separadas: una para " -"guardar diariamente las entradas más populares (\"caché\", de " -"aquí en adelante), y otra tabla para almacenar la data de Todos los " -"tiempos (\"data histórica\" o simplemente \"data\"). Si por alguna " -"razón necesitas vaciar la tabla caché, o inclusive las dos " -"tablas históricas y de caché, por favor utiliza los botones de " -"abajo." - -#: ../admin/partials/admin.php:708 -msgid "Empty cache" -msgstr "Vaciar el caché" - -#: ../admin/partials/admin.php:708 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" -"Utiliza este botón para vaciar manualmente sólo las entradas " -"del caché de WPP" - -#: ../admin/partials/admin.php:709 -msgid "Clear all data" -msgstr "Eliminar toda la data" - -#: ../admin/partials/admin.php:709 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" -"Utiliza este botón para limpiar manualmente las tablas de datos de WPP" - -#: ../admin/partials/admin.php:716 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" -"Con los siguientes parámetros puedes personalizar el listado de " -"entradas populares cuando utilices el <a href=\"%1$s\">template tag " -"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>." - -#: ../admin/partials/admin.php:724 -msgid "Parameter" -msgstr "Parámetro" - -#: ../admin/partials/admin.php:725 -msgid "What it does " -msgstr "Qué hace" - -#: ../admin/partials/admin.php:726 -msgid "Possible values" -msgstr "Valores posibles" - -#: ../admin/partials/admin.php:727 -msgid "Defaults to" -msgstr "Por defecto" - -#: ../admin/partials/admin.php:728 -msgid "Example" -msgstr "Ejemplo" - -#: ../admin/partials/admin.php:734 -msgid "Sets a heading for the list" -msgstr "Configura el encabezado de la lista" - -#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742 -#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798 -#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812 -#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826 -#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924 -#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952 -msgid "Text string" -msgstr "Texto" - -#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806 -#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820 -#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834 -msgid "None" -msgstr "Ninguno" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With wpp_get_mostpopular():" -msgstr "Con wpp_get_mostpopular():" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With the [wpp] shortcode:" -msgstr "Con el shortcode [wpp]:" - -#: ../admin/partials/admin.php:741 -msgid "Set the opening tag for the heading of the list" -msgstr "Configura la etiqueta de apertura para el encabezado de la lista" - -#: ../admin/partials/admin.php:748 -msgid "Set the closing tag for the heading of the list" -msgstr "Configura la etiqueta de cierre para el encabezado de la lista" - -#: ../admin/partials/admin.php:755 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" -"Configura el máximo de entradas populares a ser mostradas en la lista" - -#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770 -#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854 -#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882 -msgid "Positive integer" -msgstr "Entero positivo" - -#: ../admin/partials/admin.php:762 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas que " -"hayan sido populares dentro del rango de tiempo especificado por ti" - -#: ../admin/partials/admin.php:769 -msgid "Especifies the number of time units of the custom time range" -msgstr "" -"Especifica el número de unidades de tiempo del rango de tiempo " -"personalizado" - -#: ../admin/partials/admin.php:776 -msgid "Especifies the time unit of the custom time range" -msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado" - -#: ../admin/partials/admin.php:783 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas " -"populares publicadas dentro del rango de tiempo especificado por ti" - -#: ../admin/partials/admin.php:790 -msgid "Sets the sorting option of the popular posts" -msgstr "Configura el ordenado de las entradas populares" - -#: ../admin/partials/admin.php:791 -msgid "(for average views per day)" -msgstr "(para el porcentaje de vistas por día)" - -#: ../admin/partials/admin.php:797 -msgid "Defines the type of posts to show on the listing" -msgstr "Define el tipo de entrada a mostrar en el listado" - -#: ../admin/partials/admin.php:804 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" -"Si se configura, WordPress Popular Posts excluirá todos los IDs de " -"las entradas especificadas." - -#: ../admin/partials/admin.php:811 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category ID(s). If a minus sign is used, entries associated to the " -"category will be excluded instead." -msgstr "" -"Si se configura, WordPress Popular Posts mostrará todas las entradas " -"que pertenecen a la(s) categoría(s) especificada(s). Si se usa un " -"signo negativo, las entradas asociadas a dicha categoría serán " -"excluídas." - -#: ../admin/partials/admin.php:818 -msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy." -msgstr "" -"Si se tilda, WordPress Popular Posts filtrará entradas por la " -"taxonomía indicada." - -#: ../admin/partials/admin.php:825 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified term ID(s). If a minus sign is used, entries associated to the " -"term(s) will be excluded instead." -msgstr "" -"Si se configura, WordPress Popular Posts mostrará todas las entradas " -"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las " -"entradas asociadas a dicho term serán excluídas." - -#: ../admin/partials/admin.php:832 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"Si se configura, WordPress Popular Posts traerá todas las entradas " -"creadas por el (los) ID(s) de autor(es) especificado(s)." - -#: ../admin/partials/admin.php:839 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" -"Si se configura, WordPress Popular Posts acortará cada titulo en \"n" -"\" caracteres cuando sea posible" - -#: ../admin/partials/admin.php:846 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo " -"en \"n\" palabras en vez de caracteres" - -#: ../admin/partials/admin.php:853 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"Si se configura, WordPress Popular Posts construirá e incluirá " -"un extracto de \"n\" caracteres del contenido de cada entrada listada como " -"popular" - -#: ../admin/partials/admin.php:860 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"Si se configura, WordPress Popular Posts mantendrá todas las " -"etiquetas de estilo (strong, italic, etc) y los hipervínculos " -"encontrados en el extracto" - -#: ../admin/partials/admin.php:867 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" " -"palabras en vez de caracteres" - -#: ../admin/partials/admin.php:874 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el ancho de tus miniaturas" - -#: ../admin/partials/admin.php:881 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el alto de tus miniaturas" - -#: ../admin/partials/admin.php:888 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"Si se configura, y si el plugin WP-PostRatings está instalado y " -"habilitado en tu blog, WordPress Popular Posts mostrará como tus " -"visitantes han calificado a tus entradas" - -#: ../admin/partials/admin.php:895 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got during the specified time range" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántos " -"comentarios ha obtenido cada entrada popular dentro del rango de tiempo " -"especificado" - -#: ../admin/partials/admin.php:902 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got during the specified time range" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántas " -"vistas ha obtenido cada entrada popular dentro del rango de tiempo " -"especificado" - -#: ../admin/partials/admin.php:909 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará quién " -"publicó cada entrada popular de la lista" - -#: ../admin/partials/admin.php:916 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue " -"publicada cada entrada popular" - -#: ../admin/partials/admin.php:923 -msgid "Sets the date format" -msgstr "Configura el formato de la fecha" - -#: ../admin/partials/admin.php:930 -msgid "" -"If set, WordPress Popular Posts will display the categories associated to " -"each entry" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará las categorías " -"asociadas a cada entrada" - -#: ../admin/partials/admin.php:937 -msgid "" -"If set, WordPress Popular Posts will display the taxonomies associated to " -"each entry" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará las taxonomías " -"asociadas a cada entrada" - -#: ../admin/partials/admin.php:944 -msgid "Sets the opening tag for the listing" -msgstr "Configura la etiqueta de apertura del listado" - -#: ../admin/partials/admin.php:951 -msgid "Sets the closing tag for the listing" -msgstr "Configura la etiqueta de cierre del listado" - -#: ../admin/partials/admin.php:958 -msgid "Sets the HTML structure of each post" -msgstr "Configura la estructura HTML de cada entrada" - -#: ../admin/partials/admin.php:959 -msgid "Text string, custom HTML" -msgstr "Texto, HTML personalizado" - -#: ../admin/partials/admin.php:959 -msgid "Available Content Tags" -msgstr "Content Tags disponibles" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" -"devuelve la miniatura con un link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" -"devuelve la miniatura sin link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height" -msgstr "" -"devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "returns linked post/page title" -msgstr "devuelve el título de la entrada/página con enlace" - -#: ../admin/partials/admin.php:959 -msgid "returns the post/page ID" -msgstr "devuelve la URL de la entrada/página" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"devuelve el resumen de la entrada/página, requiere que excerpt_length " -"sea mayor a 0" - -#: ../admin/partials/admin.php:959 -msgid "returns the default stats tags" -msgstr "devuelve el stats tag por defecto" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"devuelve el rating actual de la entrada/página, requiere que WP-" -"PostRatings esté instalado y activo" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"devuelve el rating actual de la entrada/página como un entero, " -"requiere que WP-PostRatings esté instalado y activo" - -#: ../admin/partials/admin.php:959 -msgid "returns the URL of the post/page" -msgstr "devuelve la URL de la entrada/página" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page title, no link" -msgstr "devuelve el título de la entrada/página, sin enlace" - -#: ../admin/partials/admin.php:959 -msgid "returns linked author name, requires stats_author=1" -msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1" - -#: ../admin/partials/admin.php:959 -msgid "returns linked category name, requires stats_category=1" -msgstr "" -"devuelve el nombre de la categoría con enlace, requiere " -"stats_category=1" - -#: ../admin/partials/admin.php:959 -msgid "returns linked taxonomy names, requires stats_taxonomy=1" -msgstr "" -"devuelve los nombres de las taxonomías con enlace, requiere " -"stats_taxonomy=1" - -#: ../admin/partials/admin.php:959 -msgid "returns views count only, no text" -msgstr "devuelve el número de vistas, sin texto adicional" - -#: ../admin/partials/admin.php:959 -msgid "returns comments count only, no text, requires stats_comments=1" -msgstr "" -"devuelve el número de comentarios, sin texto adicional, requiere " -"stats_comments=1" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page date, requires stats_date=1" -msgstr "devuelve la fecha de la entrada/página, requiere stats_date=1" - -#: ../includes/class-wordpress-popular-posts-output.php:126 -msgid "Sorry. No data so far." -msgstr "Lo lamentamos. No hay nada que mostrar aún." - -#: ../includes/class-wordpress-popular-posts-output.php:497 -#, php-format -msgid "%s ago" -msgstr "hace %s" - -#: ../includes/class-wordpress-popular-posts-output.php:714 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "1 vista por día" -msgstr[1] "%s vistas por día" - -#: ../includes/class-wordpress-popular-posts-output.php:743 -#, php-format -msgid "by %s" -msgstr "por %s" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted %s" -msgstr "publicado %s" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted on %s" -msgstr "publicado el %s" - -#: ../includes/class-wordpress-popular-posts-output.php:758 -#, php-format -msgid "under %s" -msgstr "bajo %s" - -#: ../includes/class-wordpress-popular-posts-widget.php:21 -msgid "The most Popular Posts on your blog." -msgstr "Las entradas más populares en tu blog." - -#: ../includes/class-wordpress-popular-posts-widget.php:94 -#, php-format -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"%s\" target=" -"\"_blank\" rel=\"nofollow\">register_sidebar</a> for more)" -msgstr "" -"Error: no se puede ajaxificar WordPress Popular Posts en este tema. Le falta " -"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank" -"\" rel=\"nofollow\">register_sidebar</a> para más detalles)" - -#: ../includes/class-wordpress-popular-posts-widget.php:105 -msgid "Loading..." -msgstr "Cargando..." - -#: ../includes/widget-form.php:3 -msgid "Title" -msgstr "Título" - -#: ../includes/widget-form.php:9 -msgid "Show up to" -msgstr "Mostrar hasta" - -#: ../includes/widget-form.php:10 -msgid "posts" -msgstr "entradas" - -#: ../includes/widget-form.php:15 -msgid "Sort posts by" -msgstr "Ordenar entradas por" - -#: ../includes/widget-form.php:18 -msgid "Total views" -msgstr "Total de vistas" - -#: ../includes/widget-form.php:19 -msgid "Avg. daily views" -msgstr "Porcentaje de vistas diarias" - -#: ../includes/widget-form.php:26 -msgid "Filters" -msgstr "Filtros" - -#: ../includes/widget-form.php:28 -msgid "Time Range" -msgstr "Rango de Tiempo" - -#: ../includes/widget-form.php:30 -msgid "Last 24 hours" -msgstr "Últimas 24 horas" - -#: ../includes/widget-form.php:31 -msgid "Last 7 days" -msgstr "Últimos 7 días" - -#: ../includes/widget-form.php:32 -msgid "Last 30 days" -msgstr "Últimos 30 días" - -#: ../includes/widget-form.php:33 -msgid "All-time" -msgstr "Todos los tiempos" - -#: ../includes/widget-form.php:34 -msgid "Custom" -msgstr "Personalizado" - -#: ../includes/widget-form.php:50 -msgid "Post type(s)" -msgstr "Post type(s)" - -#: ../includes/widget-form.php:53 -msgid "Post ID(s) to exclude" -msgstr "ID(s) de Entrada(s) a excluir" - -#: ../includes/widget-form.php:56 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: ../includes/widget-form.php:69 -msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)" -msgstr "" -"IDs de taxonomía separados por comma (agrega un símbolo " -"negativo para excluir)" - -#: ../includes/widget-form.php:75 -msgid "Author ID(s)" -msgstr "ID(s) de Autor(es)" - -#: ../includes/widget-form.php:81 -msgid "Posts settings" -msgstr "Configuración de las entradas" - -#: ../includes/widget-form.php:85 -msgid "Display post rating" -msgstr "Mostrar calificación de la entrada" - -#: ../includes/widget-form.php:88 -msgid "Shorten title" -msgstr "Acortar título" - -#: ../includes/widget-form.php:91 -msgid "Shorten title to" -msgstr "Acortar título en" - -#: ../includes/widget-form.php:92 ../includes/widget-form.php:102 -msgid "characters" -msgstr "caracteres" - -#: ../includes/widget-form.php:93 ../includes/widget-form.php:103 -msgid "words" -msgstr "palabras" - -#: ../includes/widget-form.php:96 -msgid "Display post excerpt" -msgstr "Mostrar resumen de la entrada" - -#: ../includes/widget-form.php:99 -msgid "Keep text format and links" -msgstr "Mantener formato de texto y enlaces" - -#: ../includes/widget-form.php:100 -msgid "Excerpt length" -msgstr "Largo del resumen" - -#: ../includes/widget-form.php:106 -msgid "Display post thumbnail" -msgstr "Mostrar miniatura" - -#: ../includes/widget-form.php:109 -msgid "Use predefined size" -msgstr "Utilizar un tamaño predefinido" - -#: ../includes/widget-form.php:121 -msgid "Set size manually" -msgstr "Configurar el tamaño manualmente" - -#: ../includes/widget-form.php:123 -msgid "Width" -msgstr "Ancho" - -#: ../includes/widget-form.php:126 -msgid "Height" -msgstr "Alto" - -#: ../includes/widget-form.php:133 -msgid "Stats Tag settings" -msgstr "Configuración del Stats Tag" - -#: ../includes/widget-form.php:135 -msgid "Display comment count" -msgstr "Mostrar cantidad de comentarios" - -#: ../includes/widget-form.php:137 -msgid "Display views" -msgstr "Mostrar vistas" - -#: ../includes/widget-form.php:139 -msgid "Display author" -msgstr "Mostrar autor" - -#: ../includes/widget-form.php:141 -msgid "Display date" -msgstr "Mostrar fecha" - -#: ../includes/widget-form.php:144 -msgid "Date Format" -msgstr "Formato de la fecha" - -#: ../includes/widget-form.php:146 -msgid "Relative" -msgstr "Relativo" - -#: ../includes/widget-form.php:147 -msgid "WordPress Date Format" -msgstr "Formato de fecha de WordPress" - -#: ../includes/widget-form.php:154 -msgid "Display taxonomy" -msgstr "Mostrar taxonomía" - -#: ../includes/widget-form.php:175 -msgid "HTML Markup settings" -msgstr "Configuración del Markup HTML" - -#: ../includes/widget-form.php:177 -msgid "Use custom HTML Markup" -msgstr "Utilizar Markup HTML personalizado" - -#: ../includes/widget-form.php:180 -msgid "Before / after title" -msgstr "Antes / después del título" - -#: ../includes/widget-form.php:183 -msgid "Before / after Popular Posts" -msgstr "Antes / después de las entradas populares" - -#: ../includes/widget-form.php:186 -msgid "Post HTML Markup" -msgstr "Markup HTML de la entrada" - -#~ msgid "About" -#~ msgstr "Acerca de" - -#~ msgid "About WordPress Popular Posts %s" -#~ msgstr "Acerca de WordPress Popular Posts %s" - -#~ msgid "This version includes the following changes" -#~ msgstr "Esta versión incluye los siguientes cambios" - -#~ msgid "Need help?" -#~ msgstr "¿Necesitas ayuda?" - -#~ msgid "" -#~ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, " -#~ "questions and feedback." -#~ msgstr "" -#~ "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, " -#~ "hacer preguntas y dejar tu feedback." - -#~ msgid "Let's make this plugin even better!" -#~ msgstr "¡Hagamos a este plugin inclusive mejor!" - -#~ msgid "" -#~ "Click on each tab to see what are the most popular entries on your blog " -#~ "in the last 24 hours, this week, last 30 days or all time since WordPress " -#~ "Popular Posts was installed." -#~ msgstr "" -#~ "Haz clic en cada pestaña para ver las entradas más " -#~ "populares de tu blog en las últimas 24 horas, esta semana, los " -#~ "últimos 30 días o de todos los tiempos desde que WordPress " -#~ "Popular Posts fue instalado." - -#~ msgid "Order by comments" -#~ msgstr "Ordenar por comentarios" - -#~ msgid "Order by avg. daily views" -#~ msgstr "Ordenar por average de vistas diarias" - -#~ msgid "Category(ies) ID(s)" -#~ msgstr "ID(s) de Categoría(s)" diff --git a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.mo b/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.mo deleted file mode 100644 index 099d9947201b17679129fcc9fb24e0e342ed2e0c..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.mo and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.po b/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.po deleted file mode 100644 index dc10bfefed555f45f40a725b0e2a5d2373267283..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts-es_VE.po +++ /dev/null @@ -1,1334 +0,0 @@ -# Copyright (C) 2014 Wordpress Popular Posts -# This file is distributed under the same license as the Wordpress Popular Posts package. -msgid "" -msgstr "" -"Project-Id-Version: WordPress Popular Posts\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n" -"POT-Creation-Date: 2017-10-23 17:47-0400\n" -"PO-Revision-Date: 2017-10-23 17:49-0400\n" -"Last-Translator: \n" -"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n" -"Language: es_VE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" -"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;" -"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;" -"esc_html_x;_c;_nc;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../admin/class-wordpress-popular-posts-admin.php:221 -msgid "Upload" -msgstr "Subir" - -#: ../admin/class-wordpress-popular-posts-admin.php:238 -msgid "Overview" -msgstr "General" - -#: ../admin/class-wordpress-popular-posts-admin.php:239 -msgid "" -"Welcome to WordPress Popular Posts' Dashboard! In this screen you will find " -"statistics on what's popular on your site, tools to further tweak WPP to " -"your needs, and more!" -msgstr "" -"¡Bienvenido al Dashboard de WordPress Popular Posts! En esta pantalla " -"encontrarás estadísticas de lo más popular en tu sitio, " -"herramientas para configurar WPP a tu gusto, ¡y mucho más!" - -#: ../admin/class-wordpress-popular-posts-admin.php:245 -msgid "Like this plugin?" -msgstr "¿Te gusta este plugin?" - -#: ../admin/class-wordpress-popular-posts-admin.php:247 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" -"¡Cada donación me motiva a seguir publicando cosas gratuitas " -"para la comunidad de WordPress!" - -#: ../admin/class-wordpress-popular-posts-admin.php:254 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" -"¡Puedes <a href=\"%s\" target=\"_blank\">dejar una reseña</a> " -"también!" - -#: ../admin/class-wordpress-popular-posts-admin.php:263 -#, php-format -msgid "" -"<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s" -"\">Documentation</a></li><li><a href=\"%2$s\">Support</a></li></ul>" -msgstr "" -"<p><strong>Para más información:</strong></p><ul><li><a href=" -"\"%1$s\">Documentación</a></li><li><a href=\"%2$s\">Soporte</a></li></" -"ul>" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:752 -#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:720 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "1 vista" -msgstr[1] "%s vistas" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:807 -#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:701 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "1 comentario" -msgstr[1] "%s comentarios" - -#: ../admin/class-wordpress-popular-posts-admin.php:665 -#: ../includes/widget-form.php:17 -msgid "Comments" -msgstr "Comentarios" - -#: ../admin/class-wordpress-popular-posts-admin.php:669 -msgid "Views" -msgstr "Vistas" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 -#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459 -msgid "View" -msgstr "Vista" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 -#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459 -msgid "Edit" -msgstr "Editar" - -#: ../admin/class-wordpress-popular-posts-admin.php:764 -#: ../admin/class-wordpress-popular-posts-admin.php:819 -#: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470 -msgid "" -"Looks like traffic to your site is a little light right now. <br />Spread " -"the word and come back later!" -msgstr "" -"Parece que el tráfico hacia tu sitio web está un poco ligero. " -"<br />¡Haz un poco de promoción y regresa luego!" - -#: ../admin/class-wordpress-popular-posts-admin.php:887 -msgid "Settings" -msgstr "Configuración" - -#: ../admin/class-wordpress-popular-posts-admin.php:1261 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" -"Tu versión de PHP es muy antigua. El plugin WordPress Popular Posts " -"requiere al menos PHP version %1$s para funcionar correctamente. Por favor " -"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o " -"mejor." - -#: ../admin/class-wordpress-popular-posts-admin.php:1268 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" -"Tu versión de WordPress es muy antigua. El plugin WordPress Popular " -"Posts requiere al menos la versión %1$s para funcionar correctamente. " -"Por favor actualiza tu blog via Escritorio > Actualizaciones." - -#: ../admin/class-wordpress-popular-posts-admin.php:1293 -#, php-format -msgid "" -"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been " -"<strong>deactivated</strong>.</p></div>" -msgstr "" -"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido " -"<strong>desactivado</strong>.</p></div>" - -#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255 -msgid "Stats" -msgstr "Estadísticas" - -#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256 -msgid "Tools" -msgstr "Herramientas" - -#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257 -msgid "Parameters" -msgstr "Parámetros" - -#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48 -#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113 -msgid "Settings saved." -msgstr "Configuración guardada." - -#: ../admin/partials/admin.php:62 -msgid "Please provide the name of your custom field." -msgstr "Por favor indica el nombre de tu custom field." - -#: ../admin/partials/admin.php:121 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" -"Cualquier cambio hecho a la hoja de estilos por defecto de WPP se " -"perderá cada vez que el plugin se actualize. Para evitar esto, por " -"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-" -"popular-posts/style) a la carpeta de tu tema actual" - -#: ../admin/partials/admin.php:136 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de " -"WordPress Popular Posts y no se puede deshacer." - -#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175 -#: ../admin/partials/admin.php:214 -msgid "Do you want to continue?" -msgstr "\\277Deseas continuar?" - -#: ../admin/partials/admin.php:148 -msgid "Success! The cache table has been cleared!" -msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!" - -#: ../admin/partials/admin.php:152 -msgid "Error: cache table does not exist." -msgstr "Error: la tabla cach\\351 no existe." - -#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164 -#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203 -#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241 -msgid "Invalid action." -msgstr "Acci\\363n inv\\311lida." - -#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199 -#: ../admin/partials/admin.php:237 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" -"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor " -"contacta al administrador del sitio." - -#: ../admin/partials/admin.php:175 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las " -"tablas de WordPress Popular Posts y no se puede deshacer." - -#: ../admin/partials/admin.php:187 -msgid "Success! All data have been cleared!" -msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!" - -#: ../admin/partials/admin.php:191 -msgid "Error: one or both data tables are missing." -msgstr "Error: una o ambas tablas de datos no existen." - -#: ../admin/partials/admin.php:214 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" -"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se " -"puede deshacer." - -#: ../admin/partials/admin.php:225 -msgid "Success! All files have been deleted!" -msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!" - -#: ../admin/partials/admin.php:229 -msgid "The thumbnail cache is already empty!" -msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!" - -#: ../admin/partials/admin.php:254 -msgid "Menu" -msgstr "Menú" - -#: ../admin/partials/admin.php:282 -msgid "Post type" -msgstr "Post type" - -#: ../admin/partials/admin.php:285 -msgid "Limit" -msgstr "Límite" - -#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48 -msgid "Display only posts published within the selected Time Range" -msgstr "" -"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado" - -#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332 -#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655 -#: ../admin/partials/admin.php:694 -msgid "Apply" -msgstr "Aplicar" - -#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335 -msgid "Cancel" -msgstr "Cancelar" - -#: ../admin/partials/admin.php:308 -msgid "Custom Time Range" -msgstr "Rango de Tiempo Personalizado" - -#: ../admin/partials/admin.php:309 -msgid "Date Range" -msgstr "Rango de Fechas" - -#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621 -#: ../includes/widget-form.php:41 -msgid "Minute(s)" -msgstr "Minuto(s)" - -#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622 -#: ../includes/widget-form.php:42 -msgid "Hour(s)" -msgstr "Hora(s)" - -#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623 -#: ../includes/widget-form.php:43 -msgid "Day(s)" -msgstr "Día(s)" - -#: ../admin/partials/admin.php:325 -msgid "Select a date..." -msgstr "Selecciona una fecha..." - -#: ../admin/partials/admin.php:354 -#, php-format -msgid "" -"Err... A nice little chart is supposed to be here, instead you are seeing " -"this because your browser is too old. <br /> Please <a href=\"%s\" target=" -"\"_blank\">get a better browser</a>." -msgstr "" -"Ehh... se supone que aquí saldría un gráfico, pero en " -"vez de eso estás viendo ésto porque tu navegador es demasiado " -"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor " -"navegador</a>." - -#: ../admin/partials/admin.php:480 -msgid "Thumbnails" -msgstr "Miniaturas" - -#: ../admin/partials/admin.php:485 -msgid "Default thumbnail" -msgstr "Miniatura por defecto" - -#: ../admin/partials/admin.php:490 -msgid "Upload thumbnail" -msgstr "Subir miniatura" - -#: ../admin/partials/admin.php:492 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" -"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo " -"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios" - -#: ../admin/partials/admin.php:496 -msgid "Pick image from" -msgstr "Seleccionar imagen desde" - -#: ../admin/partials/admin.php:499 -msgid "Featured image" -msgstr "\tImagen destacada" - -#: ../admin/partials/admin.php:500 -msgid "First image on post" -msgstr "Primera imagen de la entrada" - -#: ../admin/partials/admin.php:501 -msgid "First attachment" -msgstr "Primer adjunto" - -#: ../admin/partials/admin.php:502 -msgid "Custom field" -msgstr "Custom field" - -#: ../admin/partials/admin.php:505 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" -"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas" - -#: ../admin/partials/admin.php:509 -msgid "Custom field name" -msgstr "Nombre del custom field" - -#: ../admin/partials/admin.php:515 -msgid "Resize image from Custom field?" -msgstr "¡Ajustar la imagen del Custom field?" - -#: ../admin/partials/admin.php:518 -msgid "No, I will upload my own thumbnail" -msgstr "No, subiré mi propia miniatura" - -#: ../admin/partials/admin.php:519 -msgid "Yes" -msgstr "Sí" - -#: ../admin/partials/admin.php:524 -msgid "Responsive support" -msgstr "Soporte Responsive" - -#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597 -#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684 -msgid "Enabled" -msgstr "Habilitado" - -#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581 -#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636 -#: ../admin/partials/admin.php:685 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../admin/partials/admin.php:531 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" -"Si se activa, WordPress Popular Posts quitará los atributos height y " -"width de las etiquetas image de las miniaturas" - -#: ../admin/partials/admin.php:541 -msgid "Empty image cache" -msgstr "Vaciar el caché de imágenes" - -#: ../admin/partials/admin.php:542 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" -"Utiliza este botón para vaciar el caché de miniaturas de WPP" - -#: ../admin/partials/admin.php:562 -msgid "Data" -msgstr "Datos" - -#: ../admin/partials/admin.php:567 -msgid "Log views from" -msgstr "Registrar vistas de" - -#: ../admin/partials/admin.php:570 -msgid "Visitors only" -msgstr "Sólo visitantes" - -#: ../admin/partials/admin.php:571 -msgid "Logged-in users only" -msgstr "Sólo usuarios conectados" - -#: ../admin/partials/admin.php:572 -msgid "Everyone" -msgstr "Todos" - -#: ../admin/partials/admin.php:578 -msgid "Log limit" -msgstr "Límite del registro" - -#: ../admin/partials/admin.php:582 -msgid "Keep data for" -msgstr "Guardar datos por" - -#: ../admin/partials/admin.php:585 -msgid "day(s)" -msgstr "día(s)" - -#: ../admin/partials/admin.php:587 -msgid "" -"Data older than the specified time frame will be automatically discarded" -msgstr "" -"La data que sea más antigua que el tiempo especificado serán " -"automáticamente descartada" - -#: ../admin/partials/admin.php:593 -msgid "Ajaxify widget" -msgstr "Usar Ajax con el widget" - -#: ../admin/partials/admin.php:601 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" -"Si estás utilizando un plugin de cacheo como WP Super Cache, " -"habilitar esta característica evitará que la lista de entradas " -"populares sea guardada en caché" - -#: ../admin/partials/admin.php:605 -msgid "WPP Cache Expiry Policy" -msgstr "WPP Política de Expiración del Cache" - -#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633 -#: ../includes/widget-form.php:3 ../includes/widget-form.php:50 -#: ../includes/widget-form.php:56 ../includes/widget-form.php:75 -#: ../includes/widget-form.php:85 ../includes/widget-form.php:177 -msgid "What is this?" -msgstr "¿Qué es ésto?" - -#: ../admin/partials/admin.php:608 -msgid "Never cache" -msgstr "Nunca almacenar en caché" - -#: ../admin/partials/admin.php:609 -msgid "Enable caching" -msgstr "Habilitar caché" - -#: ../admin/partials/admin.php:613 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" -"Configura lel tiempo de expiración del cache de WPP. WPP puede " -"almacenar en caché el listado de entradas populares por una cantidad " -"de tiempo especificada. Recomendado para sitios web grandes / de alto " -"tráfico" - -#: ../admin/partials/admin.php:617 -msgid "Refresh cache every" -msgstr "Refrescar el caché cada" - -#: ../admin/partials/admin.php:624 -msgid "Week(s)" -msgstr "Semana(s)" - -#: ../admin/partials/admin.php:625 -msgid "Month(s)" -msgstr "Mes(es)" - -#: ../admin/partials/admin.php:626 -msgid "Year(s)" -msgstr "Año(s)" - -#: ../admin/partials/admin.php:629 -msgid "Really? That long?" -msgstr "¿En serio? ¿Tanto tiempo?" - -#: ../admin/partials/admin.php:633 -msgid "Data Sampling" -msgstr "Sampleo de Datos" - -#: ../admin/partials/admin.php:641 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" -"Por defecto, WordPress Popular Posts almacena en la base de datos todas y " -"cada una de las visitas que recibe tu sitio. Para sitios pequeños / " -"medianos esto generalmente está bien, pero en sitios grandes / de " -"mucho tráfico la escritura constante en la base de datos pudiese " -"causar un impacto en su rendimiento. Con <a href=\"%1$s\" target=\"_blank" -"\">data sampling</a>, WordPress Popular Posts almacenará sólo " -"un subconjunto de tu tráfico y reportará sobre las tendencias " -"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" " -"target=\"_blank\">por favor leer acá</a>)" - -#: ../admin/partials/admin.php:645 -msgid "Sample Rate" -msgstr "Rata de Sampleo" - -#: ../admin/partials/admin.php:649 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" -"Se recomienda una rata de sampleo de %d para sitios grandes / de alto " -"tráfico. Para sitios con menos tráfico, deberías " -"disminuir el valor" - -#: ../admin/partials/admin.php:666 -msgid "Miscellaneous" -msgstr "Misceláneos" - -#: ../admin/partials/admin.php:671 -msgid "Open links in" -msgstr "Abrir enlaces en" - -#: ../admin/partials/admin.php:674 -msgid "Current window" -msgstr "Ventana actual" - -#: ../admin/partials/admin.php:675 -msgid "New tab/window" -msgstr "Nueva pestaña/ventana" - -#: ../admin/partials/admin.php:681 -msgid "Use plugin's stylesheet" -msgstr "Utilizar la hoja de estilos del plugin" - -#: ../admin/partials/admin.php:688 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" -"Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que " -"puedes utilizar para darle estilos a tu listado de entradas populares. Si " -"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se " -"incluya en el header de tu sitio web, utiliza esto." - -#: ../admin/partials/admin.php:707 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" -"WordPress Popular Posts mantiene la data en dos tablas separadas: una para " -"guardar diariamente las entradas más populares (\"caché\", de " -"aquí en adelante), y otra tabla para almacenar la data de Todos los " -"tiempos (\"data histórica\" o simplemente \"data\"). Si por alguna " -"razón necesitas vaciar la tabla caché, o inclusive las dos " -"tablas históricas y de caché, por favor utiliza los botones de " -"abajo." - -#: ../admin/partials/admin.php:708 -msgid "Empty cache" -msgstr "Vaciar el caché" - -#: ../admin/partials/admin.php:708 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" -"Utiliza este botón para vaciar manualmente sólo las entradas " -"del caché de WPP" - -#: ../admin/partials/admin.php:709 -msgid "Clear all data" -msgstr "Eliminar toda la data" - -#: ../admin/partials/admin.php:709 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" -"Utiliza este botón para limpiar manualmente las tablas de datos de WPP" - -#: ../admin/partials/admin.php:716 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" -"Con los siguientes parámetros puedes personalizar el listado de " -"entradas populares cuando utilices el <a href=\"%1$s\">template tag " -"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>." - -#: ../admin/partials/admin.php:724 -msgid "Parameter" -msgstr "Parámetro" - -#: ../admin/partials/admin.php:725 -msgid "What it does " -msgstr "Qué hace" - -#: ../admin/partials/admin.php:726 -msgid "Possible values" -msgstr "Valores posibles" - -#: ../admin/partials/admin.php:727 -msgid "Defaults to" -msgstr "Por defecto" - -#: ../admin/partials/admin.php:728 -msgid "Example" -msgstr "Ejemplo" - -#: ../admin/partials/admin.php:734 -msgid "Sets a heading for the list" -msgstr "Configura el encabezado de la lista" - -#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742 -#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798 -#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812 -#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826 -#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924 -#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952 -msgid "Text string" -msgstr "Texto" - -#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806 -#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820 -#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834 -msgid "None" -msgstr "Ninguno" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With wpp_get_mostpopular():" -msgstr "Con wpp_get_mostpopular():" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With the [wpp] shortcode:" -msgstr "Con el shortcode [wpp]:" - -#: ../admin/partials/admin.php:741 -msgid "Set the opening tag for the heading of the list" -msgstr "Configura la etiqueta de apertura para el encabezado de la lista" - -#: ../admin/partials/admin.php:748 -msgid "Set the closing tag for the heading of the list" -msgstr "Configura la etiqueta de cierre para el encabezado de la lista" - -#: ../admin/partials/admin.php:755 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" -"Configura el máximo de entradas populares a ser mostradas en la lista" - -#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770 -#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854 -#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882 -msgid "Positive integer" -msgstr "Entero positivo" - -#: ../admin/partials/admin.php:762 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas que " -"hayan sido populares dentro del rango de tiempo especificado por ti" - -#: ../admin/partials/admin.php:769 -msgid "Especifies the number of time units of the custom time range" -msgstr "" -"Especifica el número de unidades de tiempo del rango de tiempo " -"personalizado" - -#: ../admin/partials/admin.php:776 -msgid "Especifies the time unit of the custom time range" -msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado" - -#: ../admin/partials/admin.php:783 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" -"Le indica a WordPress Popular Posts que debe listar aquellas entradas " -"populares publicadas dentro del rango de tiempo especificado por ti" - -#: ../admin/partials/admin.php:790 -msgid "Sets the sorting option of the popular posts" -msgstr "Configura el ordenado de las entradas populares" - -#: ../admin/partials/admin.php:791 -msgid "(for average views per day)" -msgstr "(para el porcentaje de vistas por día)" - -#: ../admin/partials/admin.php:797 -msgid "Defines the type of posts to show on the listing" -msgstr "Define el tipo de entrada a mostrar en el listado" - -#: ../admin/partials/admin.php:804 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" -"Si se configura, WordPress Popular Posts excluirá todos los IDs de " -"las entradas especificadas." - -#: ../admin/partials/admin.php:811 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category ID(s). If a minus sign is used, entries associated to the " -"category will be excluded instead." -msgstr "" -"Si se configura, WordPress Popular Posts mostrará todas las entradas " -"que pertenecen a la(s) categoría(s) especificada(s). Si se usa un " -"signo negativo, las entradas asociadas a dicha categoría serán " -"excluídas." - -#: ../admin/partials/admin.php:818 -msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy." -msgstr "" -"Si se tilda, WordPress Popular Posts filtrará entradas por la " -"taxonomía indicada." - -#: ../admin/partials/admin.php:825 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified term ID(s). If a minus sign is used, entries associated to the " -"term(s) will be excluded instead." -msgstr "" -"Si se configura, WordPress Popular Posts mostrará todas las entradas " -"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las " -"entradas asociadas a dicho term serán excluídas." - -#: ../admin/partials/admin.php:832 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" -"Si se configura, WordPress Popular Posts traerá todas las entradas " -"creadas por el (los) ID(s) de autor(es) especificado(s)." - -#: ../admin/partials/admin.php:839 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" -"Si se configura, WordPress Popular Posts acortará cada titulo en \"n" -"\" caracteres cuando sea posible" - -#: ../admin/partials/admin.php:846 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" -"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo " -"en \"n\" palabras en vez de caracteres" - -#: ../admin/partials/admin.php:853 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" -"Si se configura, WordPress Popular Posts construirá e incluirá " -"un extracto de \"n\" caracteres del contenido de cada entrada listada como " -"popular" - -#: ../admin/partials/admin.php:860 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" -"Si se configura, WordPress Popular Posts mantendrá todas las " -"etiquetas de estilo (strong, italic, etc) y los hipervínculos " -"encontrados en el extracto" - -#: ../admin/partials/admin.php:867 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" -"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" " -"palabras en vez de caracteres" - -#: ../admin/partials/admin.php:874 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el ancho de tus miniaturas" - -#: ../admin/partials/admin.php:881 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" -"Si se configura, y si la configuración actual de tu servidor lo " -"permite, podrás mostrar miniaturas de tus entradas. Este atributo " -"configura el alto de tus miniaturas" - -#: ../admin/partials/admin.php:888 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" -"Si se configura, y si el plugin WP-PostRatings está instalado y " -"habilitado en tu blog, WordPress Popular Posts mostrará como tus " -"visitantes han calificado a tus entradas" - -#: ../admin/partials/admin.php:895 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got during the specified time range" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántos " -"comentarios ha obtenido cada entrada popular dentro del rango de tiempo " -"especificado" - -#: ../admin/partials/admin.php:902 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got during the specified time range" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará cuántas " -"vistas ha obtenido cada entrada popular dentro del rango de tiempo " -"especificado" - -#: ../admin/partials/admin.php:909 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" -"Si se configura, WordPress Popular Posts mostrará quién " -"publicó cada entrada popular de la lista" - -#: ../admin/partials/admin.php:916 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue " -"publicada cada entrada popular" - -#: ../admin/partials/admin.php:923 -msgid "Sets the date format" -msgstr "Configura el formato de la fecha" - -#: ../admin/partials/admin.php:930 -msgid "" -"If set, WordPress Popular Posts will display the categories associated to " -"each entry" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará las categorías " -"asociadas a cada entrada" - -#: ../admin/partials/admin.php:937 -msgid "" -"If set, WordPress Popular Posts will display the taxonomies associated to " -"each entry" -msgstr "" -"Si se tilda, WordPress Popular Posts mostrará las taxonomías " -"asociadas a cada entrada" - -#: ../admin/partials/admin.php:944 -msgid "Sets the opening tag for the listing" -msgstr "Configura la etiqueta de apertura del listado" - -#: ../admin/partials/admin.php:951 -msgid "Sets the closing tag for the listing" -msgstr "Configura la etiqueta de cierre del listado" - -#: ../admin/partials/admin.php:958 -msgid "Sets the HTML structure of each post" -msgstr "Configura la estructura HTML de cada entrada" - -#: ../admin/partials/admin.php:959 -msgid "Text string, custom HTML" -msgstr "Texto, HTML personalizado" - -#: ../admin/partials/admin.php:959 -msgid "Available Content Tags" -msgstr "Content Tags disponibles" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" -"devuelve la miniatura con un link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" -"devuelve la miniatura sin link hacia la entrada/página, requiere " -"thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height" -msgstr "" -"devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height" - -#: ../admin/partials/admin.php:959 -msgid "returns linked post/page title" -msgstr "devuelve el título de la entrada/página con enlace" - -#: ../admin/partials/admin.php:959 -msgid "returns the post/page ID" -msgstr "devuelve la URL de la entrada/página" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" -"devuelve el resumen de la entrada/página, requiere que excerpt_length " -"sea mayor a 0" - -#: ../admin/partials/admin.php:959 -msgid "returns the default stats tags" -msgstr "devuelve el stats tag por defecto" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" -"devuelve el rating actual de la entrada/página, requiere que WP-" -"PostRatings esté instalado y activo" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" -"devuelve el rating actual de la entrada/página como un entero, " -"requiere que WP-PostRatings esté instalado y activo" - -#: ../admin/partials/admin.php:959 -msgid "returns the URL of the post/page" -msgstr "devuelve la URL de la entrada/página" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page title, no link" -msgstr "devuelve el título de la entrada/página, sin enlace" - -#: ../admin/partials/admin.php:959 -msgid "returns linked author name, requires stats_author=1" -msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1" - -#: ../admin/partials/admin.php:959 -msgid "returns linked category name, requires stats_category=1" -msgstr "" -"devuelve el nombre de la categoría con enlace, requiere " -"stats_category=1" - -#: ../admin/partials/admin.php:959 -msgid "returns linked taxonomy names, requires stats_taxonomy=1" -msgstr "" -"devuelve los nombres de las taxonomiías con enlace, requiere " -"stats_taxonomy=1" - -#: ../admin/partials/admin.php:959 -msgid "returns views count only, no text" -msgstr "devuelve el número de vistas, sin texto adicional" - -#: ../admin/partials/admin.php:959 -msgid "returns comments count only, no text, requires stats_comments=1" -msgstr "" -"devuelve el número de comentarios, sin texto adicional, requiere " -"stats_comments=1" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page date, requires stats_date=1" -msgstr "devuelve la fecha de la entrada/página, requiere stats_date=1" - -#: ../includes/class-wordpress-popular-posts-output.php:126 -msgid "Sorry. No data so far." -msgstr "Lo lamentamos. No hay nada que mostrar aún." - -#: ../includes/class-wordpress-popular-posts-output.php:497 -#, php-format -msgid "%s ago" -msgstr "hace %s" - -#: ../includes/class-wordpress-popular-posts-output.php:714 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "1 vista por día" -msgstr[1] "%s vistas por día" - -#: ../includes/class-wordpress-popular-posts-output.php:743 -#, php-format -msgid "by %s" -msgstr "por %s" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted %s" -msgstr "publicado %s" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted on %s" -msgstr "publicado el %s" - -#: ../includes/class-wordpress-popular-posts-output.php:758 -#, php-format -msgid "under %s" -msgstr "bajo %s" - -#: ../includes/class-wordpress-popular-posts-widget.php:21 -msgid "The most Popular Posts on your blog." -msgstr "Las entradas más populares en tu blog." - -#: ../includes/class-wordpress-popular-posts-widget.php:94 -#, php-format -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"%s\" target=" -"\"_blank\" rel=\"nofollow\">register_sidebar</a> for more)" -msgstr "" -"Error: no se puede ajaxificar WordPress Popular Posts en este tema. Le falta " -"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank" -"\" rel=\"nofollow\">register_sidebar</a> para más detalles)" - -#: ../includes/class-wordpress-popular-posts-widget.php:105 -msgid "Loading..." -msgstr "Cargando..." - -#: ../includes/widget-form.php:3 -msgid "Title" -msgstr "Título" - -#: ../includes/widget-form.php:9 -msgid "Show up to" -msgstr "Mostrar hasta" - -#: ../includes/widget-form.php:10 -msgid "posts" -msgstr "entradas" - -#: ../includes/widget-form.php:15 -msgid "Sort posts by" -msgstr "Ordenar entradas por" - -#: ../includes/widget-form.php:18 -msgid "Total views" -msgstr "Total de vistas" - -#: ../includes/widget-form.php:19 -msgid "Avg. daily views" -msgstr "Porcentaje de vistas diarias" - -#: ../includes/widget-form.php:26 -msgid "Filters" -msgstr "Filtros" - -#: ../includes/widget-form.php:28 -msgid "Time Range" -msgstr "Rango de Tiempo" - -#: ../includes/widget-form.php:30 -msgid "Last 24 hours" -msgstr "Últimas 24 horas" - -#: ../includes/widget-form.php:31 -msgid "Last 7 days" -msgstr "Últimos 7 días" - -#: ../includes/widget-form.php:32 -msgid "Last 30 days" -msgstr "Últimos 30 días" - -#: ../includes/widget-form.php:33 -msgid "All-time" -msgstr "Todos los tiempos" - -#: ../includes/widget-form.php:34 -msgid "Custom" -msgstr "Personalizado" - -#: ../includes/widget-form.php:50 -msgid "Post type(s)" -msgstr "Post type(s)" - -#: ../includes/widget-form.php:53 -msgid "Post ID(s) to exclude" -msgstr "ID(s) de Entrada(s) a excluir" - -#: ../includes/widget-form.php:56 -msgid "Taxonomy" -msgstr "Taxonomía" - -#: ../includes/widget-form.php:69 -msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)" -msgstr "" -"IDs de taxonomía separados por comma (agrega un símbolo " -"negativo para excluir)" - -#: ../includes/widget-form.php:75 -msgid "Author ID(s)" -msgstr "ID(s) de Autor(es)" - -#: ../includes/widget-form.php:81 -msgid "Posts settings" -msgstr "Configuración de las entradas" - -#: ../includes/widget-form.php:85 -msgid "Display post rating" -msgstr "Mostrar calificación de la entrada" - -#: ../includes/widget-form.php:88 -msgid "Shorten title" -msgstr "Acortar título" - -#: ../includes/widget-form.php:91 -msgid "Shorten title to" -msgstr "Acortar título en" - -#: ../includes/widget-form.php:92 ../includes/widget-form.php:102 -msgid "characters" -msgstr "caracteres" - -#: ../includes/widget-form.php:93 ../includes/widget-form.php:103 -msgid "words" -msgstr "palabras" - -#: ../includes/widget-form.php:96 -msgid "Display post excerpt" -msgstr "Mostrar resumen de la entrada" - -#: ../includes/widget-form.php:99 -msgid "Keep text format and links" -msgstr "Mantener formato de texto y enlaces" - -#: ../includes/widget-form.php:100 -msgid "Excerpt length" -msgstr "Largo del resumen" - -#: ../includes/widget-form.php:106 -msgid "Display post thumbnail" -msgstr "Mostrar miniatura" - -#: ../includes/widget-form.php:109 -msgid "Use predefined size" -msgstr "Utilizar un tamaño predefinido" - -#: ../includes/widget-form.php:121 -msgid "Set size manually" -msgstr "Configurar el tamaño manualmente" - -#: ../includes/widget-form.php:123 -msgid "Width" -msgstr "Ancho" - -#: ../includes/widget-form.php:126 -msgid "Height" -msgstr "Alto" - -#: ../includes/widget-form.php:133 -msgid "Stats Tag settings" -msgstr "Configuración del Stats Tag" - -#: ../includes/widget-form.php:135 -msgid "Display comment count" -msgstr "Mostrar cantidad de comentarios" - -#: ../includes/widget-form.php:137 -msgid "Display views" -msgstr "Mostrar vistas" - -#: ../includes/widget-form.php:139 -msgid "Display author" -msgstr "Mostrar autor" - -#: ../includes/widget-form.php:141 -msgid "Display date" -msgstr "Mostrar fecha" - -#: ../includes/widget-form.php:144 -msgid "Date Format" -msgstr "Formato de la fecha" - -#: ../includes/widget-form.php:146 -msgid "Relative" -msgstr "Relativo" - -#: ../includes/widget-form.php:147 -msgid "WordPress Date Format" -msgstr "Formato de fecha de WordPress" - -#: ../includes/widget-form.php:154 -msgid "Display taxonomy" -msgstr "Mostrar taxonomía" - -#: ../includes/widget-form.php:175 -msgid "HTML Markup settings" -msgstr "Configuración del Markup HTML" - -#: ../includes/widget-form.php:177 -msgid "Use custom HTML Markup" -msgstr "Utilizar Markup HTML personalizado" - -#: ../includes/widget-form.php:180 -msgid "Before / after title" -msgstr "Antes / después del título" - -#: ../includes/widget-form.php:183 -msgid "Before / after Popular Posts" -msgstr "Antes / después de las entradas populares" - -#: ../includes/widget-form.php:186 -msgid "Post HTML Markup" -msgstr "Markup HTML de la entrada" - -#~ msgid "About" -#~ msgstr "Acerca de" - -#~ msgid "About WordPress Popular Posts %s" -#~ msgstr "Acerca de WordPress Popular Posts %s" - -#~ msgid "This version includes the following changes" -#~ msgstr "Esta versión incluye los siguientes cambios" - -#~ msgid "Need help?" -#~ msgstr "¿Necesitas ayuda?" - -#~ msgid "" -#~ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, " -#~ "questions and feedback." -#~ msgstr "" -#~ "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, " -#~ "hacer preguntas y dejar tu feedback." - -#~ msgid "Let's make this plugin even better!" -#~ msgstr "¡Hagamos a este plugin inclusive mejor!" - -#~ msgid "" -#~ "Click on each tab to see what are the most popular entries on your blog " -#~ "in the last 24 hours, this week, last 30 days or all time since WordPress " -#~ "Popular Posts was installed." -#~ msgstr "" -#~ "Haz clic en cada pestaña para ver las entradas más " -#~ "populares de tu blog en las últimas 24 horas, esta semana, los " -#~ "últimos 30 días o de todos los tiempos desde que WordPress " -#~ "Popular Posts fue instalado." - -#~ msgid "Order by comments" -#~ msgstr "Ordenar por comentarios" - -#~ msgid "Order by avg. daily views" -#~ msgstr "Ordenar por average de vistas diarias" - -#~ msgid "Category(ies) ID(s)" -#~ msgstr "ID(s) de Categoría(s)" diff --git a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts.pot b/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts.pot deleted file mode 100644 index 5e46848a5735caab4de26329728b8eb9c6c4ce3f..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/languages/wordpress-popular-posts.pot +++ /dev/null @@ -1,1116 +0,0 @@ -# Copyright (C) 2014 Wordpress Popular Posts -# This file is distributed under the same license as the Wordpress Popular Posts package. -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: WordPress Popular Posts\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n" -"POT-Creation-Date: 2017-10-23 17:44-0400\n" -"PO-Revision-Date: 2015-04-24 13:30-0430\n" -"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n" -"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" -"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;" -"esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc;_n:1,2\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../admin/class-wordpress-popular-posts-admin.php:221 -msgid "Upload" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:238 -msgid "Overview" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:239 -msgid "" -"Welcome to WordPress Popular Posts' Dashboard! In this screen you will find statistics " -"on what's popular on your site, tools to further tweak WPP to your needs, and more!" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:245 -msgid "Like this plugin?" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:247 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress community!" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:254 -#, php-format -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:263 -#, php-format -msgid "" -"<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s\">Documentation</" -"a></li><li><a href=\"%2$s\">Support</a></li></ul>" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:752 ../admin/partials/admin.php:411 -#: ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:720 -#, php-format -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "" -msgstr[1] "" - -#: ../admin/class-wordpress-popular-posts-admin.php:633 -#: ../admin/class-wordpress-popular-posts-admin.php:807 ../admin/partials/admin.php:411 -#: ../admin/partials/admin.php:458 -#: ../includes/class-wordpress-popular-posts-output.php:701 -#, php-format -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "" -msgstr[1] "" - -#: ../admin/class-wordpress-popular-posts-admin.php:665 ../includes/widget-form.php:17 -msgid "Comments" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:669 -msgid "Views" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:412 -#: ../admin/partials/admin.php:459 -msgid "View" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:753 -#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:412 -#: ../admin/partials/admin.php:459 -msgid "Edit" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:764 -#: ../admin/class-wordpress-popular-posts-admin.php:819 ../admin/partials/admin.php:423 -#: ../admin/partials/admin.php:470 -msgid "" -"Looks like traffic to your site is a little light right now. <br />Spread the word and " -"come back later!" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:887 -msgid "Settings" -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:1261 -#, php-format -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least PHP " -"version %1$s to function correctly. Please contact your hosting provider and ask them " -"to upgrade PHP to %1$s or higher." -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:1268 -#, php-format -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least WordPress " -"version %1$s to function correctly. Please update your blog via Dashboard > Update." -msgstr "" - -#: ../admin/class-wordpress-popular-posts-admin.php:1293 -#, php-format -msgid "" -"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been " -"<strong>deactivated</strong>.</p></div>" -msgstr "" - -#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255 -msgid "Stats" -msgstr "" - -#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256 -msgid "Tools" -msgstr "" - -#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257 -msgid "Parameters" -msgstr "" - -#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48 -#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113 -msgid "Settings saved." -msgstr "" - -#: ../admin/partials/admin.php:62 -msgid "Please provide the name of your custom field." -msgstr "" - -#: ../admin/partials/admin.php:121 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin update. " -"In order to prevent this from happening, please copy the wpp.css file (located at wp-" -"content/plugins/wordpress-popular-posts/style) into your theme's directory" -msgstr "" - -#: ../admin/partials/admin.php:136 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache table and " -"cannot be undone." -msgstr "" - -#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175 -#: ../admin/partials/admin.php:214 -msgid "Do you want to continue?" -msgstr "" - -#: ../admin/partials/admin.php:148 -msgid "Success! The cache table has been cleared!" -msgstr "" - -#: ../admin/partials/admin.php:152 -msgid "Error: cache table does not exist." -msgstr "" - -#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164 -#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203 -#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241 -msgid "Invalid action." -msgstr "" - -#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199 -#: ../admin/partials/admin.php:237 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the site " -"administrator for support." -msgstr "" - -#: ../admin/partials/admin.php:175 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' data tables " -"and cannot be undone." -msgstr "" - -#: ../admin/partials/admin.php:187 -msgid "Success! All data have been cleared!" -msgstr "" - -#: ../admin/partials/admin.php:191 -msgid "Error: one or both data tables are missing." -msgstr "" - -#: ../admin/partials/admin.php:214 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" - -#: ../admin/partials/admin.php:225 -msgid "Success! All files have been deleted!" -msgstr "" - -#: ../admin/partials/admin.php:229 -msgid "The thumbnail cache is already empty!" -msgstr "" - -#: ../admin/partials/admin.php:254 -msgid "Menu" -msgstr "" - -#: ../admin/partials/admin.php:282 -msgid "Post type" -msgstr "" - -#: ../admin/partials/admin.php:285 -msgid "Limit" -msgstr "" - -#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332 -#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655 -#: ../admin/partials/admin.php:694 -msgid "Apply" -msgstr "" - -#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335 -msgid "Cancel" -msgstr "" - -#: ../admin/partials/admin.php:308 -msgid "Custom Time Range" -msgstr "" - -#: ../admin/partials/admin.php:309 -msgid "Date Range" -msgstr "" - -#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621 -#: ../includes/widget-form.php:41 -msgid "Minute(s)" -msgstr "" - -#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622 -#: ../includes/widget-form.php:42 -msgid "Hour(s)" -msgstr "" - -#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623 -#: ../includes/widget-form.php:43 -msgid "Day(s)" -msgstr "" - -#: ../admin/partials/admin.php:325 -msgid "Select a date..." -msgstr "" - -#: ../admin/partials/admin.php:354 -#, php-format -msgid "" -"Err... A nice little chart is supposed to be here, instead you are seeing this because " -"your browser is too old. <br /> Please <a href=\"%s\" target=\"_blank\">get a better " -"browser</a>." -msgstr "" - -#: ../admin/partials/admin.php:480 -msgid "Thumbnails" -msgstr "" - -#: ../admin/partials/admin.php:485 -msgid "Default thumbnail" -msgstr "" - -#: ../admin/partials/admin.php:490 -msgid "Upload thumbnail" -msgstr "" - -#: ../admin/partials/admin.php:492 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. After it's " -"done, hit on Apply to save changes" -msgstr "" - -#: ../admin/partials/admin.php:496 -msgid "Pick image from" -msgstr "" - -#: ../admin/partials/admin.php:499 -msgid "Featured image" -msgstr "" - -#: ../admin/partials/admin.php:500 -msgid "First image on post" -msgstr "" - -#: ../admin/partials/admin.php:501 -msgid "First attachment" -msgstr "" - -#: ../admin/partials/admin.php:502 -msgid "Custom field" -msgstr "" - -#: ../admin/partials/admin.php:505 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" - -#: ../admin/partials/admin.php:509 -msgid "Custom field name" -msgstr "" - -#: ../admin/partials/admin.php:515 -msgid "Resize image from Custom field?" -msgstr "" - -#: ../admin/partials/admin.php:518 -msgid "No, I will upload my own thumbnail" -msgstr "" - -#: ../admin/partials/admin.php:519 -msgid "Yes" -msgstr "" - -#: ../admin/partials/admin.php:524 -msgid "Responsive support" -msgstr "" - -#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597 -#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684 -msgid "Enabled" -msgstr "" - -#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581 -#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636 -#: ../admin/partials/admin.php:685 -msgid "Disabled" -msgstr "" - -#: ../admin/partials/admin.php:531 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes out of " -"thumbnails' image tags" -msgstr "" - -#: ../admin/partials/admin.php:541 -msgid "Empty image cache" -msgstr "" - -#: ../admin/partials/admin.php:542 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" - -#: ../admin/partials/admin.php:562 -msgid "Data" -msgstr "" - -#: ../admin/partials/admin.php:567 -msgid "Log views from" -msgstr "" - -#: ../admin/partials/admin.php:570 -msgid "Visitors only" -msgstr "" - -#: ../admin/partials/admin.php:571 -msgid "Logged-in users only" -msgstr "" - -#: ../admin/partials/admin.php:572 -msgid "Everyone" -msgstr "" - -#: ../admin/partials/admin.php:578 -msgid "Log limit" -msgstr "" - -#: ../admin/partials/admin.php:582 -msgid "Keep data for" -msgstr "" - -#: ../admin/partials/admin.php:585 -msgid "day(s)" -msgstr "" - -#: ../admin/partials/admin.php:587 -msgid "Data older than the specified time frame will be automatically discarded" -msgstr "" - -#: ../admin/partials/admin.php:593 -msgid "Ajaxify widget" -msgstr "" - -#: ../admin/partials/admin.php:601 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this feature will " -"keep the popular list from being cached by it" -msgstr "" - -#: ../admin/partials/admin.php:605 -msgid "WPP Cache Expiry Policy" -msgstr "" - -#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633 -#: ../includes/widget-form.php:3 ../includes/widget-form.php:50 -#: ../includes/widget-form.php:56 ../includes/widget-form.php:75 -#: ../includes/widget-form.php:85 ../includes/widget-form.php:177 -msgid "What is this?" -msgstr "" - -#: ../admin/partials/admin.php:608 -msgid "Never cache" -msgstr "" - -#: ../admin/partials/admin.php:609 -msgid "Enable caching" -msgstr "" - -#: ../admin/partials/admin.php:613 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a specified " -"amount of time. Recommended for large / high traffic sites" -msgstr "" - -#: ../admin/partials/admin.php:617 -msgid "Refresh cache every" -msgstr "" - -#: ../admin/partials/admin.php:624 -msgid "Week(s)" -msgstr "" - -#: ../admin/partials/admin.php:625 -msgid "Month(s)" -msgstr "" - -#: ../admin/partials/admin.php:626 -msgid "Year(s)" -msgstr "" - -#: ../admin/partials/admin.php:629 -msgid "Really? That long?" -msgstr "" - -#: ../admin/partials/admin.php:633 -msgid "Data Sampling" -msgstr "" - -#: ../admin/partials/admin.php:641 -#, php-format -msgid "" -"By default, WordPress Popular Posts stores in database every single visit your site " -"receives. For small / medium sites this is generally OK, but on large / high traffic " -"sites the constant writing to the database may have an impact on performance. With <a " -"href=\"%1$s\" target=\"_blank\">data sampling</a>, WordPress Popular Posts will store " -"only a subset of your traffic and report on the tendencies detected in that sample set " -"(for more, <a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" - -#: ../admin/partials/admin.php:645 -msgid "Sample Rate" -msgstr "" - -#: ../admin/partials/admin.php:649 -#, php-format -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For lower traffic " -"sites, you should lower the value" -msgstr "" - -#: ../admin/partials/admin.php:666 -msgid "Miscellaneous" -msgstr "" - -#: ../admin/partials/admin.php:671 -msgid "Open links in" -msgstr "" - -#: ../admin/partials/admin.php:674 -msgid "Current window" -msgstr "" - -#: ../admin/partials/admin.php:675 -msgid "New tab/window" -msgstr "" - -#: ../admin/partials/admin.php:681 -msgid "Use plugin's stylesheet" -msgstr "" - -#: ../admin/partials/admin.php:688 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can use to style " -"your popular posts listing. If you wish to use your own stylesheet or do not want it " -"to have it included in the header section of your site, use this." -msgstr "" - -#: ../admin/partials/admin.php:707 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for storing the " -"most popular entries on a daily basis (from now on, \"cache\"), and another one to " -"keep the All-time data (from now on, \"historical data\" or just \"data\"). If for " -"some reason you need to clear the cache table, or even both historical and cache " -"tables, please use the buttons below to do so." -msgstr "" - -#: ../admin/partials/admin.php:708 -msgid "Empty cache" -msgstr "" - -#: ../admin/partials/admin.php:708 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" - -#: ../admin/partials/admin.php:709 -msgid "Clear all data" -msgstr "" - -#: ../admin/partials/admin.php:709 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" - -#: ../admin/partials/admin.php:716 -#, php-format -msgid "" -"With the following parameters you can customize the popular posts list when using " -"either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or the <a href=" -"\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: ../admin/partials/admin.php:724 -msgid "Parameter" -msgstr "" - -#: ../admin/partials/admin.php:725 -msgid "What it does " -msgstr "" - -#: ../admin/partials/admin.php:726 -msgid "Possible values" -msgstr "" - -#: ../admin/partials/admin.php:727 -msgid "Defaults to" -msgstr "" - -#: ../admin/partials/admin.php:728 -msgid "Example" -msgstr "" - -#: ../admin/partials/admin.php:734 -msgid "Sets a heading for the list" -msgstr "" - -#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742 -#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798 -#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812 -#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826 -#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924 -#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952 -msgid "Text string" -msgstr "" - -#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806 -#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820 -#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834 -msgid "None" -msgstr "" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With wpp_get_mostpopular():" -msgstr "" - -#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744 -#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758 -#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772 -#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786 -#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800 -#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814 -#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828 -#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842 -#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856 -#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870 -#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884 -#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898 -#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912 -#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926 -#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940 -#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954 -#: ../admin/partials/admin.php:961 -msgid "With the [wpp] shortcode:" -msgstr "" - -#: ../admin/partials/admin.php:741 -msgid "Set the opening tag for the heading of the list" -msgstr "" - -#: ../admin/partials/admin.php:748 -msgid "Set the closing tag for the heading of the list" -msgstr "" - -#: ../admin/partials/admin.php:755 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" - -#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770 -#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854 -#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882 -msgid "Positive integer" -msgstr "" - -#: ../admin/partials/admin.php:762 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within the time " -"range specified by you" -msgstr "" - -#: ../admin/partials/admin.php:769 -msgid "Especifies the number of time units of the custom time range" -msgstr "" - -#: ../admin/partials/admin.php:776 -msgid "Especifies the time unit of the custom time range" -msgstr "" - -#: ../admin/partials/admin.php:783 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published within " -"the time range specified by you" -msgstr "" - -#: ../admin/partials/admin.php:790 -msgid "Sets the sorting option of the popular posts" -msgstr "" - -#: ../admin/partials/admin.php:791 -msgid "(for average views per day)" -msgstr "" - -#: ../admin/partials/admin.php:797 -msgid "Defines the type of posts to show on the listing" -msgstr "" - -#: ../admin/partials/admin.php:804 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the " -"listing." -msgstr "" - -#: ../admin/partials/admin.php:811 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the specified " -"category ID(s). If a minus sign is used, entries associated to the category will be " -"excluded instead." -msgstr "" - -#: ../admin/partials/admin.php:818 -msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy." -msgstr "" - -#: ../admin/partials/admin.php:825 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the specified " -"term ID(s). If a minus sign is used, entries associated to the term(s) will be " -"excluded instead." -msgstr "" - -#: ../admin/partials/admin.php:832 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by specified " -"author(s) ID(s)." -msgstr "" - -#: ../admin/partials/admin.php:839 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" characters " -"whenever possible" -msgstr "" - -#: ../admin/partials/admin.php:846 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words " -"instead of characters" -msgstr "" - -#: ../admin/partials/admin.php:853 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters " -"long from the content of each post listed as popular" -msgstr "" - -#: ../admin/partials/admin.php:860 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) " -"and hyperlinks found in the excerpt" -msgstr "" - -#: ../admin/partials/admin.php:867 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead " -"of characters" -msgstr "" - -#: ../admin/partials/admin.php:874 -msgid "" -"If set, and if your current server configuration allows it, you will be able to " -"display thumbnails of your posts. This attribute sets the width for thumbnails" -msgstr "" - -#: ../admin/partials/admin.php:881 -msgid "" -"If set, and if your current server configuration allows it, you will be able to " -"display thumbnails of your posts. This attribute sets the height for thumbnails" -msgstr "" - -#: ../admin/partials/admin.php:888 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your blog, " -"WordPress Popular Posts will show how your visitors are rating your entries" -msgstr "" - -#: ../admin/partials/admin.php:895 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular post has got " -"during the specified time range" -msgstr "" - -#: ../admin/partials/admin.php:902 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post has got " -"during the specified time range" -msgstr "" - -#: ../admin/partials/admin.php:909 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on the list" -msgstr "" - -#: ../admin/partials/admin.php:916 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post on the " -"list was published" -msgstr "" - -#: ../admin/partials/admin.php:923 -msgid "Sets the date format" -msgstr "" - -#: ../admin/partials/admin.php:930 -msgid "" -"If set, WordPress Popular Posts will display the categories associated to each entry" -msgstr "" - -#: ../admin/partials/admin.php:937 -msgid "" -"If set, WordPress Popular Posts will display the taxonomies associated to each entry" -msgstr "" - -#: ../admin/partials/admin.php:944 -msgid "Sets the opening tag for the listing" -msgstr "" - -#: ../admin/partials/admin.php:951 -msgid "Sets the closing tag for the listing" -msgstr "" - -#: ../admin/partials/admin.php:958 -msgid "Sets the HTML structure of each post" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "Text string, custom HTML" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "Available Content Tags" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns thumbnail image without linking to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns linked post/page title" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns the post/page ID" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns the default stats tags" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page current rating, requires WP-PostRatings installed and enabled" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "" -"returns post/page current rating as an integer, requires WP-PostRatings installed and " -"enabled" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns the URL of the post/page" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page title, no link" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns linked author name, requires stats_author=1" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns linked category name, requires stats_category=1" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns linked taxonomy names, requires stats_taxonomy=1" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns views count only, no text" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns comments count only, no text, requires stats_comments=1" -msgstr "" - -#: ../admin/partials/admin.php:959 -msgid "returns post/page date, requires stats_date=1" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:126 -msgid "Sorry. No data so far." -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:497 -#, php-format -msgid "%s ago" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:714 -#, php-format -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "" -msgstr[1] "" - -#: ../includes/class-wordpress-popular-posts-output.php:743 -#, php-format -msgid "by %s" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted %s" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:749 -#, php-format -msgid "posted on %s" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-output.php:758 -#, php-format -msgid "under %s" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-widget.php:21 -msgid "The most Popular Posts on your blog." -msgstr "" - -#: ../includes/class-wordpress-popular-posts-widget.php:94 -#, php-format -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</" -"em> attribute on before_widget (see <a href=\"%s\" target=\"_blank\" rel=\"nofollow" -"\">register_sidebar</a> for more)" -msgstr "" - -#: ../includes/class-wordpress-popular-posts-widget.php:105 -msgid "Loading..." -msgstr "" - -#: ../includes/widget-form.php:3 -msgid "Title" -msgstr "" - -#: ../includes/widget-form.php:9 -msgid "Show up to" -msgstr "" - -#: ../includes/widget-form.php:10 -msgid "posts" -msgstr "" - -#: ../includes/widget-form.php:15 -msgid "Sort posts by" -msgstr "" - -#: ../includes/widget-form.php:18 -msgid "Total views" -msgstr "" - -#: ../includes/widget-form.php:19 -msgid "Avg. daily views" -msgstr "" - -#: ../includes/widget-form.php:26 -msgid "Filters" -msgstr "" - -#: ../includes/widget-form.php:28 -msgid "Time Range" -msgstr "" - -#: ../includes/widget-form.php:30 -msgid "Last 24 hours" -msgstr "" - -#: ../includes/widget-form.php:31 -msgid "Last 7 days" -msgstr "" - -#: ../includes/widget-form.php:32 -msgid "Last 30 days" -msgstr "" - -#: ../includes/widget-form.php:33 -msgid "All-time" -msgstr "" - -#: ../includes/widget-form.php:34 -msgid "Custom" -msgstr "" - -#: ../includes/widget-form.php:50 -msgid "Post type(s)" -msgstr "" - -#: ../includes/widget-form.php:53 -msgid "Post ID(s) to exclude" -msgstr "" - -#: ../includes/widget-form.php:56 -msgid "Taxonomy" -msgstr "" - -#: ../includes/widget-form.php:69 -msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)" -msgstr "" - -#: ../includes/widget-form.php:75 -msgid "Author ID(s)" -msgstr "" - -#: ../includes/widget-form.php:81 -msgid "Posts settings" -msgstr "" - -#: ../includes/widget-form.php:85 -msgid "Display post rating" -msgstr "" - -#: ../includes/widget-form.php:88 -msgid "Shorten title" -msgstr "" - -#: ../includes/widget-form.php:91 -msgid "Shorten title to" -msgstr "" - -#: ../includes/widget-form.php:92 ../includes/widget-form.php:102 -msgid "characters" -msgstr "" - -#: ../includes/widget-form.php:93 ../includes/widget-form.php:103 -msgid "words" -msgstr "" - -#: ../includes/widget-form.php:96 -msgid "Display post excerpt" -msgstr "" - -#: ../includes/widget-form.php:99 -msgid "Keep text format and links" -msgstr "" - -#: ../includes/widget-form.php:100 -msgid "Excerpt length" -msgstr "" - -#: ../includes/widget-form.php:106 -msgid "Display post thumbnail" -msgstr "" - -#: ../includes/widget-form.php:109 -msgid "Use predefined size" -msgstr "" - -#: ../includes/widget-form.php:121 -msgid "Set size manually" -msgstr "" - -#: ../includes/widget-form.php:123 -msgid "Width" -msgstr "" - -#: ../includes/widget-form.php:126 -msgid "Height" -msgstr "" - -#: ../includes/widget-form.php:133 -msgid "Stats Tag settings" -msgstr "" - -#: ../includes/widget-form.php:135 -msgid "Display comment count" -msgstr "" - -#: ../includes/widget-form.php:137 -msgid "Display views" -msgstr "" - -#: ../includes/widget-form.php:139 -msgid "Display author" -msgstr "" - -#: ../includes/widget-form.php:141 -msgid "Display date" -msgstr "" - -#: ../includes/widget-form.php:144 -msgid "Date Format" -msgstr "" - -#: ../includes/widget-form.php:146 -msgid "Relative" -msgstr "" - -#: ../includes/widget-form.php:147 -msgid "WordPress Date Format" -msgstr "" - -#: ../includes/widget-form.php:154 -msgid "Display taxonomy" -msgstr "" - -#: ../includes/widget-form.php:175 -msgid "HTML Markup settings" -msgstr "" - -#: ../includes/widget-form.php:177 -msgid "Use custom HTML Markup" -msgstr "" - -#: ../includes/widget-form.php:180 -msgid "Before / after title" -msgstr "" - -#: ../includes/widget-form.php:183 -msgid "Before / after Popular Posts" -msgstr "" - -#: ../includes/widget-form.php:186 -msgid "Post HTML Markup" -msgstr "" diff --git a/wp-content/plugins/wordpress-popular-posts/no_thumb.jpg b/wp-content/plugins/wordpress-popular-posts/no_thumb.jpg deleted file mode 100644 index d2f59fabe0b315a7038f85429ba84dc0185dc105..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/no_thumb.jpg and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/public/class-wordpress-popular-posts-public.php b/wp-content/plugins/wordpress-popular-posts/public/class-wordpress-popular-posts-public.php deleted file mode 100644 index ed13b43e4fc86dea891f18e06153effbf03ebfae..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/public/class-wordpress-popular-posts-public.php +++ /dev/null @@ -1,494 +0,0 @@ -<?php - -/** - * The public-facing functionality of the plugin. - * - * @link http://cabrerahector.com/ - * @since 4.0.0 - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/public - */ - -/** - * The public-facing functionality of the plugin. - * - * Defines the plugin name, version, and hooks to - * enqueue the public-specific stylesheet and JavaScript. - * - * @package WordPressPopularPosts - * @subpackage WordPressPopularPosts/public - * @author Hector Cabrera <me@cabrerahector.com> - */ -class WPP_Public { - - /** - * The ID of this plugin. - * - * @since 4.0.0 - * @access private - * @var string $plugin_name The ID of this plugin. - */ - private $plugin_name; - - /** - * The version of this plugin. - * - * @since 4.0.0 - * @access private - * @var string $version The current version of this plugin. - */ - private $version; - - /** - * Administrative settings. - * - * @since 2.3.3 - * @var array - */ - private $admin_options = array(); - - /** - * Initialize the class and set its properties. - * - * @since 4.0.0 - * @param string $plugin_name The name of the plugin. - * @param string $version The version of this plugin. - */ - public function __construct( $plugin_name, $version ) { - - $this->plugin_name = $plugin_name; - $this->version = $version; - $this->admin_options = WPP_Settings::get( 'admin_options' ); - - } - - /** - * Register the stylesheets for the public-facing side of the site. - * - * @since 4.0.0 - */ - public function enqueue_styles() { - if ( $this->admin_options['tools']['css'] ) { - $theme_file = get_stylesheet_directory() . '/wpp.css'; - - if ( @is_file( $theme_file ) ) { - wp_enqueue_style( 'wordpress-popular-posts-css', get_stylesheet_directory_uri() . "/wpp.css", array(), $this->version, 'all' ); - } // Load stock stylesheet - else { - wp_enqueue_style( 'wordpress-popular-posts-css', plugin_dir_url( __FILE__ ) . 'css/wpp.css', array(), $this->version, 'all' ); - } - } - } - - /** - * Register the stylesheets for the public-facing side of the site. - * - * @since 4.0.0 - */ - public function enqueue_scripts() { - - /** - * Enqueue WPP's tracking code. - */ - - $is_single = WPP_Helper::is_single(); - - if ( $is_single ) { - - if ( - ( 0 == $this->admin_options['tools']['log']['level'] && !is_user_logged_in() ) - || ( 1 == $this->admin_options['tools']['log']['level'] ) - || ( 2 == $this->admin_options['tools']['log']['level'] && is_user_logged_in() ) - ) { - - wp_register_script( 'wpp-js', plugin_dir_url( __FILE__ ) . 'js/wpp.js', array(), $this->version, false ); - - $params = array( - 'sampling_active' => $this->admin_options['tools']['sampling']['active'], - 'sampling_rate' => $this->admin_options['tools']['sampling']['rate'], - 'ajax_url' => admin_url( 'admin-ajax.php', is_ssl() ? 'https' : 'http' ), - 'action' => 'update_views_ajax', - 'ID' => $is_single, - 'token' => wp_create_nonce( 'wpp-token' ) - ); - wp_localize_script( 'wpp-js', 'wpp_params', $params ); - - wp_enqueue_script( 'wpp-js' ); - - } - - } - - } - - /** - * Updates views count on page load via AJAX. - * - * @since 2.0.0 - */ - public function update_views(){ - - if ( !wp_verify_nonce($_POST['token'], 'wpp-token') || !WPP_helper::is_number($_POST['wpp_id']) ) { - die( "WPP: Oops, invalid request!" ); - } - - $nonce = $_POST['token']; - $post_ID = $_POST['wpp_id']; - - $exec_time = 0; - - $start = WPP_helper::microtime_float(); - $result = $this->update_views_count( $post_ID ); - $end = WPP_helper::microtime_float(); - - $exec_time += round( $end - $start, 6 ); - - if ( $result ) { - die( "WPP: OK. Execution time: " . $exec_time . " seconds" ); - } - - die( "WPP: Oops, could not update the views count!" ); - - } // end update_views_ajax - - /** - * Updates views count. - * - * @since 1.4.0 - * @access private - * @global object $wpdb - * @param int $post_ID - * @return bool|int FALSE if query failed, TRUE on success - */ - private function update_views_count( $post_ID ) { - - /* - TODO: - For WordPress Multisite, we must define the DIEONDBERROR constant for database errors to display like so: - <?php define( 'DIEONDBERROR', true ); ?> - */ - - global $wpdb; - $table = $wpdb->prefix . "popularposts"; - $wpdb->show_errors(); - - // Get translated object ID - $translate = WPP_translate::get_instance(); - $post_ID = $translate->get_object_id( - $post_ID, - get_post_type( $post_ID ), - true, - $translate->get_default_language() - ); - - $now = WPP_helper::now(); - $curdate = WPP_helper::curdate(); - $views = ( $this->admin_options['tools']['sampling']['active'] ) - ? $this->admin_options['tools']['sampling']['rate'] - : 1; - - // Allow WP themers / coders perform an action - // before updating views count - if ( has_action( 'wpp_pre_update_views' ) ) - do_action( 'wpp_pre_update_views', $post_ID, $views ); - - // Update all-time table - $result1 = $wpdb->query( $wpdb->prepare( - "INSERT INTO {$table}data - (postid, day, last_viewed, pageviews) VALUES (%d, %s, %s, %d) - ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, last_viewed = %s;", - $post_ID, - $now, - $now, - $views, - $views, - $now - )); - - // Update range (summary) table - $result2 = $wpdb->query( $wpdb->prepare( - "INSERT INTO {$table}summary - (postid, pageviews, view_date, view_datetime) VALUES (%d, %d, %s, %s) - ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, view_datetime = %s;", - $post_ID, - $views, - $curdate, - $now, - $views, - $now - )); - - if ( !$result1 || !$result2 ) - return false; - - // Allow WP themers / coders perform an action - // after updating views count - if ( has_action( 'wpp_post_update_views' ) ) - do_action( 'wpp_post_update_views', $post_ID ); - - return true; - - } // end update_views_count - - /** - * WPP shortcode handler. - * - * @since 1.4.0 - * @param array $atts User defined attributes in shortcode tag - * @return string - */ - public function wpp_shortcode( $atts = null ) { - /** - * @var string $header - * @var int $limit - * @var int $offset - * @var string $range - * @var bool $freshness - * @var string $order_by - * @var string $post_type - * @var string $pid - * @var string $cat - * @var string $author - * @var int $title_length - * @var int $title_by_words - * @var int $excerpt_length - * @var int $excerpt_format - * @var int $excerpt_by_words - * @var int $thumbnail_width - * @var int $thumbnail_height - * @var bool $rating - * @var bool $stats_comments - * @var bool $stats_views - * @var bool $stats_author - * @var bool $stats_date - * @var string $stats_date_format - * @var bool $stats_category - * @var string $wpp_start - * @var string $wpp_end - * @var string $header_start - * @var string $header_end - * @var string $post_html - * @var bool $php - */ - extract( shortcode_atts( array( - 'header' => '', - 'limit' => 10, - 'offset' => 0, - 'range' => 'daily', - 'time_unit' => 'hour', - 'time_quantity' => 24, - 'freshness' => false, - 'order_by' => 'views', - 'post_type' => 'post,page', - 'pid' => '', - 'cat' => '', - 'taxonomy' => 'category', - 'term_id' => '', - 'author' => '', - 'title_length' => 0, - 'title_by_words' => 0, - 'excerpt_length' => 0, - 'excerpt_format' => 0, - 'excerpt_by_words' => 0, - 'thumbnail_width' => 0, - 'thumbnail_height' => 0, - 'rating' => false, - 'stats_comments' => false, - 'stats_views' => true, - 'stats_author' => false, - 'stats_date' => false, - 'stats_date_format' => 'F j, Y', - 'stats_category' => false, - 'stats_taxonomy' => false, - 'wpp_start' => '<ul class="wpp-list">', - 'wpp_end' => '</ul>', - 'header_start' => '<h2>', - 'header_end' => '</h2>', - 'post_html' => '', - 'php' => false - ), $atts, 'wpp') ); - - // possible values for "Time Range" and "Order by" - $time_units = array( "minute", "hour", "day", "week", "month" ); - $range_values = array( "daily", "last24hours", "weekly", "last7days", "monthly", "last30days", "all", "custom" ); - $order_by_values = array( "comments", "views", "avg" ); - - $shortcode_ops = array( - 'title' => strip_tags( $header ), - 'limit' => ( !empty( $limit ) && WPP_Helper::is_number( $limit ) && $limit > 0 ) ? $limit : 10, - 'offset' => ( !empty( $offset ) && WPP_Helper::is_number( $offset ) && $offset >= 0 ) ? $offset : 0, - 'range' => ( in_array($range, $range_values) ) ? $range : 'daily', - 'time_quantity' => ( !empty( $time_quantity ) && WPP_Helper::is_number( $time_quantity ) && $time_quantity > 0 ) ? $time_quantity : 24, - 'time_unit' => ( in_array($time_unit, $time_units) ) ? $time_unit : 'hour', - 'freshness' => empty( $freshness ) ? false : $freshness, - 'order_by' => ( in_array( $order_by, $order_by_values ) ) ? $order_by : 'views', - 'post_type' => empty( $post_type ) ? 'post,page' : $post_type, - 'pid' => rtrim( preg_replace( '|[^0-9,]|', '', $pid ), "," ), - 'cat' => rtrim( preg_replace( '|[^0-9,-]|', '', $cat ), "," ), - 'taxonomy' => empty( $taxonomy ) ? 'category' : $taxonomy, - 'term_id' => rtrim( preg_replace( '|[^0-9,-]|', '', $term_id ), "," ), - 'author' => rtrim( preg_replace( '|[^0-9,]|', '', $author ), "," ), - 'shorten_title' => array( - 'active' => ( !empty( $title_length ) && WPP_Helper::is_number( $title_length ) && $title_length > 0 ), - 'length' => ( !empty( $title_length ) && WPP_Helper::is_number( $title_length) ) ? $title_length : 0, - 'words' => ( !empty( $title_by_words ) && WPP_Helper::is_number( $title_by_words ) && $title_by_words > 0 ), - ), - 'post-excerpt' => array( - 'active' => ( !empty( $excerpt_length ) && WPP_Helper::is_number( $excerpt_length ) && $excerpt_length > 0 ), - 'length' => ( !empty( $excerpt_length ) && WPP_Helper::is_number( $excerpt_length ) ) ? $excerpt_length : 0, - 'keep_format' => ( !empty( $excerpt_format ) && WPP_Helper::is_number( $excerpt_format ) && $excerpt_format > 0 ), - 'words' => ( !empty( $excerpt_by_words ) && WPP_Helper::is_number( $excerpt_by_words ) && $excerpt_by_words > 0 ), - ), - 'thumbnail' => array( - 'active' => ( !empty( $thumbnail_width ) && WPP_Helper::is_number( $thumbnail_width ) && $thumbnail_width > 0 ), - 'width' => ( !empty( $thumbnail_width ) && WPP_Helper::is_number( $thumbnail_width ) && $thumbnail_width > 0 ) ? $thumbnail_width : 0, - 'height' => ( !empty( $thumbnail_height ) && WPP_Helper::is_number( $thumbnail_height ) && $thumbnail_height > 0 ) ? $thumbnail_height : 0, - ), - 'rating' => empty( $rating ) ? false : $rating, - 'stats_tag' => array( - 'comment_count' => empty( $stats_comments ) ? false : $stats_comments, - 'views' => empty( $stats_views ) ? false : $stats_views, - 'author' => empty( $stats_author ) ? false : $stats_author, - 'date' => array( - 'active' => empty( $stats_date ) ? false : $stats_date, - 'format' => empty( $stats_date_format ) ? 'F j, Y' : $stats_date_format - ), - 'category' => empty( $stats_category ) ? false : $stats_category, - 'taxonomy' => array( - 'active' => empty( $stats_taxonomy ) ? false : $stats_taxonomy, - 'name' => empty( $taxonomy ) ? 'category' : $taxonomy, - ) - ), - 'markup' => array( - 'custom_html' => true, - 'wpp-start' => empty( $wpp_start ) ? '<ul class="wpp-list">' : $wpp_start, - 'wpp-end' => empty( $wpp_end) ? '</ul>' : $wpp_end, - 'title-start' => empty( $header_start ) ? '' : $header_start, - 'title-end' => empty( $header_end ) ? '' : $header_end, - 'post-html' => empty( $post_html ) ? '<li>{thumb} {title} <span class="wpp-meta post-stats">{stats}</span></li>' : $post_html - ) - ); - - // Post / Page / CTP filter - $ids = array_filter( explode( ",", $shortcode_ops['pid'] ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $shortcode_ops['pid'] = ''; - } - else { - $instance['pid'] = implode( ",", $ids ); - } - - // Category filter - $ids = array_filter( explode( ",", $shortcode_ops['cat'] ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $shortcode_ops['cat'] = ''; - } - else { - $instance['cat'] = implode( ",", $ids ); - } - - // Author filter - $ids = array_filter( explode( ",", $shortcode_ops['author'] ), 'is_numeric' ); - // Got no valid IDs, clear - if ( empty( $ids ) ) { - $shortcode_ops['author'] = ''; - } - else { - $instance['author'] = implode( ",", $ids ); - } - - $shortcode_content = "\n". "<!-- WordPress Popular Posts Plugin v". $this->version ." [" . ( $php ? "PHP" : "SC" ) . "] [".$shortcode_ops['range']."] [".$shortcode_ops['order_by']."] [custom]" . ( !empty($shortcode_ops['pid']) ? " [PID]" : "" ) . ( !empty($shortcode_ops['cat']) ? " [CAT]" : "" ) . ( !empty($shortcode_ops['author']) ? " [UID]" : "" ) . " -->"."\n"; - - // is there a title defined by user? - if ( - !empty( $header ) - && !empty( $header_start ) - && !empty( $header_end ) - ) { - $shortcode_content .= htmlspecialchars_decode( $header_start, ENT_QUOTES ) . apply_filters( 'widget_title', $header ) . htmlspecialchars_decode( $header_end, ENT_QUOTES ); - } - - $cached = false; - - // Return cached results - if ( $this->admin_options['tools']['cache']['active'] ) { - - $transient_name = md5( json_encode($shortcode_ops) ); - $popular_posts = get_transient( $transient_name ); - - if ( false === $popular_posts ) { - - $popular_posts = new WPP_Query( $shortcode_ops ); - - switch( $this->admin_options['tools']['cache']['interval']['time'] ){ - - case 'minute': - $time = 60; - break; - - case 'hour': - $time = 60 * 60; - break; - - case 'day': - $time = 60 * 60 * 24; - break; - - case 'week': - $time = 60 * 60 * 24 * 7; - break; - - case 'month': - $time = 60 * 60 * 24 * 30; - break; - - case 'year': - $time = 60 * 60 * 24 * 365; - break; - - default: - $time = 60 * 60; - break; - - } - - $expiration = $time * $this->admin_options['tools']['cache']['interval']['value']; - - // Store transient - set_transient( $transient_name, $popular_posts, $expiration ); - - // Store transient in WPP transients array for garbage collection - $wpp_transients = get_option('wpp_transients'); - - if ( !$wpp_transients ) { - $wpp_transients = array( $transient_name ); - add_option( 'wpp_transients', $wpp_transients ); - } else { - if ( !in_array($transient_name, $wpp_transients) ) { - $wpp_transients[] = $transient_name; - update_option( 'wpp_transients', $wpp_transients ); - } - } - - } - - $cached = true; - - } // Get popular posts - else { - $popular_posts = new WPP_Query( $shortcode_ops ); - } - - $output = new WPP_Output( $popular_posts->get_posts(), $shortcode_ops ); - - $shortcode_content .= $output->get_output(); - $shortcode_content .= "\n" . "<!-- End WordPress Popular Posts Plugin v" . $this->version . " -->" . ( $cached ? '<!-- cached -->' : '' ) . "\n"; - - return $shortcode_content; - - } - -} // End WPP_Public class diff --git a/wp-content/plugins/wordpress-popular-posts/public/css/wpp.css b/wp-content/plugins/wordpress-popular-posts/public/css/wpp.css deleted file mode 100644 index 48ad582739e88206ac3f2f4477fe918489f97701..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/public/css/wpp.css +++ /dev/null @@ -1,73 +0,0 @@ -/* -Wordpress Popular Posts plugin stylesheet -Developed by Hector Cabrera -cabrerahector.com | @cabrerahector - -Use the following classes to style your popular posts list as you like. -*/ - -/* Styles the "Sorry, no data so far" message */ -.wpp-no-data { -} - -/* UL - Popular Posts container styles */ -.wpp-list { -} - - /* LI - Post container styles */ - .wpp-list li { - overflow: hidden; - float: none; - clear: both; - } - - /* Styles for the popular post in view */ - .wpp-list li.current { - } - - /* Thumbnail styles */ - .wpp-thumbnail { - display: inline; - float: left; - margin: 0 5px 0 0; - border: none; - } - - /* Title styles */ - .wpp-post-title { - } - - /* Excerpt styles */ - .wpp-excerpt { - } - - /* Stats tag styles */ - .wpp-meta, .post-stats { - display: block; - font-size: 0.8em; - font-weight: bold; - } - - /* Comments count styles */ - .wpp-comments { - } - - /* Views count styles */ - .wpp-views { - } - - /* Author styles */ - .wpp-author { - } - - /* Post date styles */ - .wpp-date { - } - - /* Post category styles */ - .wpp-category { - } - - /* WP-PostRatings styles */ - .wpp-rating { - } \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/public/images/no_thumb.jpg b/wp-content/plugins/wordpress-popular-posts/public/images/no_thumb.jpg deleted file mode 100644 index d2f59fabe0b315a7038f85429ba84dc0185dc105..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/wordpress-popular-posts/public/images/no_thumb.jpg and /dev/null differ diff --git a/wp-content/plugins/wordpress-popular-posts/public/index.php b/wp-content/plugins/wordpress-popular-posts/public/index.php deleted file mode 100644 index e71af0ef21ae90eb61db4b117bfd97b00e65113b..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/public/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/public/js/tracking.js b/wp-content/plugins/wordpress-popular-posts/public/js/tracking.js deleted file mode 100644 index efbd5164075d6e1377428c77fd4c9c7f9534209a..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/public/js/tracking.js +++ /dev/null @@ -1 +0,0 @@ -;if("undefined"!==typeof wpp_params){var do_request=!0;if(1==wpp_params.sampling_active)var num=Math.floor(Math.random()*wpp_params.sampling_rate)+1,do_request=1===num;if(do_request){var xhr=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP"),url=wpp_params.ajax_url,params="action="+wpp_params.action+"&token="+wpp_params.token+"&wpp_id="+wpp_params.ID;xhr.open("POST",url,!0);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.onreadystatechange=function(){4===xhr.readyState&&200===xhr.status&&window.console&&window.console.log&&window.console.log(xhr.responseText)};xhr.send(params)}}; \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/public/js/wpp.js b/wp-content/plugins/wordpress-popular-posts/public/js/wpp.js deleted file mode 100644 index efbd5164075d6e1377428c77fd4c9c7f9534209a..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/public/js/wpp.js +++ /dev/null @@ -1 +0,0 @@ -;if("undefined"!==typeof wpp_params){var do_request=!0;if(1==wpp_params.sampling_active)var num=Math.floor(Math.random()*wpp_params.sampling_rate)+1,do_request=1===num;if(do_request){var xhr=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP"),url=wpp_params.ajax_url,params="action="+wpp_params.action+"&token="+wpp_params.token+"&wpp_id="+wpp_params.ID;xhr.open("POST",url,!0);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.onreadystatechange=function(){4===xhr.readyState&&200===xhr.status&&window.console&&window.console.log&&window.console.log(xhr.responseText)};xhr.send(params)}}; \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/readme.txt b/wp-content/plugins/wordpress-popular-posts/readme.txt deleted file mode 100644 index 1dca99dd3bea5c7baefd713be1f4a1ba27165a27..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/readme.txt +++ /dev/null @@ -1,193 +0,0 @@ -=== WordPress Popular Posts === -Contributors: hcabrera -Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hcabrerab%40gmail%2ecom&lc=GB&item_name=WordPress%20Popular%20Posts%20Plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG_global%2egif%3aNonHosted -Tags: popular, posts, widget, popularity, top -Requires at least: 4.1 -Tested up to: 4.8.3 -Stable tag: 4.0.12 -License: GPLv2 or later -License URI: http://www.gnu.org/licenses/gpl-2.0.html - -A highly customizable, easy-to-use popular posts widget! - -== Description == - -WordPress Popular Posts is a highly customizable widget that displays your most popular posts. - -= Main Features = -* **Multi-widget capable** - You can have several widgets of WordPress Popular Posts on your blog, each with its own settings! -* **Time Range** - List those posts of your blog that have been the most popular ones within a specific time range (eg. last 24 hours, last 7 days, last 30 days, etc)! -* **Custom Post-type support** - Wanna show other stuff than just posts and pages? -* **Thumbnails!** - Display a thumbnail of your posts! (*see the [FAQ section](http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/) for technical requirements*.) -* **Statistics dashboard** - See how your popular posts are doing directly from your admin area. -* **Sorting options** - Order your popular list by comments, views (default) or average views per day! -* **Use your own layout!** - WPP is flexible enough to let you customize the look and feel of your popular posts! (see [customizing WPP's HTML markup](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#how-can-i-use-my-own-html-markup-with-your-plugin) and [How to style WordPress Popular Posts](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list) for more.) -* **Disqus support** - Sort your popular posts by Disqus comments count! -* **Polylang & WPML 3.2+ support!** -* **WordPress Multisite support** - Each site on the network can have its own popular posts! - -= Other Features = -* **Shortcode support** - Use the [wpp] shortcode to showcase your most popular posts on pages, too! For usage and instructions, please refer to the [installation section](http://wordpress.org/extend/plugins/wordpress-popular-posts/installation/). -* **Template tags** - Don't feel like using widgets? No problem! You can still embed your most popular entries on your theme using the *wpp_get_mostpopular()* template tag. Additionally, the *wpp_get_views()* template tag allows you to retrieve the views count for a particular post. For usage and instructions, please refer to the [installation section](http://wordpress.org/extend/plugins/wordpress-popular-posts/installation/). -* **Localization** - Translate WPP to your own language (*See the [FAQ section](http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/) for more info*). -* **[WP-PostRatings](http://wordpress.org/extend/plugins/wp-postratings/) support** - Show your visitors how your readers are rating your posts! - -**WordPress Popular Posts** is now also on [GitHub](https://github.com/cabrerahector/wordpress-popular-posts)! - -== Installation == - -Please make sure your site meets the [minimum requirements](https://github.com/cabrerahector/wordpress-popular-posts#requirements) before proceeding. - -= Automatic installation = - -1. Log in into your WordPress dashboard. -2. Go to Plugins > Add New. -3. In the "Search Plugins" field, type in **WordPress Popular Posts** and hit Enter. -4. Find the plugin in the search results list and click on the "Install Now" button. - -= Manual installation = - -1. Download the plugin and extract its contents. -2. Upload the `wordpress-popular-posts` folder to the `/wp-content/plugins/` directory. -3. Activate the **WordPress Popular Posts** plugin through the "Plugins" menu in WordPress. - -= Done! What's next? = - -1. Go to Appearance > Widgets, drag and drop the **WordPress Popular Posts** widget to your sidebar. Once you're done configuring it, hit the Save button. -2. If you have a caching plugin installed on your site, flush its cache now so WPP can start tracking your site. -3. Go to Appearance > Editor. Under "Templates", click on `header.php` and make sure that the `<?php wp_head(); ?>` tag is present (should be right before the closing `</head>` tag). -4. (Optional, but highly recommended for large / high traffic sites) Enabling [Data Sampling](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling) and/or [Caching](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching) might be a good idea. Check [here](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more. - -That's it! - -= USAGE = - -WordPress Popular Posts can be used in three different ways: - -1. As a [widget](http://codex.wordpress.org/WordPress_Widgets): simply drag and drop it into your theme's sidebar and configure it. -2. As a template tag: you can place it anywhere on your theme with [wpp_get_mostpopular()](https://github.com/cabrerahector/wordpress-popular-posts/wiki/2.-Template-tags#wpp_get_mostpopular). -3. Via [shortcode](https://github.com/cabrerahector/wordpress-popular-posts/wiki/1.-Using-WPP-on-posts-&-pages), so you can embed it inside a post or a page. - -Make sure to stop by the **[Wiki](https://github.com/cabrerahector/wordpress-popular-posts/wiki)** as well, you'll find even more info there! - -== Frequently Asked Questions == - -The FAQ section has been moved [here](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ). - -== Screenshots == - -1. Widgets Control Panel. -2. WordPress Popular Posts Widget. -3. WordPress Popular Posts Widget on theme's sidebar. -4. WordPress Popular Posts Stats panel. - -== Changelog == -= 4.0.12 = - -- Fixes bug where WPP didn't return the right URL when using Polylang / WPML. -- Fixes a compatibility issue with Yoast SEO (and potentially other plugins as well). -- Improves compatibility with MySQL 5.7+. -- Other minor fixes and improvements. - -= 4.0.11 = - -**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.** - -- Fixes reference to tracking script. - -= 4.0.10 = - -**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.** - -- Renames tracking script to prevent issues with ad blockers (props @Damienov). -- Widget: fixes caching (props @zu2). -- Exposes offset parameter to wpp shortcode / `wpp_get_mostpopular` template tag. - -= 4.0.9 = -- Widget: fixes Author ID field not saving/updating. -- Fixes WPP data caching (props @zu2). -- Dashboard: updates Content Tags' documentation. -- Main POT file updated. -- Other minor bug fixes & improvements. - -= 4.0.8 = -- Multisite: plugin can now be installed individually on each site. -- Multisite: improved upgrade process. -- Dashboard: adds multisite check to Debug screen. -- Dashboard: have the Debug screen display active plugins only. -- Improves compatibility with Beaver Builder. -- Adds onload event to ajax widget (props @cawa-93). -- Other minor bug fixes. - -= 4.0.6 = - -- Improves compatibility with Multisite. -- Fixes a bug that prevented upgrade process from running on MU (props Greg Sullivan!) -- Improves compatibility with Beaver Builder. - -= 4.0.5 = - -- Fixes the taxonomy filter for Custom Post Types. -- Updates summary table structure and indexes. -- Adds back ability to use custom wpp.css from theme. -- Dashboard: adds a Debug screen to help with support inquiries. -- Other minor bug fixes and improvements. - -= 4.0.3 = - -**This is a hotfix release.** - -- Dashboard: escapes post titles to prevent potential XSS (props Delta!) -- Restores ability to use a custom default thumbnail. - -= 4.0.2 = - -**This is a hotfix release.** - -- Dashboard: fixes thumbnail picker on HTTPS. -- Adds the wpp_custom_html filter back. - -= 4.0.1 = - -**This is a hotfix release.** - -- Fixes a warning message triggered on old PHP versions. -- Fixes undefined default_thumbnail_sizes warning message. -- Removes a hardcoded table prefix causing issues on sites that uses a different prefix than the stock one. - -= 4.0.0 = - -**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.** - -- Plugin code refactored! -- Dashboard section redesigned (now mobile-friendly, too!) -- New Statistics chart and other goodies. -- Adds ability to pick a Custom Time Range! -- Adds ability to filter posts by other taxonomies than just categories! -- Adds Relative Date Format. -- Fixes broken views tracking caused by changeset 41508 https://core.trac.wordpress.org/changeset/41508 (props hykw!) -- Improves PHP7+ compatibility. -- Improves compatibility with WP-SpamShield, WooCommerce, Polylang and WPML. -- Drops qTranslate support (that plugin has been long removed from WordPress.org anyways.) -- New content tags added: {img_url}, {taxonomy}. -- New filters: wpp_post_class, wpp_post_exclude_terms. -- French and German translation files became too outdated and so support has been dropped for now (want to help? Contact me!) -- Tons of minor bug fixes and improvements. - -Also, see [Release notes](https://cabrerahector.com/development/wordpress-popular-posts-4-0-is-finally-out/). - -= 3.3.4 = -- Attempt to convert tables to InnoDB during upgrade if other engine is being used. -- Adds a check to prevent the upgrade process from running too many times. -- Minor improvements and bug fixes. -- Documentation updated. - -See [full changelog](https://github.com/cabrerahector/wordpress-popular-posts/blob/master/changelog.md). - -== Credits == - -* Flame graphic by freevector/Vecteezy.com. - -== Upgrade Notice == -= 4.0.11 = -If you're using a caching plugin, flushing its cache after upgrading to this version is highly recommended. \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/style/admin.css b/wp-content/plugins/wordpress-popular-posts/style/admin.css deleted file mode 100644 index a3e9cdca9234367a3f638feda002f6cf8d3e8628..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/style/admin.css +++ /dev/null @@ -1,117 +0,0 @@ -.wpp_boxes { - display:none; - overflow:hidden; - width:100%; -} - -.wpp_box { - overflow:hidden; - display:inline; - float:right; - margin:0 0 15px 0; - padding:10px; - width:250px; - background:#f9f9f9; - border: 1px solid #ccc; -} - -#wpp_donate { margin-top:15px; } - -#wpp_advertisement { display:none; } - -#wpp_advertisement, #wpp_support { clear:right; } - -.clear { - float:none; - clear:both; - width:100%; -} - - /* Stats */ - #wpp-stats-tabs { - padding:2px 0; - } - - #wpp-stats-canvas { - overflow:hidden; - padding:2px 0; - width:100%; - } - - .wpp-stats { - display:none; - width:96%px; - padding:1% 0; - font-size:8px; - background:#fff; - border:#999 3px solid; - } - - .wpp-stats-active { - display:block; - } - - .wpp-stats ol { - margin:0; - padding:0; - } - - .wpp-stats ol li { - /*overflow:hidden;*/ - margin:0 8px 15px 30px; - padding:0; - font-size:12px; - line-height:12px; - color:#999; - border-bottom:#eee 1px solid; - } - - .wpp-post-title { - /*display:inline; - float:left;*/ - font-weight:bold; - } - - .post-stats { - display:block; - padding:5px 0; - font-size:0.9em!important; - text-align:left; - color:#999; - } - - .wpp-stats-unique-item, .wpp-stats-last-item { - margin-bottom:0!important; - border:none!important; - } - - .wpp-stats-unique-item .post-stats, .wpp-stats-last-item .post-stats { padding-bottom:0; } - - .wpp-stats p { - margin:0; - padding:0 8px; - font-size:12px; - } - - /* FAQ */ - #wpp_faq { - } - - #wpp_faq h4 { - margin:18px 0 0 0; - } - - #wpp_faq h4 a.active { color:#d74e21; } - - .wpp-ans { - /*display:none;*/ - margin:5px 0 0 0; - width:96%; - padding:1% 2%; - background:#e5e5e5; - } - - .wpp-ans p { - margin:0 0 0 0; - padding:0; - } \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/style/index.php b/wp-content/plugins/wordpress-popular-posts/style/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/style/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/style/wpp.css b/wp-content/plugins/wordpress-popular-posts/style/wpp.css deleted file mode 100644 index 9999f6432795ddabbc57c704e582a26b495a5a0d..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/style/wpp.css +++ /dev/null @@ -1,73 +0,0 @@ -/* -Wordpress Popular Posts plugin stylesheet -Developed by Hector Cabrera -cabrerahector.com | @cabrerahector - -Use the following classes to style your popular posts list as you like. -*/ - -/* Styles the "Sorry, no data so far" message */ -.wpp-no-data { -} - -/* UL - Popular Posts container styles */ -.wpp-list { -} - - /* LI - Post container styles */ - .wpp-list li { - overflow:hidden; - float:none; - clear:both; - } - - /* Styles for the popular post in view */ - .wpp-list li.current { - } - - /* Thumbnail styles */ - .wpp-thumbnail { - display:inline; - float:left; - margin:0 5px 0 0; - border:none; - } - - /* Title styles */ - .wpp-post-title { - } - - /* Excerpt styles */ - .wpp-excerpt { - } - - /* Stats tag styles */ - .post-stats { - display:block; - font-size:9px; - font-weight:bold; - } - - /* Comments count styles */ - .wpp-comments { - } - - /* Views count styles */ - .wpp-views { - } - - /* Author styles */ - .wpp-author { - } - - /* Post date styles */ - .wpp-date { - } - - /* Post category styles */ - .wpp-category { - } - - /* WP-PostRatings styles */ - .wpp-rating { - } \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts-readme.pot b/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts-readme.pot deleted file mode 100644 index cbd7bb1b20c1709c0daf3a4b81ade87d447e97f3..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts-readme.pot +++ /dev/null @@ -1,422 +0,0 @@ -msgid "" -msgstr "MIME-Version: 1.0\n" - -#. Name. -msgid "WordPress Popular Posts" -msgstr "" - -#. Short description. -msgid "A highly customizable, easy-to-use popular posts widget!" -msgstr "" - -#. Screenshot description. -msgid "Widgets Control Panel." -msgstr "" - -#. Screenshot description. -msgid "WordPress Popular Posts Widget." -msgstr "" - -#. Screenshot description. -msgid "WordPress Popular Posts Widget on theme's sidebar." -msgstr "" - -#. Screenshot description. -msgid "WordPress Popular Posts Stats panel." -msgstr "" - -#. Found in description header. -msgid "Main Features" -msgstr "" - -#. Found in description header. -msgid "Other Features" -msgstr "" - -#. Found in description list item. -msgid "<strong>Multi-widget capable</strong>. That is, you can have several widgets of WordPress Popular Posts on your blog - each with its own settings!" -msgstr "" - -#. Found in description list item. -msgid "<strong>Time Range</strong> - list those posts of your blog that have been the most popular ones within a specific time range (eg. last 24 hours, last 7 days, last 30 days, etc.)!" -msgstr "" - -#. Found in description list item. -msgid "<strong>Custom Post-type support</strong>. Wanna show other stuff than just posts and pages?" -msgstr "" - -#. Found in description list item. -msgid "Display a <strong>thumbnail</strong> of your posts! (<em>see the <a href=\"http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/\">FAQ section</a> for technical requirements</em>)." -msgstr "" - -#. Found in description list item. -msgid "Use <strong>your own layout</strong>! Control how your most popular posts are shown on your theme." -msgstr "" - -#. Found in description list item. -msgid "<strong>WPML</strong> support!" -msgstr "" - -#. Found in description list item. -msgid "<strong>WordPress Multisite</strong> support!" -msgstr "" - -#. Found in description list item. -msgid "Check the <strong>statistics</strong> on your most popular posts from wp-admin." -msgstr "" - -#. Found in description list item. -msgid "Order your popular list by comments, views (default) or average views per day!" -msgstr "" - -#. Found in description list item. -msgid "<strong>Shortcode support</strong> - use the [wpp] shortcode to showcase your most popular posts on pages, too! For usage and instructions, please refer to the <a href=\"http://wordpress.org/extend/plugins/wordpress-popular-posts/installation/\">installation section</a>." -msgstr "" - -#. Found in description list item. -msgid "<strong>Template tags</strong> - Don't feel like using widgets? No problem! You can still embed your most popular entries on your theme using the <em>wpp_get_mostpopular()</em> template tag. Additionally, the <em>wpp_gets_views()</em> template tag allows you to retrieve the views count for a particular post. For usage and instructions, please refer to the <a href=\"http://wordpress.org/extend/plugins/wordpress-popular-posts/installation/\">installation section</a>." -msgstr "" - -#. Found in description list item. -msgid "<strong>Localizable</strong> to your own language (<em>See the <a href=\"http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/\">FAQ section</a> for more info</em>)." -msgstr "" - -#. Found in description list item. -msgid "<strong><a href=\"http://wordpress.org/extend/plugins/wp-postratings/\">WP-PostRatings</a> support</strong>. Show your visitors how your readers are rating your posts!" -msgstr "" - -#. Found in description paragraph. -msgid "WordPress Popular Posts is a highly customizable widget that displays the most popular posts on your blog." -msgstr "" - -#. Found in description paragraph. -msgid "<strong>WordPress Popular Posts</strong> is now also on <a href=\"https://github.com/cabrerahector/wordpress-popular-posts\">GitHub</a>!" -msgstr "" - -#. Found in installation header. -msgid "USAGE" -msgstr "" - -#. Found in installation list item. -msgid "Download the plugin and extract its contents." -msgstr "" - -#. Found in installation list item. -msgid "Upload the <code>wordpress-popular-posts</code> folder to the <code>/wp-content/plugins/</code> directory." -msgstr "" - -#. Found in installation list item. -msgid "Activate <strong>WordPress Popular Posts</strong> plugin through the \"Plugins\" menu in WordPress." -msgstr "" - -#. Found in installation list item. -msgid "In your admin console, go to Appearance > Widgets, drag the WordPress Popular Posts widget to wherever you want it to be and click on Save." -msgstr "" - -#. Found in installation list item. -msgid "If you have a caching plugin installed on your site, flush its cache now so WPP can start tracking your site." -msgstr "" - -#. Found in installation list item. -msgid "Go to Appearance > Editor. On \"Theme Files\", click on <code>header.php</code> and make sure that the <code><?php wp_head(); ?></code> tag is present (should be right before the closing <code></head></code> tag)." -msgstr "" - -#. Found in installation list item. -msgid "(optional, but recommended for large / high traffic sites) Enabling <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling\">Data Sampling</a> and/or <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching\">Caching</a> is recommended. Check <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance\">here</a> for more." -msgstr "" - -#. Found in installation list item. -msgid "As a <a href=\"http://codex.wordpress.org/WordPress_Widgets\">widget</a>: simply drag and drop it into your theme's sidebar and configure it." -msgstr "" - -#. Found in installation list item. -msgid "As a template tag: you can place it anywhere on your theme with <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/2.-Template-tags#wpp_get_mostpopular\">wpp_get_mostpopular()</a>." -msgstr "" - -#. Found in installation list item. -msgid "Via <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/1.-Using-WPP-on-posts-&-pages\">shortcode</a>, so you can embed it inside a post or a page." -msgstr "" - -#. Found in installation paragraph. -msgid "That's it!" -msgstr "" - -#. Found in installation paragraph. -msgid "WordPress Popular Posts can be used in three different ways:" -msgstr "" - -#. Found in installation paragraph. -msgid "Make sure to stop by the <strong><a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki\">Wiki</a></strong> as well, you'll find even more info there!" -msgstr "" - -#. Found in changelog list item. -msgid "Fixes warning message: 'stream does not support seeking in...'" -msgstr "" - -#. Found in changelog list item. -msgid "Removes excerpt HTML encoding." -msgstr "" - -#. Found in changelog list item. -msgid "Passes widget ID to the instance variable for customization." -msgstr "" - -#. Found in changelog list item. -msgid "Adds CSS class current." -msgstr "" - -#. Found in changelog list item. -msgid "Documentation cleanup." -msgstr "" - -#. Found in changelog list item. -msgid "Other minor bug fixes / improvements." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes undefined index notice." -msgstr "" - -#. Found in changelog list item. -msgid "Makes sure legacy tables are deleted on plugin upgrade." -msgstr "" - -#. Found in changelog list item. -msgid "Adds the ability to limit the amount of data logged by WPP (see Settings > WordPress Popular Posts > Tools for more)." -msgstr "" - -#. Found in changelog list item. -msgid "Adds Polylang support (thanks, <a href=\"https://github.com/Chouby\">@Chouby</a>!)" -msgstr "" - -#. Found in changelog list item. -msgid "Removes post data from DB on deletion." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes whitespaces from post_type argument (thanks, <a href=\"https://github.com/getdave\">@getdave</a>!)" -msgstr "" - -#. Found in changelog list item. -msgid "WPP now handles SSL detection for images." -msgstr "" - -#. Found in changelog list item. -msgid "Removes legacy datacache and datacache_backup tables." -msgstr "" - -#. Found in changelog list item. -msgid "Adds Settings page advertisement support." -msgstr "" - -#. Found in changelog list item. -msgid "FAQ section has been moved over to Github." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes a potential bug that might affect other plugins & themes (thanks @pippinsplugins)." -msgstr "" - -#. Found in changelog list item. -msgid "Defines INNODB as default storage engine." -msgstr "" - -#. Found in changelog list item. -msgid "Adds the wpp-no-data CSS class to style the \"Sorry, no data so far\" message." -msgstr "" - -#. Found in changelog list item. -msgid "Adds a new index to summary table." -msgstr "" - -#. Found in changelog list item. -msgid "Updates plugin's documentation." -msgstr "" - -#. Found in changelog list item. -msgid "Other small bug fixes and improvements." -msgstr "" - -#. Found in changelog list item. -msgid "Moves sampling logic into Javascript (thanks, <a href=\"https://github.com/kurtpayne\">@kurtpayne</a>!)" -msgstr "" - -#. Found in changelog list item. -msgid "Simplifies category filtering logic." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes list sorting issue that some users were experimenting (thanks, sponker!)" -msgstr "" - -#. Found in changelog list item. -msgid "Widget uses stock thumbnails when using predefined size (some conditions apply)." -msgstr "" - -#. Found in changelog list item. -msgid "Adds the ability to enable / disable responsive support for thumbails." -msgstr "" - -#. Found in changelog list item. -msgid "Renames wpp_update_views action hook to wpp_post_update_views, <strong>update your code!</strong>" -msgstr "" - -#. Found in changelog list item. -msgid "Adds wpp_pre_update_views action hook." -msgstr "" - -#. Found in changelog list item. -msgid "Adds filter wpp_render_image." -msgstr "" - -#. Found in changelog list item. -msgid "Drops support for get_mostpopular() template tag." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes empty HTML tags (thumbnail, stats)." -msgstr "" - -#. Found in changelog list item. -msgid "Removes Japanese, French and Norwegian Bokmal translation files from plugin." -msgstr "" - -#. Found in changelog list item. -msgid "Many minor bug fixes / enhancements." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes missing HTML decoding for custom HTML in widget." -msgstr "" - -#. Found in changelog list item. -msgid "Puts LIMIT clause back to the outer query." -msgstr "" - -#. Found in changelog list item. -msgid "Adds check for jQuery." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes invalid parameter in htmlspecialchars()." -msgstr "" - -#. Found in changelog list item. -msgid "Switches AJAX update to POST method." -msgstr "" - -#. Found in changelog list item. -msgid "Removes href attribute from link when popular post is viewed." -msgstr "" - -#. Found in changelog list item. -msgid "Removes unnecesary ORDER BY clause in views/comments subquery." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes Javascript console not working under IE8 (thanks, @<a href=\"https://github.com/raphaelsaunier\">raphaelsaunier</a>!)" -msgstr "" - -#. Found in changelog list item. -msgid "Fixes WPML compatibility bug storing post IDs as 0." -msgstr "" - -#. Found in changelog list item. -msgid "Removes wpp-upload.js since it was no longer in use." -msgstr "" - -#. Found in changelog list item. -msgid "Fixes undefined default thumbnail image (thanks, Lea Cohen!)" -msgstr "" - -#. Found in changelog list item. -msgid "Fixes rating parameter returning false value." -msgstr "" - -#. Found in changelog list item. -msgid "Adds Data Sampling (thanks, @<a href=\"https://github.com/kurtpayne\">kurtpayne</a>!)" -msgstr "" - -#. Found in changelog list item. -msgid "Minor query optimizations." -msgstr "" - -#. Found in changelog list item. -msgid "Adds {date} (thanks, @<a href=\"https://github.com/matsuoshi\">matsuoshi</a>!) and {thumb_img} tags to custom html." -msgstr "" - -#. Found in changelog list item. -msgid "Adds minute time option for caching." -msgstr "" - -#. Found in changelog list item. -msgid "Adds wpp_data_sampling filter." -msgstr "" - -#. Found in changelog list item. -msgid "Removes jQuery's DOM ready hook for AJAX views update." -msgstr "" - -#. Found in changelog list item. -msgid "Adds back missing GROUP BY clause." -msgstr "" - -#. Found in changelog list item. -msgid "Removes unnecesary HTML decoding for custom HTML (thanks, Lea Cohen!)" -msgstr "" - -#. Found in changelog list item. -msgid "Translates category name when WPML is detected." -msgstr "" - -#. Found in changelog list item. -msgid "Adds list of available thumbnail sizes to the widget." -msgstr "" - -#. Found in changelog list item. -msgid "Other minor bugfixes and improvements." -msgstr "" - -#. Found in changelog paragraph. -msgid "<strong>If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.</strong>" -msgstr "" - -#. Found in changelog paragraph. -msgid "<strong>If you're using a caching plugin, flushing its cache after installing / upgrading to this version is recommended.</strong>" -msgstr "" - -#. Found in changelog paragraph. -msgid "See <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/blob/master/changelog.md\">full changelog</a>." -msgstr "" - -#. Found in faq paragraph. -msgid "The <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ\">FAQ section</a> is now hosted at <a href=\"https://github.com/cabrerahector/wordpress-popular-posts/\">WPP's Github repo</a>." -msgstr "" - -#. Found in remaining content header. -msgid "Language support" -msgstr "" - -#. Found in remaining content header. -msgid "Credits" -msgstr "" - -#. Found in remaining content list item. -msgid "English (supported by Hector Cabrera)." -msgstr "" - -#. Found in remaining content list item. -msgid "Spanish (supported by Hector Cabrera)." -msgstr "" - -#. Found in remaining content list item. -msgid "German - 86% translated." -msgstr "" - -#. Found in remaining content list item. -msgid "Flame graphic by freevector/Vecteezy.com." -msgstr "" - -#. Found in remaining content paragraph. -msgid "All translations are community made: people who are nice enough to share their translations with me so I can distribute them with the plugin. If you spot an error, or feel like helping improve a translation, please check the <a href=\"http://wordpress.org/plugins/wordpress-popular-posts/faq/\" title=\"FAQ section\">FAQ section</a> for instructions." -msgstr "" \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts.pot b/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts.pot deleted file mode 100644 index 2f2b3832a43dacdbee5c6a831a62be7bf3fda601..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/tmp-wordpress-popular-posts.pot +++ /dev/null @@ -1,1050 +0,0 @@ -# Copyright (C) 2015 WordPress Popular Posts -# This file is distributed under the same license as the WordPress Popular Posts package. -msgid "" -msgstr "" -"Project-Id-Version: WordPress Popular Posts 3.3.2\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordpress-popular-" -"posts\n" -"POT-Creation-Date: 2015-11-11 18:51:09+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" - -#: views/admin.php:25 views/admin.php:34 views/admin.php:49 views/admin.php:79 -msgid "Settings saved." -msgstr "" - -#: views/admin.php:40 -msgid "Please provide the name of your custom field." -msgstr "" - -#: views/admin.php:85 -msgid "" -"Any changes made to WPP's default stylesheet will be lost after every plugin " -"update. In order to prevent this from happening, please copy the wpp.css " -"file (located at wp-content/plugins/wordpress-popular-posts/style) into your " -"theme's directory" -msgstr "" - -#: views/admin.php:100 -msgid "" -"This operation will delete all entries from WordPress Popular Posts' cache " -"table and cannot be undone." -msgstr "" - -#: views/admin.php:100 views/admin.php:108 views/admin.php:116 -msgid "Do you want to continue?" -msgstr "" - -#: views/admin.php:108 -msgid "" -"This operation will delete all stored info from WordPress Popular Posts' " -"data tables and cannot be undone." -msgstr "" - -#: views/admin.php:116 -msgid "This operation will delete all cached thumbnails and cannot be undone." -msgstr "" - -#: views/admin.php:150 -msgid "Stats" -msgstr "" - -#: views/admin.php:151 -msgid "Tools" -msgstr "" - -#: views/admin.php:152 -msgid "Parameters" -msgstr "" - -#: views/admin.php:153 -msgid "FAQ" -msgstr "" - -#: views/admin.php:154 -msgid "About" -msgstr "" - -#: views/admin.php:165 -msgid "" -"Click on each tab to see what are the most popular entries on your blog in " -"the last 24 hours, this week, last 30 days or all time since WordPress " -"Popular Posts was installed." -msgstr "" - -#: views/admin.php:171 -msgid "Order by comments" -msgstr "" - -#: views/admin.php:172 -msgid "Order by views" -msgstr "" - -#: views/admin.php:173 -msgid "Order by avg. daily views" -msgstr "" - -#: views/admin.php:175 -msgid "Post type" -msgstr "" - -#: views/admin.php:176 -msgid "Limit" -msgstr "" - -#: views/admin.php:178 views/admin.php:283 views/admin.php:385 -#: views/admin.php:422 -msgid "Apply" -msgstr "" - -#: views/admin.php:181 views/form.php:32 -msgid "Display only posts published within the selected Time Range" -msgstr "" - -#: views/admin.php:188 views/form.php:26 -msgid "Last 24 hours" -msgstr "" - -#: views/admin.php:189 views/form.php:27 -msgid "Last 7 days" -msgstr "" - -#: views/admin.php:190 views/form.php:28 -msgid "Last 30 days" -msgstr "" - -#: views/admin.php:191 views/form.php:29 -msgid "All-time" -msgstr "" - -#: views/admin.php:213 -msgid "Thumbnails" -msgstr "" - -#: views/admin.php:218 -msgid "Default thumbnail" -msgstr "" - -#: views/admin.php:223 -msgid "Upload thumbnail" -msgstr "" - -#: views/admin.php:225 -msgid "" -"How-to: upload (or select) an image, set Size to Full and click on Upload. " -"After it's done, hit on Apply to save changes" -msgstr "" - -#: views/admin.php:229 -msgid "Pick image from" -msgstr "" - -#: views/admin.php:232 -msgid "Featured image" -msgstr "" - -#: views/admin.php:233 -msgid "First image on post" -msgstr "" - -#: views/admin.php:234 -msgid "Custom field" -msgstr "" - -#: views/admin.php:237 -msgid "Tell WordPress Popular Posts where it should get thumbnails from" -msgstr "" - -#: views/admin.php:241 -msgid "Custom field name" -msgstr "" - -#: views/admin.php:247 -msgid "Resize image from Custom field?" -msgstr "" - -#: views/admin.php:250 -msgid "No, I will upload my own thumbnail" -msgstr "" - -#: views/admin.php:251 -msgid "Yes" -msgstr "" - -#: views/admin.php:256 -msgid "Responsive support" -msgstr "" - -#: views/admin.php:259 views/admin.php:327 views/admin.php:367 -#: views/admin.php:412 -msgid "Enabled" -msgstr "" - -#: views/admin.php:260 views/admin.php:311 views/admin.php:326 -#: views/admin.php:366 views/admin.php:413 -msgid "Disabled" -msgstr "" - -#: views/admin.php:263 -msgid "" -"If enabled, WordPress Popular Posts will strip height and width attributes " -"out of thumbnails' image tags" -msgstr "" - -#: views/admin.php:273 -msgid "Empty image cache" -msgstr "" - -#: views/admin.php:274 -msgid "Use this button to clear WPP's thumbnails cache" -msgstr "" - -#: views/admin.php:292 -msgid "Data" -msgstr "" - -#: views/admin.php:297 -msgid "Log views from" -msgstr "" - -#: views/admin.php:300 -msgid "Visitors only" -msgstr "" - -#: views/admin.php:301 -msgid "Logged-in users only" -msgstr "" - -#: views/admin.php:302 -msgid "Everyone" -msgstr "" - -#: views/admin.php:308 -msgid "Log limit" -msgstr "" - -#: views/admin.php:312 -msgid "Keep data for" -msgstr "" - -#: views/admin.php:315 -msgid "day(s)" -msgstr "" - -#: views/admin.php:317 -msgid "" -"Data from entries that haven't been viewed within the specified time frame " -"will be automatically discarded" -msgstr "" - -#: views/admin.php:323 -msgid "Ajaxify widget" -msgstr "" - -#: views/admin.php:331 -msgid "" -"If you are using a caching plugin such as WP Super Cache, enabling this " -"feature will keep the popular list from being cached by it" -msgstr "" - -#: views/admin.php:335 -msgid "WPP Cache Expiry Policy" -msgstr "" - -#: views/admin.php:335 views/admin.php:363 views/form.php:2 views/form.php:34 -#: views/form.php:40 views/form.php:43 views/form.php:52 views/form.php:125 -msgid "What is this?" -msgstr "" - -#: views/admin.php:338 -msgid "Never cache" -msgstr "" - -#: views/admin.php:339 -msgid "Enable caching" -msgstr "" - -#: views/admin.php:343 -msgid "" -"Sets WPP's cache expiration time. WPP can cache the popular list for a " -"specified amount of time. Recommended for large / high traffic sites" -msgstr "" - -#: views/admin.php:347 -msgid "Refresh cache every" -msgstr "" - -#: views/admin.php:351 -msgid "Minute(s)" -msgstr "" - -#: views/admin.php:352 -msgid "Hour(s)" -msgstr "" - -#: views/admin.php:353 -msgid "Day(s)" -msgstr "" - -#: views/admin.php:354 -msgid "Week(s)" -msgstr "" - -#: views/admin.php:355 -msgid "Month(s)" -msgstr "" - -#: views/admin.php:356 -msgid "Year(s)" -msgstr "" - -#: views/admin.php:359 -msgid "Really? That long?" -msgstr "" - -#: views/admin.php:363 -msgid "Data Sampling" -msgstr "" - -#: views/admin.php:371 -msgid "" -"By default, WordPress Popular Posts stores in database every single visit " -"your site receives. For small / medium sites this is generally OK, but on " -"large / high traffic sites the constant writing to the database may have an " -"impact on performance. With <a href=\"%1$s\" target=\"_blank\">data " -"sampling</a>, WordPress Popular Posts will store only a subset of your " -"traffic and report on the tendencies detected in that sample set (for more, " -"<a href=\"%2$s\" target=\"_blank\">please read here</a>)" -msgstr "" - -#: views/admin.php:375 -msgid "Sample Rate" -msgstr "" - -#: views/admin.php:379 -msgid "" -"A sampling rate of %d is recommended for large / high traffic sites. For " -"lower traffic sites, you should lower the value" -msgstr "" - -#: views/admin.php:394 -msgid "Miscellaneous" -msgstr "" - -#: views/admin.php:399 -msgid "Open links in" -msgstr "" - -#: views/admin.php:402 -msgid "Current window" -msgstr "" - -#: views/admin.php:403 -msgid "New tab/window" -msgstr "" - -#: views/admin.php:409 -msgid "Use plugin's stylesheet" -msgstr "" - -#: views/admin.php:416 -msgid "" -"By default, the plugin includes a stylesheet called wpp.css which you can " -"use to style your popular posts listing. If you wish to use your own " -"stylesheet or do not want it to have it included in the header section of " -"your site, use this." -msgstr "" - -#: views/admin.php:433 -msgid "" -"WordPress Popular Posts maintains data in two separate tables: one for " -"storing the most popular entries on a daily basis (from now on, \"cache\"), " -"and another one to keep the All-time data (from now on, \"historical data\" " -"or just \"data\"). If for some reason you need to clear the cache table, or " -"even both historical and cache tables, please use the buttons below to do so." -msgstr "" - -#: views/admin.php:434 -msgid "Empty cache" -msgstr "" - -#: views/admin.php:434 -msgid "Use this button to manually clear entries from WPP cache only" -msgstr "" - -#: views/admin.php:435 -msgid "Clear all data" -msgstr "" - -#: views/admin.php:435 -msgid "Use this button to manually clear entries from all WPP data tables" -msgstr "" - -#: views/admin.php:442 -msgid "" -"With the following parameters you can customize the popular posts list when " -"using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or " -"the <a href=\"%2$s\">[wpp] shortcode</a>." -msgstr "" - -#: views/admin.php:450 -msgid "Parameter" -msgstr "" - -#: views/admin.php:451 -msgid "What it does " -msgstr "" - -#: views/admin.php:452 -msgid "Possible values" -msgstr "" - -#: views/admin.php:453 -msgid "Defaults to" -msgstr "" - -#: views/admin.php:454 -msgid "Example" -msgstr "" - -#: views/admin.php:460 -msgid "Sets a heading for the list" -msgstr "" - -#: views/admin.php:461 views/admin.php:468 views/admin.php:475 -#: views/admin.php:510 views/admin.php:517 views/admin.php:524 -#: views/admin.php:531 views/admin.php:622 views/admin.php:636 -#: views/admin.php:643 -msgid "Text string" -msgstr "" - -#: views/admin.php:462 views/admin.php:518 views/admin.php:525 -#: views/admin.php:532 -msgid "None" -msgstr "" - -#: views/admin.php:467 -msgid "Set the opening tag for the heading of the list" -msgstr "" - -#: views/admin.php:474 -msgid "Set the closing tag for the heading of the list" -msgstr "" - -#: views/admin.php:481 -msgid "Sets the maximum number of popular posts to be shown on the listing" -msgstr "" - -#: views/admin.php:482 views/admin.php:538 views/admin.php:552 -#: views/admin.php:573 views/admin.php:580 -msgid "Positive integer" -msgstr "" - -#: views/admin.php:488 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries within " -"the time range specified by you" -msgstr "" - -#: views/admin.php:495 -msgid "" -"Tells WordPress Popular Posts to retrieve the most popular entries published " -"within the time range specified by you" -msgstr "" - -#: views/admin.php:502 -msgid "Sets the sorting option of the popular posts" -msgstr "" - -#: views/admin.php:503 -msgid "(for average views per day)" -msgstr "" - -#: views/admin.php:509 -msgid "Defines the type of posts to show on the listing" -msgstr "" - -#: views/admin.php:516 -msgid "" -"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) " -"form the listing." -msgstr "" - -#: views/admin.php:523 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries that belong to the " -"specified category(ies) ID(s). If a minus sign is used, the category(ies) " -"will be excluded instead." -msgstr "" - -#: views/admin.php:530 -msgid "" -"If set, WordPress Popular Posts will retrieve all entries created by " -"specified author(s) ID(s)." -msgstr "" - -#: views/admin.php:537 -msgid "" -"If set, WordPress Popular Posts will shorten each post title to \"n\" " -"characters whenever possible" -msgstr "" - -#: views/admin.php:544 -msgid "" -"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" " -"words instead of characters" -msgstr "" - -#: views/admin.php:551 -msgid "" -"If set, WordPress Popular Posts will build and include an excerpt of \"n\" " -"characters long from the content of each post listed as popular" -msgstr "" - -#: views/admin.php:558 -msgid "" -"If set, WordPress Popular Posts will maintaing all styling tags (strong, " -"italic, etc) and hyperlinks found in the excerpt" -msgstr "" - -#: views/admin.php:565 -msgid "" -"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words " -"instead of characters" -msgstr "" - -#: views/admin.php:572 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the width for " -"thumbnails" -msgstr "" - -#: views/admin.php:579 -msgid "" -"If set, and if your current server configuration allows it, you will be able " -"to display thumbnails of your posts. This attribute sets the height for " -"thumbnails" -msgstr "" - -#: views/admin.php:586 -msgid "" -"If set, and if the WP-PostRatings plugin is installed and enabled on your " -"blog, WordPress Popular Posts will show how your visitors are rating your " -"entries" -msgstr "" - -#: views/admin.php:593 -msgid "" -"If set, WordPress Popular Posts will show how many comments each popular " -"post has got until now" -msgstr "" - -#: views/admin.php:600 -msgid "" -"If set, WordPress Popular Posts will show how many views each popular post " -"has got since it was installed" -msgstr "" - -#: views/admin.php:607 -msgid "" -"If set, WordPress Popular Posts will show who published each popular post on " -"the list" -msgstr "" - -#: views/admin.php:614 -msgid "" -"If set, WordPress Popular Posts will display the date when each popular post " -"on the list was published" -msgstr "" - -#: views/admin.php:621 -msgid "Sets the date format" -msgstr "" - -#: views/admin.php:628 -msgid "If set, WordPress Popular Posts will display the category" -msgstr "" - -#: views/admin.php:635 -msgid "Sets the opening tag for the listing" -msgstr "" - -#: views/admin.php:642 -msgid "Sets the closing tag for the listing" -msgstr "" - -#: views/admin.php:649 -msgid "Sets the HTML structure of each post" -msgstr "" - -#: views/admin.php:650 -msgid "Text string, custom HTML" -msgstr "" - -#: views/admin.php:650 -msgid "Available Content Tags" -msgstr "" - -#: views/admin.php:650 -msgid "" -"displays thumbnail linked to post/page, requires thumbnail_width & " -"thumbnail_height" -msgstr "" - -#: views/admin.php:650 -msgid "" -"displays thumbnail image without linking to post/page, requires " -"thumbnail_width & thumbnail_height" -msgstr "" - -#: views/admin.php:650 -msgid "displays linked post/page title" -msgstr "" - -#: views/admin.php:650 -msgid "" -"displays post/page excerpt, and requires excerpt_length to be greater than 0" -msgstr "" - -#: views/admin.php:650 -msgid "displays the default stats tags" -msgstr "" - -#: views/admin.php:650 -msgid "" -"displays post/page current rating, requires WP-PostRatings installed and " -"enabled" -msgstr "" - -#: views/admin.php:650 -msgid "" -"displays post/page current rating as an integer, requires WP-PostRatings " -"installed and enabled" -msgstr "" - -#: views/admin.php:650 -msgid "outputs the URL of the post/page" -msgstr "" - -#: views/admin.php:650 -msgid "displays post/page title, no link" -msgstr "" - -#: views/admin.php:650 -msgid "displays linked author name, requires stats_author=1" -msgstr "" - -#: views/admin.php:650 -msgid "displays linked category name, requires stats_category=1" -msgstr "" - -#: views/admin.php:650 -msgid "displays views count only, no text" -msgstr "" - -#: views/admin.php:650 -msgid "displays comments count only, no text, requires stats_comments=1" -msgstr "" - -#: views/admin.php:650 -msgid "displays post/page date, requires stats_date=1" -msgstr "" - -#: views/admin.php:663 -msgid "" -"These FAQs are widget specific. For more general FAQs about WordPress " -"Popular Posts, please click <a href=\"%s\" target=\"_blank\">here</a>" -msgstr "" - -#: views/admin.php:665 -msgid "What does \"Title\" do?" -msgstr "" - -#: views/admin.php:668 -msgid "" -"It allows you to show a heading for your most popular posts listing. If left " -"empty, no heading will be displayed at all." -msgstr "" - -#: views/admin.php:671 -msgid "What is \"Post type\" for?" -msgstr "" - -#: views/admin.php:673 -msgid "" -"This filter allows you to decide which post types to show on the listing. By " -"default, it will retrieve only posts and pages (which should be fine for " -"most cases)." -msgstr "" - -#: views/admin.php:676 -msgid "What is \"Category(ies) ID(s)\" for?" -msgstr "" - -#: views/admin.php:678 -msgid "" -"This filter allows you to select which categories should be included or " -"excluded from the listing. A negative sign in front of the category ID " -"number will exclude posts belonging to it from the list, for example. You " -"can specify more than one ID with a comma separated list." -msgstr "" - -#: views/admin.php:681 -msgid "What is \"Author(s) ID(s)\" for?" -msgstr "" - -#: views/admin.php:683 -msgid "" -"Just like the Category filter, this one lets you filter posts by author ID. " -"You can specify more than one ID with a comma separated list." -msgstr "" - -#: views/admin.php:686 -msgid "What does \"Display post rating\" do?" -msgstr "" - -#: views/admin.php:688 -msgid "" -"If checked, WordPress Popular Posts will show how your readers are rating " -"your most popular posts. This feature requires having WP-PostRatings plugin " -"installed and enabled on your blog for it to work." -msgstr "" - -#: views/admin.php:691 -msgid "What does \"Use custom HTML Markup\" do?" -msgstr "" - -#: views/admin.php:693 -msgid "" -"If checked, you will be able to customize the HTML markup of your popular " -"posts listing. For example, you can decide whether to wrap your posts in an " -"unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is " -"for you!" -msgstr "" - -#: views/admin.php:702 -msgid "About WordPress Popular Posts %s" -msgstr "" - -#: views/admin.php:703 -msgid "This version includes the following changes" -msgstr "" - -#: views/admin.php:718 -msgid "Do you like this plugin?" -msgstr "" - -#: views/admin.php:725 -msgid "" -"Each donation motivates me to keep releasing free stuff for the WordPress " -"community!" -msgstr "" - -#: views/admin.php:726 -msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!" -msgstr "" - -#: views/admin.php:732 -msgid "Need help?" -msgstr "" - -#: views/admin.php:733 -msgid "" -"Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions " -"and feedback." -msgstr "" - -#: views/admin.php:734 -msgid "Let's make this plugin even better!" -msgstr "" - -#: views/form.php:2 -msgid "Title" -msgstr "" - -#: views/form.php:7 -msgid "Show up to" -msgstr "" - -#: views/form.php:8 -msgid "posts" -msgstr "" - -#: views/form.php:12 -msgid "Sort posts by" -msgstr "" - -#: views/form.php:14 -msgid "Comments" -msgstr "" - -#: views/form.php:15 -msgid "Total views" -msgstr "" - -#: views/form.php:16 -msgid "Avg. daily views" -msgstr "" - -#: views/form.php:22 -msgid "Filters" -msgstr "" - -#: views/form.php:24 -msgid "Time Range" -msgstr "" - -#: views/form.php:34 -msgid "Post type(s)" -msgstr "" - -#: views/form.php:37 -msgid "Post(s) ID(s) to exclude" -msgstr "" - -#: views/form.php:40 -msgid "Category(ies) ID(s)" -msgstr "" - -#: views/form.php:43 -msgid "Author(s) ID(s)" -msgstr "" - -#: views/form.php:48 -msgid "Posts settings" -msgstr "" - -#: views/form.php:52 -msgid "Display post rating" -msgstr "" - -#: views/form.php:55 -msgid "Shorten title" -msgstr "" - -#: views/form.php:58 -msgid "Shorten title to" -msgstr "" - -#: views/form.php:59 views/form.php:69 -msgid "characters" -msgstr "" - -#: views/form.php:60 views/form.php:70 -msgid "words" -msgstr "" - -#: views/form.php:63 -msgid "Display post excerpt" -msgstr "" - -#: views/form.php:66 -msgid "Keep text format and links" -msgstr "" - -#: views/form.php:67 -msgid "Excerpt length" -msgstr "" - -#: views/form.php:73 -msgid "Display post thumbnail" -msgstr "" - -#: views/form.php:76 -msgid "Use predefined size" -msgstr "" - -#: views/form.php:88 -msgid "Set size manually" -msgstr "" - -#: views/form.php:90 -msgid "Width" -msgstr "" - -#: views/form.php:93 -msgid "Height" -msgstr "" - -#: views/form.php:99 -msgid "Stats Tag settings" -msgstr "" - -#: views/form.php:101 -msgid "Display comment count" -msgstr "" - -#: views/form.php:103 -msgid "Display views" -msgstr "" - -#: views/form.php:105 -msgid "Display author" -msgstr "" - -#: views/form.php:107 -msgid "Display date" -msgstr "" - -#: views/form.php:110 -msgid "Date Format" -msgstr "" - -#: views/form.php:112 -msgid "WordPress Date Format" -msgstr "" - -#: views/form.php:119 -msgid "Display category" -msgstr "" - -#: views/form.php:123 -msgid "HTML Markup settings" -msgstr "" - -#: views/form.php:125 -msgid "Use custom HTML Markup" -msgstr "" - -#: views/form.php:128 -msgid "Before / after title" -msgstr "" - -#: views/form.php:131 -msgid "Before / after Popular Posts" -msgstr "" - -#: views/form.php:134 -msgid "Post HTML Markup" -msgstr "" - -#: wordpress-popular-posts.php:304 -msgid "The most Popular Posts on your blog." -msgstr "" - -#: wordpress-popular-posts.php:482 -msgid "" -"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing " -"the <em>id</em> attribute on before_widget (see <a href=\"http://codex." -"wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel=" -"\"nofollow\">register_sidebar</a> for more)." -msgstr "" - -#: wordpress-popular-posts.php:726 -msgid "Upload" -msgstr "" - -#: wordpress-popular-posts.php:1093 -msgid "" -"Your PHP installation is too old. WordPress Popular Posts requires at least " -"PHP version %1$s to function correctly. Please contact your hosting provider " -"and ask them to upgrade PHP to %1$s or higher." -msgstr "" - -#: wordpress-popular-posts.php:1100 -msgid "" -"Your WordPress version is too old. WordPress Popular Posts requires at least " -"WordPress version %1$s to function correctly. Please update your blog via " -"Dashboard > Update." -msgstr "" - -#: wordpress-popular-posts.php:1125 -msgid "" -"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</" -"strong>.</p></div>" -msgstr "" - -#: wordpress-popular-posts.php:1209 -msgid "Success! The cache table has been cleared!" -msgstr "" - -#: wordpress-popular-posts.php:1211 -msgid "Error: cache table does not exist." -msgstr "" - -#: wordpress-popular-posts.php:1218 -msgid "Success! All data have been cleared!" -msgstr "" - -#: wordpress-popular-posts.php:1220 -msgid "Error: one or both data tables are missing." -msgstr "" - -#: wordpress-popular-posts.php:1223 wordpress-popular-posts.php:1261 -msgid "Invalid action." -msgstr "" - -#: wordpress-popular-posts.php:1226 wordpress-popular-posts.php:1264 -msgid "" -"Sorry, you do not have enough permissions to do this. Please contact the " -"site administrator for support." -msgstr "" - -#: wordpress-popular-posts.php:1256 -msgid "Success! All files have been deleted!" -msgstr "" - -#: wordpress-popular-posts.php:1258 -msgid "The thumbnail cache is already empty!" -msgstr "" - -#: wordpress-popular-posts.php:1818 -msgid "Sorry. No data so far." -msgstr "" - -#: wordpress-popular-posts.php:2345 -msgid "1 comment" -msgid_plural "%s comments" -msgstr[0] "" -msgstr[1] "" - -#: wordpress-popular-posts.php:2357 -msgid "1 view per day" -msgid_plural "%s views per day" -msgstr[0] "" -msgstr[1] "" - -#: wordpress-popular-posts.php:2363 -msgid "1 view" -msgid_plural "%s views" -msgstr[0] "" -msgstr[1] "" - -#: wordpress-popular-posts.php:2386 -msgid "by %s" -msgstr "" - -#: wordpress-popular-posts.php:2392 -msgid "posted on %s" -msgstr "" - -#: wordpress-popular-posts.php:2400 -msgid "under %s" -msgstr "" - -#. Plugin Name of the plugin/theme -msgid "WordPress Popular Posts" -msgstr "" - -#. Plugin URI of the plugin/theme -msgid "http://wordpress.org/extend/plugins/wordpress-popular-posts" -msgstr "" - -#. Description of the plugin/theme -msgid "" -"WordPress Popular Posts is a highly customizable widget that displays the " -"most popular posts on your blog" -msgstr "" - -#. Author of the plugin/theme -msgid "Hector Cabrera" -msgstr "" - -#. Author URI of the plugin/theme -msgid "http://cabrerahector.com" -msgstr "" diff --git a/wp-content/plugins/wordpress-popular-posts/uninstall.php b/wp-content/plugins/wordpress-popular-posts/uninstall.php deleted file mode 100644 index b59ad32f0f3392866333cec2db6756f6ae0a7ad4..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/uninstall.php +++ /dev/null @@ -1,95 +0,0 @@ -<?php -/** - * Fired when the plugin is uninstalled. - * - * @package WordpressPopularPosts - * @author Hector Cabrera <hcabrerab@gmail.com> - * @license GPL-2.0+ - * @link http://cabrerahector.com - * @copyright 2013 Hector Cabrera - */ - -// If uninstall, not called from WordPress, then exit -if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { - exit; -} - -// Run uninstall for each blog in the network -if ( function_exists( 'is_multisite' ) && is_multisite() ) { - - global $wpdb; - - $original_blog_id = get_current_blog_id(); - $blogs_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" ); - - foreach( $blogs_ids as $blog_id ) { - - switch_to_blog( $blog_id ); - - // Delete plugin's options - delete_option( 'wpp_ver' ); - delete_option( 'wpp_update' ); - delete_option( 'wpp_settings_config' ); - delete_option( 'wpp_rand' ); - delete_option( 'wpp_transients' ); - - // delete tables - uninstall(); - - // delete thumbnails cache and its directory - delete_thumb_cache(); - - } - - // Switch back to current blog - switch_to_blog( $original_blog_id ); - -} else { - - // Delete plugin's options - delete_option( 'wpp_ver' ); - delete_option( 'wpp_update' ); - delete_option( 'wpp_settings_config' ); - delete_option( 'wpp_rand' ); - delete_option( 'wpp_transients' ); - - // delete tables - uninstall(); - - // delete thumbnails cache and its directory - delete_thumb_cache(); - -} - -function delete_thumb_cache() { - $wp_upload_dir = wp_upload_dir(); - - if ( is_dir( $wp_upload_dir['basedir'] . "/wordpress-popular-posts" ) ) { - $files = glob( $wp_upload_dir['basedir'] . "/wordpress-popular-posts/*" ); // get all file names - - if ( is_array($files) && !empty($files) ) { - foreach($files as $file){ // iterate files - if ( is_file($file) ) - @unlink($file); // delete file - } - } - - // Finally, delete wpp's upload directory - @rmdir( $wp_upload_dir['basedir'] . "/wordpress-popular-posts" ); - - } -} - -function uninstall(){ - - global $wpdb; - - // Delete db tables - $prefix = $wpdb->prefix . "popularposts"; - $wpdb->query( "DROP TABLE IF EXISTS {$prefix}data;" ); - $wpdb->query( "DROP TABLE IF EXISTS {$prefix}datacache;" ); - $wpdb->query( "DROP TABLE IF EXISTS {$prefix}datacache_backup;" ); - $wpdb->query( "DROP TABLE IF EXISTS {$prefix}log;" ); - $wpdb->query( "DROP TABLE IF EXISTS {$prefix}summary" ); - -} \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/views/admin.php b/wp-content/plugins/wordpress-popular-posts/views/admin.php deleted file mode 100644 index 3e5953085ee7287ce466e49677814f2c6581b511..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/views/admin.php +++ /dev/null @@ -1,798 +0,0 @@ -<?php -if (basename($_SERVER['SCRIPT_NAME']) == basename(__FILE__)) - exit('Please do not load this page directly'); - -define('WPP_ADMIN', true); - -// Set active tab -if ( isset($_GET['tab']) ) - $current = $_GET['tab']; -else - $current = 'stats'; - -// Update options on form submission -if ( isset($_POST['section']) ) { - - if ( "stats" == $_POST['section'] ) { - - $current = 'stats'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-stats-options' ) ) { - - $this->user_settings['stats']['order_by'] = $_POST['stats_order']; - $this->user_settings['stats']['limit'] = (is_numeric($_POST['stats_limit']) && $_POST['stats_limit'] > 0) ? $_POST['stats_limit'] : 10; - $this->user_settings['stats']['post_type'] = empty($_POST['stats_type']) ? "post,page" : $_POST['stats_type']; - $this->user_settings['stats']['freshness'] = empty($_POST['stats_freshness']) ? false : $_POST['stats_freshness']; - - update_site_option('wpp_settings_config', $this->user_settings); - echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>"; - - } - - } - elseif ( "misc" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-misc-options' ) ) { - - $this->user_settings['tools']['link']['target'] = $_POST['link_target']; - $this->user_settings['tools']['css'] = $_POST['css']; - - update_site_option('wpp_settings_config', $this->user_settings); - echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>"; - - } - } - elseif ( "thumb" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-thumbnail-options' ) ) { - - if ($_POST['thumb_source'] == "custom_field" && (!isset($_POST['thumb_field']) || empty($_POST['thumb_field']))) { - echo '<div id="wpp-message" class="error fade"><p>'.__('Please provide the name of your custom field.', $this->plugin_slug).'</p></div>'; - } else { - $this->user_settings['tools']['thumbnail']['source'] = $_POST['thumb_source']; - $this->user_settings['tools']['thumbnail']['field'] = ( !empty( $_POST['thumb_field']) ) ? $_POST['thumb_field'] : "wpp_thumbnail"; - $this->user_settings['tools']['thumbnail']['default'] = ( !empty( $_POST['upload_thumb_src']) ) ? $_POST['upload_thumb_src'] : ""; - $this->user_settings['tools']['thumbnail']['resize'] = $_POST['thumb_field_resize']; - $this->user_settings['tools']['thumbnail']['responsive'] = $_POST['thumb_responsive']; - - update_site_option('wpp_settings_config', $this->user_settings); - echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>"; - } - - } - - } - elseif ( "data" == $_POST['section'] ) { - - $current = 'tools'; - - if ( isset( $_POST['wpp-admin-token'] ) && wp_verify_nonce( $_POST['wpp-admin-token'], 'wpp-update-data-options' ) ) { - - $this->user_settings['tools']['log']['level'] = $_POST['log_option']; - $this->user_settings['tools']['log']['limit'] = $_POST['log_limit']; - $this->user_settings['tools']['log']['expires_after'] = ( $this->__is_numeric($_POST['log_expire_time']) && $_POST['log_expire_time'] > 0 ) - ? $_POST['log_expire_time'] - : $this->default_user_settings['tools']['log']['expires_after']; - $this->user_settings['tools']['ajax'] = $_POST['ajax']; - - // if any of the caching settings was updated, destroy all transients created by the plugin - if ( $this->user_settings['tools']['cache']['active'] != $_POST['cache'] || $this->user_settings['tools']['cache']['interval']['time'] != $_POST['cache_interval_time'] || $this->user_settings['tools']['cache']['interval']['value'] != $_POST['cache_interval_value'] ) { - $this->__flush_transients(); - } - - $this->user_settings['tools']['cache']['active'] = $_POST['cache']; - $this->user_settings['tools']['cache']['interval']['time'] = $_POST['cache_interval_time']; - $this->user_settings['tools']['cache']['interval']['value'] = ( isset($_POST['cache_interval_value']) && is_numeric($_POST['cache_interval_value']) && $_POST['cache_interval_value'] > 0 ) - ? $_POST['cache_interval_value'] - : 1; - - $this->user_settings['tools']['sampling']['active'] = $_POST['sampling']; - $this->user_settings['tools']['sampling']['rate'] = ( isset($_POST['sample_rate']) && is_numeric($_POST['sample_rate']) && $_POST['sample_rate'] > 0 ) - ? $_POST['sample_rate'] - : 100; - - update_site_option('wpp_settings_config', $this->user_settings); - echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>"; - - } - } - -} - -if ( $this->user_settings['tools']['css'] && !file_exists( get_stylesheet_directory() . '/wpp.css' ) ) { - echo '<div id="wpp-message" class="update-nag">'. __('Any changes made to WPP\'s default stylesheet will be lost after every plugin update. In order to prevent this from happening, please copy the wpp.css file (located at wp-content/plugins/wordpress-popular-posts/style) into your theme\'s directory', $this->plugin_slug) .'.</div>'; -} - -$rand = md5(uniqid(rand(), true)); -$wpp_rand = get_site_option("wpp_rand"); -if (empty($wpp_rand)) { - add_site_option("wpp_rand", $rand); -} else { - update_site_option("wpp_rand", $rand); -} - -?> -<script type="text/javascript"> - // TOOLS - function confirm_reset_cache() { - if (confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("This operation will delete all entries from WordPress Popular Posts' cache table and cannot be undone.", $this->plugin_slug); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("Do you want to continue?", $this->plugin_slug); ?>")) { - jQuery.post(ajaxurl, {action: 'wpp_clear_data', token: '<?php echo get_site_option("wpp_rand"); ?>', clear: 'cache'}, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Success! The cache table has been cleared!', $this->plugin_slug); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Error: cache table does not exist.', $this->plugin_slug); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', $this->plugin_slug); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - } - - alert(response); - }); - } - } - - function confirm_reset_all() { - if (confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("This operation will delete all stored info from WordPress Popular Posts' data tables and cannot be undone.", $this->plugin_slug); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("Do you want to continue?", $this->plugin_slug); ?>")) { - jQuery.post(ajaxurl, {action: 'wpp_clear_data', token: '<?php echo get_site_option("wpp_rand"); ?>', clear: 'all'}, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Success! All data have been cleared!', $this->plugin_slug); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Error: one or both data tables are missing.', $this->plugin_slug); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', $this->plugin_slug); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - } - - alert(response); - }); - } - } - - function confirm_clear_image_cache() { - if (confirm("<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("This operation will delete all cached thumbnails and cannot be undone.", $this->plugin_slug); ?> \n\n" + "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e("Do you want to continue?", $this->plugin_slug); ?>")) { - jQuery.post(ajaxurl, {action: 'wpp_clear_thumbnail', token: '<?php echo get_site_option("wpp_rand"); ?>'}, function(data){ - var response = ""; - - switch( data ) { - case "1": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Success! All files have been deleted!', $this->plugin_slug); ?>"; - break; - - case "2": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('The thumbnail cache is already empty!', $this->plugin_slug); ?>"; - break; - - case "3": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - - case "4": - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Sorry, you do not have enough permissions to do this. Please contact the site administrator for support.', $this->plugin_slug); ?>"; - break; - - default: - response = "<?php /*translators: Special characters (such as accents) must be replaced with Javascript Octal codes (eg. \341 is the Octal code for small a with acute accent) */ _e('Invalid action.', $this->plugin_slug); ?>"; - break; - } - - alert(response); - }); - } - } - - jQuery(document).ready(function($){ - <?php if ( "params" != $current ) : ?> - $('.wpp_boxes:visible').css({ - display: 'inline', - float: 'left' - }).width( $('.wpp_boxes:visible').parent().width() - $('.wpp_box').outerWidth() - 15 ); - - $(window).on('resize', function(){ - $('.wpp_boxes:visible').css({ - display: 'inline', - float: 'left' - }).width( $('.wpp_boxes:visible').parent().width() - $('.wpp_box').outerWidth() - 15 ); - }); - <?php else: ?> - $('.wpp_box').hide(); - <?php endif; ?> - }); -</script> - -<div class="wrap"> - <div id="icon-options-general" class="icon32"><br /></div> - <h2>WordPress Popular Posts</h2> - - <h2 class="nav-tab-wrapper"> - <?php - // build tabs - $tabs = array( - 'stats' => __('Stats', $this->plugin_slug), - 'tools' => __('Tools', $this->plugin_slug), - 'params' => __('Parameters', $this->plugin_slug), - 'about' => __('About', $this->plugin_slug) - ); - foreach( $tabs as $tab => $name ){ - $class = ( $tab == $current ) ? ' nav-tab-active' : ''; - echo "<a class='nav-tab$class' href='?page=wordpress-popular-posts&tab=$tab'>$name</a>"; - } - ?> - </h2> - - <!-- Start stats --> - <div id="wpp_stats" class="wpp_boxes"<?php if ( "stats" == $current ) {?> style="display:block;"<?php } ?>> - <p><?php _e("Click on each tab to see what are the most popular entries on your blog in the last 24 hours, this week, last 30 days or all time since WordPress Popular Posts was installed.", $this->plugin_slug); ?></p> - - <div class="tablenav top"> - <div class="alignleft actions"> - <form action="" method="post" id="wpp_stats_options" name="wpp_stats_options"> - <select name="stats_order"> - <option <?php if ($this->user_settings['stats']['order_by'] == "comments") {?>selected="selected"<?php } ?> value="comments"><?php _e("Order by comments", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['stats']['order_by'] == "views") {?>selected="selected"<?php } ?> value="views"><?php _e("Order by views", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['stats']['order_by'] == "avg") {?>selected="selected"<?php } ?> value="avg"><?php _e("Order by avg. daily views", $this->plugin_slug); ?></option> - </select> - <label for="stats_type"><?php _e("Post type", $this->plugin_slug); ?>:</label> <input type="text" name="stats_type" value="<?php echo esc_attr( $this->user_settings['stats']['post_type'] ); ?>" size="15" /> - <label for="stats_limits"><?php _e("Limit", $this->plugin_slug); ?>:</label> <input type="text" name="stats_limit" value="<?php echo $this->user_settings['stats']['limit']; ?>" size="5" /> - <input type="hidden" name="section" value="stats" /> - <input type="submit" class="button-secondary action" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" /> - - <div class="clear"></div> - <label for="stats_freshness"><input type="checkbox" class="checkbox" <?php echo ($this->user_settings['stats']['freshness']) ? 'checked="checked"' : ''; ?> id="stats_freshness" name="stats_freshness" /> <?php _e('Display only posts published within the selected Time Range', $this->plugin_slug); ?></label> - - <?php wp_nonce_field( 'wpp-update-stats-options', 'wpp-admin-token' ); ?> - </form> - </div> - </div> - <div class="clear"></div> - <br /> - <div id="wpp-stats-tabs"> - <a href="#" class="button-primary" rel="wpp-daily"><?php _e("Last 24 hours", $this->plugin_slug); ?></a> - <a href="#" class="button-secondary" rel="wpp-weekly"><?php _e("Last 7 days", $this->plugin_slug); ?></a> - <a href="#" class="button-secondary" rel="wpp-monthly"><?php _e("Last 30 days", $this->plugin_slug); ?></a> - <a href="#" class="button-secondary" rel="wpp-all"><?php _e("All-time", $this->plugin_slug); ?></a> - </div> - <div id="wpp-stats-canvas"> - <div class="wpp-stats wpp-stats-active" id="wpp-daily"> - <?php echo do_shortcode("[wpp range='daily' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?> - </div> - <div class="wpp-stats" id="wpp-weekly"> - <?php echo do_shortcode("[wpp range='weekly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?> - </div> - <div class="wpp-stats" id="wpp-monthly"> - <?php echo do_shortcode("[wpp range='monthly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?> - </div> - <div class="wpp-stats" id="wpp-all"> - <?php echo do_shortcode("[wpp range='all' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?> - </div> - </div> - </div> - <!-- End stats --> - - <!-- Start tools --> - <div id="wpp_tools" class="wpp_boxes"<?php if ( "tools" == $current ) {?> style="display:block;"<?php } ?>> - - <h3 class="wmpp-subtitle"><?php _e("Thumbnails", $this->plugin_slug); ?></h3> - <form action="" method="post" id="wpp_thumbnail_options" name="wpp_thumbnail_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="thumb_default"><?php _e("Default thumbnail", $this->plugin_slug); ?>:</label></th> - <td> - <div id="thumb-review"> - <img src="<?php echo $this->user_settings['tools']['thumbnail']['default']; ?>" alt="" border="0" /> - </div> - <input id="upload_thumb_button" type="button" class="button" value="<?php _e( "Upload thumbnail", $this->plugin_slug ); ?>" /> - <input type="hidden" id="upload_thumb_src" name="upload_thumb_src" value="" /> - <p class="description"><?php _e("How-to: upload (or select) an image, set Size to Full and click on Upload. After it's done, hit on Apply to save changes", $this->plugin_slug); ?>.</p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="thumb_source"><?php _e("Pick image from", $this->plugin_slug); ?>:</label></th> - <td> - <select name="thumb_source" id="thumb_source"> - <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "featured") {?>selected="selected"<?php } ?> value="featured"><?php _e("Featured image", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "first_image") {?>selected="selected"<?php } ?> value="first_image"><?php _e("First image on post", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "first_attachment") {?>selected="selected"<?php } ?> value="first_attachment"><?php _e("First attachment", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "custom_field") {?>selected="selected"<?php } ?> value="custom_field"><?php _e("Custom field", $this->plugin_slug); ?></option> - </select> - <br /> - <p class="description"><?php _e("Tell WordPress Popular Posts where it should get thumbnails from", $this->plugin_slug); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ($this->user_settings['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field"> - <th scope="row"><label for="thumb_field"><?php _e("Custom field name", $this->plugin_slug); ?>:</label></th> - <td> - <input type="text" id="thumb_field" name="thumb_field" value="<?php echo esc_attr( $this->user_settings['tools']['thumbnail']['field'] ); ?>" size="10" <?php if ($this->user_settings['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> /> - </td> - </tr> - <tr valign="top" <?php if ($this->user_settings['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field_resize"> - <th scope="row"><label for="thumb_field_resize"><?php _e("Resize image from Custom field?", $this->plugin_slug); ?>:</label></th> - <td> - <select name="thumb_field_resize" id="thumb_field_resize"> - <option <?php if ( !$this->user_settings['tools']['thumbnail']['resize'] ) {?>selected="selected"<?php } ?> value="0"><?php _e("No, I will upload my own thumbnail", $this->plugin_slug); ?></option> - <option <?php if ( $this->user_settings['tools']['thumbnail']['resize'] == 1 ) {?>selected="selected"<?php } ?> value="1"><?php _e("Yes", $this->plugin_slug); ?></option> - </select> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="thumb_responsive"><?php _e("Responsive support", $this->plugin_slug); ?>:</label></th> - <td> - <select name="thumb_responsive" id="thumb_responsive"> - <option <?php if ($this->user_settings['tools']['thumbnail']['responsive']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", $this->plugin_slug); ?></option> - <option <?php if (!$this->user_settings['tools']['thumbnail']['responsive']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option> - </select> - <br /> - <p class="description"><?php _e("If enabled, WordPress Popular Posts will strip height and width attributes out of thumbnails' image tags", $this->plugin_slug); ?>.</p> - </td> - </tr> - <?php - $wp_upload_dir = wp_upload_dir(); - if ( is_dir( $wp_upload_dir['basedir'] . "/" . $this->plugin_slug ) ) : - ?> - <tr valign="top"> - <th scope="row"></th> - <td> - <input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty image cache", $this->plugin_slug); ?>" onclick="confirm_clear_image_cache()" /> - <p class="description"><?php _e("Use this button to clear WPP's thumbnails cache", $this->plugin_slug); ?>.</p> - </td> - </tr> - <?php - endif; - ?> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="thumb" /> - <input type="submit" class="button-secondary action" id="btn_th_ops" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-thumbnail-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <h3 class="wmpp-subtitle"><?php _e("Data", $this->plugin_slug); ?></h3> - <form action="" method="post" id="wpp_ajax_options" name="wpp_ajax_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="log_option"><?php _e("Log views from", $this->plugin_slug); ?>:</label></th> - <td> - <select name="log_option" id="log_option"> - <option <?php if ($this->user_settings['tools']['log']['level'] == 0) {?>selected="selected"<?php } ?> value="0"><?php _e("Visitors only", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['log']['level'] == 2) {?>selected="selected"<?php } ?> value="2"><?php _e("Logged-in users only", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['log']['level'] == 1) {?>selected="selected"<?php } ?> value="1"><?php _e("Everyone", $this->plugin_slug); ?></option> - </select> - <br /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="log_limit"><?php _e("Log limit", $this->plugin_slug); ?>:</label></th> - <td> - <select name="log_limit" id="log_limit"> - <option <?php if ($this->user_settings['tools']['log']['limit'] == 0) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['log']['limit'] == 1) {?>selected="selected"<?php } ?> value="1"><?php _e("Keep data for", $this->plugin_slug); ?></option> - </select> - - <label for="log_expire_time"<?php echo ($this->user_settings['tools']['log']['limit'] == 0) ? ' style="display:none;"' : ''; ?>><input type="text" id="log_expire_time" name="log_expire_time" value="<?php echo esc_attr( $this->user_settings['tools']['log']['expires_after'] ); ?>" size="3" /> <?php _e("day(s)", $this->plugin_slug); ?></label> - - <p class="description"<?php echo ($this->user_settings['tools']['log']['limit'] == 0) ? ' style="display:none;"' : ''; ?>><?php _e("Data from entries that haven't been viewed within the specified time frame will be automatically discarded", $this->plugin_slug); ?>.</p> - - <br<?php echo ($this->user_settings['tools']['log']['limit'] == 1) ? ' style="display:none;"' : ''; ?> /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="ajax"><?php _e("Ajaxify widget", $this->plugin_slug); ?>:</label></th> - <td> - <select name="ajax" id="ajax"> - <option <?php if (!$this->user_settings['tools']['ajax']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['ajax']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", $this->plugin_slug); ?></option> - </select> - - <br /> - <p class="description"><?php _e("If you are using a caching plugin such as WP Super Cache, enabling this feature will keep the popular list from being cached by it", $this->plugin_slug); ?>.</p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="cache"><?php _e("WPP Cache Expiry Policy", $this->plugin_slug); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching" target="_blank" title="<?php _e('What is this?', $this->plugin_slug); ?>">?</a>]</small></th> - <td> - <select name="cache" id="cache"> - <option <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Never cache", $this->plugin_slug); ?></option> - <option <?php if ( $this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enable caching", $this->plugin_slug); ?></option> - </select> - - <br /> - <p class="description"><?php _e("Sets WPP's cache expiration time. WPP can cache the popular list for a specified amount of time. Recommended for large / high traffic sites", $this->plugin_slug); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>style="display:none;"<?php } ?> id="cache_refresh_interval"> - <th scope="row"><label for="cache_interval_value"><?php _e("Refresh cache every", $this->plugin_slug); ?>:</label></th> - <td> - <input name="cache_interval_value" type="text" id="cache_interval_value" value="<?php echo ( isset($this->user_settings['tools']['cache']['interval']['value']) ) ? (int) $this->user_settings['tools']['cache']['interval']['value'] : 1; ?>" class="small-text"> - <select name="cache_interval_time" id="cache_interval_time"> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "minute") {?>selected="selected"<?php } ?> value="minute"><?php _e("Minute(s)", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "week") {?>selected="selected"<?php } ?> value="week"><?php _e("Week(s)", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "month") {?>selected="selected"<?php } ?> value="month"><?php _e("Month(s)", $this->plugin_slug); ?></option> - <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "year") {?>selected="selected"<?php } ?> value="month"><?php _e("Year(s)", $this->plugin_slug); ?></option> - </select> - <br /> - <p class="description" style="display:none;" id="cache_too_long"><?php _e("Really? That long?", $this->plugin_slug); ?></p> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="sampling"><?php _e("Data Sampling", $this->plugin_slug); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling" target="_blank" title="<?php _e('What is this?', $this->plugin_slug); ?>">?</a>]</small></th> - <td> - <select name="sampling" id="sampling"> - <option <?php if ( !$this->user_settings['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option> - <option <?php if ( $this->user_settings['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", $this->plugin_slug); ?></option> - </select> - - <br /> - <p class="description"><?php echo sprintf( __('By default, WordPress Popular Posts stores in database every single visit your site receives. For small / medium sites this is generally OK, but on large / high traffic sites the constant writing to the database may have an impact on performance. With <a href="%1$s" target="_blank">data sampling</a>, WordPress Popular Posts will store only a subset of your traffic and report on the tendencies detected in that sample set (for more, <a href="%2$s" target="_blank">please read here</a>)', $this->plugin_slug), 'http://en.wikipedia.org/wiki/Sample_%28statistics%29', 'https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling' ); ?>.</p> - </td> - </tr> - <tr valign="top" <?php if ( !$this->user_settings['tools']['sampling']['active'] ) { ?>style="display:none;"<?php } ?>> - <th scope="row"><label for="sample_rate"><?php _e("Sample Rate", $this->plugin_slug); ?>:</label></th> - <td> - <input name="sample_rate" type="text" id="sample_rate" value="<?php echo ( isset($this->user_settings['tools']['sampling']['rate']) ) ? (int) $this->user_settings['tools']['sampling']['rate'] : 100; ?>" class="small-text"> - <br /> - <p class="description"><?php echo sprintf( __("A sampling rate of %d is recommended for large / high traffic sites. For lower traffic sites, you should lower the value", $this->plugin_slug), $this->default_user_settings['tools']['sampling']['rate'] ); ?>.</p> - </td> - </tr> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="data" /> - <input type="submit" class="button-secondary action" id="btn_ajax_ops" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-data-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <h3 class="wmpp-subtitle"><?php _e("Miscellaneous", $this->plugin_slug); ?></h3> - <form action="" method="post" id="wpp_link_options" name="wpp_link_options"> - <table class="form-table"> - <tbody> - <tr valign="top"> - <th scope="row"><label for="link_target"><?php _e("Open links in", $this->plugin_slug); ?>:</label></th> - <td> - <select name="link_target" id="link_target"> - <option <?php if ( $this->user_settings['tools']['link']['target'] == '_self' ) {?>selected="selected"<?php } ?> value="_self"><?php _e("Current window", $this->plugin_slug); ?></option> - <option <?php if ( $this->user_settings['tools']['link']['target'] == '_blank' ) {?>selected="selected"<?php } ?> value="_blank"><?php _e("New tab/window", $this->plugin_slug); ?></option> - </select> - <br /> - </td> - </tr> - <tr valign="top"> - <th scope="row"><label for="css"><?php _e("Use plugin's stylesheet", $this->plugin_slug); ?>:</label></th> - <td> - <select name="css" id="css"> - <option <?php if ($this->user_settings['tools']['css']) {?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", $this->plugin_slug); ?></option> - <option <?php if (!$this->user_settings['tools']['css']) {?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option> - </select> - <br /> - <p class="description"><?php _e("By default, the plugin includes a stylesheet called wpp.css which you can use to style your popular posts listing. If you wish to use your own stylesheet or do not want it to have it included in the header section of your site, use this.", $this->plugin_slug); ?></p> - </td> - </tr> - <tr valign="top"> - <td colspan="2"> - <input type="hidden" name="section" value="misc" /> - <input type="submit" class="button-secondary action" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" /> - </td> - </tr> - </tbody> - </table> - - <?php wp_nonce_field( 'wpp-update-misc-options', 'wpp-admin-token' ); ?> - </form> - <br /> - <p style="display:block; float:none; clear:both"> </p> - - <br /><br /> - - <p><?php _e('WordPress Popular Posts maintains data in two separate tables: one for storing the most popular entries on a daily basis (from now on, "cache"), and another one to keep the All-time data (from now on, "historical data" or just "data"). If for some reason you need to clear the cache table, or even both historical and cache tables, please use the buttons below to do so.', $this->plugin_slug) ?></p> - <p><input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty cache", $this->plugin_slug); ?>" onclick="confirm_reset_cache()" /> <label for="wpp-reset-cache"><small><?php _e('Use this button to manually clear entries from WPP cache only', $this->plugin_slug); ?></small></label></p> - <p><input type="button" name="wpp-reset-all" id="wpp-reset-all" class="button-secondary" value="<?php _e("Clear all data", $this->plugin_slug); ?>" onclick="confirm_reset_all()" /> <label for="wpp-reset-all"><small><?php _e('Use this button to manually clear entries from all WPP data tables', $this->plugin_slug); ?></small></label></p> - </div> - <!-- End tools --> - - <!-- Start params --> - <div id="wpp_params" class="wpp_boxes"<?php if ( "params" == $current ) {?> style="display:block;"<?php } ?>> - <div> - <p><?php printf( __('With the following parameters you can customize the popular posts list when using either the <a href="%1$s">wpp_get_mostpopular() template tag</a> or the <a href="%2$s">[wpp] shortcode</a>.', $this->plugin_slug), - admin_url('options-general.php?page=wordpress-popular-posts&tab=faq#template-tags'), - admin_url('options-general.php?page=wordpress-popular-posts&tab=faq#shortcode') - ); ?></p> - <br /> - <table cellspacing="0" class="wp-list-table widefat fixed posts"> - <thead> - <tr> - <th class="manage-column column-title"><?php _e('Parameter', $this->plugin_slug); ?></th> - <th class="manage-column column-title"><?php _e('What it does ', $this->plugin_slug); ?></th> - <th class="manage-column column-title"><?php _e('Possible values', $this->plugin_slug); ?></th> - <th class="manage-column column-title"><?php _e('Defaults to', $this->plugin_slug); ?></th> - <th class="manage-column column-title"><?php _e('Example', $this->plugin_slug); ?></th> - </tr> - </thead> - <tbody> - <tr> - <td><strong>header</strong></td> - <td><?php _e('Sets a heading for the list', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><?php _e('None', $this->plugin_slug); ?></td> - <td><?php<br />$args = array(<br /> 'header' => 'Popular Posts'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>header_start</strong></td> - <td><?php _e('Set the opening tag for the heading of the list', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><h2></td> - <td><?php<br />$args = array(<br /> 'header' => 'Popular Posts', <br /> 'header_start' => '<h3 class="title">',<br /> 'header_end' => '</h3>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>header_end</strong></td> - <td><?php _e('Set the closing tag for the heading of the list', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td></h2></td> - <td><?php<br />$args = array(<br /> 'header' => 'Popular Posts', <br /> 'header_start' => '<h3 class="title">',<br /> 'header_end' => '</h3>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>limit</strong></td> - <td><?php _e('Sets the maximum number of popular posts to be shown on the listing', $this->plugin_slug); ?></td> - <td><?php _e('Positive integer', $this->plugin_slug); ?></td> - <td>10</td> - <td><?php<br />$args = array(<br /> 'limit' => 5<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>range</strong></td> - <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries within the time range specified by you', $this->plugin_slug); ?></td> - <td>"daily", "weekly", "monthly", "all"</td> - <td>daily</td> - <td><?php<br />$args = array(<br /> 'range' => 'weekly'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>freshness</strong></td> - <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries published within the time range specified by you', $this->plugin_slug); ?></td> - <td>1 (true), 0 (false)</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'range' => 'weekly',<br /> 'freshness' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>order_by</strong></td> - <td><?php _e('Sets the sorting option of the popular posts', $this->plugin_slug); ?></td> - <td>"comments", "views", "avg" <?php _e('(for average views per day)', $this->plugin_slug); ?></td> - <td>views</td> - <td><?php<br />$args = array(<br /> 'order_by' => 'comments'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>post_type</strong></td> - <td><?php _e('Defines the type of posts to show on the listing', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td>post,page</td> - <td><?php<br />$args = array(<br /> 'post_type' => 'post,page,your-custom-post-type'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>pid</strong></td> - <td><?php _e('If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the listing.', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><?php _e('None', $this->plugin_slug); ?></td> - <td><?php<br />$args = array(<br /> 'pid' => '60,25,31'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>cat</strong></td> - <td><?php _e('If set, WordPress Popular Posts will retrieve all entries that belong to the specified category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded instead.', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><?php _e('None', $this->plugin_slug); ?></td> - <td><?php<br />$args = array(<br /> 'cat' => '1,55,-74'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>author</strong></td> - <td><?php _e('If set, WordPress Popular Posts will retrieve all entries created by specified author(s) ID(s).', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><?php _e('None', $this->plugin_slug); ?></td> - <td><?php<br />$args = array(<br /> 'author' => '75,8,120'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>title_length</strong></td> - <td><?php _e('If set, WordPress Popular Posts will shorten each post title to "n" characters whenever possible', $this->plugin_slug); ?></td> - <td><?php _e('Positive integer', $this->plugin_slug); ?></td> - <td>25</td> - <td><?php<br />$args = array(<br /> 'title_length' => 25<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>title_by_words</strong></td> - <td><?php _e('If set to 1, WordPress Popular Posts will shorten each post title to "n" words instead of characters', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'title_by_words' => 1,<br /> 'title_length' => 25<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>excerpt_length</strong></td> - <td><?php _e('If set, WordPress Popular Posts will build and include an excerpt of "n" characters long from the content of each post listed as popular', $this->plugin_slug); ?></td> - <td><?php _e('Positive integer', $this->plugin_slug); ?></td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} {summary}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>excerpt_format</strong></td> - <td><?php _e('If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) and hyperlinks found in the excerpt', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'excerpt_format' => 1,<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} {summary}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>excerpt_by_words</strong></td> - <td><?php _e('If set to 1, WordPress Popular Posts will shorten the excerpt to "n" words instead of characters', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'excerpt_by_words' => 1,<br /> 'excerpt_length' => 55,<br /> 'post_html' => '<li>{thumb} {title} {summary}</li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>thumbnail_width</strong></td> - <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the width for thumbnails', $this->plugin_slug); ?></td> - <td><?php _e('Positive integer', $this->plugin_slug); ?></td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'thumbnail_width' => 30,<br /> 'thumbnail_height' => 30<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>thumbnail_height</strong></td> - <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the height for thumbnails', $this->plugin_slug); ?></td> - <td><?php _e('Positive integer', $this->plugin_slug); ?></td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'thumbnail_width' => 30,<br /> 'thumbnail_height' => 30<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>rating</strong></td> - <td><?php _e('If set, and if the WP-PostRatings plugin is installed and enabled on your blog, WordPress Popular Posts will show how your visitors are rating your entries', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'rating' => 1,<br /> 'post_html' => '<li>{thumb} {title} {rating}</li>"'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>stats_comments</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show how many comments each popular post has got until now', $this->plugin_slug); ?></td> - <td>1 (true), 0 (false)</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'stats_comments' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>stats_views</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show how many views each popular post has got since it was installed', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>1</td> - <td><?php<br />$args = array(<br /> 'stats_views' => 0<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>stats_author</strong></td> - <td><?php _e('If set, WordPress Popular Posts will show who published each popular post on the list', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'stats_author' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>stats_date</strong></td> - <td><?php _e('If set, WordPress Popular Posts will display the date when each popular post on the list was published', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'stats_date' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>stats_date_format</strong></td> - <td><?php _e('Sets the date format', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'stats_date_format' => 'F j, Y'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>stats_category</strong></td> - <td><?php _e('If set, WordPress Popular Posts will display the category', $this->plugin_slug); ?></td> - <td>1 (true), (0) false</td> - <td>0</td> - <td><?php<br />$args = array(<br /> 'stats_category' => 1<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>wpp_start</strong></td> - <td><?php _e('Sets the opening tag for the listing', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td><ul></td> - <td><?php<br />$args = array(<br /> 'wpp_start' => '<ol>',<br /> 'wpp_end' => '</ol>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr> - <td><strong>wpp_end</strong></td> - <td><?php _e('Sets the closing tag for the listing', $this->plugin_slug); ?></td> - <td><?php _e('Text string', $this->plugin_slug); ?></td> - <td></ul></td> - <td><?php<br />$args = array(<br /> 'wpp_start' => '<ol>',<br /> 'wpp_end' => '</ol>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - <tr class="alternate"> - <td><strong>post_html</strong></td> - <td><?php _e('Sets the HTML structure of each post', $this->plugin_slug); ?></td> - <td><?php _e('Text string, custom HTML', $this->plugin_slug); ?>.<br /><br /><strong><?php _e('Available Content Tags', $this->plugin_slug); ?>:</strong> <br /><br /><em>{thumb}</em> (<?php _e('displays thumbnail linked to post/page, requires thumbnail_width & thumbnail_height', $this->plugin_slug); ?>)<br /><br /> <em>{thumb_img}</em> (<?php _e('displays thumbnail image without linking to post/page, requires thumbnail_width & thumbnail_height', $this->plugin_slug); ?>)<br /><br /> <em>{title}</em> (<?php _e('displays linked post/page title', $this->plugin_slug); ?>)<br /><br /> <em>{summary}</em> (<?php _e('displays post/page excerpt, and requires excerpt_length to be greater than 0', $this->plugin_slug); ?>)<br /><br /> <em>{stats}</em> (<?php _e('displays the default stats tags', $this->plugin_slug); ?>)<br /><br /> <em>{rating}</em> (<?php _e('displays post/page current rating, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /><br /> <em>{score}</em> (<?php _e('displays post/page current rating as an integer, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /><br /> <em>{url}</em> (<?php _e('outputs the URL of the post/page', $this->plugin_slug); ?>)<br /><br /> <em>{text_title}</em> (<?php _e('displays post/page title, no link', $this->plugin_slug); ?>)<br /><br /> <em>{author}</em> (<?php _e('displays linked author name, requires stats_author=1', $this->plugin_slug); ?>)<br /><br /> <em>{category}</em> (<?php _e('displays linked category name, requires stats_category=1', $this->plugin_slug); ?>)<br /><br /> <em>{views}</em> (<?php _e('displays views count only, no text', $this->plugin_slug); ?>)<br /><br /> <em>{comments}</em> (<?php _e('displays comments count only, no text, requires stats_comments=1', $this->plugin_slug); ?>)<br /><br /> <em>{date}</em> (<?php _e('displays post/page date, requires stats_date=1', $this->plugin_slug); ?>)</td> - <td><li>{thumb} {title} {stats}</li></td> - <td><?php<br />$args = array(<br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?></td> - </tr> - </tbody> - </table> - </div> - </div> - <!-- End params --> - - <!-- Start about --> - <div id="wpp_faq" class="wpp_boxes"<?php if ( "about" == $current ) {?> style="display:block;"<?php } ?>> - - <h3><?php echo sprintf( __('About WordPress Popular Posts %s', $this->plugin_slug), $this->version); ?></h3> - <p><?php _e( 'This version includes the following changes', $this->plugin_slug ); ?>:</p> - - <ul> - <li>Attempt to convert tables to InnoDB during upgrade if other engine is being used.</li> - <li>Adds a check to prevent the upgrade process from running too many times.</li> - <li>Minor improvements and bug fixes.</li> - <li>Documentation updated.</li> - </ul> - - </div> - <!-- End about --> - - <div id="wpp_donate" class="wpp_box" style=""> - <h3 style="margin-top:0; text-align:center;"><?php _e('Do you like this plugin?', $this->plugin_slug); ?></h3> - <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> - <input type="hidden" name="cmd" value="_s-xclick"> - <input type="hidden" name="hosted_button_id" value="RP9SK8KVQHRKS"> - <input type="image" src="//www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="display:block; margin:0 auto;"> - <img alt="" border="0" src="//www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> - </form> - <p><?php _e( 'Each donation motivates me to keep releasing free stuff for the WordPress community!', $this->plugin_slug ); ?></p> - <p><?php echo sprintf( __('You can <a href="%s" target="_blank">leave a review</a>, too!', $this->plugin_slug), 'https://wordpress.org/support/view/plugin-reviews/wordpress-popular-posts?rate=5#postform' ); ?></p> - </div> - - <div id="wpp_advertisement" class="wpp_box" style=""></div> - - <div id="wpp_support" class="wpp_box" style=""> - <h3 style="margin-top:0; text-align:center;"><?php _e('Need help?', $this->plugin_slug); ?></h3> - <p><?php echo sprintf( __('Visit <a href="%s" target="_blank">the forum</a> for support, questions and feedback.', $this->plugin_slug), 'https://wordpress.org/support/plugin/wordpress-popular-posts' ); ?></p> - <p><?php _e('Let\'s make this plugin even better!', $this->plugin_slug); ?></p> - </div> - -</div> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/views/form.php b/wp-content/plugins/wordpress-popular-posts/views/form.php deleted file mode 100644 index 2cbe79ee95cce609ac4c7584f653a92aee42e688..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/views/form.php +++ /dev/null @@ -1,137 +0,0 @@ -<p> - <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-title-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" class="widefat" /> -</p> - -<p> - <label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php _e('Show up to', 'wordpress-popular-posts'); ?>:</label><br /> - <input type="text" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo $instance['limit']; ?>" class="widefat" style="width:50px!important" /> <?php _e('posts', 'wordpress-popular-posts'); ?> -</p> - -<p> - <label for="<?php echo $this->get_field_id( 'order_by' ); ?>"><?php _e('Sort posts by', 'wordpress-popular-posts'); ?>:</label><br /> - <select id="<?php echo $this->get_field_id( 'order_by' ); ?>" name="<?php echo $this->get_field_name( 'order_by' ); ?>" class="widefat"> - <option value="comments" <?php if ( 'comments' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Comments', 'wordpress-popular-posts'); ?></option> - <option value="views" <?php if ( 'views' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Total views', 'wordpress-popular-posts'); ?></option> - <option value="avg" <?php if ( 'avg' == $instance['order_by'] ) echo 'selected="selected"'; ?>><?php _e('Avg. daily views', 'wordpress-popular-posts'); ?></option> - </select> -</p> - -<br /><hr /><br /> - -<legend><strong><?php _e('Filters', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<label for="<?php echo $this->get_field_id( 'range' ); ?>"><?php _e('Time Range', 'wordpress-popular-posts'); ?>:</label><br /> -<select id="<?php echo $this->get_field_id( 'range' ); ?>" name="<?php echo $this->get_field_name( 'range' ); ?>" class="widefat" style="margin-bottom:5px;"> - <option value="daily" <?php if ( 'daily' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 24 hours', 'wordpress-popular-posts'); ?></option> - <option value="weekly" <?php if ( 'weekly' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 7 days', 'wordpress-popular-posts'); ?></option> - <option value="monthly" <?php if ( 'monthly' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('Last 30 days', 'wordpress-popular-posts'); ?></option> - <option value="all" <?php if ( 'all' == $instance['range'] ) echo 'selected="selected"'; ?>><?php _e('All-time', 'wordpress-popular-posts'); ?></option> -</select><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['freshness']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'freshness' ); ?>" name="<?php echo $this->get_field_name( 'freshness' ); ?>" /> <label for="<?php echo $this->get_field_id( 'freshness' ); ?>"><small><?php _e('Display only posts published within the selected Time Range', 'wordpress-popular-posts'); ?></small></label><br /><br /> - -<label for="<?php echo $this->get_field_id( 'post_type' ); ?>"><?php _e('Post type(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-post-type-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -<input type="text" id="<?php echo $this->get_field_id( 'post_type' ); ?>" name="<?php echo $this->get_field_name( 'post_type' ); ?>" value="<?php echo $instance['post_type']; ?>" class="widefat" /><br /><br /> - -<label for="<?php echo $this->get_field_id( 'pid' ); ?>"><?php _e('Post(s) ID(s) to exclude', 'wordpress-popular-posts'); ?>:</label> -<input type="text" id="<?php echo $this->get_field_id( 'pid' ); ?>" name="<?php echo $this->get_field_name( 'pid' ); ?>" value="<?php echo $instance['pid']; ?>" class="widefat" /><br /><br /> - -<label for="<?php echo $this->get_field_id( 'cat' ); ?>"><?php _e('Category(ies) ID(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-categoryies-ids-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -<input type="text" id="<?php echo $this->get_field_id( 'cat' ); ?>" name="<?php echo $this->get_field_name( 'cat' ); ?>" value="<?php echo $instance['cat']; ?>" class="widefat" /><br /><br /> - -<label for="<?php echo $this->get_field_id( 'uid' ); ?>"><?php _e('Author(s) ID(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-authors-ids-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -<input type="text" id="<?php echo $this->get_field_id( 'uid' ); ?>" name="<?php echo $this->get_field_name( 'uid' ); ?>" value="<?php echo $instance['author']; ?>" class="widefat" /><br /><br /> - -<br /><hr /><br /> - -<legend><strong><?php _e('Posts settings', 'wordpress-popular-posts'); ?></strong></legend> -<br /> - -<div style="display:<?php if ( function_exists('the_ratings_results') ) : ?>block<?php else: ?>none<?php endif; ?>;"> - <input type="checkbox" class="checkbox" <?php echo ($instance['rating']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'rating' ); ?>" name="<?php echo $this->get_field_name( 'rating' ); ?>" /> <label for="<?php echo $this->get_field_id( 'rating' ); ?>"><?php _e('Display post rating', 'wordpress-popular-posts'); ?></label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-display-post-rating-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['shorten_title']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'shorten_title-active' ); ?>" name="<?php echo $this->get_field_name( 'shorten_title-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'shorten_title-active' ); ?>"><?php _e('Shorten title', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['shorten_title']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <label for="<?php echo $this->get_field_id( 'shorten_title-length' ); ?>"><?php _e('Shorten title to', 'wordpress-popular-posts'); ?> <input type="text" id="<?php echo $this->get_field_id( 'shorten_title-length' ); ?>" name="<?php echo $this->get_field_name( 'shorten_title-length' ); ?>" value="<?php echo $instance['shorten_title']['length']; ?>" class="widefat" style="width:50px!important" /></label><br /> - <label for="<?php echo $this->get_field_id( 'shorten_title-words' ); ?>"><input type="radio" name="<?php echo $this->get_field_name( 'shorten_title-words' ); ?>" value="0" <?php echo (!isset($instance['shorten_title']['words']) || !$instance['shorten_title']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('characters', 'wordpress-popular-posts'); ?></label><br /> - <label for="<?php echo $this->get_field_id( 'shorten_title-words' ); ?>"><input type="radio" name="<?php echo $this->get_field_name( 'shorten_title-words' ); ?>" value="1" <?php echo (isset($instance['shorten_title']['words']) && $instance['shorten_title']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('words', 'wordpress-popular-posts'); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['post-excerpt']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'post-excerpt-active' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'post-excerpt-active' ); ?>"><?php _e('Display post excerpt', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['post-excerpt']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'post-excerpt-format' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-format' ); ?>" <?php echo ($instance['post-excerpt']['keep_format']) ? 'checked="checked"' : ''; ?> /> <label for="<?php echo $this->get_field_id( 'post-excerpt-format' ); ?>"><?php _e('Keep text format and links', 'wordpress-popular-posts'); ?></label><br /><br /> - <label for="<?php echo $this->get_field_id( 'post-excerpt-length' ); ?>"><?php _e('Excerpt length', 'wordpress-popular-posts'); ?>: <input type="text" id="<?php echo $this->get_field_id( 'post-excerpt-length' ); ?>" name="<?php echo $this->get_field_name( 'post-excerpt-length' ); ?>" value="<?php echo $instance['post-excerpt']['length']; ?>" class="widefat" style="width:50px!important" /></label><br /> - - <label><input type="radio" name="<?php echo $this->get_field_name( 'post-excerpt-words' ); ?>" value="0" <?php echo (!isset($instance['post-excerpt']['words']) || !$instance['post-excerpt']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('characters', 'wordpress-popular-posts'); ?></label><br /> - <label><input type="radio" name="<?php echo $this->get_field_name( 'post-excerpt-words' ); ?>" value="1" <?php echo (isset($instance['post-excerpt']['words']) && $instance['post-excerpt']['words']) ? 'checked="checked"' : ''; ?> /> <?php _e('words', 'wordpress-popular-posts'); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['thumbnail']['active'] && $this->thumbnailing) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>"><?php _e('Display post thumbnail', 'wordpress-popular-posts'); ?></label> - -<div style="display:<?php if ($instance['thumbnail']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <label><input type='radio' id='thumbnail-predefined-size' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='predefined' <?php echo ($instance['thumbnail']['build'] == 'predefined') ? 'checked="checked"' : ''; ?> /><?php _e('Use predefined size', 'wordpress-popular-posts'); ?></label><br /> - - <select id="<?php echo $this->get_field_id( 'thumbnail-size' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-size' ); ?>" class="widefat" style="margin:5px 0;"> - <?php - foreach ( $this->default_thumbnail_sizes as $name => $attr ) : - echo '<option value="' . $name . '"' . ( ($instance['thumbnail']['build'] == 'predefined' && $attr['width'] == $instance['thumbnail']['width'] && $attr['height'] == $instance['thumbnail']['height'] ) ? ' selected="selected"' : '' ) . '>' . $name . ' (' . $attr['width'] . ' x ' . $attr['height'] . ( $attr['crop'] ? ', hard crop' : ', soft crop' ) . ')</option>'; - endforeach; - ?> - </select> - - <hr /> - - <label><input type='radio' id='thumbnail-manual-size' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='manual' <?php echo ($instance['thumbnail']['build'] == 'manual') ? 'checked="checked"' : ''; ?> /><?php _e('Set size manually', 'wordpress-popular-posts'); ?></label><br /> - - <label for="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>"><?php _e('Width', 'wordpress-popular-posts'); ?>:</label> - <input type="text" id="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-width' ); ?>" value="<?php echo $instance['thumbnail']['width']; ?>" class="widefat" style="margin:3px 0; width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> px<br /> - - <label for="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>"><?php _e('Height', 'wordpress-popular-posts'); ?>:</label> - <input type="text" id="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-height' ); ?>" value="<?php echo $instance['thumbnail']['height']; ?>" class="widefat" style="width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> px -</div><br /> - -<br /><hr /><br /> - -<legend><strong><?php _e('Stats Tag settings', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['comment_count']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'comment_count' ); ?>" name="<?php echo $this->get_field_name( 'comment_count' ); ?>" /> <label for="<?php echo $this->get_field_id( 'comment_count' ); ?>"><?php _e('Display comment count', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['views']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'views' ); ?>" name="<?php echo $this->get_field_name( 'views' ); ?>" /> <label for="<?php echo $this->get_field_id( 'views' ); ?>"><?php _e('Display views', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['author']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'author' ); ?>" name="<?php echo $this->get_field_name( 'author' ); ?>" /> <label for="<?php echo $this->get_field_id( 'author' ); ?>"><?php _e('Display author', 'wordpress-popular-posts'); ?></label><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['date']['active']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'date' ); ?>" name="<?php echo $this->get_field_name( 'date' ); ?>" /> <label for="<?php echo $this->get_field_id( 'date' ); ?>"><?php _e('Display date', 'wordpress-popular-posts'); ?></label><br /> - -<div style="display:<?php if ($instance['stats_tag']['date']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <legend><strong><?php _e('Date Format', 'wordpress-popular-posts'); ?></strong></legend><br /> - - <label title='<?php echo get_option('date_format'); ?>'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='<?php echo get_option('date_format'); ?>' <?php echo ($instance['stats_tag']['date']['format'] == get_option('date_format')) ? 'checked="checked"' : ''; ?> /><?php echo date_i18n(get_option('date_format'), time()); ?></label> <small>(<a href="<?php echo admin_url('options-general.php'); ?>" title="<?php _e('WordPress Date Format', 'wordpress-popular-posts'); ?>" target="_blank"><?php _e('WordPress Date Format', 'wordpress-popular-posts'); ?></a>)</small><br /> - <label title='F j, Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='F j, Y' <?php echo ($instance['stats_tag']['date']['format'] == 'F j, Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('F j, Y', time()); ?></label><br /> - <label title='Y/m/d'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='Y/m/d' <?php echo ($instance['stats_tag']['date']['format'] == 'Y/m/d') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('Y/m/d', time()); ?></label><br /> - <label title='m/d/Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='m/d/Y' <?php echo ($instance['stats_tag']['date']['format'] == 'm/d/Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('m/d/Y', time()); ?></label><br /> - <label title='d/m/Y'><input type='radio' name='<?php echo $this->get_field_name( 'date_format' ); ?>' value='d/m/Y' <?php echo ($instance['stats_tag']['date']['format'] == 'd/m/Y') ? 'checked="checked"' : ''; ?> /><?php echo date_i18n('d/m/Y', time()); ?></label> -</div> - -<input type="checkbox" class="checkbox" <?php echo ($instance['stats_tag']['category']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'category' ); ?>" name="<?php echo $this->get_field_name( 'category' ); ?>" /> <label for="<?php echo $this->get_field_id( 'category' ); ?>"><?php _e('Display category', 'wordpress-popular-posts'); ?></label><br /> - -<br /><hr /><br /> - -<legend><strong><?php _e('HTML Markup settings', 'wordpress-popular-posts'); ?></strong></legend><br /> - -<input type="checkbox" class="checkbox" <?php echo ($instance['markup']['custom_html']) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'custom_html' ); ?>" name="<?php echo $this->get_field_name( 'custom_html' ); ?>" /> <label for="<?php echo $this->get_field_id( 'custom_html' ); ?>"><?php _e('Use custom HTML Markup', 'wordpress-popular-posts'); ?></label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-does-use-custom-html-markup-do" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small><br /> - -<div style="display:<?php if ($instance['markup']['custom_html']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;"> - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'title-start' ); ?>"><?php _e('Before / after title', 'wordpress-popular-posts'); ?>:</label> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'title-start' ); ?>" name="<?php echo $this->get_field_name( 'title-start' ); ?>" value="<?php echo $instance['markup']['title-start']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /> <input type="text" id="<?php echo $this->get_field_id( 'title-end' ); ?>" name="<?php echo $this->get_field_name( 'title-end' ); ?>" value="<?php echo $instance['markup']['title-end']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /></p> - - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'wpp_start' ); ?>"><?php _e('Before / after Popular Posts', 'wordpress-popular-posts'); ?>:</label> <br /> - <input type="text" id="<?php echo $this->get_field_id( 'wpp-start' ); ?>" name="<?php echo $this->get_field_name( 'wpp-start' ); ?>" value="<?php echo $instance['markup']['wpp-start']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /> <input type="text" id="<?php echo $this->get_field_id( 'wpp-end' ); ?>" name="<?php echo $this->get_field_name( 'wpp-end' ); ?>" value="<?php echo $instance['markup']['wpp-end']; ?>" class="widefat" style="width:49%!important" <?php echo ($instance['markup']['custom_html']) ? '' : 'disabled="disabled"' ?> /></p> - - <p style="font-size:11px"><label for="<?php echo $this->get_field_id( 'post-html' ); ?>"><?php _e('Post HTML Markup', 'wordpress-popular-posts'); ?>:</label> <br /> - <textarea class="widefat" rows="10" id="<?php echo $this->get_field_id( 'post-html' ); ?>" name="<?php echo $this->get_field_name( 'post-html' ); ?>"><?php echo $instance['markup']['post-html']; ?></textarea> -</div> -<br /> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/views/index.php b/wp-content/plugins/wordpress-popular-posts/views/index.php deleted file mode 100644 index a99ea83b68d5e3249c7ef33505976f7beb972072..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/views/index.php +++ /dev/null @@ -1 +0,0 @@ -<?php // Silence is golden ?> \ No newline at end of file diff --git a/wp-content/plugins/wordpress-popular-posts/wordpress-popular-posts.php b/wp-content/plugins/wordpress-popular-posts/wordpress-popular-posts.php deleted file mode 100644 index cd56b3ac17c32367b1108307aeb0e2d69dffefa8..0000000000000000000000000000000000000000 --- a/wp-content/plugins/wordpress-popular-posts/wordpress-popular-posts.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - -/** - * The plugin bootstrap file - * - * This file is read by WordPress to generate the plugin information in the plugin - * admin area. This file also includes all of the dependencies used by the plugin, - * registers the activation and deactivation functions, and defines a function - * that starts the plugin. - * - * @link http://cabrerahector.com/ - * @since 4.0.0 - * @package WordPressPopularPosts - * - * @wordpress-plugin - * Plugin Name: WordPress Popular Posts - * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/ - * Description: A highly customizable widget that displays the most popular posts on your blog. - * Version: 4.0.12 - * Author: Hector Cabrera - * Author URI: http://cabrerahector.com/ - * License: GPL-2.0+ - * License URI: http://www.gnu.org/licenses/gpl-2.0.txt - * Text Domain: wordpress-popular-posts - * Domain Path: /languages - */ - -if ( ! defined( 'WPINC' ) ) { - die(); -} - -/* - * The code that runs during plugin activation. - */ -require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts-activator.php'; -register_activation_hook( __FILE__, array('WPP_Activator', 'activate') ); - -/* - * The code that runs during plugin activation. - */ -require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts-deactivator.php'; -register_deactivation_hook( __FILE__, array('WPP_Deactivator', 'deactivate') ); - -/* - * The core plugins class. - */ -require plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts.php'; - -/* - * Begin execution of the plugin. - */ -$wordpress_popular_posts = new WordPressPopularPosts(); -$wordpress_popular_posts->run();